diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..5c239f6 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,30 @@ +# Contributing + +## Development environment set up + +Install [bundler](http://bundler.io/): + +``` +$ gem install bundler +``` + +Install proejct dependencies using bundler: + +``` +$ bundle install --path vendor/bundle +``` + +Start development server + +``` +$ bundle exec jekyll serve +``` + +Open up http://localhost:4000/ + +(replace website with whatever `baseurl` is set to in `_config.yml`) + +## References + +* [Jekyll](https://jekyllrb.com/) +* [Jekyll: baseurl explanation](https://byparker.com/blog/2014/clearing-up-confusion-around-baseurl/) diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..93eddf7 --- /dev/null +++ b/Gemfile @@ -0,0 +1,27 @@ +source "https://rubygems.org" + +# Hello! This is where you manage which Jekyll version is used to run. +# When you want to use a different version, change it below, save the +# file and run `bundle install`. Run Jekyll with `bundle exec`, like so: +# +# bundle exec jekyll serve +# +# This will help ensure the proper Jekyll version is running. +# Happy Jekylling! +gem "jekyll", "~> 3.6.0" + +# This is the default theme for new Jekyll sites. You may change this to anything you like. +gem "minima", "~> 2.0" + +# If you want to use GitHub Pages, remove the "gem "jekyll"" above and +# uncomment the line below. To upgrade, run `bundle update github-pages`. +# gem "github-pages", group: :jekyll_plugins + +# If you have any plugins, put them here! +group :jekyll_plugins do + gem "jekyll-feed", "~> 0.6" +end + +# Windows does not include zoneinfo files, so bundle the tzinfo-data gem +gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] + diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..978a494 --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,71 @@ +GEM + remote: https://rubygems.org/ + specs: + addressable (2.5.2) + public_suffix (>= 2.0.2, < 4.0) + colorator (1.1.0) + concurrent-ruby (1.1.4) + ffi (1.10.0) + ffi (1.10.0-x64-mingw32) + forwardable-extended (2.6.0) + jekyll (3.6.3) + addressable (~> 2.4) + colorator (~> 1.0) + jekyll-sass-converter (~> 1.0) + jekyll-watch (~> 1.1) + kramdown (~> 1.14) + liquid (~> 4.0) + mercenary (~> 0.3.3) + pathutil (~> 0.9) + rouge (>= 1.7, < 3) + safe_yaml (~> 1.0) + jekyll-feed (0.11.0) + jekyll (~> 3.3) + jekyll-sass-converter (1.5.2) + sass (~> 3.4) + jekyll-seo-tag (2.5.0) + jekyll (~> 3.3) + jekyll-watch (1.5.1) + listen (~> 3.0) + kramdown (1.17.0) + liquid (4.0.1) + listen (3.1.5) + rb-fsevent (~> 0.9, >= 0.9.4) + rb-inotify (~> 0.9, >= 0.9.7) + ruby_dep (~> 1.2) + mercenary (0.3.6) + minima (2.5.0) + jekyll (~> 3.5) + jekyll-feed (~> 0.9) + jekyll-seo-tag (~> 2.1) + pathutil (0.16.2) + forwardable-extended (~> 2.6) + public_suffix (3.0.3) + rb-fsevent (0.10.3) + rb-inotify (0.10.0) + ffi (~> 1.0) + rouge (2.2.1) + ruby_dep (1.5.0) + safe_yaml (1.0.4) + sass (3.7.3) + sass-listen (~> 4.0.0) + sass-listen (4.0.0) + rb-fsevent (~> 0.9, >= 0.9.4) + rb-inotify (~> 0.9, >= 0.9.7) + tzinfo (2.0.0) + concurrent-ruby (~> 1.0) + tzinfo-data (1.2018.9) + tzinfo (>= 1.0.0) + +PLATFORMS + ruby + x64-mingw32 + +DEPENDENCIES + jekyll (~> 3.6.0) + jekyll-feed (~> 0.6) + minima (~> 2.0) + tzinfo-data + +BUNDLED WITH + 2.0.1 diff --git a/LICENSE b/LICENSE deleted file mode 100644 index 725be98..0000000 --- a/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2022 GeWu-Lab - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..eb6274b --- /dev/null +++ b/Makefile @@ -0,0 +1,17 @@ +.PHONY: check serve + +HTML_FILES := $(shell find . -iname '*.html' -type f) + +check: $(HTML_FILES) vnu.jar + java -jar vnu.jar $(HTML_FILES) + +serve: vendor + bundle exec jekyll serve + +vendor: + bundle install --path vendor/bundle + +vnu.jar: + curl -Lf "https://github.com/validator/validator/releases/download/17.9.0/vnu.jar_17.9.0.zip" -o vnu.jar.zip + unzip -o -d /tmp/vnu vnu.jar.zip + cp /tmp/vnu/dist/vnu.jar . diff --git a/README.md b/README.md deleted file mode 100644 index bb7b8fa..0000000 --- a/README.md +++ /dev/null @@ -1,225 +0,0 @@ - - -# Audio-Visual Question Answering (AVQA) - -PyTorch code accompanies our CVPR 2022 paper: - -**Learning to Answer Questions in Dynamic Audio-Visual Scenarios** - -[Guangyao Li](https://ayameyao.github.io/), [Yake Wei](https://echo0409.github.io/), [Yapeng Tian](https://yapengtian.org/), [Chenliang Xu](https://www.cs.rochester.edu/~cxu22/), [Ji-Rong Wen](http://ai.ruc.edu.cn/szdw/68136712b556477db57c8ae66752768f.htm) and [Di Hu](https://dtaoo.github.io/index.html) - -**Resources:** [[Paper]](https://gewu-lab.github.io/MUSIC-AVQA/static/files/MUSIC-AVQA.pdf), [[Supplementary]](https://gewu-lab.github.io/MUSIC-AVQA/static/files/MUSIC-AVQA-supplementary.pdf), [[Poster]](https://gewu-lab.github.io/MUSIC-AVQA/static/files/MUSIC-AVQA-poster.pdf), [[Video]](https://www.bilibili.com/video/BV1Br4y1q7YN/) - -**Project Homepage:** [https://https://gewu-lab.github.io/MUSIC-AVQA/](https://gewu-lab.github.io/MUSIC-AVQA/) - ---- - - - -## What's Audio-Visual Question Answering Task? - -We focus on **audio-visual question answering (AVQA) task, which aims to answer questions regarding different visual objects, sounds, and their associations in videos**. The problem requires comprehensive multimodal understanding and spatio-temporal reasoning over audio-visual scenes. - -
- -
- - -## MUSIC-AVQA Dataset - -The large-scale MUSIC-AVQA dataset of musical performance, which contains **45,867 question-answer pairs**, distributed in **9,290 videos** for over 150 hours. All QA pairs types are divided into **3 modal scenarios**, which contain **9 question types** and **33 question templates**. Finally, as an open-ended problem of our AVQA tasks, all 42 kinds of answers constitute a set for selection. - -- **QA examples** - -
- -
- - - -## Model Overview - -To solve the AVQA problem, we propose a spatio-temporal grounding model to achieve scene understanding and reasoning over audio and visual modalities. An overview of the proposed framework is illustrated in below figure. - -
- -
- - - -## Requirements - -```python -python3.6 + -pytorch1.6.0 -tensorboardX -ffmpeg -numpy -``` - - - -## Usage - -1. **Clone this repo** - - ```python - https://github.com/GeWu-Lab/MUSIC-AVQA_CVPR2022.git - ``` - -2. **Download data** - - **Annotations (QA pairs, etc.)** - - - Available for download at [here](https://github.com/GeWu-Lab/MUSIC-AVQA_CVPR2022/tree/main/data/json) - - The annotation files are stored in JSON format. Each annotation file contains seven different keyword. And more detail see in [Project Homepage](https://ayameyao.github.io/MUSIC-AVQA/) - - **Features** - - - We use [VGGish](https://github.com/tensorflow/models/tree/master/research/audioset/vggish), [ResNet18](https://pytorch.org/docs/stable/torchvision/models.html), and [ResNet (2+1)D](https://pytorch.org/docs/stable/torchvision/models.html) to extract audio, 2D frame-level, and 3D snippet-level features, respectively. - - - The audio and visual features of videos in the MUSIC-AVQA dataset can be download from this [Google Drive]() or [Baidu Drive](). - - - The features are in the `./data/feats` folder. - - 14x14 features, too large to share ... but we can extract from raw videos. - - **Download videos** - - - Raw videos (trimmed): Available at [Google Drive (50GB zipped)](http://www.google.com/) or [Baidu Drive (50GB zipped)](https://www.baidu.com/). - - - Download raw videos in the MUSIC-AVQA dataset. The downloaded videos will be in the `/data/video` folder. - - - Pandas and ffmpeg libraries are required. - - -3. **Data pre-processing** - - Extract audio waveforms from videos. The extracted audios will be in the `./data/audio` folder. `moviepy library` is used to read videos and extract audios. - - ```python - python feat_script/extract_audio_cues/extract_audio.py - ``` - - Extract video frames from videos. The extracted frames will be in the `data/frames` folder. - - ```python - python feat_script/extract_visual_frames/extract_frames_adaptive_script.py - ``` - -4. **Feature extraction** - - Audio feature. `TensorFlow1.4` and `VGGish pretrained on AudioSet` is required. Feature file also can be found from [here](). - - ```python - python feat_script/extract_audio_feat/audio_feature_extractor.py - ``` - - 2D visual feature. Pretrained models library is required. - - ```python - python feat_script/eatract_visual_feat/extract_rgb_feat.py - ``` - - 3D visual feature. - - ```python - python feat_script/eatract_visual_feat/extract_3d_feat.py - ``` - - 14x14 visual feature. - - ```python - python feat_script/extract_visual_feat_14x14/extract_14x14_feat.py - ``` - -5. **Baseline Model** - - Training - - ```python - python net_grd_baseline/main_qa_grd_baseline.py --mode train - ``` - - Testing - - ```python - python net_grd_baseline/main_qa_grd_baseline.py --mode test - ``` - -6. **Our Audio-Visual Spatial-Temporal Model** - - Audio-Visual grounding generation - - ```python - python grounding_gen/main_grd_gen.py - ``` - - Training - - ```python - python net_ours_avst/main_ours_avst.py --mode train - ``` - - Testing - - ```python - python net_ours_avst/main_ours_avst.py --mode test - ``` - - - -## Results - -1. **Audio-visual video question answering results** of different methods on the test set of MUSIC-AVQA. The top-2 results are highlighted. Please see the citations in the [[Paper]](https://ayameyao.github.io/MUSIC-AVQA/static/files/MUSIC-AVQA.pdf) for comparison methods. - -
- -
- - -2. **Visualized spatio-temporal grounding results** - - We provide several visualized spatial grounding results. The heatmap indicates the location of sounding source. Through the spatial grounding results, the sounding objects are visually captured, which can facilitate the spatial reasoning. - - Firstly, `./grounding_gen/models_grd_vis/` should be created. - - ```python - python grounding_gen/main_grd_gen_vis.py - ``` - -
- -
- - - - -## Citation - -If you find this work useful, please consider citing it. - -

-@ARTICLE{Li2022Learning,
-  title	= {Learning to Answer Questions in Dynamic Audio-Visual Scenarios},
-  author	= {Guangyao li, Yake Wei, Yapeng Tian, Chenliang Xu, Ji-Rong Wen, Di Hu},
-  journal	= {IEEE Conference on Computer Vision and Pattern Recognition (CVPR)},
-  year	= {2022},
-  Url	= {https://doi.org/10.1007/s11263-021-01531-2}
-}
-
- - - -## Acknowledgement - -This research was supported by Public Computing Cloud, Renmin University of China. - - - - -## License - -This project is released under the [GNU General Public License v3.0](https://github.com/Mukosame/Zooming-Slow-Mo-CVPR-2020/blob/master/LICENSE). - - - diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..cb3bf4a --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,136 @@ + + + + + + + + + {{ page.title }} + + + + + + + + + + + + + + + + + + + + +
+
+
+ +
+
+

Learning to Answer Questions in Dynamic Audio-Visual Scenarios

+

[Oral Presentation, CVPR2022]

+
+
    + Guangyao Li1,†, + Yake Wei1,†, + Yapeng Tian2,†, + Chenliang Xu2, + Ji-Rong Wen1, + Di Hu1,*
    + 1Renmin University of China, + 2University of Rochester +
+
+

+ [Paper]  + [Supplementary]  + [arXiv]  + [Poster]  + [Video-YouTube]  + [Video-Bilibili]  + [Code] +

+
+
+ + +
+
+
+ + + + + {{content}} + + + + + + + + + + + + + + + + + + diff --git a/data/json/avqa-test.json b/data/json/avqa-test.json deleted file mode 100644 index 835b8b5..0000000 --- a/data/json/avqa-test.json +++ /dev/null @@ -1,82667 +0,0 @@ -[ - { - "video_id": "00000093", - "question_id": 12, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000153", - "question_id": 13, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000086", - "question_id": 28, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000100", - "question_id": 35, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000023", - "question_id": 48, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000224", - "question_id": 55, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000217", - "question_id": 66, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000128", - "question_id": 73, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000153", - "question_id": 82, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000048", - "question_id": 83, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000226", - "question_id": 85, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000113", - "question_id": 89, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000017", - "question_id": 90, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000151", - "question_id": 93, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000045", - "question_id": 95, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000213", - "question_id": 96, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000291", - "question_id": 103, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000172", - "question_id": 108, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000201", - "question_id": 111, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000048", - "question_id": 112, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00000191", - "question_id": 116, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000030", - "question_id": 118, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000141", - "question_id": 122, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000249", - "question_id": 125, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000277", - "question_id": 127, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000176", - "question_id": 136, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000111", - "question_id": 139, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000071", - "question_id": 146, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000146", - "question_id": 155, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000082", - "question_id": 156, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000272", - "question_id": 160, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000224", - "question_id": 162, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000141", - "question_id": 169, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000012", - "question_id": 174, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000206", - "question_id": 184, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000195", - "question_id": 188, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000189", - "question_id": 190, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000026", - "question_id": 191, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000199", - "question_id": 198, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000296", - "question_id": 200, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000073", - "question_id": 201, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000036", - "question_id": 210, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000285", - "question_id": 213, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000368", - "question_id": 224, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007197", - "question_id": 225, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004394", - "question_id": 227, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000034", - "question_id": 235, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002565", - "question_id": 239, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004169", - "question_id": 240, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003311", - "question_id": 254, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002391", - "question_id": 260, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002936", - "question_id": 265, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004539", - "question_id": 267, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006428", - "question_id": 275, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00005593", - "question_id": 277, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008185", - "question_id": 281, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007086", - "question_id": 286, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002986", - "question_id": 288, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000563", - "question_id": 290, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006543", - "question_id": 295, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007924", - "question_id": 302, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008385", - "question_id": 312, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006334", - "question_id": 313, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002236", - "question_id": 318, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008170", - "question_id": 323, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008174", - "question_id": 324, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002572", - "question_id": 326, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003590", - "question_id": 329, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005064", - "question_id": 338, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006608", - "question_id": 339, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005615", - "question_id": 341, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002089", - "question_id": 347, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "eight" - }, - { - "video_id": "00004319", - "question_id": 350, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003963", - "question_id": 370, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004688", - "question_id": 375, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000900", - "question_id": 383, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "more than ten" - }, - { - "video_id": "00002165", - "question_id": 385, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006715", - "question_id": 387, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002514", - "question_id": 391, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001638", - "question_id": 395, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007636", - "question_id": 398, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007982", - "question_id": 400, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006646", - "question_id": 409, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007871", - "question_id": 412, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008779", - "question_id": 413, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000726", - "question_id": 417, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006991", - "question_id": 422, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007716", - "question_id": 431, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008424", - "question_id": 434, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001842", - "question_id": 441, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000480", - "question_id": 464, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003688", - "question_id": 468, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002705", - "question_id": 474, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001919", - "question_id": 496, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007128", - "question_id": 497, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002033", - "question_id": 498, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007490", - "question_id": 499, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008333", - "question_id": 500, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004691", - "question_id": 517, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000807", - "question_id": 523, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002998", - "question_id": 528, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004045", - "question_id": 535, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000252", - "question_id": 537, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001672", - "question_id": 543, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005868", - "question_id": 550, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001358", - "question_id": 554, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001927", - "question_id": 558, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003723", - "question_id": 560, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000747", - "question_id": 561, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008193", - "question_id": 564, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000181", - "question_id": 567, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005321", - "question_id": 571, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008601", - "question_id": 572, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006971", - "question_id": 578, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001690", - "question_id": 579, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000307", - "question_id": 581, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002156", - "question_id": 583, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005269", - "question_id": 590, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006520", - "question_id": 596, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008486", - "question_id": 597, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001405", - "question_id": 601, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001260", - "question_id": 608, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008035", - "question_id": 609, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005990", - "question_id": 615, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001284", - "question_id": 618, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005539", - "question_id": 635, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004794", - "question_id": 637, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000461", - "question_id": 640, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004146", - "question_id": 642, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002078", - "question_id": 644, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005377", - "question_id": 647, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007897", - "question_id": 650, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005406", - "question_id": 653, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001484", - "question_id": 660, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007116", - "question_id": 666, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007609", - "question_id": 672, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007315", - "question_id": 673, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001466", - "question_id": 693, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002248", - "question_id": 701, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002349", - "question_id": 714, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005045", - "question_id": 717, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001450", - "question_id": 718, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000993", - "question_id": 723, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008616", - "question_id": 737, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004846", - "question_id": 744, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006022", - "question_id": 753, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002696", - "question_id": 755, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002747", - "question_id": 759, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007671", - "question_id": 761, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005420", - "question_id": 764, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000326", - "question_id": 766, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004016", - "question_id": 767, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006346", - "question_id": 773, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008510", - "question_id": 774, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002152", - "question_id": 782, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003577", - "question_id": 783, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004315", - "question_id": 786, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002027", - "question_id": 789, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002796", - "question_id": 790, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006653", - "question_id": 791, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004562", - "question_id": 798, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002480", - "question_id": 809, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005697", - "question_id": 810, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002761", - "question_id": 813, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004794", - "question_id": 815, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007468", - "question_id": 818, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002430", - "question_id": 829, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006665", - "question_id": 843, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008032", - "question_id": 849, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006913", - "question_id": 851, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006359", - "question_id": 853, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008979", - "question_id": 856, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "more than ten" - }, - { - "video_id": "00004217", - "question_id": 857, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007770", - "question_id": 865, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003420", - "question_id": 870, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003582", - "question_id": 884, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002679", - "question_id": 885, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005152", - "question_id": 887, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005334", - "question_id": 891, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004155", - "question_id": 901, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002865", - "question_id": 906, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007212", - "question_id": 911, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007298", - "question_id": 915, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004477", - "question_id": 923, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003878", - "question_id": 927, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004003", - "question_id": 937, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000857", - "question_id": 939, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002212", - "question_id": 942, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000710", - "question_id": 943, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004731", - "question_id": 950, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007853", - "question_id": 951, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004938", - "question_id": 963, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008797", - "question_id": 966, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004233", - "question_id": 968, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001102", - "question_id": 977, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006264", - "question_id": 981, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00005776", - "question_id": 983, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001063", - "question_id": 984, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004065", - "question_id": 986, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004519", - "question_id": 990, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007834", - "question_id": 1000, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00003971", - "question_id": 1017, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004648", - "question_id": 1022, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005240", - "question_id": 1025, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001440", - "question_id": 1026, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001581", - "question_id": 1036, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "more than ten" - }, - { - "video_id": "00008339", - "question_id": 1038, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007242", - "question_id": 1043, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007227", - "question_id": 1046, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006299", - "question_id": 1049, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008131", - "question_id": 1052, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008667", - "question_id": 1057, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008392", - "question_id": 1067, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000936", - "question_id": 1069, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000311", - "question_id": 1074, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007938", - "question_id": 1079, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001641", - "question_id": 1090, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005886", - "question_id": 1092, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003212", - "question_id": 1096, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006375", - "question_id": 1099, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001177", - "question_id": 1103, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003432", - "question_id": 1113, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008274", - "question_id": 1117, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000529", - "question_id": 1119, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002325", - "question_id": 1120, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002293", - "question_id": 1127, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000768", - "question_id": 1128, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001646", - "question_id": 1130, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000871", - "question_id": 1132, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005778", - "question_id": 1138, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005778", - "question_id": 1138, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006142", - "question_id": 1150, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "nine" - }, - { - "video_id": "00000133", - "question_id": 1153, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007733", - "question_id": 1154, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003540", - "question_id": 1155, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006583", - "question_id": 1160, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005571", - "question_id": 1163, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003068", - "question_id": 1164, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003641", - "question_id": 1175, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006964", - "question_id": 1177, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005968", - "question_id": 1182, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001853", - "question_id": 1187, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000213", - "question_id": 1196, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000422", - "question_id": 1197, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008377", - "question_id": 1203, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004068", - "question_id": 1206, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002258", - "question_id": 1210, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00004410", - "question_id": 1219, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004410", - "question_id": 1219, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002060", - "question_id": 1221, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003847", - "question_id": 1223, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004132", - "question_id": 1227, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00001503", - "question_id": 1232, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000694", - "question_id": 1233, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003124", - "question_id": 1237, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004202", - "question_id": 1238, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007277", - "question_id": 1250, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006789", - "question_id": 1257, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003262", - "question_id": 1269, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007410", - "question_id": 1272, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000516", - "question_id": 1278, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005310", - "question_id": 1280, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000208", - "question_id": 1294, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00000415", - "question_id": 1305, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000522", - "question_id": 1317, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007859", - "question_id": 1323, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008414", - "question_id": 1326, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005850", - "question_id": 1327, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006412", - "question_id": 1331, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002374", - "question_id": 1343, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008133", - "question_id": 1354, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006524", - "question_id": 1365, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003868", - "question_id": 1367, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004494", - "question_id": 1370, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005691", - "question_id": 1373, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008730", - "question_id": 1375, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003079", - "question_id": 1384, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008543", - "question_id": 1388, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003370", - "question_id": 1390, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007364", - "question_id": 1392, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004923", - "question_id": 1393, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004283", - "question_id": 1395, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006549", - "question_id": 1403, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001476", - "question_id": 1413, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001476", - "question_id": 1413, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008051", - "question_id": 1415, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004814", - "question_id": 1417, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003731", - "question_id": 1424, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001386", - "question_id": 1427, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007893", - "question_id": 1430, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006563", - "question_id": 1431, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001533", - "question_id": 1432, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005003", - "question_id": 1440, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002790", - "question_id": 1442, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006211", - "question_id": 1452, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006040", - "question_id": 1453, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003643", - "question_id": 1462, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008294", - "question_id": 1464, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005535", - "question_id": 1470, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004225", - "question_id": 1475, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005755", - "question_id": 1484, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001317", - "question_id": 1487, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000309", - "question_id": 1490, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001189", - "question_id": 1514, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001182", - "question_id": 1515, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002098", - "question_id": 1529, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003392", - "question_id": 1534, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001801", - "question_id": 1538, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00008087", - "question_id": 1546, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002898", - "question_id": 1551, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005807", - "question_id": 1559, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001487", - "question_id": 1562, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005500", - "question_id": 1573, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000870", - "question_id": 1574, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001717", - "question_id": 1578, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000300", - "question_id": 1580, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004828", - "question_id": 1584, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000343", - "question_id": 1596, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005835", - "question_id": 1602, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007581", - "question_id": 1605, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000059", - "question_id": 1610, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007878", - "question_id": 1615, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005262", - "question_id": 1618, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006035", - "question_id": 1625, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004229", - "question_id": 1629, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006125", - "question_id": 1636, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005196", - "question_id": 1650, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000925", - "question_id": 1658, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008820", - "question_id": 1665, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008786", - "question_id": 1685, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003133", - "question_id": 1702, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007001", - "question_id": 1703, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003698", - "question_id": 1705, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005522", - "question_id": 1706, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002666", - "question_id": 1714, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001780", - "question_id": 1727, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001341", - "question_id": 1728, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007461", - "question_id": 1733, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001559", - "question_id": 1743, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000960", - "question_id": 1746, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006532", - "question_id": 1749, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002959", - "question_id": 1752, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002610", - "question_id": 1757, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006136", - "question_id": 1758, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000015", - "question_id": 1760, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001234", - "question_id": 1775, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008458", - "question_id": 1776, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004455", - "question_id": 1813, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001183", - "question_id": 1818, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000794", - "question_id": 1822, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004193", - "question_id": 1824, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002128", - "question_id": 1826, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001296", - "question_id": 1830, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001080", - "question_id": 1851, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002494", - "question_id": 1858, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003196", - "question_id": 1859, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006979", - "question_id": 1868, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002553", - "question_id": 1869, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004075", - "question_id": 1875, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000723", - "question_id": 1879, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007059", - "question_id": 1886, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005680", - "question_id": 1888, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00000317", - "question_id": 1892, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002468", - "question_id": 1893, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000060", - "question_id": 1900, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005876", - "question_id": 1903, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003927", - "question_id": 1918, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005754", - "question_id": 1923, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000738", - "question_id": 1925, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007547", - "question_id": 1928, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008825", - "question_id": 1931, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000820", - "question_id": 1951, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003996", - "question_id": 1954, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006053", - "question_id": 1955, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004010", - "question_id": 1966, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001682", - "question_id": 1969, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008437", - "question_id": 1977, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002394", - "question_id": 1979, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008117", - "question_id": 1982, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007792", - "question_id": 1983, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006374", - "question_id": 1991, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005938", - "question_id": 1994, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006485", - "question_id": 1995, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001768", - "question_id": 2000, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001573", - "question_id": 2001, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006916", - "question_id": 2015, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008144", - "question_id": 2021, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005479", - "question_id": 2024, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001542", - "question_id": 2026, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008954", - "question_id": 2032, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008352", - "question_id": 2044, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000679", - "question_id": 2047, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000787", - "question_id": 2053, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008505", - "question_id": 2057, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003509", - "question_id": 2058, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001115", - "question_id": 2067, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001788", - "question_id": 2075, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006358", - "question_id": 2082, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00005767", - "question_id": 2085, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008677", - "question_id": 2093, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002335", - "question_id": 2101, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007104", - "question_id": 2105, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002456", - "question_id": 2107, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008805", - "question_id": 2114, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007902", - "question_id": 2128, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005743", - "question_id": 2130, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001397", - "question_id": 2133, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008385", - "question_id": 2140, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001668", - "question_id": 2144, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005433", - "question_id": 2151, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008812", - "question_id": 2152, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001142", - "question_id": 2159, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002244", - "question_id": 2160, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007816", - "question_id": 2162, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000279", - "question_id": 2166, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002171", - "question_id": 2167, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000875", - "question_id": 2170, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007344", - "question_id": 2173, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002741", - "question_id": 2174, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004035", - "question_id": 2178, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007691", - "question_id": 2180, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002559", - "question_id": 2181, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002739", - "question_id": 2188, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003170", - "question_id": 2198, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006752", - "question_id": 2199, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006778", - "question_id": 2202, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002892", - "question_id": 2204, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002164", - "question_id": 2219, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007358", - "question_id": 2220, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002805", - "question_id": 2229, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000549", - "question_id": 2240, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005089", - "question_id": 2248, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007994", - "question_id": 2249, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006276", - "question_id": 2252, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007376", - "question_id": 2254, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003974", - "question_id": 2263, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007183", - "question_id": 2266, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008733", - "question_id": 2267, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004666", - "question_id": 2280, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005128", - "question_id": 2285, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004653", - "question_id": 2292, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006748", - "question_id": 2293, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008011", - "question_id": 2297, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005368", - "question_id": 2299, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007679", - "question_id": 2301, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008857", - "question_id": 2312, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008073", - "question_id": 2313, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007301", - "question_id": 2321, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003175", - "question_id": 2325, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006817", - "question_id": 2327, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003718", - "question_id": 2332, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001717", - "question_id": 2340, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006250", - "question_id": 2344, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001894", - "question_id": 2345, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001971", - "question_id": 2346, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006957", - "question_id": 2348, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004354", - "question_id": 2350, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008270", - "question_id": 2353, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002071", - "question_id": 2356, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003385", - "question_id": 2361, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008161", - "question_id": 2364, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008913", - "question_id": 2368, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002823", - "question_id": 2370, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007436", - "question_id": 2377, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002731", - "question_id": 2378, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000274", - "question_id": 2380, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000944", - "question_id": 2382, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000425", - "question_id": 2384, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000816", - "question_id": 2387, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006506", - "question_id": 2389, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008016", - "question_id": 2393, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008301", - "question_id": 2397, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001505", - "question_id": 2406, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001113", - "question_id": 2428, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003490", - "question_id": 2438, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002111", - "question_id": 2440, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001901", - "question_id": 2461, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001673", - "question_id": 2462, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003100", - "question_id": 2469, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006201", - "question_id": 2470, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001649", - "question_id": 2471, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000526", - "question_id": 2480, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005249", - "question_id": 2481, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004624", - "question_id": 2483, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006500", - "question_id": 2500, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000003", - "question_id": 2501, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000385", - "question_id": 2507, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001910", - "question_id": 2516, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003563", - "question_id": 2518, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000583", - "question_id": 2520, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004389", - "question_id": 2527, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002407", - "question_id": 2531, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00003085", - "question_id": 2535, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008587", - "question_id": 2537, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006803", - "question_id": 2542, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00005902", - "question_id": 2555, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000133", - "question_id": 2558, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008864", - "question_id": 2569, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000506", - "question_id": 2572, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001464", - "question_id": 2575, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000688", - "question_id": 2576, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002313", - "question_id": 2587, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004060", - "question_id": 2595, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003224", - "question_id": 2603, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004524", - "question_id": 2608, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001283", - "question_id": 2609, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001220", - "question_id": 2610, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000408", - "question_id": 2614, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002044", - "question_id": 2616, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001442", - "question_id": 2620, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008154", - "question_id": 2621, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004598", - "question_id": 2628, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006923", - "question_id": 2633, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000648", - "question_id": 2646, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004120", - "question_id": 2649, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003922", - "question_id": 2653, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004988", - "question_id": 2656, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007269", - "question_id": 2658, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00004840", - "question_id": 2667, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008916", - "question_id": 2670, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007630", - "question_id": 2675, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008076", - "question_id": 2678, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003436", - "question_id": 2679, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003072", - "question_id": 2681, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000704", - "question_id": 2682, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001902", - "question_id": 2684, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00004373", - "question_id": 2686, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004578", - "question_id": 2687, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006878", - "question_id": 2693, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003452", - "question_id": 2695, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005269", - "question_id": 2707, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004918", - "question_id": 2722, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007763", - "question_id": 2724, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001338", - "question_id": 2730, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001290", - "question_id": 2748, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001012", - "question_id": 2757, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002671", - "question_id": 2766, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008759", - "question_id": 2768, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001046", - "question_id": 2771, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000830", - "question_id": 2784, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002946", - "question_id": 2795, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002649", - "question_id": 2797, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005735", - "question_id": 2800, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008627", - "question_id": 2802, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002665", - "question_id": 2804, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008021", - "question_id": 2812, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002249", - "question_id": 2816, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002143", - "question_id": 2818, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003958", - "question_id": 2821, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006955", - "question_id": 2831, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008688", - "question_id": 2835, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006171", - "question_id": 2851, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003067", - "question_id": 2866, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000253", - "question_id": 2872, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007185", - "question_id": 2874, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003116", - "question_id": 2892, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005280", - "question_id": 2894, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004642", - "question_id": 2900, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003452", - "question_id": 2909, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008756", - "question_id": 2911, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008918", - "question_id": 2912, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00003158", - "question_id": 2914, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004099", - "question_id": 2919, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001550", - "question_id": 2922, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003648", - "question_id": 2927, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001158", - "question_id": 2931, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006321", - "question_id": 2932, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004552", - "question_id": 2937, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002335", - "question_id": 2939, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000441", - "question_id": 2944, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000823", - "question_id": 2945, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003470", - "question_id": 2946, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004562", - "question_id": 2953, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003304", - "question_id": 2954, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005973", - "question_id": 2958, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005973", - "question_id": 2958, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003997", - "question_id": 2961, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003467", - "question_id": 2966, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001985", - "question_id": 2973, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00008178", - "question_id": 2982, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000944", - "question_id": 2985, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008689", - "question_id": 2990, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003187", - "question_id": 3004, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000012", - "question_id": 3009, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008967", - "question_id": 3010, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001335", - "question_id": 3012, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002879", - "question_id": 3016, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008790", - "question_id": 3019, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006675", - "question_id": 3022, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007224", - "question_id": 3027, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001666", - "question_id": 3028, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004813", - "question_id": 3032, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008241", - "question_id": 3034, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005023", - "question_id": 3035, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006986", - "question_id": 3050, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006325", - "question_id": 3056, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004222", - "question_id": 3074, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001940", - "question_id": 3085, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007124", - "question_id": 3086, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005550", - "question_id": 3089, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007113", - "question_id": 3093, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007952", - "question_id": 3094, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001586", - "question_id": 3097, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005370", - "question_id": 3098, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006948", - "question_id": 3111, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005430", - "question_id": 3114, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005298", - "question_id": 3120, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004327", - "question_id": 3125, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004264", - "question_id": 3143, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007269", - "question_id": 3145, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003949", - "question_id": 3150, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007513", - "question_id": 3155, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001596", - "question_id": 3156, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007349", - "question_id": 3159, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006840", - "question_id": 3166, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006638", - "question_id": 3171, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006906", - "question_id": 3174, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008689", - "question_id": 3191, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005840", - "question_id": 3205, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007831", - "question_id": 3212, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001073", - "question_id": 3213, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006190", - "question_id": 3217, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003249", - "question_id": 3221, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005853", - "question_id": 3229, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007665", - "question_id": 3230, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003358", - "question_id": 3243, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006279", - "question_id": 3244, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001955", - "question_id": 3247, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000269", - "question_id": 3252, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004135", - "question_id": 3254, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005710", - "question_id": 3260, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007335", - "question_id": 3266, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008644", - "question_id": 3268, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008228", - "question_id": 3270, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006157", - "question_id": 3273, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000670", - "question_id": 3279, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001753", - "question_id": 3280, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004345", - "question_id": 3283, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004877", - "question_id": 3285, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003537", - "question_id": 3287, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005922", - "question_id": 3293, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001102", - "question_id": 3299, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006017", - "question_id": 3304, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006751", - "question_id": 3322, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004429", - "question_id": 3324, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003776", - "question_id": 3327, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003576", - "question_id": 3335, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008210", - "question_id": 3345, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008109", - "question_id": 3358, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006368", - "question_id": 3361, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001015", - "question_id": 3368, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004176", - "question_id": 3388, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000706", - "question_id": 3395, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007307", - "question_id": 3397, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005548", - "question_id": 3399, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002636", - "question_id": 3402, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000924", - "question_id": 3404, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003999", - "question_id": 3406, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007523", - "question_id": 3411, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001914", - "question_id": 3412, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003623", - "question_id": 3415, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003014", - "question_id": 3416, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008199", - "question_id": 3428, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004722", - "question_id": 3438, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006793", - "question_id": 3447, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005058", - "question_id": 3457, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000501", - "question_id": 3463, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005030", - "question_id": 3472, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005790", - "question_id": 3476, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002342", - "question_id": 3489, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004247", - "question_id": 3497, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001142", - "question_id": 3503, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006239", - "question_id": 3508, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000719", - "question_id": 3510, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003940", - "question_id": 3515, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001317", - "question_id": 3520, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001690", - "question_id": 3527, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00002578", - "question_id": 3531, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005868", - "question_id": 3533, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003023", - "question_id": 3534, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005182", - "question_id": 3536, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004820", - "question_id": 3540, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001249", - "question_id": 3541, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002658", - "question_id": 3542, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006261", - "question_id": 3545, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008128", - "question_id": 3561, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007159", - "question_id": 3564, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001311", - "question_id": 3567, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005290", - "question_id": 3568, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000494", - "question_id": 3575, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001617", - "question_id": 3578, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002336", - "question_id": 3582, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005450", - "question_id": 3583, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006935", - "question_id": 3584, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008832", - "question_id": 3585, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000290", - "question_id": 3596, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003107", - "question_id": 3597, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006292", - "question_id": 3599, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007004", - "question_id": 3607, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008659", - "question_id": 3608, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005082", - "question_id": 3610, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004291", - "question_id": 3611, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002115", - "question_id": 3628, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004751", - "question_id": 3633, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008328", - "question_id": 3634, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002869", - "question_id": 3635, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001158", - "question_id": 3636, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007012", - "question_id": 3650, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005126", - "question_id": 3668, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004403", - "question_id": 3686, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001799", - "question_id": 3691, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002912", - "question_id": 3697, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002733", - "question_id": 3701, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003868", - "question_id": 3703, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006861", - "question_id": 3714, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002504", - "question_id": 3721, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002318", - "question_id": 3737, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005172", - "question_id": 3742, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000907", - "question_id": 3753, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004864", - "question_id": 3759, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008241", - "question_id": 3763, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002208", - "question_id": 3774, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001700", - "question_id": 3777, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004739", - "question_id": 3786, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002021", - "question_id": 3787, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007409", - "question_id": 3790, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000475", - "question_id": 3791, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004976", - "question_id": 3797, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007173", - "question_id": 3798, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000390", - "question_id": 3799, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000054", - "question_id": 3802, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002904", - "question_id": 3803, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00005555", - "question_id": 3809, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00007965", - "question_id": 3810, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002205", - "question_id": 3811, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001592", - "question_id": 3820, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001208", - "question_id": 3823, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007050", - "question_id": 3835, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003552", - "question_id": 3837, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005398", - "question_id": 3846, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004161", - "question_id": 3853, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005440", - "question_id": 3854, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007652", - "question_id": 3857, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005202", - "question_id": 3863, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003949", - "question_id": 3865, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004429", - "question_id": 3870, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007806", - "question_id": 3871, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007998", - "question_id": 3872, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003288", - "question_id": 3874, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001424", - "question_id": 3877, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008791", - "question_id": 3882, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00002004", - "question_id": 3884, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00002240", - "question_id": 3886, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007152", - "question_id": 3889, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003458", - "question_id": 3896, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004604", - "question_id": 3900, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005230", - "question_id": 3917, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002190", - "question_id": 3920, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004506", - "question_id": 3934, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003708", - "question_id": 3936, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003653", - "question_id": 3939, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004464", - "question_id": 3941, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002951", - "question_id": 3952, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001749", - "question_id": 3953, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003859", - "question_id": 3954, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003912", - "question_id": 3956, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007652", - "question_id": 3958, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006933", - "question_id": 3959, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001705", - "question_id": 3961, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005570", - "question_id": 3962, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002835", - "question_id": 3965, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005948", - "question_id": 3969, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005093", - "question_id": 3975, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000067", - "question_id": 3978, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003818", - "question_id": 3983, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006297", - "question_id": 3986, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005836", - "question_id": 3989, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002439", - "question_id": 4005, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007202", - "question_id": 4009, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000732", - "question_id": 4018, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003859", - "question_id": 4030, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005757", - "question_id": 4038, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004606", - "question_id": 4047, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000247", - "question_id": 4054, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002476", - "question_id": 4061, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001068", - "question_id": 4073, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006153", - "question_id": 4075, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002653", - "question_id": 4079, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003368", - "question_id": 4080, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001250", - "question_id": 4081, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000655", - "question_id": 4087, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003795", - "question_id": 4093, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007220", - "question_id": 4095, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003759", - "question_id": 4097, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007990", - "question_id": 4099, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004974", - "question_id": 4112, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004075", - "question_id": 4116, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003402", - "question_id": 4121, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00003788", - "question_id": 4127, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003367", - "question_id": 4128, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006438", - "question_id": 4143, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"banjo\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005563", - "question_id": 4146, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005077", - "question_id": 4164, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001608", - "question_id": 4165, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002323", - "question_id": 4169, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007608", - "question_id": 4173, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005018", - "question_id": 4178, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007944", - "question_id": 4182, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005251", - "question_id": 4183, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003253", - "question_id": 4190, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001430", - "question_id": 4207, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007839", - "question_id": 4212, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00005650", - "question_id": 4217, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007911", - "question_id": 4222, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008787", - "question_id": 4230, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00006817", - "question_id": 4233, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008550", - "question_id": 4236, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003119", - "question_id": 4240, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008726", - "question_id": 4243, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005640", - "question_id": 4250, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000159", - "question_id": 4252, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000727", - "question_id": 4264, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008090", - "question_id": 4272, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007426", - "question_id": 4277, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001427", - "question_id": 4281, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002759", - "question_id": 4286, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007465", - "question_id": 4291, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000825", - "question_id": 4294, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007094", - "question_id": 4304, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004842", - "question_id": 4305, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008954", - "question_id": 4314, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007634", - "question_id": 4317, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006642", - "question_id": 4320, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006861", - "question_id": 4323, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005989", - "question_id": 4324, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006710", - "question_id": 4325, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006950", - "question_id": 4338, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00008839", - "question_id": 4341, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008126", - "question_id": 4342, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006001", - "question_id": 4359, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001539", - "question_id": 4361, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004476", - "question_id": 4370, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003751", - "question_id": 4376, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004266", - "question_id": 4387, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00008161", - "question_id": 4400, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00004676", - "question_id": 4419, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008910", - "question_id": 4429, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000999", - "question_id": 4431, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007880", - "question_id": 4436, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005616", - "question_id": 4441, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003427", - "question_id": 4444, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007559", - "question_id": 4445, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00003161", - "question_id": 4452, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003161", - "question_id": 4452, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006875", - "question_id": 4457, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000451", - "question_id": 4461, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000451", - "question_id": 4461, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000868", - "question_id": 4464, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003103", - "question_id": 4469, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006316", - "question_id": 4472, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006771", - "question_id": 4476, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005847", - "question_id": 4481, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005979", - "question_id": 4482, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006238", - "question_id": 4491, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006459", - "question_id": 4501, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005493", - "question_id": 4502, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006392", - "question_id": 4504, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005704", - "question_id": 4506, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000774", - "question_id": 4510, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006105", - "question_id": 4520, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008615", - "question_id": 4529, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002847", - "question_id": 4539, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005795", - "question_id": 4540, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00007070", - "question_id": 4545, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008130", - "question_id": 4546, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001331", - "question_id": 4547, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00001813", - "question_id": 4558, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002079", - "question_id": 4573, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000917", - "question_id": 4574, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000823", - "question_id": 4579, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001858", - "question_id": 4584, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007706", - "question_id": 4591, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000844", - "question_id": 4599, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00004735", - "question_id": 4608, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001766", - "question_id": 4610, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005013", - "question_id": 4616, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006814", - "question_id": 4622, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004001", - "question_id": 4626, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001704", - "question_id": 4627, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001830", - "question_id": 4635, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003056", - "question_id": 4637, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006835", - "question_id": 4639, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007717", - "question_id": 4641, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007717", - "question_id": 4641, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004853", - "question_id": 4643, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000108", - "question_id": 4651, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007835", - "question_id": 4654, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003232", - "question_id": 4665, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00000028", - "question_id": 4670, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000114", - "question_id": 4676, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000053", - "question_id": 4677, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006190", - "question_id": 4683, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008969", - "question_id": 4689, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"last\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005396", - "question_id": 4690, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000778", - "question_id": 4692, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001841", - "question_id": 4701, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005242", - "question_id": 4714, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008121", - "question_id": 4719, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00004508", - "question_id": 4721, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007468", - "question_id": 4727, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002128", - "question_id": 4728, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000489", - "question_id": 4730, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001361", - "question_id": 4732, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005955", - "question_id": 4734, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003526", - "question_id": 4735, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005637", - "question_id": 4736, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001450", - "question_id": 4740, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002117", - "question_id": 4753, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003722", - "question_id": 4756, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003132", - "question_id": 4767, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007364", - "question_id": 4770, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000234", - "question_id": 4775, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006708", - "question_id": 4797, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006589", - "question_id": 4798, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006071", - "question_id": 4801, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003037", - "question_id": 4812, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007143", - "question_id": 4815, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008324", - "question_id": 4828, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004774", - "question_id": 4829, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00000901", - "question_id": 4830, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002836", - "question_id": 4831, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00001073", - "question_id": 4832, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008016", - "question_id": 4838, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00003454", - "question_id": 4839, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000023", - "question_id": 4859, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003077", - "question_id": 4862, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008788", - "question_id": 4872, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005325", - "question_id": 4876, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002649", - "question_id": 4888, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000438", - "question_id": 4893, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008011", - "question_id": 4899, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007293", - "question_id": 4913, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001001", - "question_id": 4921, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001911", - "question_id": 4932, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003168", - "question_id": 4935, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"drum\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00003506", - "question_id": 4942, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008918", - "question_id": 4946, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005542", - "question_id": 4959, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000043", - "question_id": 4964, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005283", - "question_id": 4976, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003658", - "question_id": 4979, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001708", - "question_id": 4985, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005199", - "question_id": 4987, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007707", - "question_id": 4988, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003050", - "question_id": 5004, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008843", - "question_id": 5006, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007558", - "question_id": 5007, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002236", - "question_id": 5009, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006354", - "question_id": 5018, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004483", - "question_id": 5022, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002763", - "question_id": 5025, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008157", - "question_id": 5026, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003936", - "question_id": 5029, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004704", - "question_id": 5034, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001535", - "question_id": 5037, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003406", - "question_id": 5039, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008734", - "question_id": 5043, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007625", - "question_id": 5046, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007777", - "question_id": 5049, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005659", - "question_id": 5050, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007875", - "question_id": 5053, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003164", - "question_id": 5054, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001370", - "question_id": 5059, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002176", - "question_id": 5063, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006687", - "question_id": 5069, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003226", - "question_id": 5095, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004332", - "question_id": 5098, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007132", - "question_id": 5100, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001588", - "question_id": 5102, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006952", - "question_id": 5105, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002708", - "question_id": 5109, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003857", - "question_id": 5115, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000352", - "question_id": 5146, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004080", - "question_id": 5159, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000528", - "question_id": 5172, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006988", - "question_id": 5175, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001325", - "question_id": 5181, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003855", - "question_id": 5184, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007236", - "question_id": 5191, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002337", - "question_id": 5204, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000220", - "question_id": 5206, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007313", - "question_id": 5209, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004865", - "question_id": 5211, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007766", - "question_id": 5216, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004141", - "question_id": 5218, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001730", - "question_id": 5222, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004568", - "question_id": 5233, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008214", - "question_id": 5249, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005119", - "question_id": 5250, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001197", - "question_id": 5251, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008796", - "question_id": 5275, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003199", - "question_id": 5282, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008396", - "question_id": 5287, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00003611", - "question_id": 5290, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005620", - "question_id": 5291, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007431", - "question_id": 5296, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002825", - "question_id": 5297, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005014", - "question_id": 5302, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002139", - "question_id": 5304, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008941", - "question_id": 5306, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007348", - "question_id": 5317, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bagpipe\", \"middle\", \"electric_bass\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007030", - "question_id": 5321, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003230", - "question_id": 5333, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004012", - "question_id": 5345, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004929", - "question_id": 5354, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00006494", - "question_id": 5355, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004667", - "question_id": 5356, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00001252", - "question_id": 5360, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004407", - "question_id": 5362, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003423", - "question_id": 5363, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007929", - "question_id": 5367, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001972", - "question_id": 5370, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002945", - "question_id": 5374, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000543", - "question_id": 5377, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005225", - "question_id": 5381, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"banjo\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000877", - "question_id": 5389, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000705", - "question_id": 5394, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003181", - "question_id": 5397, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006491", - "question_id": 5401, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004029", - "question_id": 5406, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006669", - "question_id": 5409, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008364", - "question_id": 5436, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004480", - "question_id": 5452, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004368", - "question_id": 5453, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"congas\", \"left\", \"congas\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000781", - "question_id": 5461, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006977", - "question_id": 5474, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003687", - "question_id": 5478, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000612", - "question_id": 5481, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003485", - "question_id": 5482, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007737", - "question_id": 5486, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007579", - "question_id": 5487, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006146", - "question_id": 5497, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006449", - "question_id": 5505, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000489", - "question_id": 5527, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003033", - "question_id": 5532, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007045", - "question_id": 5533, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008396", - "question_id": 5538, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000798", - "question_id": 5543, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007737", - "question_id": 5544, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003505", - "question_id": 5546, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002996", - "question_id": 5560, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006067", - "question_id": 5564, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007787", - "question_id": 5565, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00003550", - "question_id": 5567, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001949", - "question_id": 5575, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001312", - "question_id": 5580, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002237", - "question_id": 5582, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001115", - "question_id": 5588, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006353", - "question_id": 5595, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008340", - "question_id": 5596, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005884", - "question_id": 5597, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00006805", - "question_id": 5600, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002611", - "question_id": 5607, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002808", - "question_id": 5609, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004064", - "question_id": 5614, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000226", - "question_id": 5619, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004275", - "question_id": 5622, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002475", - "question_id": 5628, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003213", - "question_id": 5635, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004668", - "question_id": 5641, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004104", - "question_id": 5646, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003861", - "question_id": 5651, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003302", - "question_id": 5652, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004912", - "question_id": 5655, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00002994", - "question_id": 5656, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004765", - "question_id": 5658, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004882", - "question_id": 5659, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00000326", - "question_id": 5663, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001877", - "question_id": 5665, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002485", - "question_id": 5668, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002485", - "question_id": 5668, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002397", - "question_id": 5672, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008027", - "question_id": 5673, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008228", - "question_id": 5680, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007141", - "question_id": 5683, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001014", - "question_id": 5686, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008879", - "question_id": 5687, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005562", - "question_id": 5699, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001723", - "question_id": 5702, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00002159", - "question_id": 5713, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007005", - "question_id": 5716, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005246", - "question_id": 5717, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002584", - "question_id": 5718, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006166", - "question_id": 5739, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000002", - "question_id": 5768, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001476", - "question_id": 5780, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000961", - "question_id": 5788, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001143", - "question_id": 5791, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001015", - "question_id": 5803, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002220", - "question_id": 5805, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005612", - "question_id": 5811, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001152", - "question_id": 5814, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000951", - "question_id": 5819, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006828", - "question_id": 5820, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006145", - "question_id": 5822, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002672", - "question_id": 5827, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003757", - "question_id": 5829, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004841", - "question_id": 5830, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001700", - "question_id": 5833, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004396", - "question_id": 5844, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005861", - "question_id": 5853, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003179", - "question_id": 5856, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007812", - "question_id": 5858, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002932", - "question_id": 5859, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003479", - "question_id": 5860, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001474", - "question_id": 5864, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000784", - "question_id": 5865, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003143", - "question_id": 5866, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006654", - "question_id": 5872, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008701", - "question_id": 5877, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004230", - "question_id": 5880, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008926", - "question_id": 5888, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002294", - "question_id": 5892, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008668", - "question_id": 5905, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005176", - "question_id": 5914, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003321", - "question_id": 5926, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005417", - "question_id": 5938, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005431", - "question_id": 5942, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008564", - "question_id": 5952, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008668", - "question_id": 5953, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006559", - "question_id": 5954, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003618", - "question_id": 5957, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001038", - "question_id": 5961, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007656", - "question_id": 5974, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003633", - "question_id": 5991, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006191", - "question_id": 5995, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002809", - "question_id": 5999, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007483", - "question_id": 6005, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008668", - "question_id": 6007, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003007", - "question_id": 6012, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008680", - "question_id": 6013, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007913", - "question_id": 6016, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008364", - "question_id": 6020, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005747", - "question_id": 6021, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007210", - "question_id": 6023, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002696", - "question_id": 6027, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000243", - "question_id": 6031, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000604", - "question_id": 6040, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003920", - "question_id": 6049, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006630", - "question_id": 6052, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005856", - "question_id": 6070, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008606", - "question_id": 6072, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006848", - "question_id": 6073, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001373", - "question_id": 6076, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00000075", - "question_id": 6085, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004775", - "question_id": 6090, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006729", - "question_id": 6096, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002635", - "question_id": 6107, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000640", - "question_id": 6108, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001071", - "question_id": 6116, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004630", - "question_id": 6123, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"acoustic_guitar\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002370", - "question_id": 6127, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002370", - "question_id": 6127, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008861", - "question_id": 6133, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005106", - "question_id": 6135, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003148", - "question_id": 6136, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005832", - "question_id": 6148, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00007397", - "question_id": 6150, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005095", - "question_id": 6151, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00000831", - "question_id": 6182, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002355", - "question_id": 6187, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007137", - "question_id": 6197, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001962", - "question_id": 6202, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004196", - "question_id": 6209, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005092", - "question_id": 6225, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008831", - "question_id": 6243, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005671", - "question_id": 6246, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"congas\", \"right\", \"xylophone\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004457", - "question_id": 6247, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006303", - "question_id": 6260, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003707", - "question_id": 6266, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001404", - "question_id": 6272, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004423", - "question_id": 6278, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001569", - "question_id": 6281, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00005020", - "question_id": 6284, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008424", - "question_id": 6287, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004718", - "question_id": 6293, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007820", - "question_id": 6295, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003803", - "question_id": 6303, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00008103", - "question_id": 6306, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001024", - "question_id": 6308, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001197", - "question_id": 6313, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003463", - "question_id": 6321, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006470", - "question_id": 6324, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008481", - "question_id": 6327, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008162", - "question_id": 6339, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003434", - "question_id": 6343, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00000243", - "question_id": 6365, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004886", - "question_id": 6368, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001536", - "question_id": 6371, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002205", - "question_id": 6387, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000168", - "question_id": 6392, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004113", - "question_id": 6397, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"fifth\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00006217", - "question_id": 6400, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003098", - "question_id": 6408, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008361", - "question_id": 6410, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00002115", - "question_id": 6413, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007980", - "question_id": 6419, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008813", - "question_id": 6421, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001523", - "question_id": 6422, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000973", - "question_id": 6423, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001442", - "question_id": 6429, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004998", - "question_id": 6432, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006481", - "question_id": 6435, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008808", - "question_id": 6438, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008912", - "question_id": 6443, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000696", - "question_id": 6447, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003338", - "question_id": 6448, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000054", - "question_id": 6457, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004437", - "question_id": 6467, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004437", - "question_id": 6467, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005636", - "question_id": 6468, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006074", - "question_id": 6469, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003254", - "question_id": 6473, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000474", - "question_id": 6476, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002304", - "question_id": 6478, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007182", - "question_id": 6480, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00002470", - "question_id": 6489, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007806", - "question_id": 6494, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003605", - "question_id": 6495, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"fourth\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00007632", - "question_id": 6497, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008207", - "question_id": 6500, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001094", - "question_id": 6503, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003316", - "question_id": 6504, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003230", - "question_id": 6517, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008844", - "question_id": 6521, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005152", - "question_id": 6543, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008147", - "question_id": 6551, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003280", - "question_id": 6556, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005368", - "question_id": 6560, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004958", - "question_id": 6561, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008232", - "question_id": 6563, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002154", - "question_id": 6566, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00008932", - "question_id": 6573, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005142", - "question_id": 6578, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00003863", - "question_id": 6585, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00007515", - "question_id": 6587, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007022", - "question_id": 6590, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00006966", - "question_id": 6591, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00008507", - "question_id": 6615, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003782", - "question_id": 6618, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001400", - "question_id": 6620, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00007661", - "question_id": 6622, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001515", - "question_id": 6623, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00002847", - "question_id": 6641, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000340", - "question_id": 6651, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00004350", - "question_id": 6657, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008471", - "question_id": 6675, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00007096", - "question_id": 6678, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008124", - "question_id": 6681, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002420", - "question_id": 6686, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007760", - "question_id": 6697, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008044", - "question_id": 6703, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005207", - "question_id": 6709, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003449", - "question_id": 6712, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002242", - "question_id": 6721, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007169", - "question_id": 6724, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004635", - "question_id": 6725, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003257", - "question_id": 6727, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006121", - "question_id": 6733, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002119", - "question_id": 6734, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000170", - "question_id": 6738, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004386", - "question_id": 6751, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000786", - "question_id": 6760, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005327", - "question_id": 6768, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008267", - "question_id": 6769, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004416", - "question_id": 6780, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00007820", - "question_id": 6788, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004746", - "question_id": 6792, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006656", - "question_id": 6794, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000761", - "question_id": 6825, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006648", - "question_id": 6829, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008501", - "question_id": 6833, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004573", - "question_id": 6834, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00003789", - "question_id": 6835, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003354", - "question_id": 6845, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006213", - "question_id": 6848, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000083", - "question_id": 6853, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007290", - "question_id": 6854, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001519", - "question_id": 6865, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002161", - "question_id": 6866, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00008886", - "question_id": 6870, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00006223", - "question_id": 6872, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004084", - "question_id": 6876, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002900", - "question_id": 6887, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00005543", - "question_id": 6888, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000246", - "question_id": 6889, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001115", - "question_id": 6892, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004359", - "question_id": 6894, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000418", - "question_id": 6900, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008637", - "question_id": 6909, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006865", - "question_id": 6911, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002869", - "question_id": 6912, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003925", - "question_id": 6918, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002206", - "question_id": 6922, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004644", - "question_id": 6923, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000329", - "question_id": 6924, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"violin\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000479", - "question_id": 6925, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004070", - "question_id": 6937, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002910", - "question_id": 6941, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008526", - "question_id": 6973, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008573", - "question_id": 6981, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002033", - "question_id": 6983, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008418", - "question_id": 6992, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002979", - "question_id": 6996, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002836", - "question_id": 7006, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006618", - "question_id": 7009, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00000334", - "question_id": 7010, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006163", - "question_id": 7016, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000362", - "question_id": 7025, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000963", - "question_id": 7030, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001042", - "question_id": 7031, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006995", - "question_id": 7032, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001538", - "question_id": 7037, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003535", - "question_id": 7054, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003596", - "question_id": 7059, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004183", - "question_id": 7079, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"right\", \"erhu\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003408", - "question_id": 7088, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008949", - "question_id": 7102, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004127", - "question_id": 7104, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000950", - "question_id": 7107, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004563", - "question_id": 7112, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004807", - "question_id": 7120, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007348", - "question_id": 7132, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007121", - "question_id": 7133, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00003470", - "question_id": 7136, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007731", - "question_id": 7137, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008750", - "question_id": 7138, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005824", - "question_id": 7139, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008828", - "question_id": 7143, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004907", - "question_id": 7151, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007423", - "question_id": 7162, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005245", - "question_id": 7164, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007616", - "question_id": 7182, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00005640", - "question_id": 7184, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008105", - "question_id": 7185, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006600", - "question_id": 7195, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008446", - "question_id": 7198, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006461", - "question_id": 7199, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"clarinet\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002662", - "question_id": 7200, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004825", - "question_id": 7209, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004619", - "question_id": 7213, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005876", - "question_id": 7222, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000710", - "question_id": 7228, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "more than ten" - }, - { - "video_id": "00008901", - "question_id": 7229, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001385", - "question_id": 7231, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002359", - "question_id": 7237, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007915", - "question_id": 7245, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001313", - "question_id": 7252, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002013", - "question_id": 7253, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000852", - "question_id": 7260, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000028", - "question_id": 7267, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006929", - "question_id": 7268, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003410", - "question_id": 7270, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004766", - "question_id": 7278, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000806", - "question_id": 7280, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007191", - "question_id": 7284, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008318", - "question_id": 7293, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000565", - "question_id": 7294, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004128", - "question_id": 7297, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000021", - "question_id": 7304, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00006047", - "question_id": 7313, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008111", - "question_id": 7327, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002606", - "question_id": 7334, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001716", - "question_id": 7342, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008370", - "question_id": 7343, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006907", - "question_id": 7347, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001261", - "question_id": 7352, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001516", - "question_id": 7354, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003561", - "question_id": 7356, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00000680", - "question_id": 7357, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"middle\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005604", - "question_id": 7358, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006800", - "question_id": 7362, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005485", - "question_id": 7367, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00006621", - "question_id": 7369, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003250", - "question_id": 7384, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002664", - "question_id": 7386, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005973", - "question_id": 7412, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000189", - "question_id": 7415, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002109", - "question_id": 7422, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"right\", \"erhu\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005740", - "question_id": 7429, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000175", - "question_id": 7457, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005530", - "question_id": 7468, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005311", - "question_id": 7476, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00004124", - "question_id": 7478, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000963", - "question_id": 7482, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006505", - "question_id": 7487, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005967", - "question_id": 7496, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00008109", - "question_id": 7500, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000897", - "question_id": 7503, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003040", - "question_id": 7509, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004707", - "question_id": 7517, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007502", - "question_id": 7518, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000186", - "question_id": 7521, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007760", - "question_id": 7537, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008830", - "question_id": 7540, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002596", - "question_id": 7561, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004178", - "question_id": 7564, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00003611", - "question_id": 7567, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003225", - "question_id": 7577, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00003842", - "question_id": 7584, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004900", - "question_id": 7598, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000413", - "question_id": 7603, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002237", - "question_id": 7616, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002298", - "question_id": 7620, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003042", - "question_id": 7621, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008203", - "question_id": 7622, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00008392", - "question_id": 7624, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006850", - "question_id": 7627, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000234", - "question_id": 7628, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008403", - "question_id": 7631, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000169", - "question_id": 7646, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000583", - "question_id": 7649, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004448", - "question_id": 7652, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00000360", - "question_id": 7668, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003450", - "question_id": 7684, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002974", - "question_id": 7697, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005672", - "question_id": 7698, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001080", - "question_id": 7702, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003218", - "question_id": 7703, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005196", - "question_id": 7704, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003805", - "question_id": 7707, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008340", - "question_id": 7712, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002470", - "question_id": 7713, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004360", - "question_id": 7715, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007846", - "question_id": 7716, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003283", - "question_id": 7718, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000961", - "question_id": 7725, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001305", - "question_id": 7726, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003957", - "question_id": 7731, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006191", - "question_id": 7738, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001222", - "question_id": 7740, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006719", - "question_id": 7745, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007176", - "question_id": 7750, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006087", - "question_id": 7763, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006003", - "question_id": 7765, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005376", - "question_id": 7767, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006620", - "question_id": 7772, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000717", - "question_id": 7774, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001233", - "question_id": 7778, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005075", - "question_id": 7792, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003520", - "question_id": 7798, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004489", - "question_id": 7803, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00008522", - "question_id": 7806, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004460", - "question_id": 7810, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007908", - "question_id": 7821, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000294", - "question_id": 7825, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006329", - "question_id": 7826, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00008173", - "question_id": 7829, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003097", - "question_id": 7835, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00008551", - "question_id": 7838, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000148", - "question_id": 7839, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003441", - "question_id": 7843, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006465", - "question_id": 7849, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00005547", - "question_id": 7855, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"first\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00007856", - "question_id": 7859, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007825", - "question_id": 7866, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006804", - "question_id": 7872, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005064", - "question_id": 7875, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00008276", - "question_id": 7890, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00005386", - "question_id": 7893, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003606", - "question_id": 7895, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00003938", - "question_id": 7897, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000977", - "question_id": 7898, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000539", - "question_id": 7905, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005648", - "question_id": 7925, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002758", - "question_id": 7927, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004563", - "question_id": 7935, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006836", - "question_id": 7936, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004616", - "question_id": 7945, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002397", - "question_id": 7949, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001571", - "question_id": 7951, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00005541", - "question_id": 7952, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000968", - "question_id": 7953, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001950", - "question_id": 7958, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00001446", - "question_id": 7960, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005678", - "question_id": 7964, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003989", - "question_id": 7972, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002025", - "question_id": 7983, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006861", - "question_id": 7999, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000903", - "question_id": 8001, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006310", - "question_id": 8003, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000211", - "question_id": 8007, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001697", - "question_id": 8008, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bagpipe\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001360", - "question_id": 8016, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001386", - "question_id": 8019, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007986", - "question_id": 8020, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000425", - "question_id": 8023, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000556", - "question_id": 8024, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004749", - "question_id": 8026, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00008954", - "question_id": 8033, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006772", - "question_id": 8046, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003087", - "question_id": 8053, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003966", - "question_id": 8059, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006911", - "question_id": 8062, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004186", - "question_id": 8063, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001640", - "question_id": 8066, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00004167", - "question_id": 8077, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00002073", - "question_id": 8087, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007230", - "question_id": 8088, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007224", - "question_id": 8090, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004621", - "question_id": 8092, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008236", - "question_id": 8095, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004705", - "question_id": 8096, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007798", - "question_id": 8100, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003021", - "question_id": 8102, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005420", - "question_id": 8104, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004953", - "question_id": 8105, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005598", - "question_id": 8110, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006860", - "question_id": 8115, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006184", - "question_id": 8118, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004990", - "question_id": 8120, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000138", - "question_id": 8132, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00003037", - "question_id": 8137, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006854", - "question_id": 8139, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"congas\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007527", - "question_id": 8153, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005910", - "question_id": 8154, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001227", - "question_id": 8156, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003973", - "question_id": 8163, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001746", - "question_id": 8176, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002199", - "question_id": 8180, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004357", - "question_id": 8184, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003567", - "question_id": 8189, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004750", - "question_id": 8192, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003393", - "question_id": 8197, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003017", - "question_id": 8198, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005866", - "question_id": 8200, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000033", - "question_id": 8205, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001275", - "question_id": 8213, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005916", - "question_id": 8218, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002095", - "question_id": 8220, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001737", - "question_id": 8221, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000856", - "question_id": 8224, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004092", - "question_id": 8234, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002015", - "question_id": 8237, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00004994", - "question_id": 8238, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008474", - "question_id": 8242, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006407", - "question_id": 8245, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006123", - "question_id": 8251, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007883", - "question_id": 8254, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000628", - "question_id": 8260, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003185", - "question_id": 8270, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00006132", - "question_id": 8279, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00007365", - "question_id": 8283, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004981", - "question_id": 8284, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"electric_bass\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008386", - "question_id": 8294, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000618", - "question_id": 8304, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00004992", - "question_id": 8307, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005703", - "question_id": 8315, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006546", - "question_id": 8331, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004934", - "question_id": 8335, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00004897", - "question_id": 8345, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005845", - "question_id": 8347, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00000275", - "question_id": 8356, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008190", - "question_id": 8357, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007874", - "question_id": 8359, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002761", - "question_id": 8360, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001125", - "question_id": 8361, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00001863", - "question_id": 8364, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007459", - "question_id": 8371, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00005790", - "question_id": 8376, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003687", - "question_id": 8378, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000502", - "question_id": 8381, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006955", - "question_id": 8384, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000928", - "question_id": 8398, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002920", - "question_id": 8400, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00005711", - "question_id": 8401, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"xylophone\", \"right\", \"xylophone\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001885", - "question_id": 8402, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"drum\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003851", - "question_id": 8419, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007712", - "question_id": 8428, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008186", - "question_id": 8433, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "eight" - }, - { - "video_id": "00005591", - "question_id": 8434, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006840", - "question_id": 8435, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008891", - "question_id": 8436, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003191", - "question_id": 8438, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00002941", - "question_id": 8440, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00007130", - "question_id": 8441, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005986", - "question_id": 8448, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00007375", - "question_id": 8455, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000207", - "question_id": 8462, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002883", - "question_id": 8466, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000941", - "question_id": 8467, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000637", - "question_id": 8470, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001931", - "question_id": 8478, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003491", - "question_id": 8487, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002524", - "question_id": 8490, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005281", - "question_id": 8492, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003667", - "question_id": 8498, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008172", - "question_id": 8500, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002493", - "question_id": 8502, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002725", - "question_id": 8505, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006250", - "question_id": 8523, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000943", - "question_id": 8526, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006678", - "question_id": 8527, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003106", - "question_id": 8531, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006194", - "question_id": 8534, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008680", - "question_id": 8535, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000290", - "question_id": 8547, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005066", - "question_id": 8563, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002517", - "question_id": 8571, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002443", - "question_id": 8578, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"trumpet\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000559", - "question_id": 8586, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003634", - "question_id": 8587, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007836", - "question_id": 8591, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"fourth\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00001973", - "question_id": 8604, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007402", - "question_id": 8607, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003847", - "question_id": 8618, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004784", - "question_id": 8623, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001524", - "question_id": 8624, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00008020", - "question_id": 8625, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003230", - "question_id": 8628, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000662", - "question_id": 8630, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007457", - "question_id": 8637, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003964", - "question_id": 8642, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001387", - "question_id": 8648, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004711", - "question_id": 8649, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007567", - "question_id": 8653, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003881", - "question_id": 8656, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003014", - "question_id": 8669, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004860", - "question_id": 8671, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007238", - "question_id": 8673, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004388", - "question_id": 8675, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001623", - "question_id": 8676, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008112", - "question_id": 8688, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000309", - "question_id": 8698, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00001648", - "question_id": 8699, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00000705", - "question_id": 8709, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00000936", - "question_id": 8711, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000787", - "question_id": 8712, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006757", - "question_id": 8713, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000378", - "question_id": 8714, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007762", - "question_id": 8715, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002658", - "question_id": 8716, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005762", - "question_id": 8718, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003733", - "question_id": 8726, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003733", - "question_id": 8730, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007062", - "question_id": 8733, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008685", - "question_id": 8734, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001172", - "question_id": 8739, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005254", - "question_id": 8741, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003599", - "question_id": 8748, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001682", - "question_id": 8749, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002843", - "question_id": 8756, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004506", - "question_id": 8762, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000462", - "question_id": 8765, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006948", - "question_id": 8772, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002528", - "question_id": 8785, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001596", - "question_id": 8792, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007990", - "question_id": 8793, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006693", - "question_id": 8794, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003534", - "question_id": 8799, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007480", - "question_id": 8802, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005188", - "question_id": 8811, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006704", - "question_id": 8812, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00001055", - "question_id": 8813, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00001361", - "question_id": 8815, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006928", - "question_id": 8820, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007615", - "question_id": 8823, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00008562", - "question_id": 8829, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006333", - "question_id": 8833, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00001491", - "question_id": 8836, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005294", - "question_id": 8842, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008241", - "question_id": 8856, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002901", - "question_id": 8877, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001861", - "question_id": 8880, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00007260", - "question_id": 8883, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000631", - "question_id": 8889, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000222", - "question_id": 8900, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000222", - "question_id": 8900, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008370", - "question_id": 8906, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003190", - "question_id": 8911, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004397", - "question_id": 8920, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003274", - "question_id": 8926, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003424", - "question_id": 8928, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005487", - "question_id": 8929, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003865", - "question_id": 8932, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005582", - "question_id": 8940, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004737", - "question_id": 8943, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004085", - "question_id": 8957, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004738", - "question_id": 8964, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005017", - "question_id": 8972, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001085", - "question_id": 8978, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008714", - "question_id": 8979, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00005163", - "question_id": 8985, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"fourth\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002857", - "question_id": 8986, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004782", - "question_id": 8989, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005774", - "question_id": 8997, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008294", - "question_id": 8998, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008712", - "question_id": 9001, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000346", - "question_id": 9009, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"xylophone\", \"middle\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006760", - "question_id": 9011, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007492", - "question_id": 9013, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005618", - "question_id": 9018, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003877", - "question_id": 9022, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005901", - "question_id": 9023, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007938", - "question_id": 9028, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004089", - "question_id": 9029, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002438", - "question_id": 9031, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003714", - "question_id": 9032, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"drum\", \"left\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001588", - "question_id": 9034, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008326", - "question_id": 9037, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003119", - "question_id": 9048, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00001711", - "question_id": 9065, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004698", - "question_id": 9075, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00000818", - "question_id": 9081, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004839", - "question_id": 9089, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008621", - "question_id": 9095, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001015", - "question_id": 9098, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005392", - "question_id": 9105, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003389", - "question_id": 9107, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000759", - "question_id": 9120, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00001891", - "question_id": 9123, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006676", - "question_id": 9126, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004361", - "question_id": 9128, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001139", - "question_id": 9135, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00002280", - "question_id": 9138, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006695", - "question_id": 9143, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"fifth\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00007837", - "question_id": 9147, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003892", - "question_id": 9152, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005072", - "question_id": 9155, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003519", - "question_id": 9162, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002684", - "question_id": 9165, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006275", - "question_id": 9167, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005309", - "question_id": 9176, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003169", - "question_id": 9186, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004427", - "question_id": 9189, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004744", - "question_id": 9192, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006839", - "question_id": 9202, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008800", - "question_id": 9204, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002739", - "question_id": 9208, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006572", - "question_id": 9217, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005940", - "question_id": 9218, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000783", - "question_id": 9219, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006804", - "question_id": 9223, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006816", - "question_id": 9237, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008613", - "question_id": 9238, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002041", - "question_id": 9247, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003710", - "question_id": 9250, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006656", - "question_id": 9254, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004768", - "question_id": 9265, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000675", - "question_id": 9273, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008310", - "question_id": 9275, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004678", - "question_id": 9283, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000425", - "question_id": 9284, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008356", - "question_id": 9287, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004496", - "question_id": 9293, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005962", - "question_id": 9296, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004652", - "question_id": 9304, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00000208", - "question_id": 9313, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003111", - "question_id": 9314, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00008856", - "question_id": 9315, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005905", - "question_id": 9316, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005562", - "question_id": 9317, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00007471", - "question_id": 9323, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001874", - "question_id": 9325, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004740", - "question_id": 9329, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001092", - "question_id": 9333, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004816", - "question_id": 9346, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006994", - "question_id": 9350, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002967", - "question_id": 9351, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003188", - "question_id": 9361, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000281", - "question_id": 9362, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003066", - "question_id": 9363, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005456", - "question_id": 9364, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000895", - "question_id": 9365, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006708", - "question_id": 9368, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007792", - "question_id": 9370, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"cello\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00007501", - "question_id": 9380, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002971", - "question_id": 9382, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006584", - "question_id": 9386, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"banjo\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003029", - "question_id": 9391, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007989", - "question_id": 9397, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005435", - "question_id": 9399, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00006743", - "question_id": 9402, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00007291", - "question_id": 9409, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005992", - "question_id": 9412, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002947", - "question_id": 9420, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008366", - "question_id": 9422, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001573", - "question_id": 9423, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004699", - "question_id": 9434, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007740", - "question_id": 9441, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001930", - "question_id": 9445, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003499", - "question_id": 9446, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00004192", - "question_id": 9459, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000054", - "question_id": 9464, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004079", - "question_id": 9465, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000432", - "question_id": 9468, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003000", - "question_id": 9470, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002419", - "question_id": 9472, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005300", - "question_id": 9480, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001476", - "question_id": 9483, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004806", - "question_id": 9484, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008251", - "question_id": 9487, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004600", - "question_id": 9491, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008506", - "question_id": 9494, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003308", - "question_id": 9496, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005268", - "question_id": 9498, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005502", - "question_id": 9505, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005742", - "question_id": 9506, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008873", - "question_id": 9508, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002413", - "question_id": 9509, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007517", - "question_id": 9513, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001725", - "question_id": 9514, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000004", - "question_id": 9519, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002143", - "question_id": 9520, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005253", - "question_id": 9524, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004006", - "question_id": 9525, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002186", - "question_id": 9532, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00004572", - "question_id": 9536, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007652", - "question_id": 9551, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003730", - "question_id": 9553, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005500", - "question_id": 9566, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005392", - "question_id": 9569, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004890", - "question_id": 9576, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003528", - "question_id": 9579, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003469", - "question_id": 9582, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001758", - "question_id": 9583, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007280", - "question_id": 9593, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006270", - "question_id": 9596, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008090", - "question_id": 9598, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003418", - "question_id": 9603, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008514", - "question_id": 9608, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006727", - "question_id": 9618, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002950", - "question_id": 9621, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007857", - "question_id": 9624, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005866", - "question_id": 9626, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005898", - "question_id": 9627, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007579", - "question_id": 9628, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005082", - "question_id": 9629, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005743", - "question_id": 9643, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001555", - "question_id": 9644, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003714", - "question_id": 9648, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002601", - "question_id": 9649, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00004317", - "question_id": 9664, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004973", - "question_id": 9666, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005751", - "question_id": 9670, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008058", - "question_id": 9680, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00001240", - "question_id": 9682, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001516", - "question_id": 9686, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002071", - "question_id": 9697, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001070", - "question_id": 9698, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008766", - "question_id": 9699, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008730", - "question_id": 9701, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002506", - "question_id": 9709, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005652", - "question_id": 9713, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007360", - "question_id": 9715, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005822", - "question_id": 9717, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004815", - "question_id": 9722, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004350", - "question_id": 9728, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000797", - "question_id": 9741, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005962", - "question_id": 9742, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00004679", - "question_id": 9755, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"trumpet\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008799", - "question_id": 9762, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001532", - "question_id": 9776, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005132", - "question_id": 9779, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002575", - "question_id": 9786, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004424", - "question_id": 9790, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000385", - "question_id": 9792, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001021", - "question_id": 9807, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007660", - "question_id": 9810, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008373", - "question_id": 9811, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002389", - "question_id": 9821, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001159", - "question_id": 9822, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00001778", - "question_id": 9826, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005158", - "question_id": 9827, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006315", - "question_id": 9828, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000898", - "question_id": 9833, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007071", - "question_id": 9834, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001907", - "question_id": 9838, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007773", - "question_id": 9839, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002550", - "question_id": 9847, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008635", - "question_id": 9854, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006349", - "question_id": 9856, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008474", - "question_id": 9859, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006331", - "question_id": 9862, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004970", - "question_id": 9867, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001629", - "question_id": 9868, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007811", - "question_id": 9871, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00002671", - "question_id": 9879, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006670", - "question_id": 9882, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002027", - "question_id": 9892, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007409", - "question_id": 9896, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004529", - "question_id": 9914, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004133", - "question_id": 9919, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00003772", - "question_id": 9926, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008718", - "question_id": 9930, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007908", - "question_id": 9932, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007273", - "question_id": 9935, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003599", - "question_id": 9939, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005357", - "question_id": 9944, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002313", - "question_id": 9953, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006280", - "question_id": 9961, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002298", - "question_id": 9966, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00004695", - "question_id": 9975, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002321", - "question_id": 9990, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003997", - "question_id": 10004, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"erhu\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001758", - "question_id": 10018, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001101", - "question_id": 10023, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003432", - "question_id": 10027, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000285", - "question_id": 10034, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005246", - "question_id": 10043, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006997", - "question_id": 10050, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00005517", - "question_id": 10057, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005008", - "question_id": 10061, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006537", - "question_id": 10083, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007551", - "question_id": 10109, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003784", - "question_id": 10113, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001654", - "question_id": 10123, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00005546", - "question_id": 10125, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00003436", - "question_id": 10126, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008185", - "question_id": 10128, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002434", - "question_id": 10140, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001248", - "question_id": 10141, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008449", - "question_id": 10143, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003776", - "question_id": 10158, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000542", - "question_id": 10167, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006253", - "question_id": 10173, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007722", - "question_id": 10174, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007656", - "question_id": 10180, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005702", - "question_id": 10181, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001744", - "question_id": 10183, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003657", - "question_id": 10198, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001333", - "question_id": 10199, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003436", - "question_id": 10207, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000126", - "question_id": 10211, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005665", - "question_id": 10217, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008261", - "question_id": 10219, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000759", - "question_id": 10236, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008301", - "question_id": 10239, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007671", - "question_id": 10248, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008220", - "question_id": 10249, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00007857", - "question_id": 10265, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003544", - "question_id": 10267, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001222", - "question_id": 10270, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001184", - "question_id": 10280, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006355", - "question_id": 10286, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00007955", - "question_id": 10291, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001036", - "question_id": 10297, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007700", - "question_id": 10299, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002316", - "question_id": 10309, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000571", - "question_id": 10318, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002376", - "question_id": 10322, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007499", - "question_id": 10347, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007499", - "question_id": 10347, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005236", - "question_id": 10360, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005034", - "question_id": 10363, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001999", - "question_id": 10373, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002952", - "question_id": 10375, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00002155", - "question_id": 10384, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007198", - "question_id": 10385, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004940", - "question_id": 10391, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002409", - "question_id": 10404, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007528", - "question_id": 10406, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00003325", - "question_id": 10408, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002648", - "question_id": 10423, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00007418", - "question_id": 10434, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008397", - "question_id": 10441, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000512", - "question_id": 10446, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007958", - "question_id": 10457, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006004", - "question_id": 10464, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001728", - "question_id": 10475, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004062", - "question_id": 10488, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005256", - "question_id": 10494, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00007290", - "question_id": 10498, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006408", - "question_id": 10503, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004403", - "question_id": 10508, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004552", - "question_id": 10534, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008820", - "question_id": 10538, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008944", - "question_id": 10544, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008257", - "question_id": 10546, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000592", - "question_id": 10559, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000662", - "question_id": 10560, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001175", - "question_id": 10561, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002926", - "question_id": 10562, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006796", - "question_id": 10567, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005492", - "question_id": 10581, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003999", - "question_id": 10584, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005732", - "question_id": 10587, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002959", - "question_id": 10617, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002091", - "question_id": 10620, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002228", - "question_id": 10621, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000017", - "question_id": 10624, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000352", - "question_id": 10627, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00006617", - "question_id": 10629, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006132", - "question_id": 10633, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005067", - "question_id": 10638, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004942", - "question_id": 10643, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00003875", - "question_id": 10644, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00000115", - "question_id": 10649, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00007131", - "question_id": 10653, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007969", - "question_id": 10654, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002168", - "question_id": 10660, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008629", - "question_id": 10662, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00007752", - "question_id": 10666, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005145", - "question_id": 10667, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004790", - "question_id": 10677, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003032", - "question_id": 10683, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007387", - "question_id": 10690, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001335", - "question_id": 10702, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005893", - "question_id": 10712, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005367", - "question_id": 10722, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004678", - "question_id": 10728, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"middle\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003129", - "question_id": 10732, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007615", - "question_id": 10738, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001489", - "question_id": 10740, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00002684", - "question_id": 10749, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004933", - "question_id": 10759, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005582", - "question_id": 10760, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00004876", - "question_id": 10764, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003030", - "question_id": 10769, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002552", - "question_id": 10774, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004206", - "question_id": 10785, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001117", - "question_id": 10787, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001164", - "question_id": 10788, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001935", - "question_id": 10789, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005562", - "question_id": 10811, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00003304", - "question_id": 10816, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007537", - "question_id": 10825, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000778", - "question_id": 10834, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006265", - "question_id": 10837, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008069", - "question_id": 10846, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00006359", - "question_id": 10855, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007547", - "question_id": 10857, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002076", - "question_id": 10861, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006287", - "question_id": 10865, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002353", - "question_id": 10873, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003275", - "question_id": 10875, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002839", - "question_id": 10878, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000041", - "question_id": 10882, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005170", - "question_id": 10889, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"right\", \"trumpet\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000890", - "question_id": 10892, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002427", - "question_id": 10897, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006066", - "question_id": 10902, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00006369", - "question_id": 10912, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000767", - "question_id": 10925, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"banjo\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004527", - "question_id": 10928, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005442", - "question_id": 10932, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001112", - "question_id": 10944, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008231", - "question_id": 10946, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00008150", - "question_id": 10947, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005531", - "question_id": 10961, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004986", - "question_id": 10972, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002997", - "question_id": 10974, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007320", - "question_id": 10976, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001193", - "question_id": 10978, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006072", - "question_id": 10981, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003058", - "question_id": 10997, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004416", - "question_id": 11011, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003060", - "question_id": 11020, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006212", - "question_id": 11025, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007025", - "question_id": 11031, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007510", - "question_id": 11034, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004631", - "question_id": 11036, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002730", - "question_id": 11040, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003025", - "question_id": 11042, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003045", - "question_id": 11056, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00006075", - "question_id": 11058, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000656", - "question_id": 11066, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00004803", - "question_id": 11071, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006735", - "question_id": 11073, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003380", - "question_id": 11077, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007078", - "question_id": 11093, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007269", - "question_id": 11111, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"middle\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003007", - "question_id": 11112, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004834", - "question_id": 11115, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003000", - "question_id": 11116, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008894", - "question_id": 11117, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003225", - "question_id": 11122, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00002866", - "question_id": 11136, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001193", - "question_id": 11139, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001028", - "question_id": 11142, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006256", - "question_id": 11144, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007099", - "question_id": 11153, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007923", - "question_id": 11156, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006406", - "question_id": 11165, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003679", - "question_id": 11167, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003175", - "question_id": 11169, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003496", - "question_id": 11171, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004445", - "question_id": 11182, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000005", - "question_id": 11188, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"drum\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008181", - "question_id": 11198, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005049", - "question_id": 11210, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003146", - "question_id": 11211, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006175", - "question_id": 11212, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003002", - "question_id": 11213, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004124", - "question_id": 11215, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001462", - "question_id": 11217, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"xylophone\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002938", - "question_id": 11220, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006478", - "question_id": 11227, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001274", - "question_id": 11229, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005156", - "question_id": 11232, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004270", - "question_id": 11242, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006516", - "question_id": 11244, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007927", - "question_id": 11262, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005992", - "question_id": 11264, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006516", - "question_id": 11266, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005629", - "question_id": 11270, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"drum\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003939", - "question_id": 11271, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008702", - "question_id": 11283, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006989", - "question_id": 11289, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000411", - "question_id": 11293, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000043", - "question_id": 11297, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007945", - "question_id": 11302, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003175", - "question_id": 11308, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008840", - "question_id": 11311, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00004503", - "question_id": 11321, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005960", - "question_id": 11327, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001833", - "question_id": 11330, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003829", - "question_id": 11339, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002612", - "question_id": 11342, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002855", - "question_id": 11349, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00007824", - "question_id": 11352, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002791", - "question_id": 11354, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001488", - "question_id": 11365, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008779", - "question_id": 11377, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000143", - "question_id": 11380, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00008472", - "question_id": 11397, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006612", - "question_id": 11406, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008730", - "question_id": 11409, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002005", - "question_id": 11417, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001064", - "question_id": 11418, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"violin\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008774", - "question_id": 11422, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005557", - "question_id": 11427, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005813", - "question_id": 11432, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002823", - "question_id": 11436, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007731", - "question_id": 11438, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000835", - "question_id": 11448, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"piano\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005082", - "question_id": 11455, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"middle\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003493", - "question_id": 11460, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000159", - "question_id": 11476, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001101", - "question_id": 11478, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bagpipe\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001808", - "question_id": 11492, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008214", - "question_id": 11493, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002035", - "question_id": 11506, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007263", - "question_id": 11517, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004495", - "question_id": 11518, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008040", - "question_id": 11523, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000947", - "question_id": 11524, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00004662", - "question_id": 11526, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"electric_bass\", \"left\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001846", - "question_id": 11527, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007706", - "question_id": 11537, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004388", - "question_id": 11547, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008748", - "question_id": 11552, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008753", - "question_id": 11553, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003203", - "question_id": 11586, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006243", - "question_id": 11588, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002925", - "question_id": 11590, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00004852", - "question_id": 11601, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001781", - "question_id": 11603, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003835", - "question_id": 11612, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008333", - "question_id": 11618, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005610", - "question_id": 11622, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007883", - "question_id": 11635, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00000376", - "question_id": 11637, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001581", - "question_id": 11640, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00005629", - "question_id": 11646, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005857", - "question_id": 11651, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008123", - "question_id": 11656, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004243", - "question_id": 11673, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007370", - "question_id": 11678, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005188", - "question_id": 11681, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008152", - "question_id": 11688, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004795", - "question_id": 11691, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003569", - "question_id": 11694, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008842", - "question_id": 11696, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004193", - "question_id": 11704, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002917", - "question_id": 11709, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005697", - "question_id": 11710, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003373", - "question_id": 11712, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003411", - "question_id": 11714, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00007346", - "question_id": 11720, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001968", - "question_id": 11721, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007304", - "question_id": 11737, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001067", - "question_id": 11743, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006129", - "question_id": 11755, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004102", - "question_id": 11763, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bagpipe\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004643", - "question_id": 11772, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004653", - "question_id": 11774, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002595", - "question_id": 11775, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001501", - "question_id": 11778, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002230", - "question_id": 11784, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003630", - "question_id": 11787, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008942", - "question_id": 11789, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005820", - "question_id": 11790, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000427", - "question_id": 11791, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006011", - "question_id": 11795, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007461", - "question_id": 11807, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006485", - "question_id": 11809, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003489", - "question_id": 11812, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006147", - "question_id": 11815, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006812", - "question_id": 11820, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008664", - "question_id": 11824, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007572", - "question_id": 11825, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004556", - "question_id": 11829, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001113", - "question_id": 11842, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003752", - "question_id": 11843, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006394", - "question_id": 11848, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00008124", - "question_id": 11854, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008443", - "question_id": 11855, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006532", - "question_id": 11858, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004209", - "question_id": 11861, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003413", - "question_id": 11864, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001904", - "question_id": 11867, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006057", - "question_id": 11882, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003291", - "question_id": 11901, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005893", - "question_id": 11902, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002962", - "question_id": 11906, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003462", - "question_id": 11912, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004560", - "question_id": 11913, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00006176", - "question_id": 11914, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00001919", - "question_id": 11916, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001736", - "question_id": 11924, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00003015", - "question_id": 11930, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000908", - "question_id": 11931, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002608", - "question_id": 11932, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005542", - "question_id": 11933, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008272", - "question_id": 11936, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002821", - "question_id": 11938, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"electric_bass\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006171", - "question_id": 11939, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"banjo\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006536", - "question_id": 11940, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002861", - "question_id": 11943, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002171", - "question_id": 11949, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003921", - "question_id": 11958, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003954", - "question_id": 11963, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003693", - "question_id": 11977, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005274", - "question_id": 11978, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004554", - "question_id": 11981, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001968", - "question_id": 11986, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001503", - "question_id": 11999, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007934", - "question_id": 12001, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00001350", - "question_id": 12004, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002812", - "question_id": 12010, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005702", - "question_id": 12013, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006386", - "question_id": 12016, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001291", - "question_id": 12017, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008692", - "question_id": 12021, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006163", - "question_id": 12023, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004253", - "question_id": 12027, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007436", - "question_id": 12044, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00002621", - "question_id": 12050, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006106", - "question_id": 12051, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002781", - "question_id": 12052, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"bassoon\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005951", - "question_id": 12059, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006596", - "question_id": 12069, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008816", - "question_id": 12073, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005515", - "question_id": 12075, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000324", - "question_id": 12080, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008655", - "question_id": 12084, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001202", - "question_id": 12089, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001312", - "question_id": 12090, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000230", - "question_id": 12100, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000230", - "question_id": 12100, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005159", - "question_id": 12105, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00002655", - "question_id": 12121, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005546", - "question_id": 12123, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006175", - "question_id": 12137, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002775", - "question_id": 12150, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001834", - "question_id": 12152, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00001981", - "question_id": 12155, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008664", - "question_id": 12163, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000743", - "question_id": 12171, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005198", - "question_id": 12172, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000405", - "question_id": 12173, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000023", - "question_id": 12177, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00002672", - "question_id": 12180, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008069", - "question_id": 12214, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00006835", - "question_id": 12217, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005582", - "question_id": 12219, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006576", - "question_id": 12221, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005366", - "question_id": 12223, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001393", - "question_id": 12224, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006098", - "question_id": 12226, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000439", - "question_id": 12234, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005416", - "question_id": 12236, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006411", - "question_id": 12241, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006131", - "question_id": 12243, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006022", - "question_id": 12249, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00008152", - "question_id": 12253, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000923", - "question_id": 12254, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006147", - "question_id": 12256, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002341", - "question_id": 12258, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002341", - "question_id": 12258, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000260", - "question_id": 12259, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001401", - "question_id": 12290, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00003116", - "question_id": 12294, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000416", - "question_id": 12297, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005287", - "question_id": 12301, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00004424", - "question_id": 12315, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00000297", - "question_id": 12319, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007456", - "question_id": 12325, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008952", - "question_id": 12327, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006876", - "question_id": 12330, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006161", - "question_id": 12332, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008100", - "question_id": 12333, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007195", - "question_id": 12334, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001348", - "question_id": 12337, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000863", - "question_id": 12338, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000174", - "question_id": 12339, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002476", - "question_id": 12345, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00003788", - "question_id": 12346, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004718", - "question_id": 12354, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00007109", - "question_id": 12360, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001806", - "question_id": 12363, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001806", - "question_id": 12363, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001637", - "question_id": 12367, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008405", - "question_id": 12370, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004838", - "question_id": 12371, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002892", - "question_id": 12387, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008131", - "question_id": 12390, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003939", - "question_id": 12392, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00001090", - "question_id": 12395, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004874", - "question_id": 12401, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00001029", - "question_id": 12410, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005014", - "question_id": 12411, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005704", - "question_id": 12413, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002501", - "question_id": 12419, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007452", - "question_id": 12437, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003520", - "question_id": 12440, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005262", - "question_id": 12444, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007954", - "question_id": 12448, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005864", - "question_id": 12453, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007119", - "question_id": 12462, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002716", - "question_id": 12466, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000669", - "question_id": 12467, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00005588", - "question_id": 12468, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"right\", \"erhu\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004112", - "question_id": 12469, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003573", - "question_id": 12470, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003739", - "question_id": 12476, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006851", - "question_id": 12483, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00000458", - "question_id": 12488, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006831", - "question_id": 12491, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008439", - "question_id": 12502, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002054", - "question_id": 12513, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003348", - "question_id": 12515, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002188", - "question_id": 12517, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002710", - "question_id": 12522, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002327", - "question_id": 12525, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"middle\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008814", - "question_id": 12532, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001358", - "question_id": 12541, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006723", - "question_id": 12547, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00003994", - "question_id": 12550, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001237", - "question_id": 12554, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001219", - "question_id": 12555, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004723", - "question_id": 12563, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006777", - "question_id": 12568, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002542", - "question_id": 12569, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002762", - "question_id": 12572, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000993", - "question_id": 12574, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001587", - "question_id": 12581, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008487", - "question_id": 12587, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00006342", - "question_id": 12588, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00001467", - "question_id": 12594, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003562", - "question_id": 12596, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004780", - "question_id": 12610, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003699", - "question_id": 12617, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004298", - "question_id": 12622, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006345", - "question_id": 12625, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007488", - "question_id": 12627, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00003124", - "question_id": 12635, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002362", - "question_id": 12638, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002523", - "question_id": 12645, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001085", - "question_id": 12650, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008142", - "question_id": 12651, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00001848", - "question_id": 12652, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005811", - "question_id": 12659, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006471", - "question_id": 12665, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001064", - "question_id": 12668, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"drum\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002090", - "question_id": 12669, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002314", - "question_id": 12677, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002721", - "question_id": 12682, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000304", - "question_id": 12684, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004562", - "question_id": 12691, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008545", - "question_id": 12695, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008007", - "question_id": 12696, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005636", - "question_id": 12705, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006202", - "question_id": 12712, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008496", - "question_id": 12713, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005045", - "question_id": 12716, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008460", - "question_id": 12717, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001792", - "question_id": 12718, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006065", - "question_id": 12720, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008511", - "question_id": 12727, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005559", - "question_id": 12731, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004535", - "question_id": 12732, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005601", - "question_id": 12753, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005844", - "question_id": 12757, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002803", - "question_id": 12760, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003991", - "question_id": 12761, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003111", - "question_id": 12778, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002601", - "question_id": 12784, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000464", - "question_id": 12786, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006444", - "question_id": 12794, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005404", - "question_id": 12797, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000597", - "question_id": 12826, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00006619", - "question_id": 12833, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005324", - "question_id": 12838, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004821", - "question_id": 12844, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002512", - "question_id": 12847, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001406", - "question_id": 12848, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002726", - "question_id": 12849, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004855", - "question_id": 12857, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008878", - "question_id": 12860, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002985", - "question_id": 12871, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003374", - "question_id": 12874, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001790", - "question_id": 12875, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007611", - "question_id": 12884, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007052", - "question_id": 12888, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007936", - "question_id": 12891, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007608", - "question_id": 12894, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008647", - "question_id": 12895, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002362", - "question_id": 12896, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007960", - "question_id": 12902, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008644", - "question_id": 12904, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000740", - "question_id": 12909, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008591", - "question_id": 12910, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00005651", - "question_id": 12911, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006346", - "question_id": 12912, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007198", - "question_id": 12915, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000201", - "question_id": 12920, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000280", - "question_id": 12942, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007881", - "question_id": 12947, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008261", - "question_id": 12951, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004173", - "question_id": 12952, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001773", - "question_id": 12955, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008307", - "question_id": 12960, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007047", - "question_id": 12962, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005876", - "question_id": 12965, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004272", - "question_id": 12966, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004761", - "question_id": 12970, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003864", - "question_id": 12977, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003837", - "question_id": 12980, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007720", - "question_id": 12988, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004691", - "question_id": 12991, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005726", - "question_id": 12998, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003408", - "question_id": 13001, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006668", - "question_id": 13003, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00000377", - "question_id": 13005, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005860", - "question_id": 13006, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001654", - "question_id": 13011, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00001234", - "question_id": 13014, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008836", - "question_id": 13018, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006149", - "question_id": 13027, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003266", - "question_id": 13028, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002795", - "question_id": 13030, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008919", - "question_id": 13032, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007447", - "question_id": 13034, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"congas\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005232", - "question_id": 13040, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007674", - "question_id": 13045, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006581", - "question_id": 13051, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003694", - "question_id": 13053, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002448", - "question_id": 13056, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000725", - "question_id": 13065, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008258", - "question_id": 13068, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005268", - "question_id": 13070, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001798", - "question_id": 13074, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006087", - "question_id": 13079, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004206", - "question_id": 13082, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001841", - "question_id": 13085, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000519", - "question_id": 13087, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00003908", - "question_id": 13089, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006135", - "question_id": 13090, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004802", - "question_id": 13093, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006874", - "question_id": 13096, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00001573", - "question_id": 13097, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001632", - "question_id": 13098, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007912", - "question_id": 13099, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00001787", - "question_id": 13101, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00003355", - "question_id": 13108, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001861", - "question_id": 13110, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00005771", - "question_id": 13113, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00007188", - "question_id": 13126, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001916", - "question_id": 13129, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001462", - "question_id": 13133, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000949", - "question_id": 13138, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007698", - "question_id": 13142, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00001316", - "question_id": 13143, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006408", - "question_id": 13144, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007550", - "question_id": 13145, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004477", - "question_id": 13154, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003260", - "question_id": 13158, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003314", - "question_id": 13159, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002364", - "question_id": 13160, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001547", - "question_id": 13163, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002534", - "question_id": 13167, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005486", - "question_id": 13169, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000164", - "question_id": 13170, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004532", - "question_id": 13177, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001111", - "question_id": 13179, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000186", - "question_id": 13181, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001959", - "question_id": 13192, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006842", - "question_id": 13194, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008865", - "question_id": 13195, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00005297", - "question_id": 13198, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007805", - "question_id": 13206, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00007035", - "question_id": 13211, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004998", - "question_id": 13216, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003541", - "question_id": 13238, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00006890", - "question_id": 13241, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000576", - "question_id": 13245, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000065", - "question_id": 13251, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"saxophone\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00003438", - "question_id": 13256, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001708", - "question_id": 13258, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002119", - "question_id": 13260, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001181", - "question_id": 13269, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007002", - "question_id": 13271, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00003676", - "question_id": 13277, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002566", - "question_id": 13280, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005748", - "question_id": 13283, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008945", - "question_id": 13290, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00005389", - "question_id": 13293, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008910", - "question_id": 13298, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007120", - "question_id": 13303, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005196", - "question_id": 13309, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004177", - "question_id": 13312, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00006374", - "question_id": 13313, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003954", - "question_id": 13314, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00001501", - "question_id": 13321, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004160", - "question_id": 13324, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003698", - "question_id": 13333, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000735", - "question_id": 13336, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003628", - "question_id": 13337, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003885", - "question_id": 13340, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00005653", - "question_id": 13342, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003650", - "question_id": 13347, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005323", - "question_id": 13355, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001524", - "question_id": 13364, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006320", - "question_id": 13370, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007038", - "question_id": 13380, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007038", - "question_id": 13380, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004164", - "question_id": 13389, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006282", - "question_id": 13396, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000098", - "question_id": 13400, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00002754", - "question_id": 13401, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007076", - "question_id": 13405, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "eight" - }, - { - "video_id": "00001809", - "question_id": 13406, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00002512", - "question_id": 13413, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007477", - "question_id": 13417, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000431", - "question_id": 13418, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005695", - "question_id": 13422, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002962", - "question_id": 13426, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00008480", - "question_id": 13440, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003471", - "question_id": 13441, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"saxophone\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00008697", - "question_id": 13445, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000986", - "question_id": 13456, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001793", - "question_id": 13464, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005214", - "question_id": 13471, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002233", - "question_id": 13476, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001685", - "question_id": 13481, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003416", - "question_id": 13495, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00008627", - "question_id": 13498, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004670", - "question_id": 13502, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003876", - "question_id": 13510, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001025", - "question_id": 13511, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00007568", - "question_id": 13513, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00001472", - "question_id": 13515, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005613", - "question_id": 13525, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008175", - "question_id": 13531, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000232", - "question_id": 13539, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007923", - "question_id": 13550, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008322", - "question_id": 13564, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001697", - "question_id": 13565, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bagpipe\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007473", - "question_id": 13575, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00000885", - "question_id": 13577, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000751", - "question_id": 13578, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007173", - "question_id": 13589, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004904", - "question_id": 13592, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "seven" - }, - { - "video_id": "00005966", - "question_id": 13593, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008220", - "question_id": 13596, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007355", - "question_id": 13598, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004085", - "question_id": 13603, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005840", - "question_id": 13604, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002380", - "question_id": 13609, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007014", - "question_id": 13610, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007281", - "question_id": 13618, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006499", - "question_id": 13619, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002473", - "question_id": 13620, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000060", - "question_id": 13630, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008148", - "question_id": 13633, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008337", - "question_id": 13636, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001901", - "question_id": 13639, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008225", - "question_id": 13650, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004579", - "question_id": 13653, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005142", - "question_id": 13655, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000717", - "question_id": 13661, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007113", - "question_id": 13664, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006258", - "question_id": 13669, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004972", - "question_id": 13672, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00002868", - "question_id": 13678, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000989", - "question_id": 13684, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008308", - "question_id": 13685, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008236", - "question_id": 13691, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00001197", - "question_id": 13695, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006429", - "question_id": 13696, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001027", - "question_id": 13702, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006313", - "question_id": 13710, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00008273", - "question_id": 13715, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008196", - "question_id": 13718, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00005195", - "question_id": 13738, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00008724", - "question_id": 13739, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004925", - "question_id": 13740, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008974", - "question_id": 13741, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00006488", - "question_id": 13742, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008548", - "question_id": 13748, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007961", - "question_id": 13749, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001506", - "question_id": 13752, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003018", - "question_id": 13758, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005007", - "question_id": 13760, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007384", - "question_id": 13766, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003420", - "question_id": 13773, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003818", - "question_id": 13777, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000186", - "question_id": 13781, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002745", - "question_id": 13784, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004823", - "question_id": 13799, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000619", - "question_id": 13816, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002417", - "question_id": 13838, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002635", - "question_id": 13841, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006623", - "question_id": 13848, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00002248", - "question_id": 13859, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002463", - "question_id": 13874, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003733", - "question_id": 13876, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"xylophone\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000398", - "question_id": 13881, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001826", - "question_id": 13907, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004151", - "question_id": 13913, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008422", - "question_id": 13919, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001453", - "question_id": 13922, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005955", - "question_id": 13929, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003206", - "question_id": 13930, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000235", - "question_id": 13937, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008415", - "question_id": 13953, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007764", - "question_id": 13957, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00008931", - "question_id": 13964, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00003573", - "question_id": 13967, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007013", - "question_id": 13974, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008339", - "question_id": 13976, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000909", - "question_id": 13977, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003167", - "question_id": 13981, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008334", - "question_id": 13992, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001132", - "question_id": 13994, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001988", - "question_id": 13996, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00002467", - "question_id": 14003, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006681", - "question_id": 14006, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001752", - "question_id": 14010, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002351", - "question_id": 14012, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000339", - "question_id": 14028, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003559", - "question_id": 14029, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003628", - "question_id": 14032, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001642", - "question_id": 14033, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002927", - "question_id": 14042, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002054", - "question_id": 14046, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007360", - "question_id": 14048, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007868", - "question_id": 14049, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008186", - "question_id": 14051, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001354", - "question_id": 14052, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000923", - "question_id": 14054, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00003013", - "question_id": 14056, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007090", - "question_id": 14061, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007090", - "question_id": 14061, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001497", - "question_id": 14064, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003475", - "question_id": 14076, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003178", - "question_id": 14077, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003846", - "question_id": 14078, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003540", - "question_id": 14081, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00005414", - "question_id": 14083, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003352", - "question_id": 14084, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007244", - "question_id": 14091, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004550", - "question_id": 14101, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006265", - "question_id": 14102, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000548", - "question_id": 14109, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00008610", - "question_id": 14110, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00000809", - "question_id": 14118, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007981", - "question_id": 14131, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002051", - "question_id": 14136, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002178", - "question_id": 14137, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000843", - "question_id": 14144, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001656", - "question_id": 14147, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006101", - "question_id": 14149, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00006934", - "question_id": 14152, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"electric_bass\", \"left\", \"drum\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005185", - "question_id": 14154, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007230", - "question_id": 14157, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006452", - "question_id": 14169, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001334", - "question_id": 14175, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00003397", - "question_id": 14183, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005051", - "question_id": 14185, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006470", - "question_id": 14186, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003512", - "question_id": 14190, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005428", - "question_id": 14198, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005392", - "question_id": 14199, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005809", - "question_id": 14205, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006052", - "question_id": 14210, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007998", - "question_id": 14215, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"tuba\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005840", - "question_id": 14216, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000719", - "question_id": 14217, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004266", - "question_id": 14220, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005275", - "question_id": 14233, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003879", - "question_id": 14240, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001440", - "question_id": 14250, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001800", - "question_id": 14251, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007180", - "question_id": 14254, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007522", - "question_id": 14255, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004169", - "question_id": 14259, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"ukulele\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00004920", - "question_id": 14261, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006526", - "question_id": 14267, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003800", - "question_id": 14273, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008044", - "question_id": 14277, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"middle\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005425", - "question_id": 14281, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008200", - "question_id": 14285, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"middle\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006579", - "question_id": 14307, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003810", - "question_id": 14308, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003329", - "question_id": 14313, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005468", - "question_id": 14319, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000286", - "question_id": 14320, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001264", - "question_id": 14327, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00004089", - "question_id": 14337, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003619", - "question_id": 14338, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003139", - "question_id": 14339, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005432", - "question_id": 14341, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001183", - "question_id": 14346, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007420", - "question_id": 14352, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008491", - "question_id": 14357, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00004575", - "question_id": 14362, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007042", - "question_id": 14366, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003247", - "question_id": 14376, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001898", - "question_id": 14381, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"banjo\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001207", - "question_id": 14385, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006563", - "question_id": 14399, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003042", - "question_id": 14400, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005445", - "question_id": 14405, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002104", - "question_id": 14414, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "nine" - }, - { - "video_id": "00002351", - "question_id": 14418, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004728", - "question_id": 14421, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005808", - "question_id": 14423, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003367", - "question_id": 14424, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00000130", - "question_id": 14426, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002162", - "question_id": 14438, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001077", - "question_id": 14453, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007683", - "question_id": 14456, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002930", - "question_id": 14485, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006596", - "question_id": 14493, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"guzheng\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00002201", - "question_id": 14496, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002232", - "question_id": 14508, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001532", - "question_id": 14510, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001532", - "question_id": 14510, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006060", - "question_id": 14512, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004944", - "question_id": 14515, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007813", - "question_id": 14522, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005178", - "question_id": 14529, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002731", - "question_id": 14530, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003901", - "question_id": 14532, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00005955", - "question_id": 14533, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008454", - "question_id": 14559, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000212", - "question_id": 14561, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"drum\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003451", - "question_id": 14562, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007059", - "question_id": 14567, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002460", - "question_id": 14572, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008449", - "question_id": 14575, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006819", - "question_id": 14578, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006076", - "question_id": 14580, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005061", - "question_id": 14582, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bagpipe\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003734", - "question_id": 14585, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005077", - "question_id": 14586, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000311", - "question_id": 14587, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003651", - "question_id": 14600, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008341", - "question_id": 14601, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007966", - "question_id": 14603, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003958", - "question_id": 14612, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003049", - "question_id": 14613, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004049", - "question_id": 14616, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00006499", - "question_id": 14623, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003087", - "question_id": 14625, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00008558", - "question_id": 14629, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000488", - "question_id": 14631, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007343", - "question_id": 14644, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000441", - "question_id": 14654, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004145", - "question_id": 14655, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000092", - "question_id": 14665, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001639", - "question_id": 14681, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00005422", - "question_id": 14686, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000630", - "question_id": 14695, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007293", - "question_id": 14696, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000481", - "question_id": 14704, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001614", - "question_id": 14707, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003599", - "question_id": 14708, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008022", - "question_id": 14712, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008887", - "question_id": 14713, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007038", - "question_id": 14727, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006830", - "question_id": 14733, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006552", - "question_id": 14735, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00004625", - "question_id": 14737, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007099", - "question_id": 14739, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006324", - "question_id": 14751, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003841", - "question_id": 14752, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008557", - "question_id": 14764, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007388", - "question_id": 14765, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00000464", - "question_id": 14767, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003631", - "question_id": 14775, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002165", - "question_id": 14777, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007142", - "question_id": 14781, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002893", - "question_id": 14784, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00006929", - "question_id": 14787, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00008335", - "question_id": 14790, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008273", - "question_id": 14796, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003197", - "question_id": 14801, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007450", - "question_id": 14802, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00008823", - "question_id": 14803, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005343", - "question_id": 14807, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003805", - "question_id": 14817, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004589", - "question_id": 14821, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00005922", - "question_id": 14824, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006707", - "question_id": 14826, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002284", - "question_id": 14828, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003984", - "question_id": 14832, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006749", - "question_id": 14839, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006903", - "question_id": 14848, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001168", - "question_id": 14867, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004700", - "question_id": 14875, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002079", - "question_id": 14881, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008098", - "question_id": 14883, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006325", - "question_id": 14886, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008624", - "question_id": 14892, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008576", - "question_id": 14900, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008855", - "question_id": 14908, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001422", - "question_id": 14919, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000618", - "question_id": 14929, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001938", - "question_id": 14938, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000944", - "question_id": 14940, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004035", - "question_id": 14948, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004158", - "question_id": 14949, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005960", - "question_id": 14967, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004266", - "question_id": 14970, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006843", - "question_id": 14971, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001620", - "question_id": 14981, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000483", - "question_id": 14982, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007833", - "question_id": 14984, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007499", - "question_id": 14985, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000130", - "question_id": 14987, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007497", - "question_id": 14994, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008065", - "question_id": 14999, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007869", - "question_id": 15008, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004346", - "question_id": 15011, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008844", - "question_id": 15016, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000385", - "question_id": 15021, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008088", - "question_id": 15027, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007355", - "question_id": 15039, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003308", - "question_id": 15041, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001265", - "question_id": 15042, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002898", - "question_id": 15054, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004158", - "question_id": 15055, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00000470", - "question_id": 15058, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002941", - "question_id": 15064, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002417", - "question_id": 15066, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002398", - "question_id": 15067, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006089", - "question_id": 15075, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00002066", - "question_id": 15079, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003979", - "question_id": 15083, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007336", - "question_id": 15089, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004798", - "question_id": 15092, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005418", - "question_id": 15105, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006522", - "question_id": 15116, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005967", - "question_id": 15124, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004457", - "question_id": 15133, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004311", - "question_id": 15139, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002495", - "question_id": 15145, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008558", - "question_id": 15152, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007156", - "question_id": 15156, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005398", - "question_id": 15168, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004456", - "question_id": 15171, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002722", - "question_id": 15175, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000266", - "question_id": 15176, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008354", - "question_id": 15179, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007953", - "question_id": 15185, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007805", - "question_id": 15187, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001300", - "question_id": 15191, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002262", - "question_id": 15194, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003073", - "question_id": 15202, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008780", - "question_id": 15212, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008091", - "question_id": 15214, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002301", - "question_id": 15218, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006758", - "question_id": 15221, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006710", - "question_id": 15233, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005775", - "question_id": 15236, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006843", - "question_id": 15238, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005974", - "question_id": 15239, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002984", - "question_id": 15242, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008512", - "question_id": 15249, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004409", - "question_id": 15252, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00004417", - "question_id": 15255, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001600", - "question_id": 15256, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008925", - "question_id": 15264, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006872", - "question_id": 15267, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002604", - "question_id": 15268, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007999", - "question_id": 15273, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000055", - "question_id": 15279, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006315", - "question_id": 15291, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004306", - "question_id": 15296, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006138", - "question_id": 15302, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004164", - "question_id": 15314, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002598", - "question_id": 15320, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006699", - "question_id": 15331, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000875", - "question_id": 15339, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003752", - "question_id": 15348, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004466", - "question_id": 15349, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001382", - "question_id": 15362, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003615", - "question_id": 15367, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008399", - "question_id": 15371, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006967", - "question_id": 15383, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00003237", - "question_id": 15389, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004109", - "question_id": 15399, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001107", - "question_id": 15404, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00007401", - "question_id": 15406, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004839", - "question_id": 15408, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004247", - "question_id": 15410, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004587", - "question_id": 15416, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001903", - "question_id": 15422, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002856", - "question_id": 15423, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006034", - "question_id": 15424, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004333", - "question_id": 15427, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003545", - "question_id": 15434, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001295", - "question_id": 15439, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00006371", - "question_id": 15446, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007855", - "question_id": 15457, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004648", - "question_id": 15470, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00004992", - "question_id": 15475, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008495", - "question_id": 15479, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007941", - "question_id": 15481, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001653", - "question_id": 15484, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002385", - "question_id": 15490, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006434", - "question_id": 15499, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008591", - "question_id": 15507, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002819", - "question_id": 15512, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001732", - "question_id": 15514, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"pipa\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003821", - "question_id": 15515, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008139", - "question_id": 15516, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000330", - "question_id": 15520, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007577", - "question_id": 15538, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006920", - "question_id": 15540, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004560", - "question_id": 15543, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005799", - "question_id": 15551, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006149", - "question_id": 15552, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004095", - "question_id": 15555, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002526", - "question_id": 15560, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00007767", - "question_id": 15565, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000392", - "question_id": 15566, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004870", - "question_id": 15570, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00005888", - "question_id": 15574, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006035", - "question_id": 15582, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004225", - "question_id": 15595, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008957", - "question_id": 15597, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002472", - "question_id": 15606, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007765", - "question_id": 15616, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000151", - "question_id": 15620, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007231", - "question_id": 15623, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004688", - "question_id": 15629, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00005081", - "question_id": 15632, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006066", - "question_id": 15647, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004715", - "question_id": 15649, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006633", - "question_id": 15650, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007619", - "question_id": 15655, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002602", - "question_id": 15666, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008616", - "question_id": 15668, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004292", - "question_id": 15670, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001639", - "question_id": 15684, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00001769", - "question_id": 15685, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00002726", - "question_id": 15704, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001284", - "question_id": 15717, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003143", - "question_id": 15718, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000820", - "question_id": 15719, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"saxophone\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00005979", - "question_id": 15725, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008584", - "question_id": 15733, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001892", - "question_id": 15734, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002973", - "question_id": 15738, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002615", - "question_id": 15746, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002615", - "question_id": 15746, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000237", - "question_id": 15747, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008753", - "question_id": 15750, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003171", - "question_id": 15752, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005344", - "question_id": 15756, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002326", - "question_id": 15776, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00005025", - "question_id": 15780, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004217", - "question_id": 15781, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005614", - "question_id": 15784, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00005924", - "question_id": 15788, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00006082", - "question_id": 15789, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"erhu\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006105", - "question_id": 15792, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001984", - "question_id": 15794, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002805", - "question_id": 15812, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000797", - "question_id": 15816, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004364", - "question_id": 15824, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003508", - "question_id": 15836, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004731", - "question_id": 15837, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005418", - "question_id": 15840, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004233", - "question_id": 15855, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006864", - "question_id": 15863, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005115", - "question_id": 15878, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002743", - "question_id": 15879, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008809", - "question_id": 15886, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005310", - "question_id": 15889, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007395", - "question_id": 15891, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00008783", - "question_id": 15898, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007344", - "question_id": 15901, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002971", - "question_id": 15907, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00003160", - "question_id": 15908, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008721", - "question_id": 15909, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008362", - "question_id": 15912, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005694", - "question_id": 15921, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008004", - "question_id": 15926, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003246", - "question_id": 15938, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005680", - "question_id": 15939, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001351", - "question_id": 15947, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00004713", - "question_id": 15953, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005306", - "question_id": 15954, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00006463", - "question_id": 15960, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003241", - "question_id": 15963, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007190", - "question_id": 15967, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008798", - "question_id": 15972, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002157", - "question_id": 15974, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005172", - "question_id": 15987, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000913", - "question_id": 15988, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001415", - "question_id": 15995, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004597", - "question_id": 15999, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00007979", - "question_id": 16002, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007285", - "question_id": 16004, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007003", - "question_id": 16013, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004756", - "question_id": 16018, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004672", - "question_id": 16023, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00006464", - "question_id": 16024, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006554", - "question_id": 16028, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006749", - "question_id": 16033, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008200", - "question_id": 16045, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000703", - "question_id": 16047, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004232", - "question_id": 16050, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000153", - "question_id": 16052, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002591", - "question_id": 16054, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002854", - "question_id": 16063, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005616", - "question_id": 16066, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008485", - "question_id": 16070, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003087", - "question_id": 16072, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007728", - "question_id": 16075, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003071", - "question_id": 16080, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005450", - "question_id": 16088, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005321", - "question_id": 16097, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000652", - "question_id": 16099, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00005576", - "question_id": 16101, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006275", - "question_id": 16125, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002955", - "question_id": 16136, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005315", - "question_id": 16137, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000310", - "question_id": 16143, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003416", - "question_id": 16145, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00007252", - "question_id": 16153, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000512", - "question_id": 16157, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001545", - "question_id": 16166, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006478", - "question_id": 16168, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000135", - "question_id": 16174, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005974", - "question_id": 16178, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007533", - "question_id": 16179, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006691", - "question_id": 16180, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000610", - "question_id": 16183, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006622", - "question_id": 16184, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006484", - "question_id": 16196, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003292", - "question_id": 16212, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00002288", - "question_id": 16214, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00002342", - "question_id": 16217, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005423", - "question_id": 16224, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008916", - "question_id": 16225, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008318", - "question_id": 16233, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007392", - "question_id": 16237, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003876", - "question_id": 16239, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008979", - "question_id": 16241, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "more than ten" - }, - { - "video_id": "00004043", - "question_id": 16259, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00001887", - "question_id": 16264, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007819", - "question_id": 16270, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007607", - "question_id": 16275, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005687", - "question_id": 16283, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005355", - "question_id": 16284, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003166", - "question_id": 16287, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00000699", - "question_id": 16293, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008846", - "question_id": 16300, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004325", - "question_id": 16304, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008288", - "question_id": 16311, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005567", - "question_id": 16313, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004405", - "question_id": 16321, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005354", - "question_id": 16325, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003355", - "question_id": 16330, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000981", - "question_id": 16334, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004119", - "question_id": 16339, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000689", - "question_id": 16342, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003287", - "question_id": 16351, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004230", - "question_id": 16352, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001121", - "question_id": 16364, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008031", - "question_id": 16401, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004035", - "question_id": 16406, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000589", - "question_id": 16411, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000723", - "question_id": 16415, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000827", - "question_id": 16417, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007863", - "question_id": 16419, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007301", - "question_id": 16423, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00002830", - "question_id": 16425, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bagpipe\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003776", - "question_id": 16428, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000343", - "question_id": 16429, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004653", - "question_id": 16432, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004176", - "question_id": 16435, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005697", - "question_id": 16447, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007501", - "question_id": 16448, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002790", - "question_id": 16458, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000388", - "question_id": 16462, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007441", - "question_id": 16475, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002337", - "question_id": 16477, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007219", - "question_id": 16482, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007001", - "question_id": 16491, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003638", - "question_id": 16492, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000493", - "question_id": 16498, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002870", - "question_id": 16513, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003336", - "question_id": 16524, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00000112", - "question_id": 16526, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006518", - "question_id": 16533, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008855", - "question_id": 16537, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001918", - "question_id": 16538, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00000471", - "question_id": 16539, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002285", - "question_id": 16540, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00001672", - "question_id": 16541, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007314", - "question_id": 16550, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000172", - "question_id": 16556, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002406", - "question_id": 16557, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001586", - "question_id": 16563, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00001244", - "question_id": 16564, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00001814", - "question_id": 16574, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000045", - "question_id": 16579, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006696", - "question_id": 16583, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005601", - "question_id": 16584, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005878", - "question_id": 16585, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00003489", - "question_id": 16593, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000023", - "question_id": 16609, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003024", - "question_id": 16612, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008711", - "question_id": 16614, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005929", - "question_id": 16617, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005913", - "question_id": 16619, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008595", - "question_id": 16623, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008595", - "question_id": 16623, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002151", - "question_id": 16630, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003806", - "question_id": 16631, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006767", - "question_id": 16633, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00002370", - "question_id": 16634, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002370", - "question_id": 16634, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006788", - "question_id": 16635, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000050", - "question_id": 16641, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003858", - "question_id": 16645, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001700", - "question_id": 16646, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008012", - "question_id": 16647, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"electric_bass\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008363", - "question_id": 16653, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008247", - "question_id": 16655, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000591", - "question_id": 16672, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008289", - "question_id": 16680, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007302", - "question_id": 16687, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000862", - "question_id": 16708, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005133", - "question_id": 16720, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001619", - "question_id": 16726, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000402", - "question_id": 16734, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003043", - "question_id": 16736, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00006673", - "question_id": 16740, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002859", - "question_id": 16749, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000109", - "question_id": 16750, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000771", - "question_id": 16759, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008449", - "question_id": 16764, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006530", - "question_id": 16765, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000168", - "question_id": 16776, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008426", - "question_id": 16777, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"xylophone\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004005", - "question_id": 16780, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001930", - "question_id": 16793, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00004077", - "question_id": 16806, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006517", - "question_id": 16807, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004956", - "question_id": 16812, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00000751", - "question_id": 16816, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00001415", - "question_id": 16826, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005361", - "question_id": 16828, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004497", - "question_id": 16843, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005144", - "question_id": 16844, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001255", - "question_id": 16845, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008516", - "question_id": 16848, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00006554", - "question_id": 16849, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006019", - "question_id": 16854, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000740", - "question_id": 16872, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004912", - "question_id": 16874, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004606", - "question_id": 16875, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005137", - "question_id": 16897, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001274", - "question_id": 16903, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000865", - "question_id": 16906, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007546", - "question_id": 16909, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00005802", - "question_id": 16919, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004333", - "question_id": 16926, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002646", - "question_id": 16934, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008799", - "question_id": 16947, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00000008", - "question_id": 16949, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000882", - "question_id": 16951, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001444", - "question_id": 16961, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007940", - "question_id": 16964, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007116", - "question_id": 16969, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003297", - "question_id": 16970, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000807", - "question_id": 16971, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003325", - "question_id": 16976, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002657", - "question_id": 16977, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004048", - "question_id": 16979, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006041", - "question_id": 16982, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002686", - "question_id": 17020, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002460", - "question_id": 17022, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005173", - "question_id": 17026, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007377", - "question_id": 17032, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002923", - "question_id": 17033, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007189", - "question_id": 17035, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003336", - "question_id": 17036, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007095", - "question_id": 17041, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008490", - "question_id": 17048, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002897", - "question_id": 17058, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000581", - "question_id": 17069, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001151", - "question_id": 17073, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001867", - "question_id": 17074, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000315", - "question_id": 17077, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006741", - "question_id": 17085, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bagpipe\", \"left\", \"bagpipe\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003762", - "question_id": 17091, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00002071", - "question_id": 17099, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004610", - "question_id": 17104, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005629", - "question_id": 17108, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003374", - "question_id": 17112, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002805", - "question_id": 17118, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006823", - "question_id": 17122, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006452", - "question_id": 17124, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005852", - "question_id": 17129, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003513", - "question_id": 17131, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000735", - "question_id": 17132, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001625", - "question_id": 17137, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001135", - "question_id": 17158, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000948", - "question_id": 17173, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005436", - "question_id": 17189, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002699", - "question_id": 17194, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005804", - "question_id": 17196, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001476", - "question_id": 17200, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007591", - "question_id": 17201, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006039", - "question_id": 17202, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007520", - "question_id": 17210, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003984", - "question_id": 17215, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005454", - "question_id": 17218, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001070", - "question_id": 17224, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007914", - "question_id": 17228, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005411", - "question_id": 17231, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000163", - "question_id": 17235, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005557", - "question_id": 17240, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008464", - "question_id": 17244, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005439", - "question_id": 17249, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004757", - "question_id": 17254, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006931", - "question_id": 17255, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008874", - "question_id": 17257, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000337", - "question_id": 17263, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000573", - "question_id": 17264, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00007061", - "question_id": 17270, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002365", - "question_id": 17274, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008029", - "question_id": 17281, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002619", - "question_id": 17284, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008074", - "question_id": 17285, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003970", - "question_id": 17288, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001484", - "question_id": 17290, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00006522", - "question_id": 17301, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006355", - "question_id": 17307, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004812", - "question_id": 17313, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000036", - "question_id": 17317, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000582", - "question_id": 17323, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003643", - "question_id": 17332, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007631", - "question_id": 17333, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006716", - "question_id": 17338, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002372", - "question_id": 17339, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007136", - "question_id": 17345, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006992", - "question_id": 17347, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005929", - "question_id": 17353, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004439", - "question_id": 17363, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002629", - "question_id": 17366, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00003553", - "question_id": 17384, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003550", - "question_id": 17390, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008032", - "question_id": 17395, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"congas\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002211", - "question_id": 17398, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002018", - "question_id": 17417, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005703", - "question_id": 17421, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005109", - "question_id": 17422, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001766", - "question_id": 17424, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00007850", - "question_id": 17430, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007485", - "question_id": 17434, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000080", - "question_id": 17438, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002994", - "question_id": 17443, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001767", - "question_id": 17448, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008655", - "question_id": 17451, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004986", - "question_id": 17454, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00005646", - "question_id": 17458, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006648", - "question_id": 17461, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008199", - "question_id": 17463, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008802", - "question_id": 17472, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002702", - "question_id": 17475, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006439", - "question_id": 17479, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002091", - "question_id": 17493, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005622", - "question_id": 17505, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00002240", - "question_id": 17512, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000976", - "question_id": 17513, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002565", - "question_id": 17520, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000654", - "question_id": 17521, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007681", - "question_id": 17524, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001296", - "question_id": 17526, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001296", - "question_id": 17526, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003393", - "question_id": 17529, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004262", - "question_id": 17532, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00002780", - "question_id": 17543, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007490", - "question_id": 17552, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001007", - "question_id": 17562, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000448", - "question_id": 17566, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000145", - "question_id": 17569, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002044", - "question_id": 17572, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006596", - "question_id": 17575, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"middle\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005463", - "question_id": 17577, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007831", - "question_id": 17579, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003399", - "question_id": 17580, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002709", - "question_id": 17581, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00004739", - "question_id": 17586, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003713", - "question_id": 17595, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004487", - "question_id": 17607, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000438", - "question_id": 17611, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00005035", - "question_id": 17618, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001616", - "question_id": 17621, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007065", - "question_id": 17624, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006608", - "question_id": 17627, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003143", - "question_id": 17635, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006999", - "question_id": 17642, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00005665", - "question_id": 17644, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004842", - "question_id": 17650, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001760", - "question_id": 17653, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001157", - "question_id": 17655, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008253", - "question_id": 17670, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006677", - "question_id": 17678, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008300", - "question_id": 17693, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006897", - "question_id": 17699, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006566", - "question_id": 17704, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004055", - "question_id": 17709, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001077", - "question_id": 17729, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00000481", - "question_id": 17733, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00003248", - "question_id": 17742, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005747", - "question_id": 17743, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005535", - "question_id": 17744, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004832", - "question_id": 17748, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004796", - "question_id": 17751, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005935", - "question_id": 17754, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006231", - "question_id": 17759, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000816", - "question_id": 17767, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004503", - "question_id": 17782, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006482", - "question_id": 17784, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004183", - "question_id": 17786, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007339", - "question_id": 17787, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007868", - "question_id": 17788, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"saxophone\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007684", - "question_id": 17792, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"suona\", \"middle\", \"erhu\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006713", - "question_id": 17795, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"clarinet\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00008575", - "question_id": 17798, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003215", - "question_id": 17802, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005334", - "question_id": 17807, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008188", - "question_id": 17813, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00004535", - "question_id": 17816, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002261", - "question_id": 17821, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003261", - "question_id": 17832, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005353", - "question_id": 17833, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005350", - "question_id": 17841, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000289", - "question_id": 17842, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003847", - "question_id": 17843, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00004150", - "question_id": 17846, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004216", - "question_id": 17850, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007970", - "question_id": 17857, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002967", - "question_id": 17864, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"tuba\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001181", - "question_id": 17867, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008348", - "question_id": 17868, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002686", - "question_id": 17879, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"accordion\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008729", - "question_id": 17880, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001775", - "question_id": 17885, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004390", - "question_id": 17893, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00003978", - "question_id": 17907, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001333", - "question_id": 17909, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007965", - "question_id": 17911, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001007", - "question_id": 17917, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007858", - "question_id": 17922, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003983", - "question_id": 17925, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004675", - "question_id": 17928, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003085", - "question_id": 17941, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004638", - "question_id": 17943, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003099", - "question_id": 17947, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002059", - "question_id": 17949, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007549", - "question_id": 17950, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007357", - "question_id": 17951, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004741", - "question_id": 17953, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007426", - "question_id": 17967, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004910", - "question_id": 17972, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000844", - "question_id": 17977, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000463", - "question_id": 17978, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007865", - "question_id": 17983, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006444", - "question_id": 17993, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005023", - "question_id": 17997, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005808", - "question_id": 18013, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004455", - "question_id": 18018, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006189", - "question_id": 18024, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000537", - "question_id": 18028, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001076", - "question_id": 18033, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005227", - "question_id": 18034, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001212", - "question_id": 18038, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000954", - "question_id": 18042, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007157", - "question_id": 18043, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007017", - "question_id": 18047, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00006555", - "question_id": 18054, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000367", - "question_id": 18059, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002160", - "question_id": 18060, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007627", - "question_id": 18061, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001552", - "question_id": 18063, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"xylophone\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001345", - "question_id": 18070, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003885", - "question_id": 18072, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004940", - "question_id": 18076, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003489", - "question_id": 18079, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006721", - "question_id": 18080, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002143", - "question_id": 18083, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003811", - "question_id": 18091, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008051", - "question_id": 18093, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006430", - "question_id": 18096, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006790", - "question_id": 18097, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001963", - "question_id": 18101, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006875", - "question_id": 18106, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008709", - "question_id": 18107, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008813", - "question_id": 18110, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003723", - "question_id": 18115, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006640", - "question_id": 18116, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007929", - "question_id": 18128, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007600", - "question_id": 18133, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008587", - "question_id": 18141, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008587", - "question_id": 18141, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003319", - "question_id": 18159, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002842", - "question_id": 18161, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005057", - "question_id": 18167, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000292", - "question_id": 18170, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008791", - "question_id": 18185, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007159", - "question_id": 18187, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006744", - "question_id": 18190, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006943", - "question_id": 18198, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00001481", - "question_id": 18199, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002835", - "question_id": 18205, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005604", - "question_id": 18206, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003678", - "question_id": 18207, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000530", - "question_id": 18216, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006078", - "question_id": 18220, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007627", - "question_id": 18224, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006233", - "question_id": 18228, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008129", - "question_id": 18234, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004925", - "question_id": 18236, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001846", - "question_id": 18251, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008705", - "question_id": 18252, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001672", - "question_id": 18253, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004122", - "question_id": 18270, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008409", - "question_id": 18273, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008444", - "question_id": 18283, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008203", - "question_id": 18291, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001075", - "question_id": 18310, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003497", - "question_id": 18311, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002439", - "question_id": 18312, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000068", - "question_id": 18316, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004271", - "question_id": 18323, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008478", - "question_id": 18325, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00000519", - "question_id": 18327, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007163", - "question_id": 18335, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007030", - "question_id": 18341, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008923", - "question_id": 18355, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004138", - "question_id": 18356, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004949", - "question_id": 18365, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001929", - "question_id": 18366, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002261", - "question_id": 18368, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006701", - "question_id": 18373, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002499", - "question_id": 18374, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00000319", - "question_id": 18378, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006025", - "question_id": 18383, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006495", - "question_id": 18384, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003947", - "question_id": 18392, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008307", - "question_id": 18397, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004372", - "question_id": 18403, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00003009", - "question_id": 18405, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004062", - "question_id": 18409, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005789", - "question_id": 18420, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001764", - "question_id": 18422, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003590", - "question_id": 18428, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004875", - "question_id": 18433, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008571", - "question_id": 18447, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006523", - "question_id": 18449, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004063", - "question_id": 18456, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000693", - "question_id": 18463, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006254", - "question_id": 18465, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003944", - "question_id": 18470, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006377", - "question_id": 18475, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005267", - "question_id": 18479, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002225", - "question_id": 18480, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001217", - "question_id": 18484, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003866", - "question_id": 18498, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008476", - "question_id": 18500, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008171", - "question_id": 18503, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00001828", - "question_id": 18510, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000195", - "question_id": 18514, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003247", - "question_id": 18517, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005445", - "question_id": 18522, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006277", - "question_id": 18524, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004343", - "question_id": 18525, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002815", - "question_id": 18536, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"xylophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003682", - "question_id": 18548, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007034", - "question_id": 18552, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001972", - "question_id": 18557, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005857", - "question_id": 18564, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005067", - "question_id": 18568, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007626", - "question_id": 18569, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001622", - "question_id": 18571, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005728", - "question_id": 18590, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002627", - "question_id": 18598, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002407", - "question_id": 18613, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006228", - "question_id": 18614, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005412", - "question_id": 18622, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006838", - "question_id": 18628, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00001676", - "question_id": 18629, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005263", - "question_id": 18633, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006045", - "question_id": 18635, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002293", - "question_id": 18638, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001960", - "question_id": 18639, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004692", - "question_id": 18658, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00007336", - "question_id": 18662, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004097", - "question_id": 18665, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"tuba\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000780", - "question_id": 18666, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002023", - "question_id": 18670, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000970", - "question_id": 18679, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007513", - "question_id": 18684, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004186", - "question_id": 18699, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006927", - "question_id": 18700, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004244", - "question_id": 18706, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000358", - "question_id": 18707, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006887", - "question_id": 18710, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006064", - "question_id": 18714, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006662", - "question_id": 18718, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006979", - "question_id": 18719, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001377", - "question_id": 18729, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002901", - "question_id": 18732, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00004549", - "question_id": 18734, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004327", - "question_id": 18735, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008885", - "question_id": 18745, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001887", - "question_id": 18756, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005119", - "question_id": 18759, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004898", - "question_id": 18765, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006211", - "question_id": 18770, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005651", - "question_id": 18780, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000686", - "question_id": 18783, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00008571", - "question_id": 18784, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002595", - "question_id": 18801, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003048", - "question_id": 18809, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001738", - "question_id": 18816, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006882", - "question_id": 18817, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007880", - "question_id": 18820, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008947", - "question_id": 18827, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006450", - "question_id": 18828, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003587", - "question_id": 18832, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006414", - "question_id": 18835, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000864", - "question_id": 18846, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008761", - "question_id": 18851, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003775", - "question_id": 18858, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00008736", - "question_id": 18879, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001725", - "question_id": 18881, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00000553", - "question_id": 18883, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002631", - "question_id": 18893, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008637", - "question_id": 18896, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000982", - "question_id": 18903, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007440", - "question_id": 18909, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007683", - "question_id": 18912, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007981", - "question_id": 18930, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005488", - "question_id": 18938, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007869", - "question_id": 18942, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00004630", - "question_id": 18943, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002910", - "question_id": 18944, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005828", - "question_id": 18945, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005789", - "question_id": 18946, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003908", - "question_id": 18950, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004522", - "question_id": 18951, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00005974", - "question_id": 18952, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008240", - "question_id": 18956, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008510", - "question_id": 18969, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007914", - "question_id": 18987, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001426", - "question_id": 18995, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007504", - "question_id": 18997, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003709", - "question_id": 19010, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000429", - "question_id": 19017, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002731", - "question_id": 19021, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003772", - "question_id": 19022, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007708", - "question_id": 19035, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005230", - "question_id": 19038, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002696", - "question_id": 19055, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006636", - "question_id": 19067, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00004297", - "question_id": 19072, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008223", - "question_id": 19073, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007309", - "question_id": 19077, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00001503", - "question_id": 19080, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007789", - "question_id": 19085, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000222", - "question_id": 19086, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00001336", - "question_id": 19088, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002915", - "question_id": 19094, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003623", - "question_id": 19101, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003455", - "question_id": 19102, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007896", - "question_id": 19103, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00007903", - "question_id": 19105, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006108", - "question_id": 19106, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005667", - "question_id": 19107, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00005331", - "question_id": 19111, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00007290", - "question_id": 19115, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003459", - "question_id": 19125, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006514", - "question_id": 19136, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005835", - "question_id": 19139, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006071", - "question_id": 19141, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008957", - "question_id": 19142, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008546", - "question_id": 19143, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008881", - "question_id": 19150, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000967", - "question_id": 19152, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001100", - "question_id": 19155, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003427", - "question_id": 19162, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001218", - "question_id": 19168, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005376", - "question_id": 19175, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008564", - "question_id": 19180, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003904", - "question_id": 19212, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007212", - "question_id": 19214, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003856", - "question_id": 19217, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007458", - "question_id": 19219, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006680", - "question_id": 19220, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006903", - "question_id": 19228, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002777", - "question_id": 19229, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007876", - "question_id": 19232, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007411", - "question_id": 19233, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004772", - "question_id": 19234, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001882", - "question_id": 19235, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00007369", - "question_id": 19237, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005779", - "question_id": 19253, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001043", - "question_id": 19255, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006774", - "question_id": 19265, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007904", - "question_id": 19268, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006797", - "question_id": 19271, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000388", - "question_id": 19276, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000984", - "question_id": 19277, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001311", - "question_id": 19281, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002326", - "question_id": 19304, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003147", - "question_id": 19317, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005362", - "question_id": 19319, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006897", - "question_id": 19327, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002947", - "question_id": 19335, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007639", - "question_id": 19350, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002332", - "question_id": 19351, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005689", - "question_id": 19352, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000269", - "question_id": 19353, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004050", - "question_id": 19358, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008612", - "question_id": 19364, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001189", - "question_id": 19369, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004012", - "question_id": 19374, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008419", - "question_id": 19375, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008870", - "question_id": 19376, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00000704", - "question_id": 19384, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007563", - "question_id": 19418, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002637", - "question_id": 19420, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00004218", - "question_id": 19432, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002629", - "question_id": 19438, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006450", - "question_id": 19447, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008098", - "question_id": 19450, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001819", - "question_id": 19454, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005865", - "question_id": 19458, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003388", - "question_id": 19462, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001762", - "question_id": 19471, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006548", - "question_id": 19479, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001620", - "question_id": 19486, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007615", - "question_id": 19487, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003739", - "question_id": 19490, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003970", - "question_id": 19495, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001774", - "question_id": 19502, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002582", - "question_id": 19521, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007559", - "question_id": 19526, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006018", - "question_id": 19533, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005066", - "question_id": 19539, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004054", - "question_id": 19546, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004116", - "question_id": 19549, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000204", - "question_id": 19561, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008476", - "question_id": 19563, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00004228", - "question_id": 19571, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001382", - "question_id": 19572, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005247", - "question_id": 19574, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008633", - "question_id": 19575, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004345", - "question_id": 19576, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008063", - "question_id": 19577, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007300", - "question_id": 19580, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006387", - "question_id": 19584, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004172", - "question_id": 19587, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005550", - "question_id": 19589, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00006412", - "question_id": 19604, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008228", - "question_id": 19605, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004414", - "question_id": 19612, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001825", - "question_id": 19613, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005054", - "question_id": 19637, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007591", - "question_id": 19639, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000601", - "question_id": 19650, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002740", - "question_id": 19653, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004658", - "question_id": 19654, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002937", - "question_id": 19655, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000509", - "question_id": 19660, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005675", - "question_id": 19661, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006977", - "question_id": 19662, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001525", - "question_id": 19668, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006644", - "question_id": 19669, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003120", - "question_id": 19677, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001361", - "question_id": 19678, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003142", - "question_id": 19679, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000739", - "question_id": 19683, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008628", - "question_id": 19689, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002558", - "question_id": 19693, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008182", - "question_id": 19694, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000600", - "question_id": 19695, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002535", - "question_id": 19699, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008507", - "question_id": 19700, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008026", - "question_id": 19702, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000645", - "question_id": 19704, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008567", - "question_id": 19723, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006960", - "question_id": 19731, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008385", - "question_id": 19733, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000402", - "question_id": 19748, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006094", - "question_id": 19763, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003546", - "question_id": 19777, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000536", - "question_id": 19790, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000162", - "question_id": 19798, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003347", - "question_id": 19804, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006662", - "question_id": 19809, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008872", - "question_id": 19814, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006243", - "question_id": 19816, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006423", - "question_id": 19821, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00005984", - "question_id": 19828, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003116", - "question_id": 19832, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004375", - "question_id": 19834, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003763", - "question_id": 19842, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002790", - "question_id": 19847, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006466", - "question_id": 19858, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006051", - "question_id": 19862, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000061", - "question_id": 19869, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002672", - "question_id": 19873, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008457", - "question_id": 19880, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006687", - "question_id": 19883, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000245", - "question_id": 19887, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002211", - "question_id": 19889, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004961", - "question_id": 19892, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001469", - "question_id": 19899, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002317", - "question_id": 19916, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007021", - "question_id": 19917, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001297", - "question_id": 19919, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008925", - "question_id": 19920, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002979", - "question_id": 19921, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003916", - "question_id": 19922, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000034", - "question_id": 19924, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008299", - "question_id": 19928, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008858", - "question_id": 19930, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008056", - "question_id": 19936, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000495", - "question_id": 19937, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007678", - "question_id": 19940, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000914", - "question_id": 19946, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005719", - "question_id": 19948, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001944", - "question_id": 19957, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008973", - "question_id": 19967, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008317", - "question_id": 19974, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001661", - "question_id": 19976, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008308", - "question_id": 19980, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004316", - "question_id": 19985, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003201", - "question_id": 20010, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002505", - "question_id": 20012, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008945", - "question_id": 20029, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002848", - "question_id": 20033, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005829", - "question_id": 20034, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000677", - "question_id": 20036, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00005147", - "question_id": 20041, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006470", - "question_id": 20043, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004471", - "question_id": 20049, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007378", - "question_id": 20057, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002806", - "question_id": 20059, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006389", - "question_id": 20060, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "more than ten" - }, - { - "video_id": "00008662", - "question_id": 20071, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00001598", - "question_id": 20076, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00003564", - "question_id": 20079, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00007800", - "question_id": 20081, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005033", - "question_id": 20086, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008152", - "question_id": 20099, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004427", - "question_id": 20102, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004756", - "question_id": 20104, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007553", - "question_id": 20107, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005527", - "question_id": 20114, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000065", - "question_id": 20116, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00005376", - "question_id": 20126, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004847", - "question_id": 20131, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007011", - "question_id": 20133, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007467", - "question_id": 20138, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002444", - "question_id": 20139, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00007294", - "question_id": 20149, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000641", - "question_id": 20150, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005841", - "question_id": 20162, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"xylophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004251", - "question_id": 20163, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004380", - "question_id": 20164, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001640", - "question_id": 20175, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007506", - "question_id": 20181, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002420", - "question_id": 20187, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004094", - "question_id": 20189, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003761", - "question_id": 20190, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006175", - "question_id": 20193, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001468", - "question_id": 20198, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001602", - "question_id": 20208, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007389", - "question_id": 20217, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006117", - "question_id": 20221, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008397", - "question_id": 20224, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001780", - "question_id": 20228, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003287", - "question_id": 20231, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005806", - "question_id": 20234, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004457", - "question_id": 20242, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00003377", - "question_id": 20243, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007200", - "question_id": 20249, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005481", - "question_id": 20256, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007247", - "question_id": 20273, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003217", - "question_id": 20279, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00004476", - "question_id": 20297, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006858", - "question_id": 20299, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003297", - "question_id": 20302, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001166", - "question_id": 20303, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008454", - "question_id": 20307, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005241", - "question_id": 20312, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000735", - "question_id": 20314, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007287", - "question_id": 20315, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003421", - "question_id": 20317, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002704", - "question_id": 20325, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001095", - "question_id": 20330, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004250", - "question_id": 20331, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00000621", - "question_id": 20333, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006379", - "question_id": 20335, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004771", - "question_id": 20344, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002442", - "question_id": 20346, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002437", - "question_id": 20349, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006782", - "question_id": 20351, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006386", - "question_id": 20365, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003392", - "question_id": 20375, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008058", - "question_id": 20379, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002773", - "question_id": 20382, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005456", - "question_id": 20384, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002531", - "question_id": 20391, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00007074", - "question_id": 20396, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000933", - "question_id": 20405, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00000436", - "question_id": 20407, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002030", - "question_id": 20414, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006798", - "question_id": 20422, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003528", - "question_id": 20427, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006513", - "question_id": 20428, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00005778", - "question_id": 20431, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001204", - "question_id": 20440, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00003717", - "question_id": 20450, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004782", - "question_id": 20455, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000844", - "question_id": 20457, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000890", - "question_id": 20458, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002550", - "question_id": 20460, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005589", - "question_id": 20461, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007775", - "question_id": 20474, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004597", - "question_id": 20477, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001780", - "question_id": 20485, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "seven" - }, - { - "video_id": "00001744", - "question_id": 20487, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000583", - "question_id": 20499, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007209", - "question_id": 20500, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001746", - "question_id": 20503, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001023", - "question_id": 20504, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007235", - "question_id": 20513, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002411", - "question_id": 20519, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004550", - "question_id": 20522, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006099", - "question_id": 20530, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007530", - "question_id": 20538, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002481", - "question_id": 20542, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008168", - "question_id": 20543, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001389", - "question_id": 20547, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002974", - "question_id": 20549, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007040", - "question_id": 20555, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001948", - "question_id": 20559, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002035", - "question_id": 20560, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00001401", - "question_id": 20567, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007949", - "question_id": 20574, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004485", - "question_id": 20575, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003221", - "question_id": 20580, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005628", - "question_id": 20581, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000101", - "question_id": 20588, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00000748", - "question_id": 20590, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004804", - "question_id": 20596, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006398", - "question_id": 20598, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00001500", - "question_id": 20599, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003364", - "question_id": 20602, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004703", - "question_id": 20612, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004276", - "question_id": 20624, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000758", - "question_id": 20628, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004184", - "question_id": 20634, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005717", - "question_id": 20642, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006486", - "question_id": 20649, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008351", - "question_id": 20656, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007150", - "question_id": 20668, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008232", - "question_id": 20670, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002200", - "question_id": 20682, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00001515", - "question_id": 20684, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007874", - "question_id": 20685, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002816", - "question_id": 20694, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000212", - "question_id": 20698, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003234", - "question_id": 20706, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006380", - "question_id": 20707, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006271", - "question_id": 20710, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004724", - "question_id": 20714, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00006581", - "question_id": 20718, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000037", - "question_id": 20728, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00007961", - "question_id": 20729, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004229", - "question_id": 20730, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00004354", - "question_id": 20733, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004722", - "question_id": 20736, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000485", - "question_id": 20737, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004510", - "question_id": 20748, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003897", - "question_id": 20750, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00008899", - "question_id": 20757, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003526", - "question_id": 20758, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006702", - "question_id": 20762, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004810", - "question_id": 20764, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00006874", - "question_id": 20766, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008015", - "question_id": 20769, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00008784", - "question_id": 20770, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004834", - "question_id": 20772, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000450", - "question_id": 20774, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005045", - "question_id": 20778, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006488", - "question_id": 20785, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008308", - "question_id": 20786, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007247", - "question_id": 20787, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003199", - "question_id": 20791, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005885", - "question_id": 20795, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001734", - "question_id": 20796, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001559", - "question_id": 20800, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002835", - "question_id": 20803, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007227", - "question_id": 20804, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004611", - "question_id": 20816, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000562", - "question_id": 20825, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006445", - "question_id": 20828, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00008655", - "question_id": 20831, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008711", - "question_id": 20832, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000995", - "question_id": 20838, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000995", - "question_id": 20838, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008389", - "question_id": 20839, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007597", - "question_id": 20851, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006279", - "question_id": 20853, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003659", - "question_id": 20854, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004846", - "question_id": 20855, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004112", - "question_id": 20856, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005218", - "question_id": 20862, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000728", - "question_id": 20865, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003212", - "question_id": 20868, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006593", - "question_id": 20871, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00000134", - "question_id": 20873, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002294", - "question_id": 20883, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002659", - "question_id": 20902, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004951", - "question_id": 20911, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005754", - "question_id": 20912, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00003281", - "question_id": 20915, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005007", - "question_id": 20928, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001082", - "question_id": 20934, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008357", - "question_id": 20940, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007704", - "question_id": 20948, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002966", - "question_id": 20952, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008406", - "question_id": 20971, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00003329", - "question_id": 20972, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006351", - "question_id": 20981, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002915", - "question_id": 20988, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00008340", - "question_id": 20999, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002426", - "question_id": 21003, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002884", - "question_id": 21012, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002235", - "question_id": 21013, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003133", - "question_id": 21017, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000530", - "question_id": 21026, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001117", - "question_id": 21028, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002256", - "question_id": 21037, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004383", - "question_id": 21042, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002103", - "question_id": 21053, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001121", - "question_id": 21054, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00000748", - "question_id": 21055, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006524", - "question_id": 21058, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007573", - "question_id": 21062, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004857", - "question_id": 21081, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002587", - "question_id": 21083, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008766", - "question_id": 21098, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007218", - "question_id": 21100, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004037", - "question_id": 21101, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000891", - "question_id": 21103, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003938", - "question_id": 21107, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000852", - "question_id": 21110, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007361", - "question_id": 21116, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002646", - "question_id": 21118, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003590", - "question_id": 21122, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003993", - "question_id": 21125, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002802", - "question_id": 21128, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004869", - "question_id": 21130, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000931", - "question_id": 21132, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005781", - "question_id": 21138, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007047", - "question_id": 21154, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001715", - "question_id": 21158, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001979", - "question_id": 21164, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007691", - "question_id": 21166, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002875", - "question_id": 21170, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00002912", - "question_id": 21171, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007807", - "question_id": 21173, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001327", - "question_id": 21174, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000103", - "question_id": 21179, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007597", - "question_id": 21192, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007487", - "question_id": 21205, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000334", - "question_id": 21207, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00005671", - "question_id": 21214, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"saxophone\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00008763", - "question_id": 21215, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007453", - "question_id": 21217, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00002454", - "question_id": 21221, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00003848", - "question_id": 21224, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006380", - "question_id": 21230, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007049", - "question_id": 21233, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000633", - "question_id": 21253, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002103", - "question_id": 21256, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00003588", - "question_id": 21267, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00004109", - "question_id": 21268, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00004189", - "question_id": 21274, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"drum\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004855", - "question_id": 21276, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002187", - "question_id": 21280, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003803", - "question_id": 21286, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008437", - "question_id": 21301, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004044", - "question_id": 21309, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "eight" - }, - { - "video_id": "00005464", - "question_id": 21310, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004696", - "question_id": 21321, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006597", - "question_id": 21322, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001435", - "question_id": 21325, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007929", - "question_id": 21329, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008251", - "question_id": 21336, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00007035", - "question_id": 21338, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006084", - "question_id": 21340, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006887", - "question_id": 21342, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001680", - "question_id": 21345, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001395", - "question_id": 21354, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003745", - "question_id": 21355, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001986", - "question_id": 21359, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001908", - "question_id": 21360, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005139", - "question_id": 21365, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004883", - "question_id": 21374, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005455", - "question_id": 21375, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008298", - "question_id": 21377, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"guzheng\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000937", - "question_id": 21379, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006226", - "question_id": 21383, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006663", - "question_id": 21388, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002139", - "question_id": 21391, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004251", - "question_id": 21397, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008297", - "question_id": 21398, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003319", - "question_id": 21404, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002896", - "question_id": 21409, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003092", - "question_id": 21412, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008594", - "question_id": 21419, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00004022", - "question_id": 21420, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000147", - "question_id": 21426, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003973", - "question_id": 21429, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007140", - "question_id": 21448, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005204", - "question_id": 21450, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000027", - "question_id": 21453, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00004991", - "question_id": 21458, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000258", - "question_id": 21464, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006815", - "question_id": 21471, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004087", - "question_id": 21475, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000936", - "question_id": 21476, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007028", - "question_id": 21478, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002489", - "question_id": 21481, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006024", - "question_id": 21482, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00002549", - "question_id": 21485, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001605", - "question_id": 21487, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002710", - "question_id": 21499, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005762", - "question_id": 21500, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006360", - "question_id": 21505, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00005007", - "question_id": 21509, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000070", - "question_id": 21521, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002182", - "question_id": 21525, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003797", - "question_id": 21526, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003549", - "question_id": 21527, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007949", - "question_id": 21531, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000107", - "question_id": 21534, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008542", - "question_id": 21535, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002496", - "question_id": 21538, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008740", - "question_id": 21555, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002983", - "question_id": 21556, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00007567", - "question_id": 21567, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005863", - "question_id": 21574, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000733", - "question_id": 21579, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006431", - "question_id": 21586, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003018", - "question_id": 21587, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001829", - "question_id": 21591, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008051", - "question_id": 21598, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003305", - "question_id": 21599, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008559", - "question_id": 21606, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002781", - "question_id": 21608, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005966", - "question_id": 21614, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002982", - "question_id": 21617, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00007094", - "question_id": 21618, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004878", - "question_id": 21620, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002962", - "question_id": 21625, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008383", - "question_id": 21629, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004684", - "question_id": 21633, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002455", - "question_id": 21635, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007538", - "question_id": 21639, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000265", - "question_id": 21640, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00003644", - "question_id": 21641, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00005847", - "question_id": 21645, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005505", - "question_id": 21649, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00005605", - "question_id": 21664, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007479", - "question_id": 21677, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007268", - "question_id": 21682, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007660", - "question_id": 21684, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006482", - "question_id": 21717, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00003749", - "question_id": 21727, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001206", - "question_id": 21738, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00002417", - "question_id": 21744, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008546", - "question_id": 21748, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007625", - "question_id": 21753, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006022", - "question_id": 21755, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005404", - "question_id": 21756, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00000865", - "question_id": 21758, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008190", - "question_id": 21764, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006139", - "question_id": 21766, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004879", - "question_id": 21776, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006438", - "question_id": 21780, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00001803", - "question_id": 21783, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003395", - "question_id": 21787, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007634", - "question_id": 21802, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007168", - "question_id": 21805, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001380", - "question_id": 21808, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005939", - "question_id": 21811, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008577", - "question_id": 21812, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008677", - "question_id": 21813, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000480", - "question_id": 21830, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001976", - "question_id": 21832, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007172", - "question_id": 21834, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004909", - "question_id": 21838, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000055", - "question_id": 21845, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00006898", - "question_id": 21847, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003304", - "question_id": 21853, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001084", - "question_id": 21855, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003616", - "question_id": 21857, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008799", - "question_id": 21859, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003635", - "question_id": 21860, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008619", - "question_id": 21861, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001981", - "question_id": 21882, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004165", - "question_id": 21885, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003784", - "question_id": 21900, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002343", - "question_id": 21909, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006800", - "question_id": 21910, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005218", - "question_id": 21915, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007551", - "question_id": 21919, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002105", - "question_id": 21921, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001561", - "question_id": 21926, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007062", - "question_id": 21928, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"ukulele\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008590", - "question_id": 21933, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006416", - "question_id": 21937, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003598", - "question_id": 21939, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007081", - "question_id": 21948, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00008898", - "question_id": 21949, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"xylophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002382", - "question_id": 21956, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005875", - "question_id": 21961, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000960", - "question_id": 21964, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001816", - "question_id": 21973, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003171", - "question_id": 21984, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005219", - "question_id": 21988, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000725", - "question_id": 21999, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005957", - "question_id": 22001, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002338", - "question_id": 22014, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001608", - "question_id": 22019, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008623", - "question_id": 22035, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003355", - "question_id": 22036, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004446", - "question_id": 22038, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001864", - "question_id": 22044, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008965", - "question_id": 22058, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004918", - "question_id": 22062, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002187", - "question_id": 22071, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000163", - "question_id": 22073, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000540", - "question_id": 22087, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00007887", - "question_id": 22089, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003777", - "question_id": 22093, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006365", - "question_id": 22096, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006135", - "question_id": 22098, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005792", - "question_id": 22108, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008973", - "question_id": 22114, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008935", - "question_id": 22116, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00001599", - "question_id": 22123, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004014", - "question_id": 22125, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008655", - "question_id": 22127, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00002227", - "question_id": 22128, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00007204", - "question_id": 22132, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003569", - "question_id": 22139, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00006380", - "question_id": 22144, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00008141", - "question_id": 22166, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007177", - "question_id": 22168, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004876", - "question_id": 22170, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000115", - "question_id": 22174, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00006226", - "question_id": 22178, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006415", - "question_id": 22180, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004362", - "question_id": 22202, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007448", - "question_id": 22209, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008507", - "question_id": 22211, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004632", - "question_id": 22212, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004688", - "question_id": 22214, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007410", - "question_id": 22220, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003518", - "question_id": 22221, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006193", - "question_id": 22222, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008112", - "question_id": 22224, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00001174", - "question_id": 22229, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004394", - "question_id": 22239, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"xylophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007679", - "question_id": 22242, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007946", - "question_id": 22263, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003991", - "question_id": 22264, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002700", - "question_id": 22267, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003054", - "question_id": 22273, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004435", - "question_id": 22278, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005334", - "question_id": 22282, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000555", - "question_id": 22283, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00001554", - "question_id": 22285, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002492", - "question_id": 22296, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004333", - "question_id": 22305, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000414", - "question_id": 22307, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00003850", - "question_id": 22311, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001267", - "question_id": 22314, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006282", - "question_id": 22318, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002811", - "question_id": 22326, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000921", - "question_id": 22335, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000815", - "question_id": 22337, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007299", - "question_id": 22348, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004133", - "question_id": 22353, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006139", - "question_id": 22361, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007092", - "question_id": 22368, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00004691", - "question_id": 22369, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003095", - "question_id": 22370, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008740", - "question_id": 22372, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001105", - "question_id": 22377, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008658", - "question_id": 22378, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004844", - "question_id": 22380, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008858", - "question_id": 22381, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000246", - "question_id": 22382, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001001", - "question_id": 22384, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00008010", - "question_id": 22402, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003007", - "question_id": 22409, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004769", - "question_id": 22410, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006894", - "question_id": 22424, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001647", - "question_id": 22433, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004337", - "question_id": 22443, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007418", - "question_id": 22448, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008813", - "question_id": 22451, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00006599", - "question_id": 22460, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006094", - "question_id": 22463, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001551", - "question_id": 22467, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00003740", - "question_id": 22472, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008519", - "question_id": 22477, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005643", - "question_id": 22483, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000849", - "question_id": 22486, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003193", - "question_id": 22489, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008933", - "question_id": 22491, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004203", - "question_id": 22492, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00004631", - "question_id": 22493, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004155", - "question_id": 22495, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007242", - "question_id": 22499, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"bassoon\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003381", - "question_id": 22501, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006801", - "question_id": 22504, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001002", - "question_id": 22507, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004506", - "question_id": 22509, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00002931", - "question_id": 22510, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001328", - "question_id": 22514, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002837", - "question_id": 22515, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006334", - "question_id": 22521, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000461", - "question_id": 22523, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006807", - "question_id": 22524, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002532", - "question_id": 22534, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002586", - "question_id": 22538, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005328", - "question_id": 22540, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002163", - "question_id": 22542, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007365", - "question_id": 22552, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000040", - "question_id": 22558, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003800", - "question_id": 22559, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00008029", - "question_id": 22574, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007425", - "question_id": 22585, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00000472", - "question_id": 22594, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003724", - "question_id": 22597, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001210", - "question_id": 22609, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002280", - "question_id": 22613, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001021", - "question_id": 22614, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008076", - "question_id": 22615, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00001656", - "question_id": 22618, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007757", - "question_id": 22627, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001041", - "question_id": 22631, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007895", - "question_id": 22638, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003331", - "question_id": 22640, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008093", - "question_id": 22643, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001451", - "question_id": 22645, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001258", - "question_id": 22648, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007639", - "question_id": 22663, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004529", - "question_id": 22666, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001648", - "question_id": 22672, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004855", - "question_id": 22684, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002659", - "question_id": 22692, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008223", - "question_id": 22695, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003578", - "question_id": 22699, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007506", - "question_id": 22708, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004951", - "question_id": 22728, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001150", - "question_id": 22734, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007278", - "question_id": 22737, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006562", - "question_id": 22749, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004121", - "question_id": 22750, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004886", - "question_id": 22751, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006843", - "question_id": 22752, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002879", - "question_id": 22754, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007787", - "question_id": 22759, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007723", - "question_id": 22767, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00007689", - "question_id": 22777, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002651", - "question_id": 22785, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007529", - "question_id": 22788, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002698", - "question_id": 22790, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00007840", - "question_id": 22800, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003364", - "question_id": 22802, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005513", - "question_id": 22803, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003691", - "question_id": 22804, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006114", - "question_id": 22809, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00008065", - "question_id": 22810, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006767", - "question_id": 22814, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002722", - "question_id": 22815, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000562", - "question_id": 22816, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007218", - "question_id": 22820, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001353", - "question_id": 22823, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001353", - "question_id": 22823, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003422", - "question_id": 22825, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000609", - "question_id": 22827, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007492", - "question_id": 22831, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004033", - "question_id": 22835, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000279", - "question_id": 22836, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003361", - "question_id": 22838, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006355", - "question_id": 22839, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00008882", - "question_id": 22841, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004433", - "question_id": 22844, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008035", - "question_id": 22845, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008353", - "question_id": 22855, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00004319", - "question_id": 22856, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006498", - "question_id": 22860, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006120", - "question_id": 22864, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004286", - "question_id": 22867, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007259", - "question_id": 22872, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007302", - "question_id": 22879, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004567", - "question_id": 22881, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002436", - "question_id": 22885, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006019", - "question_id": 22886, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00002751", - "question_id": 22887, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007662", - "question_id": 22888, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007906", - "question_id": 22896, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00001546", - "question_id": 22897, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000077", - "question_id": 22898, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001729", - "question_id": 22902, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004501", - "question_id": 22903, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00001205", - "question_id": 22904, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003646", - "question_id": 22908, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003579", - "question_id": 22915, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00003979", - "question_id": 22918, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002202", - "question_id": 22929, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006439", - "question_id": 22936, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002859", - "question_id": 22938, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006188", - "question_id": 22946, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002810", - "question_id": 22947, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00001834", - "question_id": 22950, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006633", - "question_id": 22951, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001425", - "question_id": 22952, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000113", - "question_id": 22960, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000162", - "question_id": 22961, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004590", - "question_id": 22970, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006769", - "question_id": 22984, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000677", - "question_id": 22985, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001085", - "question_id": 22987, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007878", - "question_id": 22995, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002495", - "question_id": 23004, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006692", - "question_id": 23005, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005236", - "question_id": 23007, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004675", - "question_id": 23008, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001453", - "question_id": 23012, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008102", - "question_id": 23016, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008003", - "question_id": 23025, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001126", - "question_id": 23030, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002517", - "question_id": 23032, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007188", - "question_id": 23042, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006300", - "question_id": 23048, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006120", - "question_id": 23054, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008297", - "question_id": 23064, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008437", - "question_id": 23078, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008892", - "question_id": 23086, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"tuba\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00008525", - "question_id": 23088, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006799", - "question_id": 23093, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001490", - "question_id": 23095, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007652", - "question_id": 23099, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00004585", - "question_id": 23101, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001690", - "question_id": 23111, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00004408", - "question_id": 23117, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008959", - "question_id": 23118, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003033", - "question_id": 23131, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00005621", - "question_id": 23132, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002269", - "question_id": 23140, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008450", - "question_id": 23145, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004306", - "question_id": 23153, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005814", - "question_id": 23154, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007365", - "question_id": 23161, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000709", - "question_id": 23166, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00002260", - "question_id": 23171, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003263", - "question_id": 23203, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001910", - "question_id": 23206, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003944", - "question_id": 23208, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000897", - "question_id": 23213, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000273", - "question_id": 23226, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006363", - "question_id": 23230, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006161", - "question_id": 23235, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001561", - "question_id": 23239, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00000244", - "question_id": 23242, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00003154", - "question_id": 23254, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002179", - "question_id": 23261, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003598", - "question_id": 23269, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004368", - "question_id": 23271, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000771", - "question_id": 23272, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000749", - "question_id": 23276, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001857", - "question_id": 23278, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"banjo\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00001980", - "question_id": 23280, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001559", - "question_id": 23283, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003967", - "question_id": 23287, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00005180", - "question_id": 23291, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005382", - "question_id": 23293, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000423", - "question_id": 23302, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005597", - "question_id": 23307, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00008572", - "question_id": 23309, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008475", - "question_id": 23311, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003031", - "question_id": 23313, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000788", - "question_id": 23316, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00001304", - "question_id": 23317, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00001407", - "question_id": 23328, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000362", - "question_id": 23329, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00001298", - "question_id": 23337, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002043", - "question_id": 23344, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007261", - "question_id": 23348, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005280", - "question_id": 23349, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003202", - "question_id": 23355, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00002392", - "question_id": 23366, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005472", - "question_id": 23370, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004237", - "question_id": 23375, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008938", - "question_id": 23377, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002928", - "question_id": 23380, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007634", - "question_id": 23390, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008002", - "question_id": 23395, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008293", - "question_id": 23397, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005919", - "question_id": 23398, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004020", - "question_id": 23408, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"tuba\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005204", - "question_id": 23409, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002114", - "question_id": 23416, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002279", - "question_id": 23431, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008961", - "question_id": 23434, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004963", - "question_id": 23436, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001250", - "question_id": 23442, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008810", - "question_id": 23445, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006459", - "question_id": 23446, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002378", - "question_id": 23447, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001565", - "question_id": 23453, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006082", - "question_id": 23458, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005654", - "question_id": 23466, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001656", - "question_id": 23467, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008605", - "question_id": 23471, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007858", - "question_id": 23482, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002410", - "question_id": 23483, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001815", - "question_id": 23497, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"xylophone\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005644", - "question_id": 23500, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007165", - "question_id": 23504, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004924", - "question_id": 23509, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001565", - "question_id": 23519, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"drum\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002843", - "question_id": 23531, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006316", - "question_id": 23532, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005189", - "question_id": 23534, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007057", - "question_id": 23535, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001215", - "question_id": 23536, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005375", - "question_id": 23537, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003706", - "question_id": 23542, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001699", - "question_id": 23547, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003234", - "question_id": 23552, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007991", - "question_id": 23560, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001961", - "question_id": 23561, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003550", - "question_id": 23567, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004202", - "question_id": 23579, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004268", - "question_id": 23583, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005460", - "question_id": 23591, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001455", - "question_id": 23595, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005095", - "question_id": 23597, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004308", - "question_id": 23614, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007583", - "question_id": 23627, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004681", - "question_id": 23636, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002044", - "question_id": 23638, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001931", - "question_id": 23648, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00008252", - "question_id": 23653, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"middle\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005561", - "question_id": 23657, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001681", - "question_id": 23658, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00000713", - "question_id": 23660, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005821", - "question_id": 23665, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00002430", - "question_id": 23670, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006954", - "question_id": 23676, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008747", - "question_id": 23688, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00006576", - "question_id": 23698, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"suona\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006131", - "question_id": 23700, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000902", - "question_id": 23702, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000800", - "question_id": 23709, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003910", - "question_id": 23711, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002305", - "question_id": 23714, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006900", - "question_id": 23740, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001667", - "question_id": 23748, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007812", - "question_id": 23755, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007897", - "question_id": 23756, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007822", - "question_id": 23766, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004756", - "question_id": 23774, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007341", - "question_id": 23783, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007380", - "question_id": 23790, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00006263", - "question_id": 23798, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000019", - "question_id": 23803, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007167", - "question_id": 23806, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000471", - "question_id": 23828, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005687", - "question_id": 23829, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008965", - "question_id": 23833, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"trumpet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003394", - "question_id": 23834, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001537", - "question_id": 23854, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008806", - "question_id": 23856, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007583", - "question_id": 23864, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007597", - "question_id": 23865, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004528", - "question_id": 23867, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006011", - "question_id": 23870, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000311", - "question_id": 23874, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002542", - "question_id": 23881, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003602", - "question_id": 23883, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007639", - "question_id": 23884, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00007957", - "question_id": 23887, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007702", - "question_id": 23888, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008003", - "question_id": 23892, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006714", - "question_id": 23898, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007010", - "question_id": 23900, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000603", - "question_id": 23906, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005801", - "question_id": 23910, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000596", - "question_id": 23918, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00006466", - "question_id": 23924, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001514", - "question_id": 23926, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006888", - "question_id": 23930, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006807", - "question_id": 23931, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000544", - "question_id": 23945, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001340", - "question_id": 23947, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002968", - "question_id": 23951, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006991", - "question_id": 23956, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004862", - "question_id": 23958, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006651", - "question_id": 23965, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006827", - "question_id": 23968, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008115", - "question_id": 23974, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002901", - "question_id": 23983, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004088", - "question_id": 23986, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003691", - "question_id": 23997, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004692", - "question_id": 24003, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007985", - "question_id": 24005, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005050", - "question_id": 24007, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002001", - "question_id": 24018, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005447", - "question_id": 24030, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007545", - "question_id": 24035, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00005638", - "question_id": 24039, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008208", - "question_id": 24040, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007281", - "question_id": 24041, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004636", - "question_id": 24047, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003238", - "question_id": 24053, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008895", - "question_id": 24061, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007738", - "question_id": 24065, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004012", - "question_id": 24067, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001525", - "question_id": 24073, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003818", - "question_id": 24075, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001719", - "question_id": 24092, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005387", - "question_id": 24094, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00002848", - "question_id": 24095, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002876", - "question_id": 24103, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00006573", - "question_id": 24104, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006110", - "question_id": 24106, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"electric_bass\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000654", - "question_id": 24110, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002681", - "question_id": 24121, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002132", - "question_id": 24131, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00008659", - "question_id": 24132, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007442", - "question_id": 24137, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007430", - "question_id": 24149, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000748", - "question_id": 24151, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000715", - "question_id": 24153, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008917", - "question_id": 24157, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001141", - "question_id": 24162, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007095", - "question_id": 24188, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"banjo\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003933", - "question_id": 24197, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007762", - "question_id": 24199, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001846", - "question_id": 24200, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007005", - "question_id": 24202, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008117", - "question_id": 24205, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003769", - "question_id": 24212, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001709", - "question_id": 24213, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001302", - "question_id": 24222, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000787", - "question_id": 24224, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"xylophone\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005140", - "question_id": 24232, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00005442", - "question_id": 24245, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007700", - "question_id": 24246, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004663", - "question_id": 24255, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002875", - "question_id": 24259, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003493", - "question_id": 24263, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005030", - "question_id": 24264, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007969", - "question_id": 24267, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00002115", - "question_id": 24271, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006875", - "question_id": 24273, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00002965", - "question_id": 24274, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00005688", - "question_id": 24278, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003897", - "question_id": 24284, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008093", - "question_id": 24289, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003720", - "question_id": 24298, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006936", - "question_id": 24300, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002615", - "question_id": 24303, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001224", - "question_id": 24305, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00007840", - "question_id": 24312, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003099", - "question_id": 24321, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008482", - "question_id": 24324, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002312", - "question_id": 24327, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001174", - "question_id": 24328, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002720", - "question_id": 24331, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005499", - "question_id": 24335, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000635", - "question_id": 24336, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000104", - "question_id": 24345, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000578", - "question_id": 24346, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007206", - "question_id": 24347, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001900", - "question_id": 24351, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004873", - "question_id": 24356, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007403", - "question_id": 24361, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007690", - "question_id": 24362, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007021", - "question_id": 24363, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001089", - "question_id": 24366, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008921", - "question_id": 24369, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003149", - "question_id": 24372, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008935", - "question_id": 24376, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002180", - "question_id": 24383, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003310", - "question_id": 24392, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003801", - "question_id": 24393, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004382", - "question_id": 24402, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007057", - "question_id": 24413, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004006", - "question_id": 24414, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00000687", - "question_id": 24427, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005645", - "question_id": 24431, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00004031", - "question_id": 24432, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000801", - "question_id": 24434, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00004321", - "question_id": 24437, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001009", - "question_id": 24441, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005880", - "question_id": 24446, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001120", - "question_id": 24448, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006365", - "question_id": 24461, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006527", - "question_id": 24470, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001153", - "question_id": 24473, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004504", - "question_id": 24479, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004741", - "question_id": 24486, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005164", - "question_id": 24487, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003144", - "question_id": 24495, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000793", - "question_id": 24496, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004448", - "question_id": 24498, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003725", - "question_id": 24499, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000607", - "question_id": 24500, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00008516", - "question_id": 24503, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005197", - "question_id": 24515, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004610", - "question_id": 24522, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003414", - "question_id": 24526, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002181", - "question_id": 24529, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"congas\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006447", - "question_id": 24535, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001722", - "question_id": 24536, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000973", - "question_id": 24540, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001718", - "question_id": 24543, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003402", - "question_id": 24545, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003921", - "question_id": 24546, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007719", - "question_id": 24547, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007249", - "question_id": 24548, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001540", - "question_id": 24552, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006332", - "question_id": 24561, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00003212", - "question_id": 24568, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"suona\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003484", - "question_id": 24570, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007905", - "question_id": 24571, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000687", - "question_id": 24581, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001430", - "question_id": 24583, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006316", - "question_id": 24588, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005126", - "question_id": 24591, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"drum\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000974", - "question_id": 24594, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00005736", - "question_id": 24596, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000718", - "question_id": 24600, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003722", - "question_id": 24608, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00005732", - "question_id": 24609, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000603", - "question_id": 24614, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000833", - "question_id": 24624, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003282", - "question_id": 24626, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005800", - "question_id": 24629, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00004153", - "question_id": 24630, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008632", - "question_id": 24632, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004729", - "question_id": 24633, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006649", - "question_id": 24638, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00006404", - "question_id": 24650, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002006", - "question_id": 24651, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005502", - "question_id": 24673, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003013", - "question_id": 24674, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004072", - "question_id": 24677, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001940", - "question_id": 24681, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005340", - "question_id": 24688, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004844", - "question_id": 24694, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00003403", - "question_id": 24697, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006872", - "question_id": 24698, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004428", - "question_id": 24699, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005939", - "question_id": 24702, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006402", - "question_id": 24703, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005883", - "question_id": 24704, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005608", - "question_id": 24713, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005015", - "question_id": 24718, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005792", - "question_id": 24722, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007557", - "question_id": 24725, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"accordion\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000135", - "question_id": 24726, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003790", - "question_id": 24736, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008487", - "question_id": 24745, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004967", - "question_id": 24751, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008065", - "question_id": 24760, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007827", - "question_id": 24764, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002817", - "question_id": 24766, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006396", - "question_id": 24770, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"clarinet\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004418", - "question_id": 24771, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004340", - "question_id": 24772, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005036", - "question_id": 24777, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000206", - "question_id": 24778, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002922", - "question_id": 24785, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004788", - "question_id": 24793, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000006", - "question_id": 24797, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004013", - "question_id": 24807, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00004492", - "question_id": 24808, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008140", - "question_id": 24822, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004605", - "question_id": 24831, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00008060", - "question_id": 24832, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001955", - "question_id": 24834, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007260", - "question_id": 24835, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001343", - "question_id": 24839, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008308", - "question_id": 24843, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00006801", - "question_id": 24844, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006771", - "question_id": 24850, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006400", - "question_id": 24857, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000080", - "question_id": 24861, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008271", - "question_id": 24866, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"congas\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001260", - "question_id": 24869, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00007777", - "question_id": 24873, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005490", - "question_id": 24877, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004660", - "question_id": 24879, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000935", - "question_id": 24891, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005073", - "question_id": 24900, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006970", - "question_id": 24903, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004045", - "question_id": 24906, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001267", - "question_id": 24908, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005109", - "question_id": 24914, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00007244", - "question_id": 24918, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"xylophone\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004763", - "question_id": 24921, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008358", - "question_id": 24926, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007307", - "question_id": 24930, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006715", - "question_id": 24937, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004358", - "question_id": 24940, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007725", - "question_id": 24951, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00005890", - "question_id": 24966, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001361", - "question_id": 24972, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00001932", - "question_id": 24974, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005384", - "question_id": 24978, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002979", - "question_id": 24979, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000969", - "question_id": 24987, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000996", - "question_id": 24993, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008744", - "question_id": 24996, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000549", - "question_id": 24999, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008457", - "question_id": 25000, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000480", - "question_id": 25005, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003403", - "question_id": 25010, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002188", - "question_id": 25015, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006974", - "question_id": 25016, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"bassoon\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00007604", - "question_id": 25019, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008106", - "question_id": 25023, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001819", - "question_id": 25027, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000820", - "question_id": 25028, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003772", - "question_id": 25029, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001495", - "question_id": 25043, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008346", - "question_id": 25046, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003067", - "question_id": 25054, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003484", - "question_id": 25055, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002799", - "question_id": 25067, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00007514", - "question_id": 25069, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001040", - "question_id": 25070, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00005957", - "question_id": 25076, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008407", - "question_id": 25078, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008806", - "question_id": 25079, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001801", - "question_id": 25090, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006692", - "question_id": 25094, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000030", - "question_id": 25102, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008297", - "question_id": 25108, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008036", - "question_id": 25112, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006866", - "question_id": 25114, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"middle\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003604", - "question_id": 25118, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003981", - "question_id": 25127, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00005597", - "question_id": 25140, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007011", - "question_id": 25146, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00003557", - "question_id": 25154, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00004485", - "question_id": 25160, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000185", - "question_id": 25172, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007493", - "question_id": 25199, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007480", - "question_id": 25204, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006901", - "question_id": 25212, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005252", - "question_id": 25213, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005078", - "question_id": 25221, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003555", - "question_id": 25226, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001444", - "question_id": 25231, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00004261", - "question_id": 25235, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003917", - "question_id": 25236, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00005826", - "question_id": 25240, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000442", - "question_id": 25244, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005425", - "question_id": 25246, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002862", - "question_id": 25247, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001054", - "question_id": 25253, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00006860", - "question_id": 25257, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00001630", - "question_id": 25260, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008962", - "question_id": 25268, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006700", - "question_id": 25279, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000379", - "question_id": 25286, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003051", - "question_id": 25310, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"tuba\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000718", - "question_id": 25313, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007006", - "question_id": 25314, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000356", - "question_id": 25319, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008503", - "question_id": 25327, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"last\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00006787", - "question_id": 25337, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002117", - "question_id": 25345, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006885", - "question_id": 25347, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003647", - "question_id": 25349, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00006183", - "question_id": 25373, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001307", - "question_id": 25375, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00005411", - "question_id": 25376, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002523", - "question_id": 25377, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00005669", - "question_id": 25385, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004336", - "question_id": 25389, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004441", - "question_id": 25391, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005463", - "question_id": 25394, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00001632", - "question_id": 25396, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007911", - "question_id": 25399, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002461", - "question_id": 25403, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00006115", - "question_id": 25413, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003195", - "question_id": 25415, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003208", - "question_id": 25417, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004881", - "question_id": 25418, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007600", - "question_id": 25423, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007988", - "question_id": 25428, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006637", - "question_id": 25433, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"ukulele\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006850", - "question_id": 25437, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005104", - "question_id": 25441, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001870", - "question_id": 25445, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005010", - "question_id": 25449, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004983", - "question_id": 25452, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006262", - "question_id": 25456, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008334", - "question_id": 25462, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007836", - "question_id": 25471, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007618", - "question_id": 25477, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00007093", - "question_id": 25482, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004769", - "question_id": 25487, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00000006", - "question_id": 25503, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000921", - "question_id": 25509, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006607", - "question_id": 25513, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008267", - "question_id": 25514, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006069", - "question_id": 25529, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008644", - "question_id": 25536, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00004393", - "question_id": 25539, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004891", - "question_id": 25542, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003045", - "question_id": 25544, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008125", - "question_id": 25554, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001851", - "question_id": 25561, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007557", - "question_id": 25573, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003191", - "question_id": 25578, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002712", - "question_id": 25580, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003519", - "question_id": 25598, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008716", - "question_id": 25600, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00001679", - "question_id": 25601, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003937", - "question_id": 25602, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005283", - "question_id": 25607, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003790", - "question_id": 25609, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004276", - "question_id": 25613, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000845", - "question_id": 25626, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005724", - "question_id": 25633, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002735", - "question_id": 25645, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003487", - "question_id": 25656, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004409", - "question_id": 25662, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00004285", - "question_id": 25670, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007902", - "question_id": 25673, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000410", - "question_id": 25676, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007304", - "question_id": 25684, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007784", - "question_id": 25695, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005035", - "question_id": 25697, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00004972", - "question_id": 25702, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003629", - "question_id": 25706, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008539", - "question_id": 25716, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00008001", - "question_id": 25725, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000184", - "question_id": 25729, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001366", - "question_id": 25735, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002006", - "question_id": 25737, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00004241", - "question_id": 25739, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003624", - "question_id": 25740, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000996", - "question_id": 25745, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006990", - "question_id": 25746, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006056", - "question_id": 25749, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004912", - "question_id": 25756, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00008576", - "question_id": 25784, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004270", - "question_id": 25789, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002963", - "question_id": 25795, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000338", - "question_id": 25798, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008774", - "question_id": 25803, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004613", - "question_id": 25816, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006386", - "question_id": 25820, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005338", - "question_id": 25826, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001542", - "question_id": 25834, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006594", - "question_id": 25843, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000593", - "question_id": 25863, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008045", - "question_id": 25868, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005999", - "question_id": 25871, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008972", - "question_id": 25878, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007052", - "question_id": 25886, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00004022", - "question_id": 25891, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00000342", - "question_id": 25898, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00007843", - "question_id": 25903, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007222", - "question_id": 25904, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004096", - "question_id": 25913, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008235", - "question_id": 25914, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001781", - "question_id": 25918, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004060", - "question_id": 25927, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00007926", - "question_id": 25936, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003104", - "question_id": 25941, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000979", - "question_id": 25947, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004407", - "question_id": 25949, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002534", - "question_id": 25962, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"tuba\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001692", - "question_id": 25966, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002718", - "question_id": 25977, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006998", - "question_id": 25983, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000462", - "question_id": 25985, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008578", - "question_id": 25986, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007872", - "question_id": 25987, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00001713", - "question_id": 25997, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003160", - "question_id": 26004, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008465", - "question_id": 26007, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006078", - "question_id": 26018, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006375", - "question_id": 26020, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002591", - "question_id": 26026, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003538", - "question_id": 26029, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001480", - "question_id": 26035, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008430", - "question_id": 26036, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006786", - "question_id": 26040, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003327", - "question_id": 26047, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003327", - "question_id": 26047, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000893", - "question_id": 26051, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006399", - "question_id": 26053, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005730", - "question_id": 26055, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"accordion\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003352", - "question_id": 26065, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002288", - "question_id": 26067, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002365", - "question_id": 26072, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00000346", - "question_id": 26079, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00006885", - "question_id": 26089, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004310", - "question_id": 26091, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00001402", - "question_id": 26100, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002448", - "question_id": 26107, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000200", - "question_id": 26108, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004671", - "question_id": 26117, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001275", - "question_id": 26124, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001389", - "question_id": 26126, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000325", - "question_id": 26129, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005144", - "question_id": 26130, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002104", - "question_id": 26132, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006217", - "question_id": 26139, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005239", - "question_id": 26145, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004417", - "question_id": 26146, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000642", - "question_id": 26150, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007551", - "question_id": 26157, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006329", - "question_id": 26167, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001319", - "question_id": 26170, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003287", - "question_id": 26176, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000652", - "question_id": 26187, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"drum\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002030", - "question_id": 26215, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001837", - "question_id": 26219, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005951", - "question_id": 26220, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000696", - "question_id": 26229, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008266", - "question_id": 26236, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00005471", - "question_id": 26237, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003984", - "question_id": 26239, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006057", - "question_id": 26248, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00006051", - "question_id": 26252, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002255", - "question_id": 26255, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005722", - "question_id": 26261, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003551", - "question_id": 26265, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008929", - "question_id": 26266, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007400", - "question_id": 26279, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006991", - "question_id": 26281, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003589", - "question_id": 26282, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00002893", - "question_id": 26291, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00003277", - "question_id": 26300, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004599", - "question_id": 26308, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008241", - "question_id": 26309, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00005911", - "question_id": 26314, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003993", - "question_id": 26323, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007072", - "question_id": 26324, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007945", - "question_id": 26325, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008279", - "question_id": 26330, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003026", - "question_id": 26331, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008523", - "question_id": 26332, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002347", - "question_id": 26335, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00002240", - "question_id": 26337, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005048", - "question_id": 26338, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00003506", - "question_id": 26340, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00001303", - "question_id": 26342, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001635", - "question_id": 26348, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003679", - "question_id": 26353, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004018", - "question_id": 26356, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001739", - "question_id": 26357, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00001739", - "question_id": 26357, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004190", - "question_id": 26363, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001481", - "question_id": 26365, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008114", - "question_id": 26369, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004189", - "question_id": 26378, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004392", - "question_id": 26380, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005492", - "question_id": 26395, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007329", - "question_id": 26400, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005482", - "question_id": 26412, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002419", - "question_id": 26416, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006043", - "question_id": 26417, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006730", - "question_id": 26423, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00005406", - "question_id": 26426, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000571", - "question_id": 26430, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004824", - "question_id": 26432, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003764", - "question_id": 26435, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00002463", - "question_id": 26436, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008903", - "question_id": 26437, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002004", - "question_id": 26448, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000839", - "question_id": 26456, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004169", - "question_id": 26465, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008581", - "question_id": 26467, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004017", - "question_id": 26470, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004306", - "question_id": 26478, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001375", - "question_id": 26480, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005953", - "question_id": 26481, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005512", - "question_id": 26482, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008530", - "question_id": 26484, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00000240", - "question_id": 26487, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002519", - "question_id": 26489, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004892", - "question_id": 26497, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006784", - "question_id": 26499, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00008464", - "question_id": 26506, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005927", - "question_id": 26511, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001541", - "question_id": 26522, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008290", - "question_id": 26527, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00006193", - "question_id": 26533, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004848", - "question_id": 26535, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004638", - "question_id": 26549, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004759", - "question_id": 26550, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005016", - "question_id": 26551, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000769", - "question_id": 26556, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00007451", - "question_id": 26567, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008784", - "question_id": 26581, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004834", - "question_id": 26590, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004519", - "question_id": 26603, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004721", - "question_id": 26607, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002110", - "question_id": 26611, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002071", - "question_id": 26613, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008200", - "question_id": 26615, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002067", - "question_id": 26617, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005732", - "question_id": 26623, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005469", - "question_id": 26624, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004252", - "question_id": 26638, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008137", - "question_id": 26646, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002116", - "question_id": 26657, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004139", - "question_id": 26659, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004450", - "question_id": 26661, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00000427", - "question_id": 26665, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008430", - "question_id": 26667, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004796", - "question_id": 26683, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005779", - "question_id": 26686, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001262", - "question_id": 26721, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002524", - "question_id": 26725, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003922", - "question_id": 26730, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002939", - "question_id": 26734, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00004381", - "question_id": 26737, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005744", - "question_id": 26765, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001818", - "question_id": 26767, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000592", - "question_id": 26768, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001962", - "question_id": 26771, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006786", - "question_id": 26786, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007437", - "question_id": 26787, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007249", - "question_id": 26800, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004450", - "question_id": 26805, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006031", - "question_id": 26826, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008681", - "question_id": 26832, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005760", - "question_id": 26838, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003895", - "question_id": 26839, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007620", - "question_id": 26848, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001733", - "question_id": 26849, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00002192", - "question_id": 26850, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003963", - "question_id": 26855, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006222", - "question_id": 26858, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001727", - "question_id": 26860, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000317", - "question_id": 26861, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001563", - "question_id": 26862, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00004552", - "question_id": 26864, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008561", - "question_id": 26867, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002346", - "question_id": 26908, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000253", - "question_id": 26909, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"congas\", \"left\", \"congas\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006934", - "question_id": 26911, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006624", - "question_id": 26918, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008438", - "question_id": 26921, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005159", - "question_id": 26922, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007387", - "question_id": 26925, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"middle\", \"erhu\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001420", - "question_id": 26933, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00002248", - "question_id": 26936, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007460", - "question_id": 26939, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002512", - "question_id": 26945, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001400", - "question_id": 26962, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006428", - "question_id": 26970, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003307", - "question_id": 26973, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003632", - "question_id": 26975, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002123", - "question_id": 26990, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003321", - "question_id": 26991, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00007528", - "question_id": 26996, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002996", - "question_id": 26997, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002996", - "question_id": 26997, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005237", - "question_id": 26998, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005214", - "question_id": 27001, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006922", - "question_id": 27022, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00007379", - "question_id": 27023, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000540", - "question_id": 27025, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007744", - "question_id": 27028, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005585", - "question_id": 27039, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006288", - "question_id": 27042, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002574", - "question_id": 27044, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000661", - "question_id": 27046, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003128", - "question_id": 27054, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006351", - "question_id": 27063, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006351", - "question_id": 27063, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004180", - "question_id": 27064, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000504", - "question_id": 27069, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003735", - "question_id": 27070, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000285", - "question_id": 27084, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00007891", - "question_id": 27093, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00004688", - "question_id": 27107, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007744", - "question_id": 27110, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008682", - "question_id": 27111, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00005997", - "question_id": 27116, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00008754", - "question_id": 27117, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001574", - "question_id": 27118, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001471", - "question_id": 27119, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00005609", - "question_id": 27129, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00000514", - "question_id": 27132, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00005685", - "question_id": 27133, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006390", - "question_id": 27138, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004023", - "question_id": 27139, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002172", - "question_id": 27141, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004707", - "question_id": 27156, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006639", - "question_id": 27162, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001414", - "question_id": 27172, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008747", - "question_id": 27175, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003874", - "question_id": 27177, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002101", - "question_id": 27180, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001555", - "question_id": 27184, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00008887", - "question_id": 27187, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003639", - "question_id": 27189, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004852", - "question_id": 27205, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003250", - "question_id": 27214, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003869", - "question_id": 27216, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008339", - "question_id": 27224, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00008169", - "question_id": 27228, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007487", - "question_id": 27231, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005190", - "question_id": 27247, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00001342", - "question_id": 27248, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00006064", - "question_id": 27249, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006510", - "question_id": 27250, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002305", - "question_id": 27251, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003706", - "question_id": 27252, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002047", - "question_id": 27254, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00002090", - "question_id": 27258, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002444", - "question_id": 27259, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000888", - "question_id": 27264, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006661", - "question_id": 27270, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007649", - "question_id": 27272, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002380", - "question_id": 27279, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000640", - "question_id": 27280, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006441", - "question_id": 27282, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007086", - "question_id": 27284, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004994", - "question_id": 27287, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002365", - "question_id": 27289, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003763", - "question_id": 27300, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004380", - "question_id": 27310, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006950", - "question_id": 27314, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007568", - "question_id": 27320, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006467", - "question_id": 27324, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005269", - "question_id": 27325, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006735", - "question_id": 27345, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004084", - "question_id": 27357, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00004224", - "question_id": 27367, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00002625", - "question_id": 27377, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007353", - "question_id": 27380, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004078", - "question_id": 27381, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003968", - "question_id": 27382, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006866", - "question_id": 27386, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004944", - "question_id": 27390, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006761", - "question_id": 27393, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00002999", - "question_id": 27402, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00001157", - "question_id": 27406, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006999", - "question_id": 27419, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006739", - "question_id": 27422, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00000546", - "question_id": 27441, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003660", - "question_id": 27443, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008628", - "question_id": 27445, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007660", - "question_id": 27456, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001517", - "question_id": 27460, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007293", - "question_id": 27462, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007241", - "question_id": 27463, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004091", - "question_id": 27475, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00002677", - "question_id": 27476, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00004632", - "question_id": 27478, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001036", - "question_id": 27505, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00008155", - "question_id": 27509, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00002617", - "question_id": 27518, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00002683", - "question_id": 27523, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005744", - "question_id": 27529, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003119", - "question_id": 27533, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000967", - "question_id": 27538, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004301", - "question_id": 27543, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005958", - "question_id": 27548, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00001901", - "question_id": 27550, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003326", - "question_id": 27557, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004536", - "question_id": 27558, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00004536", - "question_id": 27558, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007105", - "question_id": 27561, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002029", - "question_id": 27563, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002506", - "question_id": 27568, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004733", - "question_id": 27570, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004375", - "question_id": 27572, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005815", - "question_id": 27574, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00004891", - "question_id": 27578, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000755", - "question_id": 27589, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002839", - "question_id": 27597, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005766", - "question_id": 27599, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008706", - "question_id": 27601, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00004875", - "question_id": 27604, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00007098", - "question_id": 27606, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007349", - "question_id": 27609, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007239", - "question_id": 27613, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00005613", - "question_id": 27615, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002194", - "question_id": 27625, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007689", - "question_id": 27628, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004549", - "question_id": 27630, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001905", - "question_id": 27634, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00001527", - "question_id": 27635, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004348", - "question_id": 27644, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006700", - "question_id": 27655, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00006730", - "question_id": 27671, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004568", - "question_id": 27676, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002550", - "question_id": 27678, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007284", - "question_id": 27685, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008722", - "question_id": 27694, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005323", - "question_id": 27702, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004571", - "question_id": 27712, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001068", - "question_id": 27726, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003684", - "question_id": 27728, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005104", - "question_id": 27730, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001958", - "question_id": 27742, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008613", - "question_id": 27753, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004066", - "question_id": 27757, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006009", - "question_id": 27758, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008026", - "question_id": 27762, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003327", - "question_id": 27768, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003327", - "question_id": 27768, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005106", - "question_id": 27775, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000853", - "question_id": 27779, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00002990", - "question_id": 27780, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00000601", - "question_id": 27781, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002825", - "question_id": 27790, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002198", - "question_id": 27799, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00002397", - "question_id": 27809, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003918", - "question_id": 27813, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001188", - "question_id": 27814, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000602", - "question_id": 27822, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000659", - "question_id": 27832, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00000078", - "question_id": 27839, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004578", - "question_id": 27840, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008949", - "question_id": 27846, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006181", - "question_id": 27852, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00007733", - "question_id": 27859, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00000450", - "question_id": 27875, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00001731", - "question_id": 27876, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"saxophone\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000761", - "question_id": 27896, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00001180", - "question_id": 27898, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003744", - "question_id": 27909, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007844", - "question_id": 27912, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007088", - "question_id": 27915, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005834", - "question_id": 27921, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001228", - "question_id": 27927, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004445", - "question_id": 27932, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005053", - "question_id": 27934, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006630", - "question_id": 27936, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004221", - "question_id": 27939, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008962", - "question_id": 27940, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008090", - "question_id": 27945, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004083", - "question_id": 27948, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003840", - "question_id": 27954, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00007082", - "question_id": 27976, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005123", - "question_id": 27981, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007110", - "question_id": 27988, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002480", - "question_id": 27989, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00005989", - "question_id": 27990, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00007773", - "question_id": 27992, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001850", - "question_id": 28006, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007894", - "question_id": 28019, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004765", - "question_id": 28031, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001244", - "question_id": 28034, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003960", - "question_id": 28039, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005409", - "question_id": 28047, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006251", - "question_id": 28048, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006423", - "question_id": 28054, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002606", - "question_id": 28062, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005319", - "question_id": 28063, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003930", - "question_id": 28068, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001615", - "question_id": 28073, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008283", - "question_id": 28076, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007067", - "question_id": 28088, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002126", - "question_id": 28091, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007153", - "question_id": 28097, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00006001", - "question_id": 28099, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004749", - "question_id": 28103, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007781", - "question_id": 28131, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003162", - "question_id": 28133, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002688", - "question_id": 28144, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002754", - "question_id": 28145, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007573", - "question_id": 28146, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005701", - "question_id": 28152, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "va00003871", - "question_id": 28154, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003905", - "question_id": 28155, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001825", - "question_id": 28156, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004096", - "question_id": 28166, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001988", - "question_id": 28168, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000123", - "question_id": 28169, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005531", - "question_id": 28170, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008316", - "question_id": 28174, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003568", - "question_id": 28176, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00006016", - "question_id": 28179, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "va00004581", - "question_id": 28180, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006347", - "question_id": 28182, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006892", - "question_id": 28184, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005481", - "question_id": 28190, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002428", - "question_id": 28191, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008422", - "question_id": 28199, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000073", - "question_id": 28203, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002995", - "question_id": 28204, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000147", - "question_id": 28227, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000249", - "question_id": 28237, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007218", - "question_id": 28239, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002019", - "question_id": 28249, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "va00003838", - "question_id": 28250, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007145", - "question_id": 28255, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008764", - "question_id": 28259, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001012", - "question_id": 28261, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001047", - "question_id": 28265, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004904", - "question_id": 28266, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006741", - "question_id": 28271, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00003582", - "question_id": 28272, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004958", - "question_id": 28281, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005021", - "question_id": 28283, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008935", - "question_id": 28290, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007675", - "question_id": 28301, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002095", - "question_id": 28305, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "va00003439", - "question_id": 28310, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001579", - "question_id": 28315, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008636", - "question_id": 28334, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005336", - "question_id": 28335, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002883", - "question_id": 28336, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002268", - "question_id": 28337, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "vv00000177", - "question_id": 28340, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006746", - "question_id": 28343, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00008863", - "question_id": 28345, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00008442", - "question_id": 28347, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00006949", - "question_id": 28356, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00003704", - "question_id": 28363, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00004961", - "question_id": 28367, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00001816", - "question_id": 28368, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00003099", - "question_id": 28370, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00000779", - "question_id": 28375, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004425", - "question_id": 28382, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00002575", - "question_id": 28385, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008002", - "question_id": 28386, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00000049", - "question_id": 28391, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006534", - "question_id": 28396, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "va00004916", - "question_id": 28404, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005381", - "question_id": 28405, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001918", - "question_id": 28414, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00006075", - "question_id": 28417, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007089", - "question_id": 28422, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00005874", - "question_id": 28425, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003524", - "question_id": 28436, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004071", - "question_id": 28439, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007601", - "question_id": 28448, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00000017", - "question_id": 28453, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003300", - "question_id": 28456, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006660", - "question_id": 28461, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00006615", - "question_id": 28465, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00008263", - "question_id": 28467, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001285", - "question_id": 28476, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008686", - "question_id": 28477, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003816", - "question_id": 28479, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00000496", - "question_id": 28486, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001839", - "question_id": 28487, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007918", - "question_id": 28504, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "sa00006220", - "question_id": 28506, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00000984", - "question_id": 28509, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003017", - "question_id": 28513, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008590", - "question_id": 28517, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00001085", - "question_id": 28519, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005026", - "question_id": 28520, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000387", - "question_id": 28521, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002648", - "question_id": 28533, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006577", - "question_id": 28534, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001705", - "question_id": 28551, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00003668", - "question_id": 28561, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001380", - "question_id": 28562, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00005099", - "question_id": 28576, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00007798", - "question_id": 28578, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "va00005545", - "question_id": 28580, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00008618", - "question_id": 28584, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002614", - "question_id": 28589, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006845", - "question_id": 28597, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00006761", - "question_id": 28599, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003851", - "question_id": 28604, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00006849", - "question_id": 28605, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00004578", - "question_id": 28608, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006980", - "question_id": 28611, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001882", - "question_id": 28612, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006043", - "question_id": 28614, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "vv00003061", - "question_id": 28616, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003370", - "question_id": 28618, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00002643", - "question_id": 28619, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00000975", - "question_id": 28621, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005863", - "question_id": 28623, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004216", - "question_id": 28629, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008288", - "question_id": 28631, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003932", - "question_id": 28632, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00004474", - "question_id": 28637, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001111", - "question_id": 28642, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002054", - "question_id": 28649, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001971", - "question_id": 28653, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00008963", - "question_id": 28655, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00006038", - "question_id": 28656, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00006958", - "question_id": 28663, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00005630", - "question_id": 28665, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004288", - "question_id": 28668, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00001034", - "question_id": 28672, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003253", - "question_id": 28673, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007179", - "question_id": 28677, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003155", - "question_id": 28678, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00001228", - "question_id": 28680, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002521", - "question_id": 28681, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008840", - "question_id": 28690, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005525", - "question_id": 28694, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008183", - "question_id": 28698, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008115", - "question_id": 28699, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00006910", - "question_id": 28703, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00005053", - "question_id": 28705, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007144", - "question_id": 28709, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006029", - "question_id": 28717, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00001840", - "question_id": 28723, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00007408", - "question_id": 28729, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00007199", - "question_id": 28739, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001145", - "question_id": 28742, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00007334", - "question_id": 28745, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000174", - "question_id": 28747, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002138", - "question_id": 28758, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005087", - "question_id": 28771, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bagpipe\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001532", - "question_id": 28781, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005396", - "question_id": 28783, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003754", - "question_id": 28789, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004976", - "question_id": 28802, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00003479", - "question_id": 28808, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00001762", - "question_id": 28811, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004104", - "question_id": 28817, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008102", - "question_id": 28820, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008125", - "question_id": 28824, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001508", - "question_id": 28838, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001136", - "question_id": 28842, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005631", - "question_id": 28844, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "va00003685", - "question_id": 28848, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003039", - "question_id": 28851, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00003821", - "question_id": 28855, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00002238", - "question_id": 28857, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001549", - "question_id": 28864, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00004321", - "question_id": 28872, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00006723", - "question_id": 28873, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007439", - "question_id": 28876, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "va00005642", - "question_id": 28883, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "sa00007434", - "question_id": 28884, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001463", - "question_id": 28894, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003310", - "question_id": 28895, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002191", - "question_id": 28897, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002211", - "question_id": 28904, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002316", - "question_id": 28909, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "sa00006492", - "question_id": 28923, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000315", - "question_id": 28925, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008214", - "question_id": 28933, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "va00005337", - "question_id": 28936, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "va00004188", - "question_id": 28937, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008823", - "question_id": 28940, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001107", - "question_id": 28941, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"drum\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005895", - "question_id": 28942, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00005160", - "question_id": 28949, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004946", - "question_id": 28953, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "sa00006962", - "question_id": 28965, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000031", - "question_id": 28968, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00006017", - "question_id": 28973, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005286", - "question_id": 28984, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008828", - "question_id": 28992, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00000522", - "question_id": 28998, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00001529", - "question_id": 29000, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00003668", - "question_id": 29002, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00005668", - "question_id": 29006, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00006233", - "question_id": 29019, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008956", - "question_id": 29034, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002191", - "question_id": 29042, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004624", - "question_id": 29053, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00000368", - "question_id": 29060, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006544", - "question_id": 29062, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00008415", - "question_id": 29065, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "vv00002992", - "question_id": 29070, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006185", - "question_id": 29080, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00002775", - "question_id": 29090, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006908", - "question_id": 29095, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000995", - "question_id": 29102, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003925", - "question_id": 29111, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008213", - "question_id": 29118, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003109", - "question_id": 29120, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "vv00000497", - "question_id": 29134, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004589", - "question_id": 29135, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "vv00000353", - "question_id": 29141, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002164", - "question_id": 29147, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00000793", - "question_id": 29149, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006291", - "question_id": 29150, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006883", - "question_id": 29153, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004831", - "question_id": 29157, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006808", - "question_id": 29161, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001808", - "question_id": 29167, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007537", - "question_id": 29172, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007751", - "question_id": 29177, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00005110", - "question_id": 29179, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005260", - "question_id": 29180, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "sa00007561", - "question_id": 29181, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "sa00008927", - "question_id": 29188, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00007122", - "question_id": 29189, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006308", - "question_id": 29197, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006238", - "question_id": 29203, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000668", - "question_id": 29206, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005711", - "question_id": 29214, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00004440", - "question_id": 29217, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00006395", - "question_id": 29222, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00004507", - "question_id": 29233, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003718", - "question_id": 29243, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00002475", - "question_id": 29244, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005102", - "question_id": 29248, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001425", - "question_id": 29252, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001586", - "question_id": 29254, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006588", - "question_id": 29261, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002645", - "question_id": 29263, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00004334", - "question_id": 29268, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "va00004745", - "question_id": 29269, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00007668", - "question_id": 29277, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001984", - "question_id": 29280, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005156", - "question_id": 29282, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00002824", - "question_id": 29287, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00005350", - "question_id": 29292, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "va00004620", - "question_id": 29294, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004596", - "question_id": 29297, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000451", - "question_id": 29306, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00000451", - "question_id": 29306, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00001791", - "question_id": 29307, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "va00004000", - "question_id": 29315, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "va00003102", - "question_id": 29322, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00006584", - "question_id": 29324, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005881", - "question_id": 29331, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bagpipe\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005003", - "question_id": 29335, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00006195", - "question_id": 29339, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00006095", - "question_id": 29345, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003707", - "question_id": 29348, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"bassoon\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002758", - "question_id": 29356, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008681", - "question_id": 29357, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005494", - "question_id": 29371, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"xylophone\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005451", - "question_id": 29376, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00005987", - "question_id": 29378, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000044", - "question_id": 29379, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003658", - "question_id": 29384, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005096", - "question_id": 29386, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001984", - "question_id": 29392, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004403", - "question_id": 29397, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "vv00000227", - "question_id": 29398, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001644", - "question_id": 29404, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002489", - "question_id": 29409, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001166", - "question_id": 29428, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005476", - "question_id": 29430, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002396", - "question_id": 29431, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005044", - "question_id": 29440, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004391", - "question_id": 29446, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00006779", - "question_id": 29447, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008018", - "question_id": 29452, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00006700", - "question_id": 29454, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007792", - "question_id": 29456, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007043", - "question_id": 29457, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "vv00000525", - "question_id": 29463, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bagpipe\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008080", - "question_id": 29464, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001999", - "question_id": 29468, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007593", - "question_id": 29470, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008523", - "question_id": 29471, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006603", - "question_id": 29475, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002670", - "question_id": 29482, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000533", - "question_id": 29487, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007928", - "question_id": 29492, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002660", - "question_id": 29493, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00000083", - "question_id": 29495, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001894", - "question_id": 29497, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003176", - "question_id": 29505, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00002538", - "question_id": 29510, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001365", - "question_id": 29513, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001743", - "question_id": 29515, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008062", - "question_id": 29518, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00008830", - "question_id": 29520, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002541", - "question_id": 29524, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002369", - "question_id": 29526, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008208", - "question_id": 29534, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00004544", - "question_id": 29538, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002401", - "question_id": 29549, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "sa00006409", - "question_id": 29559, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001925", - "question_id": 29566, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005714", - "question_id": 29569, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005182", - "question_id": 29573, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007670", - "question_id": 29576, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005164", - "question_id": 29583, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000689", - "question_id": 29585, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003767", - "question_id": 29587, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00006879", - "question_id": 29589, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00006412", - "question_id": 29593, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002320", - "question_id": 29595, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00006331", - "question_id": 29596, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003754", - "question_id": 29597, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002624", - "question_id": 29599, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005526", - "question_id": 29600, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00008418", - "question_id": 29601, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005802", - "question_id": 29618, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004132", - "question_id": 29621, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00008904", - "question_id": 29624, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003361", - "question_id": 29628, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002599", - "question_id": 29632, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002466", - "question_id": 29637, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003885", - "question_id": 29646, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006108", - "question_id": 29668, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006896", - "question_id": 29670, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "va00004305", - "question_id": 29678, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000628", - "question_id": 29683, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "va00004324", - "question_id": 29684, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006791", - "question_id": 29689, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "va00004985", - "question_id": 29692, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00001756", - "question_id": 29709, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00002918", - "question_id": 29716, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001652", - "question_id": 29718, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "va00005295", - "question_id": 29719, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006810", - "question_id": 29720, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008581", - "question_id": 29721, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002584", - "question_id": 29724, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "vv00000531", - "question_id": 29737, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "sa00008398", - "question_id": 29742, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00005128", - "question_id": 29746, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008349", - "question_id": 29749, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003688", - "question_id": 29751, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004732", - "question_id": 29756, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00000777", - "question_id": 29759, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000598", - "question_id": 29766, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005144", - "question_id": 29772, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "sa00007027", - "question_id": 29776, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008589", - "question_id": 29781, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004339", - "question_id": 29786, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00006848", - "question_id": 29810, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007566", - "question_id": 29812, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00004477", - "question_id": 29814, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00000914", - "question_id": 29819, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002820", - "question_id": 29821, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006676", - "question_id": 29825, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001772", - "question_id": 29832, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002653", - "question_id": 29838, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008899", - "question_id": 29842, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001390", - "question_id": 29845, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00006449", - "question_id": 29849, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00001322", - "question_id": 29860, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008694", - "question_id": 29867, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002944", - "question_id": 29868, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004492", - "question_id": 29884, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000103", - "question_id": 29886, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001912", - "question_id": 29891, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"erhu\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004540", - "question_id": 29892, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003141", - "question_id": 29893, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006175", - "question_id": 29894, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00007536", - "question_id": 29896, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00004677", - "question_id": 29907, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "vv00000606", - "question_id": 29913, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001721", - "question_id": 29915, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00005853", - "question_id": 29921, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003270", - "question_id": 29922, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00003430", - "question_id": 29931, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00003770", - "question_id": 29936, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003313", - "question_id": 29951, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00007719", - "question_id": 29957, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "va00004518", - "question_id": 29958, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00000274", - "question_id": 29964, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00002275", - "question_id": 29966, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00001139", - "question_id": 29973, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00006968", - "question_id": 29979, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"middle\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001207", - "question_id": 29980, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006981", - "question_id": 29985, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"saxophone\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000634", - "question_id": 29996, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006387", - "question_id": 29997, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00003074", - "question_id": 29999, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003547", - "question_id": 30008, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00004521", - "question_id": 30014, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008560", - "question_id": 30015, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005200", - "question_id": 30023, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003467", - "question_id": 30025, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000952", - "question_id": 30032, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004057", - "question_id": 30033, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004663", - "question_id": 30034, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00004935", - "question_id": 30040, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "vv00000649", - "question_id": 30045, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001625", - "question_id": 30046, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00005602", - "question_id": 30049, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007266", - "question_id": 30051, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003661", - "question_id": 30054, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007789", - "question_id": 30055, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00001945", - "question_id": 30062, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00005655", - "question_id": 30066, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005930", - "question_id": 30069, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "sa00007621", - "question_id": 30072, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "vv00000404", - "question_id": 30074, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00008643", - "question_id": 30075, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004827", - "question_id": 30078, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00001061", - "question_id": 30079, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003780", - "question_id": 30087, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004027", - "question_id": 30089, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "va00005700", - "question_id": 30090, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004892", - "question_id": 30092, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00008059", - "question_id": 30093, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000644", - "question_id": 30097, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005209", - "question_id": 30100, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008536", - "question_id": 30119, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000068", - "question_id": 30128, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002566", - "question_id": 30129, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00008908", - "question_id": 30137, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006245", - "question_id": 30143, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008012", - "question_id": 30151, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003126", - "question_id": 30153, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "va00004157", - "question_id": 30157, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000824", - "question_id": 30167, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00007059", - "question_id": 30173, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007196", - "question_id": 30180, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002382", - "question_id": 30182, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004760", - "question_id": 30184, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00005195", - "question_id": 30186, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008911", - "question_id": 30191, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001374", - "question_id": 30192, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002697", - "question_id": 30202, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "va00003157", - "question_id": 30207, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00006802", - "question_id": 30220, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "vv00002992", - "question_id": 30225, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00000835", - "question_id": 30231, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007628", - "question_id": 30246, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003442", - "question_id": 30250, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001399", - "question_id": 30255, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007538", - "question_id": 30258, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"drum\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000919", - "question_id": 30261, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002360", - "question_id": 30262, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000798", - "question_id": 30271, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00002785", - "question_id": 30279, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "va00005427", - "question_id": 30285, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007972", - "question_id": 30298, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003532", - "question_id": 30304, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007737", - "question_id": 30308, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004452", - "question_id": 30322, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00005521", - "question_id": 30324, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000670", - "question_id": 30327, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000698", - "question_id": 30331, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00004886", - "question_id": 30342, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007836", - "question_id": 30353, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "vv00000653", - "question_id": 30354, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00000675", - "question_id": 30359, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00008875", - "question_id": 30365, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005672", - "question_id": 30372, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00007934", - "question_id": 30374, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008071", - "question_id": 30379, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00000774", - "question_id": 30381, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00001699", - "question_id": 30386, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00003515", - "question_id": 30389, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006091", - "question_id": 30401, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00006072", - "question_id": 30406, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003530", - "question_id": 30408, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002415", - "question_id": 30409, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002669", - "question_id": 30411, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00003081", - "question_id": 30412, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"trumpet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006582", - "question_id": 30417, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00001278", - "question_id": 30418, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008522", - "question_id": 30427, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000091", - "question_id": 30440, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002300", - "question_id": 30441, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "sa00007328", - "question_id": 30454, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00002143", - "question_id": 30455, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00005637", - "question_id": 30473, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003593", - "question_id": 30476, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001029", - "question_id": 30483, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002477", - "question_id": 30486, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007416", - "question_id": 30490, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001249", - "question_id": 30496, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"ukulele\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006740", - "question_id": 30505, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"tuba\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00002495", - "question_id": 30511, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005172", - "question_id": 30512, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "vv00003020", - "question_id": 30533, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002743", - "question_id": 30534, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003650", - "question_id": 30550, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004869", - "question_id": 30553, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"bassoon\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "sa00008493", - "question_id": 30557, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00003053", - "question_id": 30558, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00001311", - "question_id": 30560, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00008143", - "question_id": 30561, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000908", - "question_id": 30579, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00007366", - "question_id": 30583, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006124", - "question_id": 30584, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002297", - "question_id": 30589, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002421", - "question_id": 30593, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00008979", - "question_id": 30596, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00007446", - "question_id": 30608, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00005926", - "question_id": 30609, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001619", - "question_id": 30611, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007486", - "question_id": 30612, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007318", - "question_id": 30614, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00007586", - "question_id": 30618, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00007729", - "question_id": 30629, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004570", - "question_id": 30633, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"xylophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005941", - "question_id": 30637, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008382", - "question_id": 30640, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002805", - "question_id": 30652, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00006854", - "question_id": 30659, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006900", - "question_id": 30669, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "vv00000515", - "question_id": 30675, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00004296", - "question_id": 30680, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006101", - "question_id": 30694, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00007851", - "question_id": 30695, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00004831", - "question_id": 30699, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007018", - "question_id": 30706, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006430", - "question_id": 30708, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008479", - "question_id": 30713, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005938", - "question_id": 30716, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008553", - "question_id": 30728, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002908", - "question_id": 30736, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003810", - "question_id": 30750, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002220", - "question_id": 30753, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "vv00000649", - "question_id": 30758, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000649", - "question_id": 30758, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007603", - "question_id": 30759, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004780", - "question_id": 30765, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00007805", - "question_id": 30772, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00003344", - "question_id": 30781, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004734", - "question_id": 30795, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004251", - "question_id": 30800, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"tuba\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008522", - "question_id": 30819, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006000", - "question_id": 30821, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002865", - "question_id": 30827, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00005601", - "question_id": 30829, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003680", - "question_id": 30831, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001328", - "question_id": 30833, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005304", - "question_id": 30840, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00004629", - "question_id": 30841, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006026", - "question_id": 30850, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001289", - "question_id": 30867, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007492", - "question_id": 30868, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00004859", - "question_id": 30869, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000721", - "question_id": 30870, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00002078", - "question_id": 30873, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007744", - "question_id": 30883, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007129", - "question_id": 30885, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005937", - "question_id": 30894, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007476", - "question_id": 30909, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001079", - "question_id": 30912, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00002379", - "question_id": 30913, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008773", - "question_id": 30916, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00008042", - "question_id": 30920, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003238", - "question_id": 30934, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006827", - "question_id": 30935, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000575", - "question_id": 30941, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002626", - "question_id": 30957, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00004198", - "question_id": 30970, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004721", - "question_id": 30982, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00006947", - "question_id": 30983, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00000501", - "question_id": 30984, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "vv00002988", - "question_id": 30990, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"tuba\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002988", - "question_id": 30990, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"tuba\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004996", - "question_id": 30993, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004106", - "question_id": 30997, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007923", - "question_id": 31005, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005934", - "question_id": 31012, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001592", - "question_id": 31015, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003430", - "question_id": 31019, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000966", - "question_id": 31030, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000401", - "question_id": 31034, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"ukulele\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006471", - "question_id": 31038, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "va00005578", - "question_id": 31048, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007424", - "question_id": 31049, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004995", - "question_id": 31050, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007800", - "question_id": 31053, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004144", - "question_id": 31056, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00001593", - "question_id": 31058, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005612", - "question_id": 31069, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006227", - "question_id": 31078, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008946", - "question_id": 31080, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008254", - "question_id": 31084, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008818", - "question_id": 31089, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001395", - "question_id": 31091, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002409", - "question_id": 31100, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008378", - "question_id": 31102, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000271", - "question_id": 31105, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008087", - "question_id": 31113, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005360", - "question_id": 31114, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007781", - "question_id": 31116, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004467", - "question_id": 31125, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006757", - "question_id": 31132, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001938", - "question_id": 31133, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003330", - "question_id": 31134, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000219", - "question_id": 31142, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005186", - "question_id": 31153, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004419", - "question_id": 31155, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006043", - "question_id": 31161, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008461", - "question_id": 31165, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"erhu\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "vv00002948", - "question_id": 31166, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006359", - "question_id": 31174, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004004", - "question_id": 31179, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006097", - "question_id": 31186, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000391", - "question_id": 31189, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002386", - "question_id": 31194, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000573", - "question_id": 31200, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005585", - "question_id": 31206, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005353", - "question_id": 31209, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004026", - "question_id": 31215, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "va00004714", - "question_id": 31224, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006198", - "question_id": 31227, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004350", - "question_id": 31229, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008089", - "question_id": 31230, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002622", - "question_id": 31232, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005730", - "question_id": 31234, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000293", - "question_id": 31238, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003306", - "question_id": 31247, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000769", - "question_id": 31251, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006492", - "question_id": 31253, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000327", - "question_id": 31256, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006150", - "question_id": 31257, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001390", - "question_id": 31262, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005877", - "question_id": 31263, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008877", - "question_id": 31273, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007643", - "question_id": 31275, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003748", - "question_id": 31277, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007984", - "question_id": 31287, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007307", - "question_id": 31291, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007179", - "question_id": 31293, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003378", - "question_id": 31294, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003865", - "question_id": 31296, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007451", - "question_id": 31297, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00000629", - "question_id": 31301, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008028", - "question_id": 31313, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004642", - "question_id": 31319, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005425", - "question_id": 31320, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002082", - "question_id": 31326, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003385", - "question_id": 31331, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005627", - "question_id": 31342, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000428", - "question_id": 31343, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004191", - "question_id": 31346, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001346", - "question_id": 31347, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002711", - "question_id": 31349, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000367", - "question_id": 31357, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006092", - "question_id": 31359, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004924", - "question_id": 31361, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007260", - "question_id": 31362, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005522", - "question_id": 31366, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005548", - "question_id": 31367, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008517", - "question_id": 31372, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005919", - "question_id": 31374, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004538", - "question_id": 31382, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006111", - "question_id": 31389, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006111", - "question_id": 31389, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004242", - "question_id": 31390, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006540", - "question_id": 31393, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007746", - "question_id": 31399, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007199", - "question_id": 31401, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007171", - "question_id": 31408, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003735", - "question_id": 31409, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001863", - "question_id": 31410, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005514", - "question_id": 31412, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00007921", - "question_id": 31414, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003356", - "question_id": 31416, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002743", - "question_id": 31426, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003612", - "question_id": 31427, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003274", - "question_id": 31430, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003678", - "question_id": 31436, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "sa00008215", - "question_id": 31438, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001061", - "question_id": 31440, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008798", - "question_id": 31443, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008535", - "question_id": 31448, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00003075", - "question_id": 31457, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00002688", - "question_id": 31463, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00000154", - "question_id": 31465, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00002272", - "question_id": 31467, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008933", - "question_id": 31475, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003815", - "question_id": 31487, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007853", - "question_id": 31490, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"electric_bass\", \"left\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007223", - "question_id": 31497, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003333", - "question_id": 31499, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008136", - "question_id": 31502, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008136", - "question_id": 31502, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003809", - "question_id": 31504, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002135", - "question_id": 31512, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00002745", - "question_id": 31520, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003873", - "question_id": 31526, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00005994", - "question_id": 31531, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003258", - "question_id": 31534, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005814", - "question_id": 31539, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006260", - "question_id": 31541, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004433", - "question_id": 31547, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001374", - "question_id": 31553, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003555", - "question_id": 31560, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000910", - "question_id": 31568, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007072", - "question_id": 31569, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006763", - "question_id": 31575, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002286", - "question_id": 31576, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00004518", - "question_id": 31578, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000403", - "question_id": 31581, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005764", - "question_id": 31582, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008133", - "question_id": 31588, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001054", - "question_id": 31589, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000649", - "question_id": 31590, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006635", - "question_id": 31593, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008650", - "question_id": 31601, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007211", - "question_id": 31604, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008794", - "question_id": 31612, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007217", - "question_id": 31613, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008850", - "question_id": 31617, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000630", - "question_id": 31620, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002488", - "question_id": 31623, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003663", - "question_id": 31624, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007775", - "question_id": 31626, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00004984", - "question_id": 31631, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007750", - "question_id": 31633, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008110", - "question_id": 31635, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007426", - "question_id": 31637, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006917", - "question_id": 31645, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00007934", - "question_id": 31648, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008259", - "question_id": 31649, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007859", - "question_id": 31651, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002306", - "question_id": 31656, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003743", - "question_id": 31668, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003887", - "question_id": 31673, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007979", - "question_id": 31691, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003272", - "question_id": 31692, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003456", - "question_id": 31698, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005206", - "question_id": 31701, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007974", - "question_id": 31704, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004777", - "question_id": 31712, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007473", - "question_id": 31718, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003339", - "question_id": 31720, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00008599", - "question_id": 31724, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007280", - "question_id": 31729, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00002966", - "question_id": 31742, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003894", - "question_id": 31745, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004438", - "question_id": 31749, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007054", - "question_id": 31756, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006550", - "question_id": 31760, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000203", - "question_id": 31761, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001224", - "question_id": 31771, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002431", - "question_id": 31773, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008848", - "question_id": 31779, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002038", - "question_id": 31780, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002705", - "question_id": 31788, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007127", - "question_id": 31790, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006370", - "question_id": 31793, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00005664", - "question_id": 31797, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007257", - "question_id": 31798, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003429", - "question_id": 31799, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000356", - "question_id": 31804, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007367", - "question_id": 31810, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006203", - "question_id": 31813, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004174", - "question_id": 31816, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002792", - "question_id": 31823, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002642", - "question_id": 31832, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003299", - "question_id": 31840, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006891", - "question_id": 31844, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003437", - "question_id": 31845, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004282", - "question_id": 31856, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005103", - "question_id": 31858, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004955", - "question_id": 31864, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003972", - "question_id": 31877, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000445", - "question_id": 31882, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00003081", - "question_id": 31890, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002038", - "question_id": 31892, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002229", - "question_id": 31893, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001977", - "question_id": 31897, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007251", - "question_id": 31900, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00003882", - "question_id": 31901, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006382", - "question_id": 31918, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005158", - "question_id": 31919, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001188", - "question_id": 31923, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003476", - "question_id": 31928, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005831", - "question_id": 31934, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006431", - "question_id": 31948, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001545", - "question_id": 31950, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007286", - "question_id": 31955, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005096", - "question_id": 31957, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003264", - "question_id": 31960, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000062", - "question_id": 31969, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003278", - "question_id": 31971, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008719", - "question_id": 31972, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002002", - "question_id": 31975, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003572", - "question_id": 31981, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000683", - "question_id": 31993, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005449", - "question_id": 31995, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007273", - "question_id": 32002, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006210", - "question_id": 32003, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003318", - "question_id": 32017, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007127", - "question_id": 32018, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003627", - "question_id": 32021, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006976", - "question_id": 32029, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008623", - "question_id": 32040, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002728", - "question_id": 32043, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004156", - "question_id": 32044, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000371", - "question_id": 32046, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005635", - "question_id": 32053, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004781", - "question_id": 32062, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004079", - "question_id": 32063, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006962", - "question_id": 32075, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006513", - "question_id": 32083, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005347", - "question_id": 32086, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007886", - "question_id": 32118, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005301", - "question_id": 32120, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008465", - "question_id": 32122, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007466", - "question_id": 32145, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000302", - "question_id": 32146, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006345", - "question_id": 32147, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00003065", - "question_id": 32149, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000444", - "question_id": 32155, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000404", - "question_id": 32157, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005092", - "question_id": 32160, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000930", - "question_id": 32172, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00006440", - "question_id": 32180, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006455", - "question_id": 32181, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004649", - "question_id": 32183, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00005390", - "question_id": 32185, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003373", - "question_id": 32193, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005599", - "question_id": 32194, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002181", - "question_id": 32214, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001667", - "question_id": 32215, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002198", - "question_id": 32221, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003400", - "question_id": 32223, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006725", - "question_id": 32224, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000088", - "question_id": 32234, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004748", - "question_id": 32242, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005690", - "question_id": 32243, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00002079", - "question_id": 32245, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003093", - "question_id": 32255, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003108", - "question_id": 32256, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003185", - "question_id": 32258, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "vv00002597", - "question_id": 32263, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001225", - "question_id": 32271, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004046", - "question_id": 32280, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007519", - "question_id": 32281, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008277", - "question_id": 32284, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000039", - "question_id": 32286, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00002546", - "question_id": 32289, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00006567", - "question_id": 32291, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008418", - "question_id": 32300, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005511", - "question_id": 32313, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005455", - "question_id": 32329, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "sa00007155", - "question_id": 32340, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002310", - "question_id": 32344, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000582", - "question_id": 32346, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005715", - "question_id": 32353, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004933", - "question_id": 32360, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003613", - "question_id": 32362, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"banjo\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000024", - "question_id": 32363, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001429", - "question_id": 32373, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005741", - "question_id": 32375, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "sa00008835", - "question_id": 32376, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005899", - "question_id": 32378, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006162", - "question_id": 32389, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003242", - "question_id": 32393, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004603", - "question_id": 32398, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00003750", - "question_id": 32402, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002055", - "question_id": 32406, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "sa00007703", - "question_id": 32409, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000264", - "question_id": 32418, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007647", - "question_id": 32428, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005961", - "question_id": 32430, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00000672", - "question_id": 32435, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005221", - "question_id": 32436, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005922", - "question_id": 32438, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001739", - "question_id": 32443, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003219", - "question_id": 32446, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000499", - "question_id": 32448, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007846", - "question_id": 32469, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006492", - "question_id": 32479, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006944", - "question_id": 32480, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001603", - "question_id": 32485, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008072", - "question_id": 32499, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002921", - "question_id": 32506, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001234", - "question_id": 32509, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005825", - "question_id": 32510, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006631", - "question_id": 32513, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003822", - "question_id": 32516, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003245", - "question_id": 32519, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006168", - "question_id": 32521, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005825", - "question_id": 32529, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006271", - "question_id": 32540, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00000957", - "question_id": 32542, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007735", - "question_id": 32556, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001057", - "question_id": 32557, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005958", - "question_id": 32558, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003639", - "question_id": 32564, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008061", - "question_id": 32582, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005708", - "question_id": 32587, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000363", - "question_id": 32592, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003522", - "question_id": 32593, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000474", - "question_id": 32594, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006564", - "question_id": 32595, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008890", - "question_id": 32597, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00002449", - "question_id": 32601, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004199", - "question_id": 32602, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006248", - "question_id": 32622, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002154", - "question_id": 32625, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00007385", - "question_id": 32634, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007543", - "question_id": 32639, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001649", - "question_id": 32640, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002673", - "question_id": 32642, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006010", - "question_id": 32644, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005232", - "question_id": 32645, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003176", - "question_id": 32652, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00008159", - "question_id": 32658, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005075", - "question_id": 32667, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002223", - "question_id": 32674, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000122", - "question_id": 32676, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003324", - "question_id": 32677, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002784", - "question_id": 32683, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "sa00008927", - "question_id": 32689, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008553", - "question_id": 32699, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006966", - "question_id": 32704, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006269", - "question_id": 32710, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008407", - "question_id": 32711, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004488", - "question_id": 32713, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007399", - "question_id": 32716, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000096", - "question_id": 32718, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003209", - "question_id": 32719, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00006046", - "question_id": 32724, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007422", - "question_id": 32730, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006826", - "question_id": 32734, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007134", - "question_id": 32738, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002964", - "question_id": 32744, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005784", - "question_id": 32751, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004966", - "question_id": 32754, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006225", - "question_id": 32760, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002500", - "question_id": 32764, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005255", - "question_id": 32765, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007032", - "question_id": 32768, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004154", - "question_id": 32769, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004818", - "question_id": 32777, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003034", - "question_id": 32778, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008208", - "question_id": 32789, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006904", - "question_id": 32807, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008582", - "question_id": 32812, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007509", - "question_id": 32815, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001127", - "question_id": 32824, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006489", - "question_id": 32831, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008826", - "question_id": 32834, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001574", - "question_id": 32843, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000888", - "question_id": 32844, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006417", - "question_id": 32845, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003903", - "question_id": 32847, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001945", - "question_id": 32848, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005188", - "question_id": 32851, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005070", - "question_id": 32854, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003159", - "question_id": 32855, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001307", - "question_id": 32883, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002774", - "question_id": 32885, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "vv00000453", - "question_id": 32890, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "more than ten" - }, - { - "video_id": "00002560", - "question_id": 32891, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001771", - "question_id": 32897, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005854", - "question_id": 32899, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001598", - "question_id": 32901, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000860", - "question_id": 32915, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006087", - "question_id": 32936, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00000180", - "question_id": 32938, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005138", - "question_id": 32950, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008215", - "question_id": 32953, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004943", - "question_id": 32954, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008851", - "question_id": 32955, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005533", - "question_id": 32958, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003748", - "question_id": 32960, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "vv00002511", - "question_id": 32972, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005179", - "question_id": 32976, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008349", - "question_id": 32977, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000161", - "question_id": 32984, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005126", - "question_id": 32985, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001712", - "question_id": 33006, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005605", - "question_id": 33008, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008607", - "question_id": 33020, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006564", - "question_id": 33026, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003264", - "question_id": 33030, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"pipa\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004341", - "question_id": 33031, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007376", - "question_id": 33041, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008748", - "question_id": 33061, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006931", - "question_id": 33069, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003141", - "question_id": 33075, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004520", - "question_id": 33079, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005063", - "question_id": 33082, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000420", - "question_id": 33083, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "va00005796", - "question_id": 33087, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006308", - "question_id": 33088, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002129", - "question_id": 33090, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004419", - "question_id": 33094, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007091", - "question_id": 33096, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004111", - "question_id": 33099, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008413", - "question_id": 33107, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007598", - "question_id": 33121, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004265", - "question_id": 33134, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005480", - "question_id": 33136, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003391", - "question_id": 33137, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000813", - "question_id": 33139, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006598", - "question_id": 33143, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000969", - "question_id": 33145, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000497", - "question_id": 33148, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005946", - "question_id": 33156, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005134", - "question_id": 33157, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007865", - "question_id": 33159, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003798", - "question_id": 33160, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005769", - "question_id": 33162, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000550", - "question_id": 33165, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008893", - "question_id": 33167, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008215", - "question_id": 33175, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002562", - "question_id": 33179, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004809", - "question_id": 33181, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00003081", - "question_id": 33182, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000372", - "question_id": 33183, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005708", - "question_id": 33190, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003294", - "question_id": 33196, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006047", - "question_id": 33198, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000668", - "question_id": 33199, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001012", - "question_id": 33210, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004105", - "question_id": 33222, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00005434", - "question_id": 33227, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003199", - "question_id": 33230, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001670", - "question_id": 33239, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00004258", - "question_id": 33240, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000860", - "question_id": 33241, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00006543", - "question_id": 33246, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007588", - "question_id": 33253, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003882", - "question_id": 33270, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004758", - "question_id": 33277, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000788", - "question_id": 33280, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "vv00000282", - "question_id": 33281, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006971", - "question_id": 33287, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006669", - "question_id": 33298, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007799", - "question_id": 33310, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002511", - "question_id": 33314, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003775", - "question_id": 33319, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000355", - "question_id": 33321, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001168", - "question_id": 33326, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003135", - "question_id": 33327, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002738", - "question_id": 33328, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008281", - "question_id": 33334, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007325", - "question_id": 33335, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006078", - "question_id": 33346, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005916", - "question_id": 33348, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008601", - "question_id": 33349, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005202", - "question_id": 33351, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002617", - "question_id": 33352, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000180", - "question_id": 33355, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004701", - "question_id": 33358, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002851", - "question_id": 33366, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008579", - "question_id": 33367, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007925", - "question_id": 33369, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007613", - "question_id": 33378, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003216", - "question_id": 33382, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00002639", - "question_id": 33383, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003564", - "question_id": 33387, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007405", - "question_id": 33389, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005473", - "question_id": 33401, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007504", - "question_id": 33404, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002778", - "question_id": 33416, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005079", - "question_id": 33417, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005871", - "question_id": 33420, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008365", - "question_id": 33424, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001485", - "question_id": 33429, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003502", - "question_id": 33437, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001136", - "question_id": 33439, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004714", - "question_id": 33445, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001849", - "question_id": 33446, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004417", - "question_id": 33448, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005568", - "question_id": 33452, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000653", - "question_id": 33481, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002568", - "question_id": 33483, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004142", - "question_id": 33490, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000123", - "question_id": 33498, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007108", - "question_id": 33500, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003059", - "question_id": 33511, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008552", - "question_id": 33514, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006115", - "question_id": 33517, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000693", - "question_id": 33521, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00006867", - "question_id": 33524, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007469", - "question_id": 33531, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006458", - "question_id": 33534, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005899", - "question_id": 33542, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003505", - "question_id": 33550, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00004623", - "question_id": 33558, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004210", - "question_id": 33561, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00002334", - "question_id": 33564, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007748", - "question_id": 33566, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002108", - "question_id": 33573, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001287", - "question_id": 33575, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004034", - "question_id": 33580, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006161", - "question_id": 33588, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00008250", - "question_id": 33591, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007469", - "question_id": 33592, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001354", - "question_id": 33605, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "vv00000383", - "question_id": 33607, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006143", - "question_id": 33609, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002143", - "question_id": 33613, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003456", - "question_id": 33616, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007774", - "question_id": 33620, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002708", - "question_id": 33621, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004117", - "question_id": 33624, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008257", - "question_id": 33627, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000354", - "question_id": 33630, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003895", - "question_id": 33631, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00005211", - "question_id": 33645, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008022", - "question_id": 33651, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008852", - "question_id": 33652, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008553", - "question_id": 33670, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002547", - "question_id": 33671, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002547", - "question_id": 33671, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004277", - "question_id": 33679, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "vv00000487", - "question_id": 33684, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005765", - "question_id": 33686, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008754", - "question_id": 33687, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001870", - "question_id": 33689, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007800", - "question_id": 33700, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005238", - "question_id": 33702, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004296", - "question_id": 33708, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007171", - "question_id": 33718, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003668", - "question_id": 33719, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008411", - "question_id": 33721, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007956", - "question_id": 33725, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001994", - "question_id": 33747, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006446", - "question_id": 33748, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008039", - "question_id": 33750, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006480", - "question_id": 33751, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "va00005912", - "question_id": 33754, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003222", - "question_id": 33756, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000508", - "question_id": 33758, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000711", - "question_id": 33762, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004569", - "question_id": 33763, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004154", - "question_id": 33769, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000268", - "question_id": 33781, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001543", - "question_id": 33791, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004009", - "question_id": 33792, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007925", - "question_id": 33796, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008506", - "question_id": 33808, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003654", - "question_id": 33809, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006721", - "question_id": 33814, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007524", - "question_id": 33822, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00008704", - "question_id": 33824, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000656", - "question_id": 33832, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004746", - "question_id": 33834, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006889", - "question_id": 33836, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002255", - "question_id": 33848, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004828", - "question_id": 33849, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003229", - "question_id": 33850, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004592", - "question_id": 33858, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002343", - "question_id": 33861, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002414", - "question_id": 33868, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002269", - "question_id": 33870, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007058", - "question_id": 33871, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000401", - "question_id": 33875, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "sa00007310", - "question_id": 33876, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005681", - "question_id": 33881, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000295", - "question_id": 33883, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"banjo\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00003181", - "question_id": 33886, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005342", - "question_id": 33889, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002771", - "question_id": 33902, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"banjo\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00001028", - "question_id": 33903, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006820", - "question_id": 33907, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002063", - "question_id": 33914, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004791", - "question_id": 33921, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001797", - "question_id": 33935, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001200", - "question_id": 33948, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006994", - "question_id": 33956, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008270", - "question_id": 33985, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004350", - "question_id": 33986, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002479", - "question_id": 33990, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003010", - "question_id": 33991, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001037", - "question_id": 33993, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00005987", - "question_id": 33998, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005819", - "question_id": 34022, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005477", - "question_id": 34036, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004464", - "question_id": 34040, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001606", - "question_id": 34041, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007368", - "question_id": 34043, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006910", - "question_id": 34044, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008388", - "question_id": 34047, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003208", - "question_id": 34057, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001924", - "question_id": 34061, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000450", - "question_id": 34064, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002564", - "question_id": 34072, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003608", - "question_id": 34073, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "va00004265", - "question_id": 34074, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003439", - "question_id": 34075, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005788", - "question_id": 34080, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00003383", - "question_id": 34088, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006587", - "question_id": 34093, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000119", - "question_id": 34097, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001155", - "question_id": 34103, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007389", - "question_id": 34104, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002403", - "question_id": 34105, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00003047", - "question_id": 34112, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007129", - "question_id": 34113, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000630", - "question_id": 34116, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004384", - "question_id": 34120, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005947", - "question_id": 34127, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00006736", - "question_id": 34137, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00003786", - "question_id": 34138, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001241", - "question_id": 34143, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "vv00002934", - "question_id": 34145, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007416", - "question_id": 34150, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002269", - "question_id": 34154, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002933", - "question_id": 34158, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004148", - "question_id": 34159, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000401", - "question_id": 34164, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001166", - "question_id": 34166, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00004051", - "question_id": 34167, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005171", - "question_id": 34169, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007045", - "question_id": 34175, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007319", - "question_id": 34183, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003196", - "question_id": 34187, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000098", - "question_id": 34188, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002852", - "question_id": 34194, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00002989", - "question_id": 34196, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006503", - "question_id": 34199, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006299", - "question_id": 34203, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003152", - "question_id": 34204, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008142", - "question_id": 34218, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005515", - "question_id": 34232, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002373", - "question_id": 34237, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"tuba\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "vv00000639", - "question_id": 34240, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008436", - "question_id": 34242, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006063", - "question_id": 34243, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007368", - "question_id": 34255, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008714", - "question_id": 34273, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000617", - "question_id": 34274, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005843", - "question_id": 34275, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004261", - "question_id": 34278, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005037", - "question_id": 34286, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007646", - "question_id": 34310, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000323", - "question_id": 34311, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "va00005337", - "question_id": 34312, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008167", - "question_id": 34317, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006519", - "question_id": 34318, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002340", - "question_id": 34320, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00007042", - "question_id": 34323, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004057", - "question_id": 34329, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002451", - "question_id": 34332, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002462", - "question_id": 34333, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004753", - "question_id": 34338, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002054", - "question_id": 34341, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004909", - "question_id": 34345, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007417", - "question_id": 34349, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005293", - "question_id": 34354, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007512", - "question_id": 34356, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00003748", - "question_id": 34358, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003414", - "question_id": 34361, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002473", - "question_id": 34369, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001295", - "question_id": 34373, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"guzheng\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003265", - "question_id": 34377, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008084", - "question_id": 34381, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005302", - "question_id": 34384, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004335", - "question_id": 34389, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003833", - "question_id": 34390, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002328", - "question_id": 34392, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001475", - "question_id": 34411, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006547", - "question_id": 34417, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006026", - "question_id": 34422, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003827", - "question_id": 34425, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007895", - "question_id": 34429, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "vv00000558", - "question_id": 34438, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003005", - "question_id": 34445, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002509", - "question_id": 34457, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006642", - "question_id": 34460, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004715", - "question_id": 34477, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006422", - "question_id": 34486, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006684", - "question_id": 34489, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004799", - "question_id": 34492, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003835", - "question_id": 34496, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004288", - "question_id": 34502, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002637", - "question_id": 34503, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000063", - "question_id": 34506, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008207", - "question_id": 34521, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008828", - "question_id": 34532, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002607", - "question_id": 34541, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005746", - "question_id": 34542, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007382", - "question_id": 34544, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001140", - "question_id": 34545, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004166", - "question_id": 34566, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006212", - "question_id": 34569, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007892", - "question_id": 34575, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006494", - "question_id": 34577, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00003780", - "question_id": 34580, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004188", - "question_id": 34584, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000621", - "question_id": 34585, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006237", - "question_id": 34586, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008462", - "question_id": 34587, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007584", - "question_id": 34600, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008673", - "question_id": 34606, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008329", - "question_id": 34610, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006423", - "question_id": 34615, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003725", - "question_id": 34618, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008371", - "question_id": 34636, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007726", - "question_id": 34639, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007892", - "question_id": 34652, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004470", - "question_id": 34656, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001412", - "question_id": 34659, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006286", - "question_id": 34664, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00006824", - "question_id": 34672, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005428", - "question_id": 34677, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"guzheng\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "vv00002769", - "question_id": 34678, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002699", - "question_id": 34688, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "va00003627", - "question_id": 34695, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001992", - "question_id": 34699, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008279", - "question_id": 34700, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005283", - "question_id": 34701, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"banjo\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006537", - "question_id": 34703, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "vv00000233", - "question_id": 34708, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007865", - "question_id": 34711, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006905", - "question_id": 34712, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000731", - "question_id": 34715, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002676", - "question_id": 34716, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004829", - "question_id": 34719, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00004305", - "question_id": 34721, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005536", - "question_id": 34725, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00004481", - "question_id": 34729, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"trumpet\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "sa00008284", - "question_id": 34731, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005118", - "question_id": 34735, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006604", - "question_id": 34736, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003608", - "question_id": 34746, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000830", - "question_id": 34748, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003911", - "question_id": 34750, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002793", - "question_id": 34754, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002354", - "question_id": 34756, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001992", - "question_id": 34759, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008689", - "question_id": 34767, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005583", - "question_id": 34769, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002072", - "question_id": 34781, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002934", - "question_id": 34791, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00008177", - "question_id": 34793, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00004954", - "question_id": 34805, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000952", - "question_id": 34807, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002285", - "question_id": 34812, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003658", - "question_id": 34817, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008452", - "question_id": 34821, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007886", - "question_id": 34822, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "more than ten" - }, - { - "video_id": "00006236", - "question_id": 34828, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004204", - "question_id": 34833, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006758", - "question_id": 34836, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005408", - "question_id": 34841, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00001251", - "question_id": 34844, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00003813", - "question_id": 34853, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006396", - "question_id": 34861, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005939", - "question_id": 34866, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000634", - "question_id": 34867, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005150", - "question_id": 34876, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008632", - "question_id": 34881, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006560", - "question_id": 34891, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001456", - "question_id": 34894, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003817", - "question_id": 34895, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000248", - "question_id": 34907, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002223", - "question_id": 34911, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"electric_bass\", \"left\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008575", - "question_id": 34920, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006753", - "question_id": 34928, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004193", - "question_id": 34936, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001292", - "question_id": 34939, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006738", - "question_id": 34940, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008851", - "question_id": 34943, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003102", - "question_id": 34955, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003920", - "question_id": 34958, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008471", - "question_id": 34962, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00002791", - "question_id": 34966, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00002536", - "question_id": 34973, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00008292", - "question_id": 34978, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007695", - "question_id": 34981, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002768", - "question_id": 34982, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008870", - "question_id": 34990, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008006", - "question_id": 35000, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006301", - "question_id": 35002, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00005783", - "question_id": 35004, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"banjo\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00003217", - "question_id": 35005, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"banjo\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "sa00007711", - "question_id": 35009, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "va00005900", - "question_id": 35010, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001584", - "question_id": 35013, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003457", - "question_id": 35014, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005648", - "question_id": 35017, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005881", - "question_id": 35026, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006289", - "question_id": 35028, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002749", - "question_id": 35034, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006235", - "question_id": 35039, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003586", - "question_id": 35050, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007484", - "question_id": 35051, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002549", - "question_id": 35058, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002625", - "question_id": 35060, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00002784", - "question_id": 35066, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005210", - "question_id": 35078, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006944", - "question_id": 35081, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000420", - "question_id": 35090, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004513", - "question_id": 35091, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005488", - "question_id": 35093, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"pipa\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000756", - "question_id": 35094, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000122", - "question_id": 35097, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007968", - "question_id": 35099, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002047", - "question_id": 35100, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002882", - "question_id": 35102, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005449", - "question_id": 35103, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006291", - "question_id": 35116, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008479", - "question_id": 35121, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005005", - "question_id": 35129, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004788", - "question_id": 35131, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000524", - "question_id": 35137, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007272", - "question_id": 35138, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005362", - "question_id": 35146, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008761", - "question_id": 35158, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001490", - "question_id": 35163, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008770", - "question_id": 35174, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003741", - "question_id": 35176, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002022", - "question_id": 35181, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007796", - "question_id": 35194, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005372", - "question_id": 35216, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006610", - "question_id": 35217, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002797", - "question_id": 35219, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002579", - "question_id": 35236, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006770", - "question_id": 35237, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "sa00008250", - "question_id": 35245, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008250", - "question_id": 35245, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005762", - "question_id": 35257, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002539", - "question_id": 35266, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "sa00008092", - "question_id": 35271, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007154", - "question_id": 35273, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005580", - "question_id": 35275, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000817", - "question_id": 35281, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003185", - "question_id": 35282, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006762", - "question_id": 35283, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008829", - "question_id": 35296, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00003662", - "question_id": 35301, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006528", - "question_id": 35305, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008070", - "question_id": 35306, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004465", - "question_id": 35307, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "eight" - }, - { - "video_id": "00007112", - "question_id": 35309, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000303", - "question_id": 35312, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001965", - "question_id": 35315, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00007696", - "question_id": 35322, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "sa00006454", - "question_id": 35323, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003539", - "question_id": 35329, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000394", - "question_id": 35330, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "vv00000233", - "question_id": 35335, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"guzheng\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "sa00008841", - "question_id": 35339, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003123", - "question_id": 35341, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007445", - "question_id": 35346, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002470", - "question_id": 35348, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003929", - "question_id": 35351, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005410", - "question_id": 35352, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005684", - "question_id": 35361, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007015", - "question_id": 35363, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004652", - "question_id": 35373, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003445", - "question_id": 35384, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001014", - "question_id": 35393, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004302", - "question_id": 35396, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006393", - "question_id": 35401, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007973", - "question_id": 35405, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003833", - "question_id": 35410, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000809", - "question_id": 35414, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007080", - "question_id": 35421, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000102", - "question_id": 35424, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00002059", - "question_id": 35441, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003460", - "question_id": 35457, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005337", - "question_id": 35459, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003886", - "question_id": 35461, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004205", - "question_id": 35464, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004328", - "question_id": 35465, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004182", - "question_id": 35469, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004983", - "question_id": 35471, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "va00005805", - "question_id": 35481, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007319", - "question_id": 35483, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004363", - "question_id": 35484, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005441", - "question_id": 35487, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00007623", - "question_id": 35494, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000829", - "question_id": 35499, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00002984", - "question_id": 35510, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004976", - "question_id": 35521, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00004905", - "question_id": 35529, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001624", - "question_id": 35533, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008970", - "question_id": 35540, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005093", - "question_id": 35550, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00001797", - "question_id": 35568, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"right\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007987", - "question_id": 35569, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00005564", - "question_id": 35571, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001522", - "question_id": 35572, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002329", - "question_id": 35579, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008563", - "question_id": 35580, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000565", - "question_id": 35587, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007043", - "question_id": 35588, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002544", - "question_id": 35589, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003770", - "question_id": 35592, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008377", - "question_id": 35600, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008837", - "question_id": 35603, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007469", - "question_id": 35620, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008427", - "question_id": 35627, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006238", - "question_id": 35631, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "va00005511", - "question_id": 35637, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000216", - "question_id": 35639, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006501", - "question_id": 35640, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002200", - "question_id": 35643, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002903", - "question_id": 35646, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00008757", - "question_id": 35648, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005213", - "question_id": 35650, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004567", - "question_id": 35653, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004639", - "question_id": 35658, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000366", - "question_id": 35659, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002607", - "question_id": 35665, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006199", - "question_id": 35668, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005833", - "question_id": 35670, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008536", - "question_id": 35675, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003355", - "question_id": 35686, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007105", - "question_id": 35688, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000639", - "question_id": 35697, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00008732", - "question_id": 35700, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"banjo\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002297", - "question_id": 35705, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007828", - "question_id": 35710, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004388", - "question_id": 35713, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003182", - "question_id": 35721, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005364", - "question_id": 35728, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003636", - "question_id": 35735, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007849", - "question_id": 35741, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005304", - "question_id": 35744, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005351", - "question_id": 35750, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00002765", - "question_id": 35752, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"drum\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "vv00002776", - "question_id": 35753, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000392", - "question_id": 35760, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00004687", - "question_id": 35761, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006030", - "question_id": 35763, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003650", - "question_id": 35764, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008429", - "question_id": 35766, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008891", - "question_id": 35768, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006779", - "question_id": 35774, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005293", - "question_id": 35781, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00006941", - "question_id": 35785, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003732", - "question_id": 35787, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00004519", - "question_id": 35798, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007182", - "question_id": 35799, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006655", - "question_id": 35815, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007084", - "question_id": 35819, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "va00005086", - "question_id": 35820, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007618", - "question_id": 35829, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005588", - "question_id": 35850, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"pipa\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00000855", - "question_id": 35851, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00003507", - "question_id": 35852, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005363", - "question_id": 35856, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002784", - "question_id": 35857, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"bassoon\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00006585", - "question_id": 35858, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008601", - "question_id": 35860, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004465", - "question_id": 35862, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006166", - "question_id": 35876, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002518", - "question_id": 35877, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00004712", - "question_id": 35883, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006298", - "question_id": 35886, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004594", - "question_id": 35897, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "vv00000256", - "question_id": 35909, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006151", - "question_id": 35917, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "vv00002577", - "question_id": 35925, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"xylophone\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00002727", - "question_id": 35927, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00007519", - "question_id": 35932, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "sa00007778", - "question_id": 35933, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007076", - "question_id": 35934, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "eight" - }, - { - "video_id": "00005275", - "question_id": 35941, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"cello\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00001964", - "question_id": 35944, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "more than ten" - }, - { - "video_id": "00005011", - "question_id": 35951, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "va00005746", - "question_id": 35965, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006618", - "question_id": 35967, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008708", - "question_id": 35978, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002392", - "question_id": 35986, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003293", - "question_id": 35999, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003696", - "question_id": 36001, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005279", - "question_id": 36002, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008951", - "question_id": 36008, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001870", - "question_id": 36019, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00008974", - "question_id": 36027, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004278", - "question_id": 36031, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00008724", - "question_id": 36056, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008873", - "question_id": 36061, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007077", - "question_id": 36070, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003510", - "question_id": 36078, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000536", - "question_id": 36079, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003669", - "question_id": 36084, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006821", - "question_id": 36090, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000623", - "question_id": 36091, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005035", - "question_id": 36096, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007655", - "question_id": 36097, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001409", - "question_id": 36107, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001313", - "question_id": 36108, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001281", - "question_id": 36116, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003930", - "question_id": 36119, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00008554", - "question_id": 36121, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000919", - "question_id": 36123, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00007900", - "question_id": 36126, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005438", - "question_id": 36132, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000264", - "question_id": 36135, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "sa00006156", - "question_id": 36139, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006972", - "question_id": 36147, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005352", - "question_id": 36160, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00002632", - "question_id": 36164, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000067", - "question_id": 36179, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001860", - "question_id": 36180, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002560", - "question_id": 36186, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006632", - "question_id": 36189, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006424", - "question_id": 36193, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008190", - "question_id": 36195, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007373", - "question_id": 36201, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002561", - "question_id": 36208, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006822", - "question_id": 36209, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005713", - "question_id": 36222, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007621", - "question_id": 36229, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004028", - "question_id": 36230, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"drum\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00001270", - "question_id": 36242, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004917", - "question_id": 36247, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007560", - "question_id": 36248, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003603", - "question_id": 36250, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006183", - "question_id": 36255, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003701", - "question_id": 36256, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "vv00002507", - "question_id": 36257, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001940", - "question_id": 36264, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002685", - "question_id": 36300, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00004525", - "question_id": 36307, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000417", - "question_id": 36321, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004666", - "question_id": 36329, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000183", - "question_id": 36343, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008248", - "question_id": 36346, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007337", - "question_id": 36355, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007611", - "question_id": 36363, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002405", - "question_id": 36364, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"tuba\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003709", - "question_id": 36365, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003262", - "question_id": 36379, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "sa00006611", - "question_id": 36383, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004867", - "question_id": 36392, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "vv00002632", - "question_id": 36405, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008410", - "question_id": 36407, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007320", - "question_id": 36408, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001129", - "question_id": 36412, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002933", - "question_id": 36424, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005964", - "question_id": 36425, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003831", - "question_id": 36426, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000062", - "question_id": 36427, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008156", - "question_id": 36432, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006541", - "question_id": 36436, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004985", - "question_id": 36437, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003704", - "question_id": 36439, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008670", - "question_id": 36440, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002694", - "question_id": 36444, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008237", - "question_id": 36447, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000154", - "question_id": 36450, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006642", - "question_id": 36452, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00004489", - "question_id": 36454, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006280", - "question_id": 36456, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"tuba\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006014", - "question_id": 36458, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005282", - "question_id": 36459, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002379", - "question_id": 36468, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00005987", - "question_id": 36475, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004732", - "question_id": 36486, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003906", - "question_id": 36487, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00000650", - "question_id": 36495, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005509", - "question_id": 36503, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "vv00000084", - "question_id": 36504, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004285", - "question_id": 36506, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000340", - "question_id": 36507, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000329", - "question_id": 36513, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004049", - "question_id": 36519, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008828", - "question_id": 36520, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008676", - "question_id": 36530, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00002867", - "question_id": 36540, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "vv00002738", - "question_id": 36542, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"congas\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00004579", - "question_id": 36548, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00003047", - "question_id": 36558, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005084", - "question_id": 36559, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004729", - "question_id": 36569, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"suona\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000435", - "question_id": 36575, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001036", - "question_id": 36587, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004946", - "question_id": 36596, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007588", - "question_id": 36598, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003130", - "question_id": 36599, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008494", - "question_id": 36601, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006538", - "question_id": 36604, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"last\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00004172", - "question_id": 36606, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004216", - "question_id": 36608, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002948", - "question_id": 36609, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006111", - "question_id": 36612, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007829", - "question_id": 36614, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002850", - "question_id": 36627, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007656", - "question_id": 36628, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000505", - "question_id": 36629, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000741", - "question_id": 36631, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003445", - "question_id": 36638, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007107", - "question_id": 36667, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003899", - "question_id": 36669, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00005030", - "question_id": 36670, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001194", - "question_id": 36677, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"piano\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003910", - "question_id": 36684, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"electric_bass\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001567", - "question_id": 36689, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00004946", - "question_id": 36690, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006671", - "question_id": 36709, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004826", - "question_id": 36710, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006206", - "question_id": 36719, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001796", - "question_id": 36723, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005654", - "question_id": 36741, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008975", - "question_id": 36743, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001269", - "question_id": 36750, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00007283", - "question_id": 36751, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006420", - "question_id": 36757, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "seven" - }, - { - "video_id": "sa00008769", - "question_id": 36758, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005122", - "question_id": 36767, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002833", - "question_id": 36769, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002830", - "question_id": 36770, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00001456", - "question_id": 36773, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005315", - "question_id": 36778, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "vv00002647", - "question_id": 36780, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005137", - "question_id": 36782, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00002873", - "question_id": 36792, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007033", - "question_id": 36795, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004609", - "question_id": 36797, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002798", - "question_id": 36802, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002571", - "question_id": 36807, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007259", - "question_id": 36812, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000549", - "question_id": 36813, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"trumpet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000842", - "question_id": 36816, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"bassoon\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007023", - "question_id": 36822, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004783", - "question_id": 36828, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000460", - "question_id": 36841, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"tuba\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00003742", - "question_id": 36842, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008960", - "question_id": 36847, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004371", - "question_id": 36853, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002296", - "question_id": 36859, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00005769", - "question_id": 36873, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00005897", - "question_id": 36874, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"tuba\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "vv00000503", - "question_id": 36877, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00007123", - "question_id": 36891, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00002916", - "question_id": 36894, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "sa00006857", - "question_id": 36899, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007701", - "question_id": 36903, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008494", - "question_id": 36905, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006568", - "question_id": 36907, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "va00005851", - "question_id": 36914, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005267", - "question_id": 36924, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004762", - "question_id": 36929, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "vv00000554", - "question_id": 36930, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003414", - "question_id": 36943, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00008665", - "question_id": 36952, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"suona\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "sa00007108", - "question_id": 36953, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006240", - "question_id": 36962, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002153", - "question_id": 36973, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001517", - "question_id": 36985, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000566", - "question_id": 36986, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006095", - "question_id": 36989, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003401", - "question_id": 36990, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002303", - "question_id": 36997, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004258", - "question_id": 36998, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"banjo\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008048", - "question_id": 37000, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006046", - "question_id": 37007, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008292", - "question_id": 37008, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003845", - "question_id": 37011, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002689", - "question_id": 37029, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006951", - "question_id": 37031, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00005046", - "question_id": 37033, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006249", - "question_id": 37039, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008783", - "question_id": 37040, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "va00004863", - "question_id": 37043, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004863", - "question_id": 37043, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004542", - "question_id": 37081, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00005453", - "question_id": 37089, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008379", - "question_id": 37091, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004103", - "question_id": 37092, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007405", - "question_id": 37098, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007405", - "question_id": 37098, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004645", - "question_id": 37102, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007825", - "question_id": 37109, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007589", - "question_id": 37113, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003943", - "question_id": 37114, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00007703", - "question_id": 37118, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000932", - "question_id": 37125, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007529", - "question_id": 37127, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006458", - "question_id": 37128, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003388", - "question_id": 37132, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005148", - "question_id": 37145, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002438", - "question_id": 37160, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006984", - "question_id": 37164, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008693", - "question_id": 37166, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002075", - "question_id": 37168, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00006420", - "question_id": 37173, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008976", - "question_id": 37175, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007728", - "question_id": 37194, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005507", - "question_id": 37206, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006690", - "question_id": 37210, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005775", - "question_id": 37214, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005222", - "question_id": 37216, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008070", - "question_id": 37226, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006030", - "question_id": 37259, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003082", - "question_id": 37261, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005115", - "question_id": 37271, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005520", - "question_id": 37274, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"suona\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004581", - "question_id": 37281, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001046", - "question_id": 37299, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004130", - "question_id": 37300, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008949", - "question_id": 37307, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002180", - "question_id": 37316, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001147", - "question_id": 37317, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008661", - "question_id": 37325, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008628", - "question_id": 37339, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003476", - "question_id": 37340, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"congas\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005037", - "question_id": 37346, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003804", - "question_id": 37351, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005981", - "question_id": 37373, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00001052", - "question_id": 37374, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "sa00006558", - "question_id": 37376, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007144", - "question_id": 37377, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005907", - "question_id": 37381, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "va00005070", - "question_id": 37395, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008775", - "question_id": 37404, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001600", - "question_id": 37408, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00006818", - "question_id": 37413, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007676", - "question_id": 37416, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008431", - "question_id": 37419, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004142", - "question_id": 37423, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000587", - "question_id": 37430, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00003825", - "question_id": 37435, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004928", - "question_id": 37436, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004187", - "question_id": 37448, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004187", - "question_id": 37448, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003130", - "question_id": 37450, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005529", - "question_id": 37454, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001156", - "question_id": 37465, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000304", - "question_id": 37471, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00003441", - "question_id": 37479, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000490", - "question_id": 37483, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000323", - "question_id": 37485, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004108", - "question_id": 37490, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008323", - "question_id": 37492, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005773", - "question_id": 37494, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008650", - "question_id": 37496, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006768", - "question_id": 37498, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00002632", - "question_id": 37502, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002827", - "question_id": 37507, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002104", - "question_id": 37508, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002490", - "question_id": 37516, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00000394", - "question_id": 37545, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003134", - "question_id": 37547, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007535", - "question_id": 37552, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003132", - "question_id": 37554, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"pipa\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00005533", - "question_id": 37557, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004707", - "question_id": 37559, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"banjo\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00005664", - "question_id": 37560, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "vv00002429", - "question_id": 37568, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004002", - "question_id": 37574, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005701", - "question_id": 37575, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006599", - "question_id": 37590, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000550", - "question_id": 37595, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006206", - "question_id": 37607, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00001826", - "question_id": 37614, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008134", - "question_id": 37624, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008917", - "question_id": 37625, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007286", - "question_id": 37631, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002813", - "question_id": 37632, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006093", - "question_id": 37648, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008639", - "question_id": 37653, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006780", - "question_id": 37660, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008838", - "question_id": 37662, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006705", - "question_id": 37670, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005301", - "question_id": 37677, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008010", - "question_id": 37691, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00000756", - "question_id": 37693, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007690", - "question_id": 37701, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006764", - "question_id": 37705, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004557", - "question_id": 37710, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"bassoon\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00008226", - "question_id": 37711, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "vv00003076", - "question_id": 37712, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007256", - "question_id": 37718, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007983", - "question_id": 37723, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005914", - "question_id": 37727, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002329", - "question_id": 37733, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00005560", - "question_id": 37736, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002987", - "question_id": 37755, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00004397", - "question_id": 37757, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00000575", - "question_id": 37758, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002378", - "question_id": 37767, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002597", - "question_id": 37772, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000396", - "question_id": 37774, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006509", - "question_id": 37777, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003756", - "question_id": 37778, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008807", - "question_id": 37783, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002430", - "question_id": 37785, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00002933", - "question_id": 37787, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004014", - "question_id": 37792, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003527", - "question_id": 37796, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003244", - "question_id": 37800, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007974", - "question_id": 37814, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008909", - "question_id": 37824, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002590", - "question_id": 37825, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006227", - "question_id": 37828, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002503", - "question_id": 37835, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"saxophone\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00005134", - "question_id": 37843, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "sa00006006", - "question_id": 37846, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006006", - "question_id": 37846, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007429", - "question_id": 37851, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "vv00000580", - "question_id": 37854, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"ukulele\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005180", - "question_id": 37864, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005073", - "question_id": 37866, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007138", - "question_id": 37869, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003887", - "question_id": 37872, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000567", - "question_id": 37874, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"drum\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001031", - "question_id": 37876, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007237", - "question_id": 37877, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002889", - "question_id": 37878, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00007041", - "question_id": 37882, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00004596", - "question_id": 37883, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006381", - "question_id": 37885, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000378", - "question_id": 37889, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00008445", - "question_id": 37890, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007885", - "question_id": 37891, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005715", - "question_id": 37899, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008693", - "question_id": 37900, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000200", - "question_id": 37901, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001441", - "question_id": 37902, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"congas\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004547", - "question_id": 37905, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005901", - "question_id": 37907, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004969", - "question_id": 37908, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008432", - "question_id": 37916, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006689", - "question_id": 37918, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008725", - "question_id": 37927, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008343", - "question_id": 37930, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008652", - "question_id": 37931, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006674", - "question_id": 37933, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002711", - "question_id": 37936, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"trumpet\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "va00005462", - "question_id": 37939, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006550", - "question_id": 37944, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002173", - "question_id": 37946, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006237", - "question_id": 37947, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"pipa\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00005379", - "question_id": 37961, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001693", - "question_id": 37964, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001739", - "question_id": 37973, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004254", - "question_id": 37981, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00004467", - "question_id": 37986, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002149", - "question_id": 37991, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00000087", - "question_id": 37992, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005393", - "question_id": 37997, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004516", - "question_id": 37998, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007665", - "question_id": 38007, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001098", - "question_id": 38008, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "sa00007580", - "question_id": 38018, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001324", - "question_id": 38027, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004210", - "question_id": 38033, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00008563", - "question_id": 38041, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000194", - "question_id": 38056, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006317", - "question_id": 38066, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006712", - "question_id": 38068, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005910", - "question_id": 38073, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002183", - "question_id": 38077, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004236", - "question_id": 38098, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"accordion\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005161", - "question_id": 38099, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008898", - "question_id": 38101, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"xylophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002490", - "question_id": 38104, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00008287", - "question_id": 38115, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008404", - "question_id": 38119, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004584", - "question_id": 38121, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00008059", - "question_id": 38122, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004241", - "question_id": 38124, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004100", - "question_id": 38129, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007920", - "question_id": 38132, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008622", - "question_id": 38133, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00000556", - "question_id": 38136, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000791", - "question_id": 38137, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001367", - "question_id": 38141, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007155", - "question_id": 38149, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000512", - "question_id": 38150, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003070", - "question_id": 38159, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006262", - "question_id": 38162, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"congas\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "sa00006133", - "question_id": 38166, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007196", - "question_id": 38170, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003574", - "question_id": 38178, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004952", - "question_id": 38179, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007752", - "question_id": 38184, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001492", - "question_id": 38186, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007019", - "question_id": 38191, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003932", - "question_id": 38197, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004957", - "question_id": 38198, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004427", - "question_id": 38199, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007149", - "question_id": 38206, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001267", - "question_id": 38210, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000259", - "question_id": 38211, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00005626", - "question_id": 38217, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002040", - "question_id": 38218, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006129", - "question_id": 38219, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00003047", - "question_id": 38222, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008151", - "question_id": 38228, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"pipa\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00007144", - "question_id": 38231, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008332", - "question_id": 38232, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005041", - "question_id": 38238, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002547", - "question_id": 38243, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005243", - "question_id": 38258, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006899", - "question_id": 38260, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008316", - "question_id": 38263, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "vv00000179", - "question_id": 38266, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004270", - "question_id": 38275, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000190", - "question_id": 38293, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"guzheng\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00003943", - "question_id": 38301, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006187", - "question_id": 38302, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005166", - "question_id": 38306, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"xylophone\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00008358", - "question_id": 38308, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001840", - "question_id": 38311, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003482", - "question_id": 38315, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001129", - "question_id": 38316, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001354", - "question_id": 38325, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00000694", - "question_id": 38340, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008751", - "question_id": 38341, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007782", - "question_id": 38343, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007582", - "question_id": 38357, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003401", - "question_id": 38363, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006959", - "question_id": 38364, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003982", - "question_id": 38370, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007741", - "question_id": 38372, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004223", - "question_id": 38389, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007741", - "question_id": 38391, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003102", - "question_id": 38407, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007060", - "question_id": 38411, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001003", - "question_id": 38415, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "sa00007785", - "question_id": 38419, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006728", - "question_id": 38420, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007967", - "question_id": 38424, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000298", - "question_id": 38430, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004054", - "question_id": 38434, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003835", - "question_id": 38446, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006586", - "question_id": 38449, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000608", - "question_id": 38455, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "va00005573", - "question_id": 38461, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000351", - "question_id": 38462, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004886", - "question_id": 38466, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000608", - "question_id": 38471, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005118", - "question_id": 38485, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000960", - "question_id": 38486, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004238", - "question_id": 38487, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006063", - "question_id": 38490, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005399", - "question_id": 38491, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003516", - "question_id": 38493, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007904", - "question_id": 38496, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002581", - "question_id": 38497, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006569", - "question_id": 38511, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002590", - "question_id": 38513, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008593", - "question_id": 38514, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005301", - "question_id": 38515, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000810", - "question_id": 38529, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"tuba\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "sa00008524", - "question_id": 38532, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000895", - "question_id": 38535, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006824", - "question_id": 38536, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"guzheng\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "va00005904", - "question_id": 38540, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005042", - "question_id": 38549, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007463", - "question_id": 38552, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003379", - "question_id": 38554, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008541", - "question_id": 38557, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"piano\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006505", - "question_id": 38560, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004304", - "question_id": 38566, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006873", - "question_id": 38568, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000194", - "question_id": 38572, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000882", - "question_id": 38587, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008158", - "question_id": 38593, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000412", - "question_id": 38595, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005624", - "question_id": 38596, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004436", - "question_id": 38616, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004059", - "question_id": 38621, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005250", - "question_id": 38622, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003088", - "question_id": 38625, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001965", - "question_id": 38630, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006785", - "question_id": 38647, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004157", - "question_id": 38655, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00004701", - "question_id": 38658, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008663", - "question_id": 38663, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000298", - "question_id": 38666, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005718", - "question_id": 38670, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006318", - "question_id": 38675, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003531", - "question_id": 38693, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006221", - "question_id": 38700, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002446", - "question_id": 38712, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002642", - "question_id": 38716, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006635", - "question_id": 38725, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004659", - "question_id": 38734, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004395", - "question_id": 38737, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"congas\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007540", - "question_id": 38752, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004326", - "question_id": 38754, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003093", - "question_id": 38756, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003340", - "question_id": 38761, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005301", - "question_id": 38767, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005314", - "question_id": 38770, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008672", - "question_id": 38772, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002942", - "question_id": 38778, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00003934", - "question_id": 38784, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004126", - "question_id": 38789, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00005165", - "question_id": 38794, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007549", - "question_id": 38797, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003184", - "question_id": 38804, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"xylophone\", \"left\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005266", - "question_id": 38809, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000422", - "question_id": 38816, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00008963", - "question_id": 38818, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004671", - "question_id": 38823, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00002391", - "question_id": 38825, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006918", - "question_id": 38830, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007716", - "question_id": 38834, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007484", - "question_id": 38843, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001952", - "question_id": 38844, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006362", - "question_id": 38845, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003159", - "question_id": 38855, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003059", - "question_id": 38856, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "vv00003078", - "question_id": 38859, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003293", - "question_id": 38861, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000365", - "question_id": 38865, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004438", - "question_id": 38866, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008554", - "question_id": 38887, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003654", - "question_id": 38890, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006462", - "question_id": 38907, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003494", - "question_id": 38908, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000547", - "question_id": 38911, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "va00003758", - "question_id": 38921, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002755", - "question_id": 38930, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007432", - "question_id": 38934, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008534", - "question_id": 38946, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "sa00008116", - "question_id": 38955, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005518", - "question_id": 38959, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003093", - "question_id": 38962, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007386", - "question_id": 38971, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "va00004559", - "question_id": 38973, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000455", - "question_id": 38978, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003271", - "question_id": 38983, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006055", - "question_id": 38993, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003983", - "question_id": 38994, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008420", - "question_id": 39000, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004809", - "question_id": 39004, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005391", - "question_id": 39005, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000554", - "question_id": 39011, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003270", - "question_id": 39013, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"accordion\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "vv00002978", - "question_id": 39021, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000505", - "question_id": 39028, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008775", - "question_id": 39029, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000375", - "question_id": 39040, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005426", - "question_id": 39041, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001878", - "question_id": 39046, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000931", - "question_id": 39049, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005117", - "question_id": 39055, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008498", - "question_id": 39057, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "va00004284", - "question_id": 39058, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003883", - "question_id": 39064, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006260", - "question_id": 39065, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002852", - "question_id": 39068, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004682", - "question_id": 39077, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002785", - "question_id": 39080, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006529", - "question_id": 39082, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003747", - "question_id": 39084, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "va00003702", - "question_id": 39087, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005294", - "question_id": 39094, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004281", - "question_id": 39096, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002855", - "question_id": 39101, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002679", - "question_id": 39103, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005758", - "question_id": 39117, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008163", - "question_id": 39127, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004002", - "question_id": 39132, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004799", - "question_id": 39136, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004971", - "question_id": 39137, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000098", - "question_id": 39147, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007333", - "question_id": 39148, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008492", - "question_id": 39149, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000011", - "question_id": 39150, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008880", - "question_id": 39153, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00003379", - "question_id": 39167, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008877", - "question_id": 39168, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005827", - "question_id": 39169, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006682", - "question_id": 39175, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "va00005759", - "question_id": 39179, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000346", - "question_id": 39208, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006244", - "question_id": 39209, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004507", - "question_id": 39210, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008652", - "question_id": 39232, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007233", - "question_id": 39237, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003340", - "question_id": 39238, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007064", - "question_id": 39244, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004338", - "question_id": 39254, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006615", - "question_id": 39263, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008743", - "question_id": 39275, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006731", - "question_id": 39286, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003554", - "question_id": 39289, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005116", - "question_id": 39294, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"tuba\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005313", - "question_id": 39299, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001754", - "question_id": 39306, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005165", - "question_id": 39308, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008030", - "question_id": 39310, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007638", - "question_id": 39314, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003444", - "question_id": 39318, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "vv00000638", - "question_id": 39324, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006916", - "question_id": 39326, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003465", - "question_id": 39329, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001658", - "question_id": 39331, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00005295", - "question_id": 39333, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002136", - "question_id": 39349, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"electric_bass\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "sa00008479", - "question_id": 39352, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004320", - "question_id": 39353, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004614", - "question_id": 39354, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001748", - "question_id": 39362, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005339", - "question_id": 39363, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002482", - "question_id": 39366, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004906", - "question_id": 39367, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002914", - "question_id": 39379, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004469", - "question_id": 39381, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000122", - "question_id": 39389, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000086", - "question_id": 39390, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003704", - "question_id": 39399, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008922", - "question_id": 39407, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004449", - "question_id": 39411, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004531", - "question_id": 39416, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007109", - "question_id": 39417, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006260", - "question_id": 39418, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008775", - "question_id": 39429, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004499", - "question_id": 39434, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007687", - "question_id": 39439, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003330", - "question_id": 39445, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006497", - "question_id": 39449, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007711", - "question_id": 39453, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007164", - "question_id": 39455, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007481", - "question_id": 39456, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003267", - "question_id": 39466, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007472", - "question_id": 39468, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006043", - "question_id": 39469, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003511", - "question_id": 39470, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00003061", - "question_id": 39474, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001304", - "question_id": 39477, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008158", - "question_id": 39485, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "sa00008743", - "question_id": 39487, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004868", - "question_id": 39490, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006305", - "question_id": 39492, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004999", - "question_id": 39493, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004301", - "question_id": 39499, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005649", - "question_id": 39523, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008529", - "question_id": 39525, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004254", - "question_id": 39532, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006151", - "question_id": 39535, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007748", - "question_id": 39542, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006348", - "question_id": 39559, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00000507", - "question_id": 39561, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005373", - "question_id": 39562, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005184", - "question_id": 39566, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006227", - "question_id": 39567, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000819", - "question_id": 39615, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000613", - "question_id": 39616, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005870", - "question_id": 39618, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006200", - "question_id": 39620, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005722", - "question_id": 39636, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00003006", - "question_id": 39643, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003813", - "question_id": 39644, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005827", - "question_id": 39655, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007028", - "question_id": 39661, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000136", - "question_id": 39665, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006388", - "question_id": 39677, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003793", - "question_id": 39681, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008420", - "question_id": 39688, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008495", - "question_id": 39690, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007885", - "question_id": 39693, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001994", - "question_id": 39699, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004788", - "question_id": 39703, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003334", - "question_id": 39707, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008877", - "question_id": 39709, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007449", - "question_id": 39724, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002524", - "question_id": 39730, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003347", - "question_id": 39741, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004312", - "question_id": 39744, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001508", - "question_id": 39745, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007333", - "question_id": 39753, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006010", - "question_id": 39761, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00005583", - "question_id": 39765, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001876", - "question_id": 39766, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001876", - "question_id": 39766, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006921", - "question_id": 39773, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008221", - "question_id": 39778, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005565", - "question_id": 39779, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005509", - "question_id": 39780, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004935", - "question_id": 39784, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005649", - "question_id": 39788, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003910", - "question_id": 39803, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008566", - "question_id": 39806, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006393", - "question_id": 39814, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006111", - "question_id": 39822, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000262", - "question_id": 39827, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007693", - "question_id": 39842, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000336", - "question_id": 39848, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000336", - "question_id": 39848, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008869", - "question_id": 39857, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005037", - "question_id": 39860, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006689", - "question_id": 39867, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001395", - "question_id": 39874, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "va00005746", - "question_id": 39878, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006417", - "question_id": 39884, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004777", - "question_id": 39886, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "va00004985", - "question_id": 39890, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003891", - "question_id": 39891, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001754", - "question_id": 39893, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002504", - "question_id": 39900, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "sa00006156", - "question_id": 39902, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"drum\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00004559", - "question_id": 39913, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005921", - "question_id": 39916, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005511", - "question_id": 39926, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"erhu\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "vv00000538", - "question_id": 39927, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00002551", - "question_id": 39928, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005307", - "question_id": 39934, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003941", - "question_id": 39937, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "sa00007496", - "question_id": 39938, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007368", - "question_id": 39950, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00008101", - "question_id": 39953, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001239", - "question_id": 39960, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00000861", - "question_id": 39966, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004932", - "question_id": 39985, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007455", - "question_id": 39986, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "sa00008768", - "question_id": 39989, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007603", - "question_id": 39995, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006177", - "question_id": 39996, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000089", - "question_id": 39999, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00002750", - "question_id": 40042, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00003936", - "question_id": 40055, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007462", - "question_id": 40059, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000308", - "question_id": 40064, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001194", - "question_id": 40081, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "vv00002691", - "question_id": 40090, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000919", - "question_id": 40093, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001777", - "question_id": 40094, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006559", - "question_id": 40098, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004197", - "question_id": 40099, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003070", - "question_id": 40101, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "va00003125", - "question_id": 40119, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008860", - "question_id": 40127, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005227", - "question_id": 40132, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007766", - "question_id": 40138, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00007325", - "question_id": 40140, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002024", - "question_id": 40142, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "va00003627", - "question_id": 40152, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001477", - "question_id": 40153, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "vv00000348", - "question_id": 40169, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003831", - "question_id": 40171, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "vv00000487", - "question_id": 40173, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "vv00000121", - "question_id": 40177, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"trumpet\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "vv00000079", - "question_id": 40179, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002560", - "question_id": 40188, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006338", - "question_id": 40190, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "va00005508", - "question_id": 40192, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"cello\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "sa00006930", - "question_id": 40198, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000736", - "question_id": 40200, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "vv00000216", - "question_id": 40207, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"congas\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001092", - "question_id": 40219, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"trumpet\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "vv00000492", - "question_id": 40230, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004677", - "question_id": 40239, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "vv00000421", - "question_id": 40240, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"suona\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "sa00007311", - "question_id": 40241, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005560", - "question_id": 40249, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00005972", - "question_id": 40250, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005038", - "question_id": 40255, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00005272", - "question_id": 40256, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004338", - "question_id": 40257, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"middle\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000623", - "question_id": 40260, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006493", - "question_id": 40264, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003500", - "question_id": 40266, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000452", - "question_id": 40272, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003446", - "question_id": 40277, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"congas\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007950", - "question_id": 40288, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "vv00000611", - "question_id": 40291, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007646", - "question_id": 40292, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000348", - "question_id": 40294, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008859", - "question_id": 40313, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008701", - "question_id": 40323, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "sa00007310", - "question_id": 40356, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00008198", - "question_id": 40360, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00006880", - "question_id": 40367, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "sa00007029", - "question_id": 40368, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004488", - "question_id": 40369, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000391", - "question_id": 40376, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "va00005552", - "question_id": 40377, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008242", - "question_id": 40380, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002024", - "question_id": 40382, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "va00005830", - "question_id": 40404, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006344", - "question_id": 40405, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "vv00002772", - "question_id": 40407, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005725", - "question_id": 40409, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004851", - "question_id": 40420, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"congas\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "sa00007643", - "question_id": 40433, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003474", - "question_id": 40442, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00004227", - "question_id": 40446, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003473", - "question_id": 40449, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00002574", - "question_id": 40450, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008881", - "question_id": 40458, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"tuba\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00002574", - "question_id": 40464, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00008353", - "question_id": 40466, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"banjo\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "vv00002508", - "question_id": 40470, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002087", - "question_id": 40474, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003690", - "question_id": 40495, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003854", - "question_id": 40508, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006405", - "question_id": 40512, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002955", - "question_id": 40528, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"tuba\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00000562", - "question_id": 40531, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00001595", - "question_id": 40534, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002255", - "question_id": 40535, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002599", - "question_id": 40541, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002212", - "question_id": 40559, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"pipa\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "va00005720", - "question_id": 40569, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"last\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006168", - "question_id": 40570, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"xylophone\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00004371", - "question_id": 40575, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001432", - "question_id": 40576, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "vv00000236", - "question_id": 40580, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005816", - "question_id": 40584, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00004663", - "question_id": 40598, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000978", - "question_id": 40610, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007322", - "question_id": 40611, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007322", - "question_id": 40611, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000443", - "question_id": 40614, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004626", - "question_id": 40615, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007170", - "question_id": 40623, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005151", - "question_id": 40630, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006405", - "question_id": 40631, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006611", - "question_id": 40636, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008697", - "question_id": 40646, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006940", - "question_id": 40647, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004947", - "question_id": 40658, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "vv00000079", - "question_id": 40668, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005897", - "question_id": 40680, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007755", - "question_id": 40686, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004770", - "question_id": 40693, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008146", - "question_id": 40705, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001818", - "question_id": 40708, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004073", - "question_id": 40713, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007257", - "question_id": 40723, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006653", - "question_id": 40729, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008092", - "question_id": 40742, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005904", - "question_id": 40745, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008596", - "question_id": 40756, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008903", - "question_id": 40762, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003231", - "question_id": 40764, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "va00003153", - "question_id": 40766, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004447", - "question_id": 40775, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001942", - "question_id": 40778, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003622", - "question_id": 40784, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006505", - "question_id": 40785, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "vv00002846", - "question_id": 40787, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002989", - "question_id": 40791, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "va00003609", - "question_id": 40800, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004141", - "question_id": 40809, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008312", - "question_id": 40810, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004122", - "question_id": 40815, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "vv00002845", - "question_id": 40819, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "sa00006762", - "question_id": 40833, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008735", - "question_id": 40837, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005348", - "question_id": 40849, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004929", - "question_id": 40850, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002456", - "question_id": 40851, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00003853", - "question_id": 40858, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006667", - "question_id": 40863, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002190", - "question_id": 40864, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008050", - "question_id": 40865, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002989", - "question_id": 40916, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007576", - "question_id": 40918, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002753", - "question_id": 40924, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006290", - "question_id": 40926, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004771", - "question_id": 40928, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004200", - "question_id": 40936, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002398", - "question_id": 40947, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006159", - "question_id": 40953, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000331", - "question_id": 40955, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005023", - "question_id": 40965, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "va00005314", - "question_id": 40970, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008630", - "question_id": 40971, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003685", - "question_id": 40973, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005356", - "question_id": 40978, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008770", - "question_id": 40981, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008119", - "question_id": 40983, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004594", - "question_id": 40984, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002268", - "question_id": 40985, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006867", - "question_id": 40987, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004512", - "question_id": 40988, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003135", - "question_id": 40998, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007318", - "question_id": 41003, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "sa00006508", - "question_id": 41004, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002282", - "question_id": 41009, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003030", - "question_id": 41010, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008245", - "question_id": 41017, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006879", - "question_id": 41022, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007828", - "question_id": 41027, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000351", - "question_id": 41032, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "sa00008180", - "question_id": 41034, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00002440", - "question_id": 41043, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002207", - "question_id": 41045, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"tuba\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "sa00006177", - "question_id": 41047, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005110", - "question_id": 41048, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003919", - "question_id": 41051, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004351", - "question_id": 41060, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007822", - "question_id": 41066, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00008608", - "question_id": 41080, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004531", - "question_id": 41081, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005596", - "question_id": 41086, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006197", - "question_id": 41089, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007089", - "question_id": 41094, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002360", - "question_id": 41095, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008000", - "question_id": 41096, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007696", - "question_id": 41098, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007308", - "question_id": 41099, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007317", - "question_id": 41101, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001045", - "question_id": 41112, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001045", - "question_id": 41112, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007016", - "question_id": 41133, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001410", - "question_id": 41134, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "sa00006867", - "question_id": 41135, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007274", - "question_id": 41136, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008980", - "question_id": 41157, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008451", - "question_id": 41164, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004916", - "question_id": 41166, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004901", - "question_id": 41167, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000406", - "question_id": 41168, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006257", - "question_id": 41172, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00003216", - "question_id": 41189, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00006476", - "question_id": 41192, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005479", - "question_id": 41197, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "va00003929", - "question_id": 41201, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005787", - "question_id": 41202, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005798", - "question_id": 41206, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006341", - "question_id": 41208, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008327", - "question_id": 41221, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006113", - "question_id": 41241, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003798", - "question_id": 41251, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006915", - "question_id": 41253, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00004404", - "question_id": 41264, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007967", - "question_id": 41268, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"accordion\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "va00003298", - "question_id": 41270, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008761", - "question_id": 41271, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007134", - "question_id": 41281, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"congas\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006743", - "question_id": 41290, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001823", - "question_id": 41292, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004287", - "question_id": 41305, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "vv00000229", - "question_id": 41308, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001848", - "question_id": 41324, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001932", - "question_id": 41354, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006959", - "question_id": 41355, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00004249", - "question_id": 41357, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00002049", - "question_id": 41372, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00005985", - "question_id": 41378, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000298", - "question_id": 41379, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007571", - "question_id": 41383, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006338", - "question_id": 41389, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004917", - "question_id": 41390, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"tuba\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001604", - "question_id": 41391, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002571", - "question_id": 41396, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003295", - "question_id": 41397, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00005574", - "question_id": 41405, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00004561", - "question_id": 41409, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006226", - "question_id": 41410, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00000455", - "question_id": 41416, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007584", - "question_id": 41418, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005101", - "question_id": 41420, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00002732", - "question_id": 41426, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002953", - "question_id": 41440, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007137", - "question_id": 41441, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000487", - "question_id": 41445, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005446", - "question_id": 41446, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00000532", - "question_id": 41451, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00002084", - "question_id": 41456, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00006614", - "question_id": 41464, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "va00005970", - "question_id": 41467, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00008884", - "question_id": 41468, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007917", - "question_id": 41477, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"violin\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00006295", - "question_id": 41480, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "va00005787", - "question_id": 41486, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"accordion\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "va00004452", - "question_id": 41500, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008303", - "question_id": 41503, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005729", - "question_id": 41504, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"flute\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008330", - "question_id": 41506, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007248", - "question_id": 41508, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000081", - "question_id": 41522, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005693", - "question_id": 41523, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"bassoon\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "vv00002867", - "question_id": 41530, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004618", - "question_id": 41538, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005491", - "question_id": 41549, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007555", - "question_id": 41555, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"pipa\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007670", - "question_id": 41562, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002556", - "question_id": 41567, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003677", - "question_id": 41570, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003609", - "question_id": 41581, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"drum\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "sa00006602", - "question_id": 41588, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00004939", - "question_id": 41602, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008715", - "question_id": 41604, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002377", - "question_id": 41605, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005383", - "question_id": 41617, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00005551", - "question_id": 41623, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001487", - "question_id": 41643, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "sa00008101", - "question_id": 41644, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006062", - "question_id": 41646, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00003511", - "question_id": 41648, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"congas\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00004614", - "question_id": 41676, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"violin\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00004293", - "question_id": 41680, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "sa00007326", - "question_id": 41688, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001806", - "question_id": 41690, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007075", - "question_id": 41691, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00004727", - "question_id": 41700, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002622", - "question_id": 41709, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "va00005504", - "question_id": 41711, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006273", - "question_id": 41715, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005175", - "question_id": 41717, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003477", - "question_id": 41718, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007788", - "question_id": 41719, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008700", - "question_id": 41720, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000127", - "question_id": 41722, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001057", - "question_id": 41724, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007184", - "question_id": 41726, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004999", - "question_id": 41730, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007208", - "question_id": 41735, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003337", - "question_id": 41736, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005574", - "question_id": 41750, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006959", - "question_id": 41757, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000606", - "question_id": 41766, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008817", - "question_id": 41778, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008189", - "question_id": 41780, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000566", - "question_id": 41784, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000893", - "question_id": 41786, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003231", - "question_id": 41789, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"pipa\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00001804", - "question_id": 41790, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006619", - "question_id": 41792, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008528", - "question_id": 41793, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001367", - "question_id": 41794, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003499", - "question_id": 41797, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005345", - "question_id": 41810, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002453", - "question_id": 41811, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000469", - "question_id": 41812, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006602", - "question_id": 41815, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005068", - "question_id": 41816, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003894", - "question_id": 41817, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002674", - "question_id": 41818, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "sa00008079", - "question_id": 41819, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004200", - "question_id": 41823, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000684", - "question_id": 41829, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006643", - "question_id": 41830, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003533", - "question_id": 41833, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002786", - "question_id": 41840, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000515", - "question_id": 41841, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004030", - "question_id": 41845, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"cello\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "va00003836", - "question_id": 41852, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001552", - "question_id": 41882, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004499", - "question_id": 41883, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003556", - "question_id": 41891, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006721", - "question_id": 41892, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00005870", - "question_id": 41897, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000121", - "question_id": 41901, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000256", - "question_id": 41918, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006706", - "question_id": 41920, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"cello\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007245", - "question_id": 41929, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008772", - "question_id": 41930, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "va00003597", - "question_id": 41931, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005307", - "question_id": 41936, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004655", - "question_id": 41943, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004826", - "question_id": 41946, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002906", - "question_id": 41952, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005942", - "question_id": 41953, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006007", - "question_id": 41957, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005490", - "question_id": 41961, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003614", - "question_id": 41963, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"clarinet\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00005370", - "question_id": 41964, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006326", - "question_id": 41970, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007638", - "question_id": 41973, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006539", - "question_id": 41976, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007817", - "question_id": 41990, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006295", - "question_id": 41995, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008764", - "question_id": 42002, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002667", - "question_id": 42004, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001267", - "question_id": 42008, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008050", - "question_id": 42017, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008593", - "question_id": 42026, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007481", - "question_id": 42034, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006472", - "question_id": 42040, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007769", - "question_id": 42069, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "sa00007909", - "question_id": 42071, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002386", - "question_id": 42073, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008303", - "question_id": 42074, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000301", - "question_id": 42093, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "va00004255", - "question_id": 42102, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"cello\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003705", - "question_id": 42112, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000876", - "question_id": 42113, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007184", - "question_id": 42116, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "sa00007417", - "question_id": 42118, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006197", - "question_id": 42130, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "sa00008690", - "question_id": 42133, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005501", - "question_id": 42139, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002911", - "question_id": 42142, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "va00005348", - "question_id": 42143, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"congas\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "vv00002906", - "question_id": 42145, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00004939", - "question_id": 42149, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000380", - "question_id": 42150, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000606", - "question_id": 42164, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"suona\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004370", - "question_id": 42166, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006826", - "question_id": 42168, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005678", - "question_id": 42185, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005662", - "question_id": 42191, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001628", - "question_id": 42199, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "more than ten" - }, - { - "video_id": "va00005079", - "question_id": 42200, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00005184", - "question_id": 42204, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "va00003278", - "question_id": 42209, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "sa00008905", - "question_id": 42210, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003992", - "question_id": 42224, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "vv00000518", - "question_id": 42234, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"congas\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004366", - "question_id": 42236, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00004341", - "question_id": 42239, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00006734", - "question_id": 42241, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006734", - "question_id": 42241, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004242", - "question_id": 42246, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008327", - "question_id": 42263, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00005720", - "question_id": 42265, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007233", - "question_id": 42266, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "vv00000584", - "question_id": 42271, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004019", - "question_id": 42284, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "sa00007976", - "question_id": 42286, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005413", - "question_id": 42312, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007075", - "question_id": 42320, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008263", - "question_id": 42326, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003350", - "question_id": 42333, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "sa00007848", - "question_id": 42343, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006832", - "question_id": 42346, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007638", - "question_id": 42354, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004962", - "question_id": 42357, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002713", - "question_id": 42379, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"bagpipe\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000741", - "question_id": 42380, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"xylophone\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "sa00008639", - "question_id": 42402, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00005385", - "question_id": 42409, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001324", - "question_id": 42415, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008312", - "question_id": 42423, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "va00003816", - "question_id": 42433, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006772", - "question_id": 42435, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000978", - "question_id": 42452, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00007952", - "question_id": 42454, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"ukulele\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003601", - "question_id": 42457, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004608", - "question_id": 42461, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00002534", - "question_id": 42463, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005490", - "question_id": 42464, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00004473", - "question_id": 42474, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00004896", - "question_id": 42479, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006340", - "question_id": 42484, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "vv00003075", - "question_id": 42487, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"drum\", \"left\", \"suona\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008347", - "question_id": 42491, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "va00004212", - "question_id": 42495, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00005849", - "question_id": 42503, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00005985", - "question_id": 42525, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "va00004024", - "question_id": 42528, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002556", - "question_id": 42545, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008743", - "question_id": 42547, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"bassoon\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00000664", - "question_id": 42552, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005273", - "question_id": 42556, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"suona\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00008466", - "question_id": 42560, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005843", - "question_id": 42564, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00005393", - "question_id": 42565, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "sa00006533", - "question_id": 42575, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00004948", - "question_id": 42583, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"pipa\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "va00005750", - "question_id": 42591, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "vv00000365", - "question_id": 42596, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00002717", - "question_id": 42600, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00004255", - "question_id": 42653, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"cello\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00007421", - "question_id": 42662, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008375", - "question_id": 42664, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00002927", - "question_id": 42667, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "va00005574", - "question_id": 42668, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "sa00008374", - "question_id": 42672, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005575", - "question_id": 42677, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"banjo\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "va00003268", - "question_id": 42680, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000876", - "question_id": 42701, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "sa00008400", - "question_id": 42704, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007139", - "question_id": 42716, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "sa00006268", - "question_id": 42723, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "va00005889", - "question_id": 42730, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000119", - "question_id": 42734, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "va00004901", - "question_id": 42743, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004351", - "question_id": 42757, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005220", - "question_id": 42765, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "sa00006318", - "question_id": 42774, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00004814", - "question_id": 42776, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00007695", - "question_id": 42785, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "va00005660", - "question_id": 42789, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001214", - "question_id": 42796, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00003236", - "question_id": 42802, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007752", - "question_id": 42825, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008229", - "question_id": 42831, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00006721", - "question_id": 42834, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000453", - "question_id": 42841, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003569", - "question_id": 42845, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00008279", - "question_id": 42849, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00007965", - "question_id": 42854, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00004384", - "question_id": 42864, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "va00005931", - "question_id": 42866, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "va00004374", - "question_id": 42871, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00006159", - "question_id": 42885, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "sa00007158", - "question_id": 42886, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004530", - "question_id": 42893, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008608", - "question_id": 42896, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00008097", - "question_id": 42898, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00001879", - "question_id": 42908, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008513", - "question_id": 42910, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003207", - "question_id": 42917, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "sa00008030", - "question_id": 42928, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00005683", - "question_id": 42933, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005805", - "question_id": 42942, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002258", - "question_id": 42948, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004717", - "question_id": 42951, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00007848", - "question_id": 42958, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "va00004997", - "question_id": 42959, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00001611", - "question_id": 42965, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "va00004626", - "question_id": 42969, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "va00003584", - "question_id": 42971, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "sa00008219", - "question_id": 42975, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005466", - "question_id": 42977, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "vv00002956", - "question_id": 42982, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00003902", - "question_id": 42986, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000989", - "question_id": 42987, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "sa00007755", - "question_id": 42990, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00008904", - "question_id": 42991, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007026", - "question_id": 43011, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "sa00006456", - "question_id": 43019, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00002929", - "question_id": 43030, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "sa00006667", - "question_id": 43032, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00000544", - "question_id": 43037, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005225", - "question_id": 43042, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004702", - "question_id": 43048, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002717", - "question_id": 43049, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000431", - "question_id": 43057, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00006006", - "question_id": 43063, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "va00003273", - "question_id": 43075, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008588", - "question_id": 43096, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00008868", - "question_id": 43101, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "sa00008497", - "question_id": 43102, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"piano\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00003464", - "question_id": 43103, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "va00003369", - "question_id": 43109, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007670", - "question_id": 43112, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00005995", - "question_id": 43129, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007842", - "question_id": 43130, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00005220", - "question_id": 43134, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00008755", - "question_id": 43145, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"drum\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "va00005894", - "question_id": 43148, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00003760", - "question_id": 43153, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001214", - "question_id": 43156, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00003378", - "question_id": 43162, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "va00004041", - "question_id": 43164, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007584", - "question_id": 43166, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "sa00006340", - "question_id": 43168, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005211", - "question_id": 43171, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002622", - "question_id": 43174, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006311", - "question_id": 43178, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00002826", - "question_id": 43183, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"tuba\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "sa00007788", - "question_id": 43190, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00007412", - "question_id": 43193, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "va00003256", - "question_id": 43198, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"drum\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00006262", - "question_id": 43218, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004697", - "question_id": 43239, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008321", - "question_id": 43269, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006721", - "question_id": 43271, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "va00004111", - "question_id": 43274, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00008084", - "question_id": 43275, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007397", - "question_id": 43277, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002448", - "question_id": 43282, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "va00005504", - "question_id": 43283, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00001575", - "question_id": 43284, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005401", - "question_id": 43289, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004111", - "question_id": 43290, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00008835", - "question_id": 43310, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00004805", - "question_id": 43320, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "sa00006083", - "question_id": 43329, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "va00005931", - "question_id": 43330, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "vv00002386", - "question_id": 43334, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "va00004293", - "question_id": 43339, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006046", - "question_id": 43354, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001367", - "question_id": 43365, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007705", - "question_id": 43370, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00003075", - "question_id": 43384, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008431", - "question_id": 43385, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001168", - "question_id": 43410, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00006456", - "question_id": 43417, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00007594", - "question_id": 43425, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00004024", - "question_id": 43428, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005737", - "question_id": 43438, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000124", - "question_id": 43448, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005226", - "question_id": 43469, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "sa00006706", - "question_id": 43482, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00006172", - "question_id": 43486, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001609", - "question_id": 43488, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"tuba\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003173", - "question_id": 43491, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008513", - "question_id": 43493, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008257", - "question_id": 43499, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006908", - "question_id": 43502, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004665", - "question_id": 43503, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"last\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "va00004989", - "question_id": 43513, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00005154", - "question_id": 43520, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00003674", - "question_id": 43528, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002451", - "question_id": 43529, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "sa00008321", - "question_id": 43532, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00005709", - "question_id": 43539, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005894", - "question_id": 43547, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00003334", - "question_id": 43565, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00005111", - "question_id": 43568, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"saxophone\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005225", - "question_id": 43569, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005236", - "question_id": 43577, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005933", - "question_id": 43614, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005894", - "question_id": 43624, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00008653", - "question_id": 43637, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008350", - "question_id": 43639, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "sa00007412", - "question_id": 43641, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00005994", - "question_id": 43650, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008072", - "question_id": 43651, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002247", - "question_id": 43680, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00007161", - "question_id": 43697, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000500", - "question_id": 43702, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001195", - "question_id": 43704, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000470", - "question_id": 43719, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000867", - "question_id": 43742, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001202", - "question_id": 43747, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001305", - "question_id": 43762, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001188", - "question_id": 43766, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000390", - "question_id": 43778, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001239", - "question_id": 43786, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001362", - "question_id": 43788, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000873", - "question_id": 43810, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001117", - "question_id": 43811, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000812", - "question_id": 43813, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "esa00000405", - "question_id": 43818, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000966", - "question_id": 43822, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000630", - "question_id": 43825, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000443", - "question_id": 43826, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000737", - "question_id": 43828, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001243", - "question_id": 43829, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001270", - "question_id": 43844, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000979", - "question_id": 43854, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001212", - "question_id": 43856, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000521", - "question_id": 43857, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000307", - "question_id": 43859, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001298", - "question_id": 43877, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001456", - "question_id": 43890, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000895", - "question_id": 43895, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001137", - "question_id": 43917, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000018", - "question_id": 43926, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000472", - "question_id": 43927, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001000", - "question_id": 43936, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000009", - "question_id": 43942, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001292", - "question_id": 43952, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"middle\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000895", - "question_id": 43959, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000899", - "question_id": 43973, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001942", - "question_id": 43976, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000446", - "question_id": 43979, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "esa00000565", - "question_id": 43994, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000414", - "question_id": 44010, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000906", - "question_id": 44011, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"saxophone\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "evv00001407", - "question_id": 44021, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000818", - "question_id": 44024, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000014", - "question_id": 44032, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000990", - "question_id": 44037, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000265", - "question_id": 44054, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001466", - "question_id": 44060, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001172", - "question_id": 44064, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000416", - "question_id": 44072, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000143", - "question_id": 44075, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001666", - "question_id": 44076, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003827", - "question_id": 44082, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001012", - "question_id": 44083, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006130", - "question_id": 44086, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000626", - "question_id": 44087, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001261", - "question_id": 44097, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000913", - "question_id": 44103, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000631", - "question_id": 44106, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000500", - "question_id": 44107, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001083", - "question_id": 44112, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000321", - "question_id": 44117, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008176", - "question_id": 44118, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001037", - "question_id": 44124, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004865", - "question_id": 44127, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000865", - "question_id": 44142, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001113", - "question_id": 44150, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000521", - "question_id": 44157, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"electric_bass\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006733", - "question_id": 44161, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003484", - "question_id": 44162, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000807", - "question_id": 44169, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000703", - "question_id": 44171, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "eva00000731", - "question_id": 44172, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001164", - "question_id": 44174, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001263", - "question_id": 44182, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000226", - "question_id": 44198, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000895", - "question_id": 44200, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000823", - "question_id": 44201, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001182", - "question_id": 44209, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000899", - "question_id": 44213, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000312", - "question_id": 44218, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000324", - "question_id": 44222, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000919", - "question_id": 44223, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000727", - "question_id": 44226, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000235", - "question_id": 44235, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000319", - "question_id": 44248, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001343", - "question_id": 44249, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005615", - "question_id": 44250, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007228", - "question_id": 44258, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"cello\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "eva00001125", - "question_id": 44264, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000194", - "question_id": 44265, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007123", - "question_id": 44271, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001629", - "question_id": 44275, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001025", - "question_id": 44288, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000240", - "question_id": 44306, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000207", - "question_id": 44309, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000807", - "question_id": 44310, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000398", - "question_id": 44318, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000826", - "question_id": 44329, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001071", - "question_id": 44331, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001433", - "question_id": 44338, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001629", - "question_id": 44344, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"middle\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000280", - "question_id": 44347, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001158", - "question_id": 44357, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001234", - "question_id": 44370, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000566", - "question_id": 44373, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000543", - "question_id": 44374, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008373", - "question_id": 44375, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000415", - "question_id": 44380, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006261", - "question_id": 44385, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001414", - "question_id": 44387, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000211", - "question_id": 44389, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000217", - "question_id": 44392, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006680", - "question_id": 44398, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000142", - "question_id": 44400, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003504", - "question_id": 44401, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001148", - "question_id": 44403, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005716", - "question_id": 44406, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008328", - "question_id": 44410, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001347", - "question_id": 44420, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000696", - "question_id": 44432, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"electric_bass\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000885", - "question_id": 44434, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001352", - "question_id": 44444, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000958", - "question_id": 44449, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000923", - "question_id": 44451, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000622", - "question_id": 44462, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000605", - "question_id": 44476, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001374", - "question_id": 44483, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001468", - "question_id": 44490, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001212", - "question_id": 44495, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000842", - "question_id": 44496, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005755", - "question_id": 44504, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001374", - "question_id": 44509, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"tuba\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "eva00000930", - "question_id": 44511, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004414", - "question_id": 44515, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003317", - "question_id": 44518, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "evv00001293", - "question_id": 44519, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001154", - "question_id": 44521, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000588", - "question_id": 44523, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000250", - "question_id": 44553, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000759", - "question_id": 44556, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001413", - "question_id": 44568, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000641", - "question_id": 44570, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007530", - "question_id": 44573, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000975", - "question_id": 44575, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000485", - "question_id": 44580, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001181", - "question_id": 44596, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001228", - "question_id": 44599, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"bagpipe\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000393", - "question_id": 44600, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001440", - "question_id": 44604, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008561", - "question_id": 44618, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001025", - "question_id": 44634, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005780", - "question_id": 44636, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "evv00001317", - "question_id": 44651, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000923", - "question_id": 44658, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001291", - "question_id": 44666, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000659", - "question_id": 44669, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000172", - "question_id": 44671, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000356", - "question_id": 44672, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001425", - "question_id": 44677, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001636", - "question_id": 44679, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006146", - "question_id": 44693, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001068", - "question_id": 44702, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001293", - "question_id": 44709, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000767", - "question_id": 44711, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000291", - "question_id": 44718, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000549", - "question_id": 44722, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00000820", - "question_id": 44723, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000263", - "question_id": 44739, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004798", - "question_id": 44744, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000300", - "question_id": 44770, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"suona\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000949", - "question_id": 44802, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000422", - "question_id": 44808, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001382", - "question_id": 44814, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000666", - "question_id": 44818, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "evv00001306", - "question_id": 44833, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00001210", - "question_id": 44834, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000461", - "question_id": 44846, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000732", - "question_id": 44854, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000557", - "question_id": 44856, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000683", - "question_id": 44865, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "esa00000618", - "question_id": 44880, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000699", - "question_id": 44887, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000167", - "question_id": 44894, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001341", - "question_id": 44900, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000318", - "question_id": 44901, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001356", - "question_id": 44903, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001454", - "question_id": 44913, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000900", - "question_id": 44925, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002039", - "question_id": 44928, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000645", - "question_id": 44939, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001251", - "question_id": 44941, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"congas\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002814", - "question_id": 44942, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000223", - "question_id": 44954, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000810", - "question_id": 44965, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000980", - "question_id": 44975, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000401", - "question_id": 44981, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001144", - "question_id": 44987, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001016", - "question_id": 44995, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001108", - "question_id": 44996, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007602", - "question_id": 44997, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001393", - "question_id": 45008, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000843", - "question_id": 45017, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001249", - "question_id": 45023, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006370", - "question_id": 45026, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000683", - "question_id": 45032, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000772", - "question_id": 45038, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000701", - "question_id": 45046, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000781", - "question_id": 45056, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001043", - "question_id": 45064, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001046", - "question_id": 45072, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000508", - "question_id": 45073, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001210", - "question_id": 45080, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001407", - "question_id": 45084, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000958", - "question_id": 45086, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000400", - "question_id": 45088, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000494", - "question_id": 45091, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002353", - "question_id": 45095, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005921", - "question_id": 45101, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00005905", - "question_id": 45105, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "esa00000018", - "question_id": 45113, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000660", - "question_id": 45119, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000232", - "question_id": 45128, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000146", - "question_id": 45129, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001144", - "question_id": 45150, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000910", - "question_id": 45159, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001248", - "question_id": 45163, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "esa00000201", - "question_id": 45167, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"electric_bass\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001484", - "question_id": 45169, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000753", - "question_id": 45171, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000859", - "question_id": 45189, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000297", - "question_id": 45190, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001248", - "question_id": 45197, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000535", - "question_id": 45198, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000349", - "question_id": 45202, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001129", - "question_id": 45209, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001047", - "question_id": 45212, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007321", - "question_id": 45218, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000636", - "question_id": 45234, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008467", - "question_id": 45236, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001143", - "question_id": 45238, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001298", - "question_id": 45241, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001115", - "question_id": 45244, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000791", - "question_id": 45257, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000791", - "question_id": 45257, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000464", - "question_id": 45262, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007205", - "question_id": 45266, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "vv00000001", - "question_id": 45267, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "evv00001289", - "question_id": 45275, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "evv00001468", - "question_id": 45278, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000941", - "question_id": 45283, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000868", - "question_id": 45284, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"clarinet\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "eva00001038", - "question_id": 45287, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000226", - "question_id": 45288, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "evv00001233", - "question_id": 45299, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000946", - "question_id": 45301, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000670", - "question_id": 45303, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000204", - "question_id": 45305, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000972", - "question_id": 45312, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001085", - "question_id": 45335, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005091", - "question_id": 45337, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001070", - "question_id": 45341, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001237", - "question_id": 45345, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001030", - "question_id": 45348, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007518", - "question_id": 45360, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000984", - "question_id": 45364, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000237", - "question_id": 45370, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000952", - "question_id": 45372, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000599", - "question_id": 45377, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000796", - "question_id": 45381, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002350", - "question_id": 45386, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000184", - "question_id": 45393, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001256", - "question_id": 45396, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000742", - "question_id": 45400, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000800", - "question_id": 45426, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "evv00001467", - "question_id": 45429, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001420", - "question_id": 45440, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000331", - "question_id": 45446, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00001172", - "question_id": 45447, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001340", - "question_id": 45453, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000167", - "question_id": 45467, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001442", - "question_id": 45470, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00001157", - "question_id": 45471, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000800", - "question_id": 45472, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000974", - "question_id": 45475, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"congas\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000626", - "question_id": 45478, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000852", - "question_id": 45479, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007713", - "question_id": 45480, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00001172", - "question_id": 45492, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "evv00001244", - "question_id": 45494, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000855", - "question_id": 45501, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000703", - "question_id": 45510, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"middle\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000982", - "question_id": 45514, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000818", - "question_id": 45522, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000689", - "question_id": 45526, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000360", - "question_id": 45543, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"tuba\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "esa00000569", - "question_id": 45544, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001303", - "question_id": 45548, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "eva00000996", - "question_id": 45554, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007205", - "question_id": 45562, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000540", - "question_id": 45567, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000826", - "question_id": 45576, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"tuba\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001047", - "question_id": 45586, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008047", - "question_id": 45601, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007079", - "question_id": 45606, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000545", - "question_id": 45611, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001298", - "question_id": 45617, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "esa00000230", - "question_id": 45619, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"xylophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001132", - "question_id": 45623, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002350", - "question_id": 45624, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000742", - "question_id": 45631, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001477", - "question_id": 45633, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"banjo\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000321", - "question_id": 45634, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000330", - "question_id": 45637, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000962", - "question_id": 45652, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001252", - "question_id": 45654, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000258", - "question_id": 45658, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000581", - "question_id": 45670, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001089", - "question_id": 45671, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000812", - "question_id": 45679, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001100", - "question_id": 45691, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"drum\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000587", - "question_id": 45697, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001425", - "question_id": 45704, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007357", - "question_id": 45709, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001089", - "question_id": 45714, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000272", - "question_id": 45728, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"trumpet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "sa00006317", - "question_id": 45738, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00001205", - "question_id": 45744, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "evv00001391", - "question_id": 45749, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000917", - "question_id": 45750, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001273", - "question_id": 45757, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000265", - "question_id": 45768, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"left\", \"bagpipe\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000217", - "question_id": 45775, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000770", - "question_id": 45782, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001197", - "question_id": 45783, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"middle\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000765", - "question_id": 45806, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001310", - "question_id": 45819, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000786", - "question_id": 45822, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001988", - "question_id": 45825, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000845", - "question_id": 45826, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000976", - "question_id": 45834, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001455", - "question_id": 45843, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000458", - "question_id": 45852, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001331", - "question_id": 45861, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001115", - "question_id": 45864, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001381", - "question_id": 45866, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00001194", - "question_id": 45877, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000668", - "question_id": 45886, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "evv00001448", - "question_id": 45890, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005515", - "question_id": 45892, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00002442", - "question_id": 45898, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004789", - "question_id": 45904, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "esa00000164", - "question_id": 45937, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001030", - "question_id": 45959, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000938", - "question_id": 45967, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000343", - "question_id": 45972, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000419", - "question_id": 45996, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00001005", - "question_id": 45997, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000202", - "question_id": 46003, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "evv00001270", - "question_id": 46005, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "evv00001455", - "question_id": 46010, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"trumpet\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000748", - "question_id": 46021, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00000936", - "question_id": 46040, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"middle\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006328", - "question_id": 46049, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001173", - "question_id": 46066, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000906", - "question_id": 46069, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00000466", - "question_id": 46072, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001064", - "question_id": 46085, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00000963", - "question_id": 46092, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001387", - "question_id": 46096, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001387", - "question_id": 46096, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000931", - "question_id": 46097, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001206", - "question_id": 46098, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001076", - "question_id": 46099, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "evv00001319", - "question_id": 46100, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"tuba\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000814", - "question_id": 46105, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001108", - "question_id": 46112, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001392", - "question_id": 46121, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001043", - "question_id": 46124, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00005084", - "question_id": 46130, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001367", - "question_id": 46134, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001350", - "question_id": 46142, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001374", - "question_id": 46159, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000796", - "question_id": 46163, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000458", - "question_id": 46171, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "evv00001361", - "question_id": 46175, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007457", - "question_id": 46181, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000615", - "question_id": 46196, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005623", - "question_id": 46197, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000845", - "question_id": 46202, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "evv00001281", - "question_id": 46208, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001315", - "question_id": 46212, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "eva00000723", - "question_id": 46222, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006220", - "question_id": 46223, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "esa00000151", - "question_id": 46224, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001474", - "question_id": 46236, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "evv00001361", - "question_id": 46237, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "evv00001476", - "question_id": 46241, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003950", - "question_id": 46246, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002274", - "question_id": 46247, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001334", - "question_id": 46250, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"middle\", \"tuba\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000576", - "question_id": 46251, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "va00005551", - "question_id": 46252, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00000891", - "question_id": 46255, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"clarinet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005322", - "question_id": 46260, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000701", - "question_id": 46265, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000562", - "question_id": 46275, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"congas\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001306", - "question_id": 46304, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000720", - "question_id": 46307, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004320", - "question_id": 46326, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "eva00001009", - "question_id": 46327, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001020", - "question_id": 46334, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00001076", - "question_id": 46337, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bagpipe\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001189", - "question_id": 46339, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001166", - "question_id": 46341, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000952", - "question_id": 46343, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000622", - "question_id": 46349, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00001012", - "question_id": 46350, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001433", - "question_id": 46352, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000839", - "question_id": 46357, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001029", - "question_id": 46373, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000289", - "question_id": 46374, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "esa00000287", - "question_id": 46392, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000732", - "question_id": 46393, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "esa00000324", - "question_id": 46402, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001336", - "question_id": 46405, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001484", - "question_id": 46406, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "eva00000699", - "question_id": 46438, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001116", - "question_id": 46445, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001397", - "question_id": 46446, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000811", - "question_id": 46453, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"tuba\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000427", - "question_id": 46457, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000371", - "question_id": 46466, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001104", - "question_id": 46476, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001433", - "question_id": 46477, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008079", - "question_id": 46483, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "evv00001283", - "question_id": 46487, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001297", - "question_id": 46489, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001336", - "question_id": 46495, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000923", - "question_id": 46496, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001028", - "question_id": 46497, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000795", - "question_id": 46500, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000416", - "question_id": 46506, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "evv00001218", - "question_id": 46510, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003950", - "question_id": 46520, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001237", - "question_id": 46523, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000796", - "question_id": 46528, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006110", - "question_id": 46531, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00001056", - "question_id": 46537, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005242", - "question_id": 46542, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001217", - "question_id": 46549, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000831", - "question_id": 46552, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000725", - "question_id": 46554, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007297", - "question_id": 46557, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000397", - "question_id": 46560, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000551", - "question_id": 46561, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001099", - "question_id": 46566, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000602", - "question_id": 46567, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001184", - "question_id": 46579, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000768", - "question_id": 46586, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00000882", - "question_id": 46590, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001583", - "question_id": 46595, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000930", - "question_id": 46597, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000947", - "question_id": 46599, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008174", - "question_id": 46612, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001097", - "question_id": 46621, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001325", - "question_id": 46623, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000781", - "question_id": 46626, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "eva00000867", - "question_id": 46628, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001064", - "question_id": 46647, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001453", - "question_id": 46649, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000972", - "question_id": 46650, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00000883", - "question_id": 46657, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00008526", - "question_id": 46663, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000329", - "question_id": 46669, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000310", - "question_id": 46673, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"right\", \"erhu\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000193", - "question_id": 46686, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000427", - "question_id": 46692, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001238", - "question_id": 46696, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000882", - "question_id": 46718, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000740", - "question_id": 46737, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000740", - "question_id": 46737, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000520", - "question_id": 46741, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008603", - "question_id": 46744, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001055", - "question_id": 46749, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00001159", - "question_id": 46754, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000806", - "question_id": 46756, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001325", - "question_id": 46757, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001312", - "question_id": 46759, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "evv00001397", - "question_id": 46777, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"piano\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000485", - "question_id": 46792, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006510", - "question_id": 46797, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000723", - "question_id": 46813, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008005", - "question_id": 46815, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001415", - "question_id": 46824, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"middle\", \"pipa\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000551", - "question_id": 46825, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001445", - "question_id": 46827, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000827", - "question_id": 46843, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00002275", - "question_id": 46847, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005016", - "question_id": 46853, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000736", - "question_id": 46868, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000668", - "question_id": 46869, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000425", - "question_id": 46871, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001448", - "question_id": 46876, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"middle\", \"suona\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001126", - "question_id": 46881, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001126", - "question_id": 46881, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000933", - "question_id": 46882, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001402", - "question_id": 46887, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001113", - "question_id": 46902, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "evv00001341", - "question_id": 46903, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"suona\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000903", - "question_id": 46915, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007512", - "question_id": 46917, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000270", - "question_id": 46930, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000835", - "question_id": 46931, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002907", - "question_id": 46955, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "esa00000378", - "question_id": 46958, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001108", - "question_id": 46973, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "evv00001310", - "question_id": 46976, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001310", - "question_id": 46976, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001427", - "question_id": 46984, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000505", - "question_id": 46986, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000945", - "question_id": 46993, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000945", - "question_id": 46993, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000835", - "question_id": 47008, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001168", - "question_id": 47009, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001076", - "question_id": 47012, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000477", - "question_id": 47017, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001350", - "question_id": 47019, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00001126", - "question_id": 47036, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001126", - "question_id": 47036, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001476", - "question_id": 47038, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000350", - "question_id": 47043, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "eva00001098", - "question_id": 47044, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000751", - "question_id": 47046, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001083", - "question_id": 47051, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001010", - "question_id": 47055, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"piano\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "eva00000777", - "question_id": 47057, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000678", - "question_id": 47069, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008454", - "question_id": 47090, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000465", - "question_id": 47104, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001187", - "question_id": 47107, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000142", - "question_id": 47123, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000871", - "question_id": 47124, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000946", - "question_id": 47128, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00000783", - "question_id": 47148, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000215", - "question_id": 47149, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001148", - "question_id": 47155, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000715", - "question_id": 47159, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000199", - "question_id": 47174, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001390", - "question_id": 47181, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001356", - "question_id": 47189, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005678", - "question_id": 47197, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000996", - "question_id": 47199, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00001067", - "question_id": 47201, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000363", - "question_id": 47212, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000715", - "question_id": 47231, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008380", - "question_id": 47236, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "esa00000276", - "question_id": 47237, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006658", - "question_id": 47238, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000178", - "question_id": 47247, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000462", - "question_id": 47260, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001281", - "question_id": 47270, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000249", - "question_id": 47274, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000163", - "question_id": 47276, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000695", - "question_id": 47281, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000144", - "question_id": 47284, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000266", - "question_id": 47285, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001045", - "question_id": 47293, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "esa00000423", - "question_id": 47300, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000423", - "question_id": 47300, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00001187", - "question_id": 47303, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000616", - "question_id": 47307, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"electric_bass\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000756", - "question_id": 47310, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000934", - "question_id": 47326, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000815", - "question_id": 47327, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "esa00000688", - "question_id": 47334, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001402", - "question_id": 47335, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00001097", - "question_id": 47358, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000337", - "question_id": 47370, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000463", - "question_id": 47384, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005285", - "question_id": 47386, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000669", - "question_id": 47387, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001414", - "question_id": 47393, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "esa00000560", - "question_id": 47395, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000349", - "question_id": 47396, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000623", - "question_id": 47406, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "esa00000439", - "question_id": 47410, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bagpipe\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000963", - "question_id": 47413, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001121", - "question_id": 47416, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001157", - "question_id": 47422, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001366", - "question_id": 47428, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "esa00000535", - "question_id": 47436, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000155", - "question_id": 47450, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000296", - "question_id": 47456, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bagpipe\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000706", - "question_id": 47463, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000006", - "question_id": 47464, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001261", - "question_id": 47477, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "esa00000246", - "question_id": 47479, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000610", - "question_id": 47481, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000293", - "question_id": 47483, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000655", - "question_id": 47486, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000178", - "question_id": 47487, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001147", - "question_id": 47496, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007181", - "question_id": 47497, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000288", - "question_id": 47507, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000642", - "question_id": 47509, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000868", - "question_id": 47524, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "esa00000217", - "question_id": 47529, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002105", - "question_id": 47530, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000278", - "question_id": 47535, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000984", - "question_id": 47539, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00000984", - "question_id": 47546, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00000763", - "question_id": 47547, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000340", - "question_id": 47551, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000707", - "question_id": 47553, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000522", - "question_id": 47555, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001329", - "question_id": 47558, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "sa00007055", - "question_id": 47572, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004309", - "question_id": 47574, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "sa00008256", - "question_id": 47584, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006217", - "question_id": 47592, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "esa00000367", - "question_id": 47595, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000994", - "question_id": 47596, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003671", - "question_id": 47616, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00007576", - "question_id": 47618, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007687", - "question_id": 47619, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001174", - "question_id": 47621, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"trumpet\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007161", - "question_id": 47629, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005209", - "question_id": 47648, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006307", - "question_id": 47651, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "va00005002", - "question_id": 47663, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"congas\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000261", - "question_id": 47682, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007393", - "question_id": 47683, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000402", - "question_id": 47690, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001264", - "question_id": 47705, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "eva00001175", - "question_id": 47706, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006108", - "question_id": 47711, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000983", - "question_id": 47715, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006927", - "question_id": 47724, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008473", - "question_id": 47739, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008440", - "question_id": 47749, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "vv00002689", - "question_id": 47756, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"congas\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003351", - "question_id": 47761, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "eva00000720", - "question_id": 47765, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "esa00000643", - "question_id": 47768, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "sa00007785", - "question_id": 47790, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00002062", - "question_id": 47800, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007543", - "question_id": 47802, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00000046", - "question_id": 47831, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00002944", - "question_id": 47833, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001506", - "question_id": 47839, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003793", - "question_id": 47842, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "va00005661", - "question_id": 47853, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00008054", - "question_id": 47857, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00003445", - "question_id": 47866, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004305", - "question_id": 47869, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007216", - "question_id": 47872, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000539", - "question_id": 47875, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004149", - "question_id": 47889, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00004861", - "question_id": 47894, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "sa00007909", - "question_id": 47918, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "va00004513", - "question_id": 47923, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00005317", - "question_id": 47934, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00007725", - "question_id": 47936, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "va00005596", - "question_id": 47937, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00000376", - "question_id": 47942, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "sa00006779", - "question_id": 47944, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00005466", - "question_id": 47956, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "va00004470", - "question_id": 47959, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00005972", - "question_id": 47964, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006958", - "question_id": 47967, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00005998", - "question_id": 47972, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001693", - "question_id": 47979, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00007583", - "question_id": 47981, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001557", - "question_id": 47983, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00004849", - "question_id": 47987, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005848", - "question_id": 47995, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008734", - "question_id": 48005, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00003152", - "question_id": 48006, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00004121", - "question_id": 48016, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00001512", - "question_id": 48021, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "sa00008653", - "question_id": 48027, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00005089", - "question_id": 48029, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "esa00000399", - "question_id": 48035, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00004431", - "question_id": 48050, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00002829", - "question_id": 48056, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001974", - "question_id": 48058, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00004489", - "question_id": 48060, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00004955", - "question_id": 48065, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "sa00007703", - "question_id": 48066, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "esa00000565", - "question_id": 48074, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002717", - "question_id": 48077, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"piano\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007113", - "question_id": 48078, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003323", - "question_id": 48081, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "sa00006519", - "question_id": 48082, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "esa00000585", - "question_id": 48083, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00008701", - "question_id": 48084, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002068", - "question_id": 48090, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006565", - "question_id": 48098, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006755", - "question_id": 48099, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"suona\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000287", - "question_id": 48100, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008069", - "question_id": 48109, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003369", - "question_id": 48116, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "esa00000309", - "question_id": 48119, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "eva00001018", - "question_id": 48120, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"last\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003667", - "question_id": 48125, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00008264", - "question_id": 48129, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00005635", - "question_id": 48146, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007997", - "question_id": 48151, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "vv00000190", - "question_id": 48156, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"guzheng\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "eva00001194", - "question_id": 48158, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002311", - "question_id": 48159, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006178", - "question_id": 48162, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "evv00001418", - "question_id": 48169, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003198", - "question_id": 48198, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001148", - "question_id": 48199, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007016", - "question_id": 48205, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "esa00000005", - "question_id": 48208, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00003955", - "question_id": 48210, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "sa00007390", - "question_id": 48215, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00002370", - "question_id": 48225, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000139", - "question_id": 48228, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"banjo\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004303", - "question_id": 48229, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00003001", - "question_id": 48236, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000825", - "question_id": 48241, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008672", - "question_id": 48242, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"middle\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004370", - "question_id": 48251, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00006581", - "question_id": 48271, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000250", - "question_id": 48292, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00000576", - "question_id": 48306, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000921", - "question_id": 48309, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "va00004999", - "question_id": 48311, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000082", - "question_id": 48313, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00003120", - "question_id": 48317, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "esa00000594", - "question_id": 48334, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00003536", - "question_id": 48344, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003256", - "question_id": 48352, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004559", - "question_id": 48355, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007270", - "question_id": 48363, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "esa00000577", - "question_id": 48372, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00000824", - "question_id": 48395, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000562", - "question_id": 48402, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "esa00000243", - "question_id": 48403, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "sa00006424", - "question_id": 48405, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "esa00000324", - "question_id": 48407, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001677", - "question_id": 48433, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "vv00002386", - "question_id": 48438, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001203", - "question_id": 48440, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008222", - "question_id": 48441, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001952", - "question_id": 48447, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002262", - "question_id": 48449, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00008594", - "question_id": 48455, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"banjo\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001367", - "question_id": 48465, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002866", - "question_id": 48469, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00007677", - "question_id": 48471, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000423", - "question_id": 48483, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000482", - "question_id": 48484, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000731", - "question_id": 48493, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000439", - "question_id": 48502, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00003906", - "question_id": 48513, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00007340", - "question_id": 48523, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "esa00000012", - "question_id": 48533, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001137", - "question_id": 48534, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007777", - "question_id": 48535, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"last\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "esa00000440", - "question_id": 48540, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000209", - "question_id": 48542, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000486", - "question_id": 48551, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002875", - "question_id": 48564, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "sa00007108", - "question_id": 48574, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00004598", - "question_id": 48576, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005440", - "question_id": 48588, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006294", - "question_id": 48596, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "eva00001215", - "question_id": 48610, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bassoon\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001462", - "question_id": 48616, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002721", - "question_id": 48618, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000672", - "question_id": 48630, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00003867", - "question_id": 48633, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000437", - "question_id": 48635, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "sa00008827", - "question_id": 48637, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00007442", - "question_id": 48643, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002040", - "question_id": 48648, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007397", - "question_id": 48649, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002874", - "question_id": 48653, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001263", - "question_id": 48674, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008724", - "question_id": 48676, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "esa00000194", - "question_id": 48686, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000594", - "question_id": 48687, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004086", - "question_id": 48694, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005573", - "question_id": 48701, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "sa00008889", - "question_id": 48723, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003836", - "question_id": 48725, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001095", - "question_id": 48741, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "evv00001390", - "question_id": 48746, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000908", - "question_id": 48748, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007755", - "question_id": 48758, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00007759", - "question_id": 48765, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000975", - "question_id": 48767, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005980", - "question_id": 48769, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "eva00001203", - "question_id": 48780, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007215", - "question_id": 48784, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00003132", - "question_id": 48792, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003471", - "question_id": 48793, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001743", - "question_id": 48794, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000174", - "question_id": 48797, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000594", - "question_id": 48801, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000642", - "question_id": 48802, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"suona\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007735", - "question_id": 48804, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003629", - "question_id": 48814, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "evv00001274", - "question_id": 48826, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bassoon\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006826", - "question_id": 48832, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"tuba\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002603", - "question_id": 48836, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"trumpet\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008694", - "question_id": 48837, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "esa00000448", - "question_id": 48841, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005949", - "question_id": 48845, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001007", - "question_id": 48860, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003576", - "question_id": 48864, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003625", - "question_id": 48867, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00002732", - "question_id": 48868, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008119", - "question_id": 48870, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "sa00006020", - "question_id": 48878, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "esa00000363", - "question_id": 48879, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001147", - "question_id": 48886, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "evv00001272", - "question_id": 48888, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006283", - "question_id": 48898, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"middle\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007338", - "question_id": 48901, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005272", - "question_id": 48919, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00008430", - "question_id": 48920, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006568", - "question_id": 48925, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004036", - "question_id": 48928, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000933", - "question_id": 48929, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000508", - "question_id": 48941, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "esa00000477", - "question_id": 48945, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008532", - "question_id": 48952, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002359", - "question_id": 48962, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000214", - "question_id": 48965, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00000222", - "question_id": 48970, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008180", - "question_id": 48972, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "eva00001104", - "question_id": 48974, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003054", - "question_id": 48981, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005129", - "question_id": 48983, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "esa00000280", - "question_id": 48987, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007525", - "question_id": 48991, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00004143", - "question_id": 48997, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000885", - "question_id": 49000, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000652", - "question_id": 49005, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000443", - "question_id": 49007, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "sa00008654", - "question_id": 49012, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bagpipe\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005739", - "question_id": 49013, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "va00004786", - "question_id": 49019, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bagpipe\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007328", - "question_id": 49020, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00000449", - "question_id": 49025, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00007947", - "question_id": 49026, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00001785", - "question_id": 49028, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004130", - "question_id": 49032, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003015", - "question_id": 49033, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005681", - "question_id": 49046, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "vv00002440", - "question_id": 49055, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "vv00002764", - "question_id": 49065, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008078", - "question_id": 49071, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000222", - "question_id": 49075, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bassoon\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001018", - "question_id": 49076, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"pipa\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005213", - "question_id": 49080, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "sa00008387", - "question_id": 49084, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"xylophone\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000010", - "question_id": 49087, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002169", - "question_id": 49088, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000924", - "question_id": 49096, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"accordion\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "sa00006590", - "question_id": 49101, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001915", - "question_id": 49104, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005333", - "question_id": 49117, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006031", - "question_id": 49133, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007821", - "question_id": 49137, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "eva00000859", - "question_id": 49138, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00000801", - "question_id": 49141, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00000436", - "question_id": 49144, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00008034", - "question_id": 49146, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"bassoon\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000149", - "question_id": 49149, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001613", - "question_id": 49151, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"suona\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000174", - "question_id": 49161, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "vv00000084", - "question_id": 49162, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "eva00000970", - "question_id": 49165, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002466", - "question_id": 49167, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006669", - "question_id": 49168, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00005471", - "question_id": 49171, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005471", - "question_id": 49172, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000259", - "question_id": 49179, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001211", - "question_id": 49180, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003969", - "question_id": 49189, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004603", - "question_id": 49204, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008747", - "question_id": 49238, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "eva00001197", - "question_id": 49254, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"last\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "esa00000017", - "question_id": 49256, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000504", - "question_id": 49261, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002888", - "question_id": 49262, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008534", - "question_id": 49265, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "eva00000843", - "question_id": 49266, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00003105", - "question_id": 49268, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "va00005770", - "question_id": 49273, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "esa00000270", - "question_id": 49275, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000337", - "question_id": 49281, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006728", - "question_id": 49282, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00003482", - "question_id": 49284, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "va00004863", - "question_id": 49285, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "sa00008367", - "question_id": 49290, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00008284", - "question_id": 49291, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001084", - "question_id": 49292, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"electric_bass\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000258", - "question_id": 49294, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000158", - "question_id": 49296, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007438", - "question_id": 49302, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "esa00000303", - "question_id": 49303, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "sa00006956", - "question_id": 49306, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000684", - "question_id": 49307, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00007355", - "question_id": 49310, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "va00005166", - "question_id": 49312, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"banjo\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000293", - "question_id": 49314, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000655", - "question_id": 49315, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002017", - "question_id": 49316, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "esa00000155", - "question_id": 49318, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003359", - "question_id": 49320, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000332", - "question_id": 49323, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "esa00000299", - "question_id": 49324, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004656", - "question_id": 49325, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003298", - "question_id": 49328, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001702", - "question_id": 49330, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "esa00000540", - "question_id": 49332, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "sa00006088", - "question_id": 49339, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00004042", - "question_id": 49340, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000318", - "question_id": 49344, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00000701", - "question_id": 49345, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003834", - "question_id": 49348, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001208", - "question_id": 49352, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00000668", - "question_id": 49353, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008206", - "question_id": 49355, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000688", - "question_id": 49359, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "esa00000635", - "question_id": 49362, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003292", - "question_id": 49365, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004903", - "question_id": 49372, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001161", - "question_id": 49374, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001344", - "question_id": 49378, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "esa00000378", - "question_id": 49380, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00002880", - "question_id": 49383, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002176", - "question_id": 49385, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001343", - "question_id": 49387, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000483", - "question_id": 49389, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007498", - "question_id": 49405, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "esa00000632", - "question_id": 49407, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000380", - "question_id": 49413, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005367", - "question_id": 49414, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001181", - "question_id": 49431, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - } -] \ No newline at end of file diff --git a/data/json/avqa-test_fake.json b/data/json/avqa-test_fake.json deleted file mode 100644 index 2e67fdd..0000000 --- a/data/json/avqa-test_fake.json +++ /dev/null @@ -1,14265 +0,0 @@ -[{ - "video_id": "va00003871", - "question_id": 28154, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "va00004581", - "question_id": 28180, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "va00003838", - "question_id": 28250, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "va00003439", - "question_id": 28310, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "vv00000177", - "question_id": 28340, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00008442", - "question_id": 28347, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00006949", - "question_id": 28356, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "va00003704", - "question_id": 28363, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "sa00006534", - "question_id": 28396, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "va00004916", - "question_id": 28404, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "sa00007089", - "question_id": 28422, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "sa00007601", - "question_id": 28448, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "sa00008263", - "question_id": 28467, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "va00003816", - "question_id": 28479, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "sa00007918", - "question_id": 28504, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "sa00006220", - "question_id": 28506, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "va00005099", - "question_id": 28576, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "va00005545", - "question_id": 28580, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "sa00006849", - "question_id": 28605, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "vv00003061", - "question_id": 28616, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002643", - "question_id": 28619, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "va00003932", - "question_id": 28632, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "sa00008963", - "question_id": 28655, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "sa00006910", - "question_id": 28703, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "va00003685", - "question_id": 28848, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "va00005642", - "question_id": 28883, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "sa00007434", - "question_id": 28884, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006492", - "question_id": 28923, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "va00005337", - "question_id": 28936, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "va00004188", - "question_id": 28937, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004946", - "question_id": 28953, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "sa00006962", - "question_id": 28965, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "va00005668", - "question_id": 29006, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "vv00002992", - "question_id": 29070, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000497", - "question_id": 29134, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000353", - "question_id": 29141, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006808", - "question_id": 29161, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00007561", - "question_id": 29181, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "sa00008927", - "question_id": 29188, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "va00004745", - "question_id": 29269, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00007668", - "question_id": 29277, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "va00004620", - "question_id": 29294, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004596", - "question_id": 29297, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004000", - "question_id": 29315, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "va00003102", - "question_id": 29322, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "va00005881", - "question_id": 29331, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bagpipe\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006195", - "question_id": 29339, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00006095", - "question_id": 29345, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "va00005494", - "question_id": 29371, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"xylophone\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00005987", - "question_id": 29378, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000044", - "question_id": 29379, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "vv00000227", - "question_id": 29398, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005476", - "question_id": 29430, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005044", - "question_id": 29440, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "sa00006779", - "question_id": 29447, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "sa00007043", - "question_id": 29457, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "vv00000525", - "question_id": 29463, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bagpipe\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004544", - "question_id": 29538, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "sa00006409", - "question_id": 29559, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "va00003767", - "question_id": 29587, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00006879", - "question_id": 29589, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "va00004305", - "question_id": 29678, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004324", - "question_id": 29684, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "va00004985", - "question_id": 29692, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "va00005295", - "question_id": 29719, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "vv00000531", - "question_id": 29737, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "sa00008398", - "question_id": 29742, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "vv00000598", - "question_id": 29766, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007027", - "question_id": 29776, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004677", - "question_id": 29907, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "vv00000606", - "question_id": 29913, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "va00003770", - "question_id": 29936, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003313", - "question_id": 29951, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "va00004518", - "question_id": 29958, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "vv00000649", - "question_id": 30045, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007266", - "question_id": 30051, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00007621", - "question_id": 30072, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "vv00000404", - "question_id": 30074, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "va00005700", - "question_id": 30090, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00008059", - "question_id": 30093, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "va00004157", - "question_id": 30157, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00007196", - "question_id": 30180, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "va00003157", - "question_id": 30207, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "vv00002992", - "question_id": 30225, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "vv00002785", - "question_id": 30279, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "va00005427", - "question_id": 30285, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004452", - "question_id": 30322, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "vv00000653", - "question_id": 30354, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "vv00002669", - "question_id": 30411, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00003081", - "question_id": 30412, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"trumpet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "vv00000091", - "question_id": 30440, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "sa00007328", - "question_id": 30454, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "vv00003020", - "question_id": 30533, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "sa00008493", - "question_id": 30557, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00003053", - "question_id": 30558, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "vv00002421", - "question_id": 30593, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "sa00007729", - "question_id": 30629, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "vv00000515", - "question_id": 30675, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "sa00008479", - "question_id": 30713, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "vv00000649", - "question_id": 30758, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000649", - "question_id": 30758, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006026", - "question_id": 30850, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "vv00000575", - "question_id": 30941, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "vv00002988", - "question_id": 30990, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"tuba\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002988", - "question_id": 30990, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"tuba\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005578", - "question_id": 31048, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007424", - "question_id": 31049, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006227", - "question_id": 31078, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00000219", - "question_id": 31142, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004419", - "question_id": 31155, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002948", - "question_id": 31166, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006097", - "question_id": 31186, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000391", - "question_id": 31189, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002386", - "question_id": 31194, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004714", - "question_id": 31224, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006198", - "question_id": 31227, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008089", - "question_id": 31230, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002622", - "question_id": 31232, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003306", - "question_id": 31247, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006492", - "question_id": 31253, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008877", - "question_id": 31273, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007643", - "question_id": 31275, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003378", - "question_id": 31294, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00008028", - "question_id": 31313, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005627", - "question_id": 31342, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002711", - "question_id": 31349, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006092", - "question_id": 31359, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006111", - "question_id": 31389, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006111", - "question_id": 31389, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004242", - "question_id": 31390, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007746", - "question_id": 31399, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007171", - "question_id": 31408, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007921", - "question_id": 31414, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003356", - "question_id": 31416, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008215", - "question_id": 31438, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00003075", - "question_id": 31457, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "vv00000154", - "question_id": 31465, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "va00003815", - "question_id": 31487, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003333", - "question_id": 31499, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00008136", - "question_id": 31502, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008136", - "question_id": 31502, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00005994", - "question_id": 31531, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006260", - "question_id": 31541, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006763", - "question_id": 31575, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004518", - "question_id": 31578, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005764", - "question_id": 31582, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000649", - "question_id": 31590, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006635", - "question_id": 31593, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008650", - "question_id": 31601, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004984", - "question_id": 31631, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008110", - "question_id": 31635, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003743", - "question_id": 31668, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003456", - "question_id": 31698, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005206", - "question_id": 31701, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007974", - "question_id": 31704, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004777", - "question_id": 31712, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003894", - "question_id": 31745, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006550", - "question_id": 31760, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000203", - "question_id": 31761, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007257", - "question_id": 31798, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003429", - "question_id": 31799, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002792", - "question_id": 31823, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006891", - "question_id": 31844, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004282", - "question_id": 31856, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00003081", - "question_id": 31890, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003882", - "question_id": 31901, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003476", - "question_id": 31928, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005831", - "question_id": 31934, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007286", - "question_id": 31955, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000062", - "question_id": 31969, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003278", - "question_id": 31971, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005449", - "question_id": 31995, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006210", - "question_id": 32003, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003627", - "question_id": 32021, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002728", - "question_id": 32043, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006962", - "question_id": 32075, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005347", - "question_id": 32086, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005301", - "question_id": 32120, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000302", - "question_id": 32146, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00003065", - "question_id": 32149, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000444", - "question_id": 32155, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000404", - "question_id": 32157, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006455", - "question_id": 32181, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003400", - "question_id": 32223, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006725", - "question_id": 32224, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000088", - "question_id": 32234, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003093", - "question_id": 32255, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002597", - "question_id": 32263, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004046", - "question_id": 32280, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002546", - "question_id": 32289, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "sa00006567", - "question_id": 32291, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005511", - "question_id": 32313, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007155", - "question_id": 32340, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005715", - "question_id": 32353, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008835", - "question_id": 32376, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007703", - "question_id": 32409, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003219", - "question_id": 32446, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000499", - "question_id": 32448, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006492", - "question_id": 32479, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008072", - "question_id": 32499, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003822", - "question_id": 32516, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003245", - "question_id": 32519, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007735", - "question_id": 32556, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007543", - "question_id": 32639, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00008927", - "question_id": 32689, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004488", - "question_id": 32713, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00000096", - "question_id": 32718, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006046", - "question_id": 32724, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006826", - "question_id": 32734, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007134", - "question_id": 32738, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002964", - "question_id": 32744, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007032", - "question_id": 32768, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007509", - "question_id": 32815, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006417", - "question_id": 32845, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005070", - "question_id": 32854, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003159", - "question_id": 32855, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002774", - "question_id": 32885, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "vv00000453", - "question_id": 32890, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "more than ten" -}, { - "video_id": "va00005854", - "question_id": 32899, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000180", - "question_id": 32938, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008215", - "question_id": 32953, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005533", - "question_id": 32958, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002511", - "question_id": 32972, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000161", - "question_id": 32984, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004341", - "question_id": 33031, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005796", - "question_id": 33087, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004419", - "question_id": 33094, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007091", - "question_id": 33096, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004111", - "question_id": 33099, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008413", - "question_id": 33107, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007598", - "question_id": 33121, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004265", - "question_id": 33134, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00000497", - "question_id": 33148, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005946", - "question_id": 33156, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000550", - "question_id": 33165, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008893", - "question_id": 33167, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008215", - "question_id": 33175, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00003081", - "question_id": 33182, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005434", - "question_id": 33227, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003882", - "question_id": 33270, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000282", - "question_id": 33281, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007799", - "question_id": 33310, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002511", - "question_id": 33314, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003135", - "question_id": 33327, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002738", - "question_id": 33328, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00000180", - "question_id": 33355, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004701", - "question_id": 33358, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007925", - "question_id": 33369, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007613", - "question_id": 33378, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003216", - "question_id": 33382, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00002639", - "question_id": 33383, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007405", - "question_id": 33389, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005079", - "question_id": 33417, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004714", - "question_id": 33445, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005568", - "question_id": 33452, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000653", - "question_id": 33481, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007108", - "question_id": 33500, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006867", - "question_id": 33524, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007469", - "question_id": 33531, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006458", - "question_id": 33534, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004623", - "question_id": 33558, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004034", - "question_id": 33580, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008250", - "question_id": 33591, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007469", - "question_id": 33592, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000383", - "question_id": 33607, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003456", - "question_id": 33616, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007774", - "question_id": 33620, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005211", - "question_id": 33645, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008852", - "question_id": 33652, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00002547", - "question_id": 33671, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002547", - "question_id": 33671, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00000487", - "question_id": 33684, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005765", - "question_id": 33686, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005238", - "question_id": 33702, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "sa00007171", - "question_id": 33718, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008039", - "question_id": 33750, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005912", - "question_id": 33754, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004569", - "question_id": 33763, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000268", - "question_id": 33781, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004009", - "question_id": 33792, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007925", - "question_id": 33796, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003654", - "question_id": 33809, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "va00003229", - "question_id": 33850, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007310", - "question_id": 33876, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000295", - "question_id": 33883, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"banjo\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "va00005342", - "question_id": 33889, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006820", - "question_id": 33907, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00005987", - "question_id": 33998, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005477", - "question_id": 34036, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007368", - "question_id": 34043, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006910", - "question_id": 34044, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008388", - "question_id": 34047, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004265", - "question_id": 34074, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003439", - "question_id": 34075, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003383", - "question_id": 34088, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00000119", - "question_id": 34097, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00003047", - "question_id": 34112, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004384", - "question_id": 34120, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002934", - "question_id": 34145, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002933", - "question_id": 34158, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004051", - "question_id": 34167, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005171", - "question_id": 34169, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002852", - "question_id": 34194, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00002989", - "question_id": 34196, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006503", - "question_id": 34199, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003152", - "question_id": 34204, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002373", - "question_id": 34237, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"tuba\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "vv00000639", - "question_id": 34240, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006063", - "question_id": 34243, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007368", - "question_id": 34255, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005037", - "question_id": 34286, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00000323", - "question_id": 34311, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "va00005337", - "question_id": 34312, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006519", - "question_id": 34318, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007417", - "question_id": 34349, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004335", - "question_id": 34389, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006547", - "question_id": 34417, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006026", - "question_id": 34422, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00000558", - "question_id": 34438, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "sa00006684", - "question_id": 34489, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004799", - "question_id": 34492, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005746", - "question_id": 34542, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004188", - "question_id": 34584, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006237", - "question_id": 34586, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008462", - "question_id": 34587, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007584", - "question_id": 34600, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008371", - "question_id": 34636, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007726", - "question_id": 34639, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004470", - "question_id": 34656, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "sa00006824", - "question_id": 34672, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002769", - "question_id": 34678, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003627", - "question_id": 34695, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000233", - "question_id": 34708, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006905", - "question_id": 34712, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004305", - "question_id": 34721, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008284", - "question_id": 34731, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "sa00006604", - "question_id": 34736, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005583", - "question_id": 34769, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "vv00002934", - "question_id": 34791, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "va00004954", - "question_id": 34805, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003813", - "question_id": 34853, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003817", - "question_id": 34895, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006753", - "question_id": 34928, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006738", - "question_id": 34940, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003102", - "question_id": 34955, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007695", - "question_id": 34981, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007711", - "question_id": 35009, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "va00005900", - "question_id": 35010, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005881", - "question_id": 35026, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002749", - "question_id": 35034, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006235", - "question_id": 35039, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007484", - "question_id": 35051, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004513", - "question_id": 35091, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005449", - "question_id": 35103, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008479", - "question_id": 35121, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005005", - "question_id": 35129, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000524", - "question_id": 35137, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007272", - "question_id": 35138, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00002797", - "question_id": 35219, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008250", - "question_id": 35245, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008250", - "question_id": 35245, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008092", - "question_id": 35271, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007154", - "question_id": 35273, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006762", - "question_id": 35283, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006454", - "question_id": 35323, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003539", - "question_id": 35329, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000394", - "question_id": 35330, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "vv00000233", - "question_id": 35335, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"guzheng\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "sa00008841", - "question_id": 35339, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003123", - "question_id": 35341, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007445", - "question_id": 35346, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003929", - "question_id": 35351, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006393", - "question_id": 35401, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007973", - "question_id": 35405, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000102", - "question_id": 35424, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "va00003460", - "question_id": 35457, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005337", - "question_id": 35459, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004182", - "question_id": 35469, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005805", - "question_id": 35481, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004905", - "question_id": 35529, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005564", - "question_id": 35571, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00008563", - "question_id": 35580, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007043", - "question_id": 35588, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002544", - "question_id": 35589, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003770", - "question_id": 35592, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007469", - "question_id": 35620, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005511", - "question_id": 35637, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00000216", - "question_id": 35639, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008757", - "question_id": 35648, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005213", - "question_id": 35650, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004639", - "question_id": 35658, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006199", - "question_id": 35668, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00000639", - "question_id": 35697, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "sa00007828", - "question_id": 35710, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005364", - "question_id": 35728, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005351", - "question_id": 35750, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "vv00002776", - "question_id": 35753, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004687", - "question_id": 35761, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008429", - "question_id": 35766, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006779", - "question_id": 35774, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006941", - "question_id": 35785, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005086", - "question_id": 35820, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003507", - "question_id": 35852, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000256", - "question_id": 35909, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "vv00002577", - "question_id": 35925, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"xylophone\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "sa00007778", - "question_id": 35933, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005746", - "question_id": 35965, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003293", - "question_id": 35999, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003696", - "question_id": 36001, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005279", - "question_id": 36002, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007077", - "question_id": 36070, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006156", - "question_id": 36139, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006972", - "question_id": 36147, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002632", - "question_id": 36164, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006424", - "question_id": 36193, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007373", - "question_id": 36201, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005713", - "question_id": 36222, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007621", - "question_id": 36229, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004028", - "question_id": 36230, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"drum\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "sa00007560", - "question_id": 36248, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003603", - "question_id": 36250, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002507", - "question_id": 36257, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004525", - "question_id": 36307, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000417", - "question_id": 36321, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000183", - "question_id": 36343, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006611", - "question_id": 36383, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002632", - "question_id": 36405, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008410", - "question_id": 36407, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "vv00002933", - "question_id": 36424, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005964", - "question_id": 36425, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00000062", - "question_id": 36427, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008156", - "question_id": 36432, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004985", - "question_id": 36437, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003704", - "question_id": 36439, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "sa00008237", - "question_id": 36447, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000154", - "question_id": 36450, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00005987", - "question_id": 36475, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003906", - "question_id": 36487, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00000650", - "question_id": 36495, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000084", - "question_id": 36504, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00002867", - "question_id": 36540, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "vv00002738", - "question_id": 36542, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"congas\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "vv00003047", - "question_id": 36558, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004946", - "question_id": 36596, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003130", - "question_id": 36599, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008494", - "question_id": 36601, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002948", - "question_id": 36609, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006111", - "question_id": 36612, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007107", - "question_id": 36667, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003899", - "question_id": 36669, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "va00004946", - "question_id": 36690, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006671", - "question_id": 36709, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004826", - "question_id": 36710, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008769", - "question_id": 36758, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002833", - "question_id": 36769, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002647", - "question_id": 36780, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002873", - "question_id": 36792, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007033", - "question_id": 36795, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004609", - "question_id": 36797, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000460", - "question_id": 36841, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"tuba\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "vv00000503", - "question_id": 36877, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "sa00006857", - "question_id": 36899, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008494", - "question_id": 36905, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006568", - "question_id": 36907, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "va00005851", - "question_id": 36914, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004762", - "question_id": 36929, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "vv00000554", - "question_id": 36930, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008665", - "question_id": 36952, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"suona\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "sa00007108", - "question_id": 36953, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006240", - "question_id": 36962, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006095", - "question_id": 36989, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003401", - "question_id": 36990, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006046", - "question_id": 37007, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003845", - "question_id": 37011, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002689", - "question_id": 37029, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006249", - "question_id": 37039, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004863", - "question_id": 37043, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004863", - "question_id": 37043, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005453", - "question_id": 37089, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004103", - "question_id": 37092, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007405", - "question_id": 37098, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007405", - "question_id": 37098, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007589", - "question_id": 37113, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003943", - "question_id": 37114, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "sa00007703", - "question_id": 37118, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006458", - "question_id": 37128, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005148", - "question_id": 37145, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006984", - "question_id": 37164, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008693", - "question_id": 37166, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005507", - "question_id": 37206, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006690", - "question_id": 37210, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005222", - "question_id": 37216, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005520", - "question_id": 37274, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"suona\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004581", - "question_id": 37281, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004130", - "question_id": 37300, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008661", - "question_id": 37325, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003476", - "question_id": 37340, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"congas\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005037", - "question_id": 37346, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006558", - "question_id": 37376, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005070", - "question_id": 37395, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00008775", - "question_id": 37404, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006818", - "question_id": 37413, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003130", - "question_id": 37450, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005529", - "question_id": 37454, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "vv00000323", - "question_id": 37485, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00008323", - "question_id": 37492, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008650", - "question_id": 37496, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00002632", - "question_id": 37502, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000394", - "question_id": 37545, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005533", - "question_id": 37557, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00002429", - "question_id": 37568, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004002", - "question_id": 37574, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000550", - "question_id": 37595, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007286", - "question_id": 37631, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006093", - "question_id": 37648, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008639", - "question_id": 37653, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006780", - "question_id": 37660, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005301", - "question_id": 37677, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00003076", - "question_id": 37712, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007256", - "question_id": 37718, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005914", - "question_id": 37727, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00002987", - "question_id": 37755, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "vv00000575", - "question_id": 37758, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002597", - "question_id": 37772, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000396", - "question_id": 37774, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002933", - "question_id": 37787, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003244", - "question_id": 37800, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007974", - "question_id": 37814, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006227", - "question_id": 37828, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006006", - "question_id": 37846, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006006", - "question_id": 37846, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000580", - "question_id": 37854, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"ukulele\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000567", - "question_id": 37874, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"drum\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004596", - "question_id": 37883, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006381", - "question_id": 37885, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007885", - "question_id": 37891, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005715", - "question_id": 37899, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008693", - "question_id": 37900, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004547", - "question_id": 37905, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004969", - "question_id": 37908, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00008652", - "question_id": 37931, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002711", - "question_id": 37936, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"trumpet\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "va00005462", - "question_id": 37939, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006550", - "question_id": 37944, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006237", - "question_id": 37947, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"pipa\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "va00005379", - "question_id": 37961, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00005393", - "question_id": 37997, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004516", - "question_id": 37998, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007580", - "question_id": 38018, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008563", - "question_id": 38041, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006317", - "question_id": 38066, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006712", - "question_id": 38068, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008287", - "question_id": 38115, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008059", - "question_id": 38122, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007920", - "question_id": 38132, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007155", - "question_id": 38149, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006133", - "question_id": 38166, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007196", - "question_id": 38170, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003932", - "question_id": 38197, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007149", - "question_id": 38206, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00003047", - "question_id": 38222, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00008332", - "question_id": 38232, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005041", - "question_id": 38238, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002547", - "question_id": 38243, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005243", - "question_id": 38258, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00000179", - "question_id": 38266, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00000190", - "question_id": 38293, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"guzheng\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "va00003943", - "question_id": 38301, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006187", - "question_id": 38302, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005166", - "question_id": 38306, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"xylophone\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "sa00008751", - "question_id": 38341, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007782", - "question_id": 38343, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007582", - "question_id": 38357, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003401", - "question_id": 38363, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006959", - "question_id": 38364, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003982", - "question_id": 38370, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004223", - "question_id": 38389, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003102", - "question_id": 38407, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007060", - "question_id": 38411, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007785", - "question_id": 38419, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006728", - "question_id": 38420, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007967", - "question_id": 38424, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000298", - "question_id": 38430, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006586", - "question_id": 38449, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005573", - "question_id": 38461, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000351", - "question_id": 38462, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006063", - "question_id": 38490, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006569", - "question_id": 38511, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008593", - "question_id": 38514, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005301", - "question_id": 38515, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008524", - "question_id": 38532, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006824", - "question_id": 38536, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"guzheng\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "va00005904", - "question_id": 38540, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005042", - "question_id": 38549, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003379", - "question_id": 38554, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008541", - "question_id": 38557, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"piano\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "va00004304", - "question_id": 38566, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008158", - "question_id": 38593, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004436", - "question_id": 38616, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004059", - "question_id": 38621, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003088", - "question_id": 38625, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006785", - "question_id": 38647, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004157", - "question_id": 38655, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "va00004701", - "question_id": 38658, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000298", - "question_id": 38666, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006318", - "question_id": 38675, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003531", - "question_id": 38693, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006221", - "question_id": 38700, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006635", - "question_id": 38725, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004395", - "question_id": 38737, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"congas\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007540", - "question_id": 38752, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004326", - "question_id": 38754, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003093", - "question_id": 38756, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005301", - "question_id": 38767, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005314", - "question_id": 38770, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003934", - "question_id": 38784, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005165", - "question_id": 38794, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005266", - "question_id": 38809, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00008963", - "question_id": 38818, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007484", - "question_id": 38843, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003159", - "question_id": 38855, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00003078", - "question_id": 38859, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003293", - "question_id": 38861, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000365", - "question_id": 38865, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003654", - "question_id": 38890, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006462", - "question_id": 38907, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003494", - "question_id": 38908, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003758", - "question_id": 38921, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008116", - "question_id": 38955, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005518", - "question_id": 38959, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003093", - "question_id": 38962, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004559", - "question_id": 38973, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000455", - "question_id": 38978, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003271", - "question_id": 38983, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008420", - "question_id": 39000, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005391", - "question_id": 39005, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000554", - "question_id": 39011, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00002978", - "question_id": 39021, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00008775", - "question_id": 39029, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000375", - "question_id": 39040, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005426", - "question_id": 39041, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005117", - "question_id": 39055, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004284", - "question_id": 39058, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003883", - "question_id": 39064, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006260", - "question_id": 39065, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002852", - "question_id": 39068, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004682", - "question_id": 39077, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002785", - "question_id": 39080, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003702", - "question_id": 39087, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005758", - "question_id": 39117, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008163", - "question_id": 39127, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004002", - "question_id": 39132, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004799", - "question_id": 39136, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004971", - "question_id": 39137, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007333", - "question_id": 39148, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "vv00000011", - "question_id": 39150, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003379", - "question_id": 39167, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008877", - "question_id": 39168, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005827", - "question_id": 39169, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005759", - "question_id": 39179, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008652", - "question_id": 39232, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007233", - "question_id": 39237, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004338", - "question_id": 39254, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "sa00008743", - "question_id": 39275, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005165", - "question_id": 39308, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008030", - "question_id": 39310, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007638", - "question_id": 39314, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000638", - "question_id": 39324, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003465", - "question_id": 39329, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005295", - "question_id": 39333, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008479", - "question_id": 39352, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004320", - "question_id": 39353, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002482", - "question_id": 39366, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004906", - "question_id": 39367, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00002914", - "question_id": 39379, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004469", - "question_id": 39381, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003704", - "question_id": 39399, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "va00004531", - "question_id": 39416, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006260", - "question_id": 39418, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008775", - "question_id": 39429, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004499", - "question_id": 39434, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007687", - "question_id": 39439, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007711", - "question_id": 39453, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003267", - "question_id": 39466, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003511", - "question_id": 39470, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00003061", - "question_id": 39474, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00008158", - "question_id": 39485, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "sa00008743", - "question_id": 39487, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004868", - "question_id": 39490, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004999", - "question_id": 39493, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005649", - "question_id": 39523, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000507", - "question_id": 39561, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005373", - "question_id": 39562, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005184", - "question_id": 39566, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006227", - "question_id": 39567, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "va00005870", - "question_id": 39618, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006200", - "question_id": 39620, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00003006", - "question_id": 39643, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003813", - "question_id": 39644, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005827", - "question_id": 39655, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008420", - "question_id": 39688, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007885", - "question_id": 39693, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003334", - "question_id": 39707, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008877", - "question_id": 39709, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007333", - "question_id": 39753, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005583", - "question_id": 39765, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "sa00006921", - "question_id": 39773, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005565", - "question_id": 39779, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005649", - "question_id": 39788, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008566", - "question_id": 39806, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006393", - "question_id": 39814, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006111", - "question_id": 39822, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000262", - "question_id": 39827, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007693", - "question_id": 39842, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000336", - "question_id": 39848, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00000336", - "question_id": 39848, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008869", - "question_id": 39857, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005037", - "question_id": 39860, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005746", - "question_id": 39878, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006417", - "question_id": 39884, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004777", - "question_id": 39886, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "va00004985", - "question_id": 39890, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003891", - "question_id": 39891, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006156", - "question_id": 39902, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"drum\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "va00004559", - "question_id": 39913, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005511", - "question_id": 39926, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"erhu\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "vv00000538", - "question_id": 39927, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "va00005307", - "question_id": 39934, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007496", - "question_id": 39938, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007368", - "question_id": 39950, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "sa00008101", - "question_id": 39953, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004932", - "question_id": 39985, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007455", - "question_id": 39986, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "sa00008768", - "question_id": 39989, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006177", - "question_id": 39996, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000089", - "question_id": 39999, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00002750", - "question_id": 40042, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "sa00007462", - "question_id": 40059, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000308", - "question_id": 40064, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002691", - "question_id": 40090, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003125", - "question_id": 40119, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003627", - "question_id": 40152, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000348", - "question_id": 40169, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "vv00000487", - "question_id": 40173, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "vv00000121", - "question_id": 40177, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"trumpet\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "vv00000079", - "question_id": 40179, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "va00005508", - "question_id": 40192, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"cello\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "sa00006930", - "question_id": 40198, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "vv00000216", - "question_id": 40207, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"congas\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "vv00000492", - "question_id": 40230, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004677", - "question_id": 40239, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "vv00000421", - "question_id": 40240, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"suona\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "sa00007311", - "question_id": 40241, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00005972", - "question_id": 40250, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005272", - "question_id": 40256, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004338", - "question_id": 40257, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"middle\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006493", - "question_id": 40264, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003500", - "question_id": 40266, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000452", - "question_id": 40272, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003446", - "question_id": 40277, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"congas\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000611", - "question_id": 40291, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000348", - "question_id": 40294, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007310", - "question_id": 40356, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00008198", - "question_id": 40360, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "sa00006880", - "question_id": 40367, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "sa00007029", - "question_id": 40368, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004488", - "question_id": 40369, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000391", - "question_id": 40376, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "va00005552", - "question_id": 40377, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008242", - "question_id": 40380, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005830", - "question_id": 40404, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006344", - "question_id": 40405, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "vv00002772", - "question_id": 40407, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005725", - "question_id": 40409, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007643", - "question_id": 40433, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "va00003473", - "question_id": 40449, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "vv00002508", - "question_id": 40470, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "va00005720", - "question_id": 40569, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"last\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "vv00000236", - "question_id": 40580, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005816", - "question_id": 40584, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "va00004626", - "question_id": 40615, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007170", - "question_id": 40623, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005151", - "question_id": 40630, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006611", - "question_id": 40636, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006940", - "question_id": 40647, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000079", - "question_id": 40668, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007755", - "question_id": 40686, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004770", - "question_id": 40693, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007257", - "question_id": 40723, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008092", - "question_id": 40742, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005904", - "question_id": 40745, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008596", - "question_id": 40756, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003153", - "question_id": 40766, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003622", - "question_id": 40784, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002846", - "question_id": 40787, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002989", - "question_id": 40791, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "va00003609", - "question_id": 40800, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008312", - "question_id": 40810, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002845", - "question_id": 40819, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "sa00006762", - "question_id": 40833, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005348", - "question_id": 40849, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00003853", - "question_id": 40858, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006667", - "question_id": 40863, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002989", - "question_id": 40916, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007576", - "question_id": 40918, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004200", - "question_id": 40936, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006159", - "question_id": 40953, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005314", - "question_id": 40970, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008630", - "question_id": 40971, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003685", - "question_id": 40973, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005356", - "question_id": 40978, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008119", - "question_id": 40983, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006867", - "question_id": 40987, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004512", - "question_id": 40988, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003135", - "question_id": 40998, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006508", - "question_id": 41004, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008245", - "question_id": 41017, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006879", - "question_id": 41022, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007828", - "question_id": 41027, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000351", - "question_id": 41032, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "sa00008180", - "question_id": 41034, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00002440", - "question_id": 41043, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006177", - "question_id": 41047, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003919", - "question_id": 41051, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004351", - "question_id": 41060, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008608", - "question_id": 41080, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004531", - "question_id": 41081, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005596", - "question_id": 41086, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007089", - "question_id": 41094, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008000", - "question_id": 41096, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007308", - "question_id": 41099, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007016", - "question_id": 41133, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006867", - "question_id": 41135, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004916", - "question_id": 41166, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004901", - "question_id": 41167, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000406", - "question_id": 41168, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006257", - "question_id": 41172, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "va00003216", - "question_id": 41189, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00006476", - "question_id": 41192, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003929", - "question_id": 41201, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005787", - "question_id": 41202, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005798", - "question_id": 41206, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006341", - "question_id": 41208, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008327", - "question_id": 41221, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004404", - "question_id": 41264, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007967", - "question_id": 41268, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"accordion\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "va00003298", - "question_id": 41270, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007134", - "question_id": 41281, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"congas\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000229", - "question_id": 41308, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006959", - "question_id": 41355, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00004249", - "question_id": 41357, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00005985", - "question_id": 41378, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000298", - "question_id": 41379, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003295", - "question_id": 41397, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00005574", - "question_id": 41405, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00004561", - "question_id": 41409, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "vv00000455", - "question_id": 41416, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007584", - "question_id": 41418, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00002732", - "question_id": 41426, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00002953", - "question_id": 41440, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "vv00000487", - "question_id": 41445, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005970", - "question_id": 41467, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "sa00006295", - "question_id": 41480, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "va00005787", - "question_id": 41486, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"accordion\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "va00004452", - "question_id": 41500, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005729", - "question_id": 41504, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"flute\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "vv00000081", - "question_id": 41522, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002867", - "question_id": 41530, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004618", - "question_id": 41538, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005491", - "question_id": 41549, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002556", - "question_id": 41567, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003609", - "question_id": 41581, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"drum\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "sa00006602", - "question_id": 41588, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "va00005551", - "question_id": 41623, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008101", - "question_id": 41644, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006062", - "question_id": 41646, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00003511", - "question_id": 41648, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"congas\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "va00004293", - "question_id": 41680, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "sa00007326", - "question_id": 41688, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00002622", - "question_id": 41709, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "va00005504", - "question_id": 41711, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003477", - "question_id": 41718, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007788", - "question_id": 41719, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008700", - "question_id": 41720, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000127", - "question_id": 41722, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007184", - "question_id": 41726, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004999", - "question_id": 41730, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007208", - "question_id": 41735, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003337", - "question_id": 41736, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005574", - "question_id": 41750, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006959", - "question_id": 41757, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000606", - "question_id": 41766, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008817", - "question_id": 41778, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005345", - "question_id": 41810, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002453", - "question_id": 41811, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000469", - "question_id": 41812, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006602", - "question_id": 41815, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005068", - "question_id": 41816, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003894", - "question_id": 41817, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002674", - "question_id": 41818, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "sa00008079", - "question_id": 41819, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004200", - "question_id": 41823, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003533", - "question_id": 41833, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002786", - "question_id": 41840, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000515", - "question_id": 41841, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004030", - "question_id": 41845, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"cello\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "va00003836", - "question_id": 41852, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004499", - "question_id": 41883, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003556", - "question_id": 41891, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005870", - "question_id": 41897, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000121", - "question_id": 41901, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000256", - "question_id": 41918, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006706", - "question_id": 41920, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"cello\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "sa00008772", - "question_id": 41930, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "va00003597", - "question_id": 41931, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005307", - "question_id": 41936, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004655", - "question_id": 41943, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004826", - "question_id": 41946, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002906", - "question_id": 41952, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005942", - "question_id": 41953, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006007", - "question_id": 41957, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003614", - "question_id": 41963, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"clarinet\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "sa00006326", - "question_id": 41970, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007638", - "question_id": 41973, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007817", - "question_id": 41990, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006295", - "question_id": 41995, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002667", - "question_id": 42004, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008593", - "question_id": 42026, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007909", - "question_id": 42071, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002386", - "question_id": 42073, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004255", - "question_id": 42102, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"cello\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "sa00007184", - "question_id": 42116, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "sa00007417", - "question_id": 42118, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008690", - "question_id": 42133, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005501", - "question_id": 42139, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005348", - "question_id": 42143, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"congas\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "vv00002906", - "question_id": 42145, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "vv00000606", - "question_id": 42164, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"suona\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004370", - "question_id": 42166, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006826", - "question_id": 42168, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005079", - "question_id": 42200, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00005184", - "question_id": 42204, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "va00003278", - "question_id": 42209, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "sa00008905", - "question_id": 42210, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003992", - "question_id": 42224, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "vv00000518", - "question_id": 42234, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"congas\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004341", - "question_id": 42239, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "va00004242", - "question_id": 42246, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008327", - "question_id": 42263, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "va00005720", - "question_id": 42265, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007233", - "question_id": 42266, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "vv00000584", - "question_id": 42271, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004019", - "question_id": 42284, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "sa00007976", - "question_id": 42286, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008263", - "question_id": 42326, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003350", - "question_id": 42333, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "sa00007848", - "question_id": 42343, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007638", - "question_id": 42354, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004962", - "question_id": 42357, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002713", - "question_id": 42379, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"bagpipe\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008639", - "question_id": 42402, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "va00005385", - "question_id": 42409, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008312", - "question_id": 42423, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "va00003816", - "question_id": 42433, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003601", - "question_id": 42457, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004608", - "question_id": 42461, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "va00004473", - "question_id": 42474, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "sa00006340", - "question_id": 42484, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "vv00003075", - "question_id": 42487, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"drum\", \"left\", \"suona\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008347", - "question_id": 42491, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "va00004212", - "question_id": 42495, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "sa00005985", - "question_id": 42525, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "va00004024", - "question_id": 42528, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002556", - "question_id": 42545, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008743", - "question_id": 42547, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"bassoon\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "va00005273", - "question_id": 42556, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"suona\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "va00005393", - "question_id": 42565, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "sa00006533", - "question_id": 42575, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00004948", - "question_id": 42583, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"pipa\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "va00005750", - "question_id": 42591, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "vv00000365", - "question_id": 42596, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "va00004255", - "question_id": 42653, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"cello\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "sa00008375", - "question_id": 42664, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "va00005574", - "question_id": 42668, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "sa00008374", - "question_id": 42672, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003268", - "question_id": 42680, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "sa00008400", - "question_id": 42704, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007139", - "question_id": 42716, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "sa00006268", - "question_id": 42723, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "va00005889", - "question_id": 42730, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000119", - "question_id": 42734, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "va00004901", - "question_id": 42743, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004351", - "question_id": 42757, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005220", - "question_id": 42765, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "sa00006318", - "question_id": 42774, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "sa00007695", - "question_id": 42785, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "va00005660", - "question_id": 42789, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003236", - "question_id": 42802, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "sa00008229", - "question_id": 42831, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "vv00000453", - "question_id": 42841, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004384", - "question_id": 42864, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "va00005931", - "question_id": 42866, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "va00004374", - "question_id": 42871, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "sa00006159", - "question_id": 42885, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "sa00007158", - "question_id": 42886, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "sa00008608", - "question_id": 42896, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00008097", - "question_id": 42898, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "sa00008513", - "question_id": 42910, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003207", - "question_id": 42917, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "sa00008030", - "question_id": 42928, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "va00005683", - "question_id": 42933, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005805", - "question_id": 42942, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004717", - "question_id": 42951, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "sa00007848", - "question_id": 42958, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "va00004997", - "question_id": 42959, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "va00004626", - "question_id": 42969, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "va00003584", - "question_id": 42971, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "sa00008219", - "question_id": 42975, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005466", - "question_id": 42977, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "vv00002956", - "question_id": 42982, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "sa00007755", - "question_id": 42990, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "sa00007026", - "question_id": 43011, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "sa00006456", - "question_id": 43019, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "sa00006667", - "question_id": 43032, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "va00004702", - "question_id": 43048, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006006", - "question_id": 43063, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "va00003273", - "question_id": 43075, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008588", - "question_id": 43096, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "sa00008868", - "question_id": 43101, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "sa00008497", - "question_id": 43102, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"piano\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "va00003464", - "question_id": 43103, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "va00003369", - "question_id": 43109, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00005995", - "question_id": 43129, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005220", - "question_id": 43134, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00008755", - "question_id": 43145, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"drum\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "va00005894", - "question_id": 43148, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "va00003760", - "question_id": 43153, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00003378", - "question_id": 43162, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "va00004041", - "question_id": 43164, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007584", - "question_id": 43166, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "sa00006340", - "question_id": 43168, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005211", - "question_id": 43171, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002622", - "question_id": 43174, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006311", - "question_id": 43178, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00002826", - "question_id": 43183, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"tuba\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "sa00007788", - "question_id": 43190, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "sa00007412", - "question_id": 43193, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "va00003256", - "question_id": 43198, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"drum\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "sa00008321", - "question_id": 43269, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004111", - "question_id": 43274, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "va00005504", - "question_id": 43283, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "va00004111", - "question_id": 43290, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00008835", - "question_id": 43310, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "va00004805", - "question_id": 43320, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "sa00006083", - "question_id": 43329, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "va00005931", - "question_id": 43330, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "vv00002386", - "question_id": 43334, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "va00004293", - "question_id": 43339, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006046", - "question_id": 43354, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007705", - "question_id": 43370, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00003075", - "question_id": 43384, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "sa00006456", - "question_id": 43417, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00007594", - "question_id": 43425, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00004024", - "question_id": 43428, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005737", - "question_id": 43438, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005226", - "question_id": 43469, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "sa00006706", - "question_id": 43482, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00006172", - "question_id": 43486, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003173", - "question_id": 43491, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008513", - "question_id": 43493, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "va00004665", - "question_id": 43503, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"last\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "va00004989", - "question_id": 43513, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00005154", - "question_id": 43520, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00003674", - "question_id": 43528, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "sa00008321", - "question_id": 43532, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00005894", - "question_id": 43547, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00003334", - "question_id": 43565, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00005111", - "question_id": 43568, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"saxophone\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "va00005933", - "question_id": 43614, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005894", - "question_id": 43624, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00008653", - "question_id": 43637, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00007412", - "question_id": 43641, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00005994", - "question_id": 43650, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008072", - "question_id": 43651, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000500", - "question_id": 43702, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001195", - "question_id": 43704, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000470", - "question_id": 43719, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000867", - "question_id": 43742, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001202", - "question_id": 43747, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001305", - "question_id": 43762, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001188", - "question_id": 43766, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000390", - "question_id": 43778, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001239", - "question_id": 43786, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001362", - "question_id": 43788, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000873", - "question_id": 43810, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001117", - "question_id": 43811, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000812", - "question_id": 43813, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "esa00000405", - "question_id": 43818, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000966", - "question_id": 43822, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000630", - "question_id": 43825, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000443", - "question_id": 43826, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000737", - "question_id": 43828, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001243", - "question_id": 43829, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001270", - "question_id": 43844, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000979", - "question_id": 43854, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000521", - "question_id": 43857, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000307", - "question_id": 43859, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001298", - "question_id": 43877, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000895", - "question_id": 43895, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001137", - "question_id": 43917, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000018", - "question_id": 43926, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000472", - "question_id": 43927, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001000", - "question_id": 43936, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000009", - "question_id": 43942, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001292", - "question_id": 43952, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"middle\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000895", - "question_id": 43959, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000899", - "question_id": 43973, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000446", - "question_id": 43979, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "esa00000565", - "question_id": 43994, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000414", - "question_id": 44010, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000906", - "question_id": 44011, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"saxophone\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "evv00001407", - "question_id": 44021, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000818", - "question_id": 44024, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000014", - "question_id": 44032, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000990", - "question_id": 44037, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000265", - "question_id": 44054, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001466", - "question_id": 44060, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001172", - "question_id": 44064, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000416", - "question_id": 44072, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000143", - "question_id": 44075, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001012", - "question_id": 44083, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000626", - "question_id": 44087, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001261", - "question_id": 44097, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000913", - "question_id": 44103, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000631", - "question_id": 44106, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000500", - "question_id": 44107, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001083", - "question_id": 44112, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000321", - "question_id": 44117, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001037", - "question_id": 44124, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000865", - "question_id": 44142, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001113", - "question_id": 44150, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000521", - "question_id": 44157, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"electric_bass\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000807", - "question_id": 44169, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000703", - "question_id": 44171, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "eva00000731", - "question_id": 44172, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001164", - "question_id": 44174, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001263", - "question_id": 44182, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000226", - "question_id": 44198, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000895", - "question_id": 44200, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000823", - "question_id": 44201, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000899", - "question_id": 44213, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000312", - "question_id": 44218, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000919", - "question_id": 44223, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000727", - "question_id": 44226, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000235", - "question_id": 44235, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000319", - "question_id": 44248, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001343", - "question_id": 44249, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001125", - "question_id": 44264, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000194", - "question_id": 44265, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001025", - "question_id": 44288, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000240", - "question_id": 44306, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000207", - "question_id": 44309, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000807", - "question_id": 44310, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000398", - "question_id": 44318, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000826", - "question_id": 44329, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001071", - "question_id": 44331, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001433", - "question_id": 44338, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000280", - "question_id": 44347, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001158", - "question_id": 44357, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001234", - "question_id": 44370, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000566", - "question_id": 44373, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000543", - "question_id": 44374, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000415", - "question_id": 44380, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001414", - "question_id": 44387, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000211", - "question_id": 44389, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000217", - "question_id": 44392, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000142", - "question_id": 44400, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001148", - "question_id": 44403, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001347", - "question_id": 44420, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000696", - "question_id": 44432, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"electric_bass\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000885", - "question_id": 44434, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001352", - "question_id": 44444, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000958", - "question_id": 44449, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000923", - "question_id": 44451, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000622", - "question_id": 44462, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000605", - "question_id": 44476, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001374", - "question_id": 44483, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001468", - "question_id": 44490, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001212", - "question_id": 44495, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000842", - "question_id": 44496, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001374", - "question_id": 44509, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"tuba\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "eva00000930", - "question_id": 44511, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001293", - "question_id": 44519, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001154", - "question_id": 44521, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000588", - "question_id": 44523, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000250", - "question_id": 44553, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000759", - "question_id": 44556, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001413", - "question_id": 44568, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000641", - "question_id": 44570, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000975", - "question_id": 44575, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000485", - "question_id": 44580, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001181", - "question_id": 44596, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001228", - "question_id": 44599, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"bagpipe\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000393", - "question_id": 44600, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001440", - "question_id": 44604, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001025", - "question_id": 44634, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005780", - "question_id": 44636, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "evv00001317", - "question_id": 44651, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000923", - "question_id": 44658, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001291", - "question_id": 44666, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000659", - "question_id": 44669, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000356", - "question_id": 44672, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001425", - "question_id": 44677, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001068", - "question_id": 44702, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001293", - "question_id": 44709, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000767", - "question_id": 44711, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000291", - "question_id": 44718, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000549", - "question_id": 44722, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00000820", - "question_id": 44723, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000263", - "question_id": 44739, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000300", - "question_id": 44770, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"suona\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000949", - "question_id": 44802, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000422", - "question_id": 44808, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001382", - "question_id": 44814, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001306", - "question_id": 44833, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00001210", - "question_id": 44834, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000461", - "question_id": 44846, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000557", - "question_id": 44856, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000683", - "question_id": 44865, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "esa00000618", - "question_id": 44880, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000699", - "question_id": 44887, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000167", - "question_id": 44894, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001341", - "question_id": 44900, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001356", - "question_id": 44903, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001454", - "question_id": 44913, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "esa00000645", - "question_id": 44939, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001251", - "question_id": 44941, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"congas\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000223", - "question_id": 44954, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000810", - "question_id": 44965, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000980", - "question_id": 44975, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000401", - "question_id": 44981, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001016", - "question_id": 44995, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001108", - "question_id": 44996, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007602", - "question_id": 44997, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001393", - "question_id": 45008, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000843", - "question_id": 45017, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001249", - "question_id": 45023, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000683", - "question_id": 45032, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000772", - "question_id": 45038, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000701", - "question_id": 45046, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000781", - "question_id": 45056, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001043", - "question_id": 45064, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001046", - "question_id": 45072, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000508", - "question_id": 45073, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001210", - "question_id": 45080, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001407", - "question_id": 45084, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000958", - "question_id": 45086, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000400", - "question_id": 45088, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000494", - "question_id": 45091, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000018", - "question_id": 45113, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000660", - "question_id": 45119, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000232", - "question_id": 45128, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000146", - "question_id": 45129, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001144", - "question_id": 45150, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000910", - "question_id": 45159, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001248", - "question_id": 45163, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "esa00000201", - "question_id": 45167, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"electric_bass\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001484", - "question_id": 45169, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000753", - "question_id": 45171, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000859", - "question_id": 45189, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000297", - "question_id": 45190, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001248", - "question_id": 45197, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000535", - "question_id": 45198, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000349", - "question_id": 45202, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001129", - "question_id": 45209, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001047", - "question_id": 45212, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000636", - "question_id": 45234, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001143", - "question_id": 45238, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001298", - "question_id": 45241, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001115", - "question_id": 45244, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000791", - "question_id": 45257, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000791", - "question_id": 45257, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000464", - "question_id": 45262, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000001", - "question_id": 45267, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001289", - "question_id": 45275, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001468", - "question_id": 45278, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000941", - "question_id": 45283, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001038", - "question_id": 45287, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000226", - "question_id": 45288, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001233", - "question_id": 45299, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000946", - "question_id": 45301, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000670", - "question_id": 45303, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000204", - "question_id": 45305, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000972", - "question_id": 45312, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001085", - "question_id": 45335, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00001070", - "question_id": 45341, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001237", - "question_id": 45345, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001030", - "question_id": 45348, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000984", - "question_id": 45364, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000237", - "question_id": 45370, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000952", - "question_id": 45372, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000599", - "question_id": 45377, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000796", - "question_id": 45381, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000184", - "question_id": 45393, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001256", - "question_id": 45396, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000742", - "question_id": 45400, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000800", - "question_id": 45426, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001467", - "question_id": 45429, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001420", - "question_id": 45440, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000331", - "question_id": 45446, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00001172", - "question_id": 45447, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001340", - "question_id": 45453, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000167", - "question_id": 45467, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001442", - "question_id": 45470, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00001157", - "question_id": 45471, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000800", - "question_id": 45472, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000974", - "question_id": 45475, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"congas\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000626", - "question_id": 45478, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000852", - "question_id": 45479, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001172", - "question_id": 45492, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "evv00001244", - "question_id": 45494, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000855", - "question_id": 45501, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000703", - "question_id": 45510, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"middle\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000982", - "question_id": 45514, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000818", - "question_id": 45522, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000689", - "question_id": 45526, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000360", - "question_id": 45543, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"tuba\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "esa00000569", - "question_id": 45544, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001303", - "question_id": 45548, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "eva00000996", - "question_id": 45554, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000540", - "question_id": 45567, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000826", - "question_id": 45576, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"tuba\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001047", - "question_id": 45586, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007079", - "question_id": 45606, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000545", - "question_id": 45611, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001298", - "question_id": 45617, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "esa00000230", - "question_id": 45619, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"xylophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001132", - "question_id": 45623, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00000742", - "question_id": 45631, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001477", - "question_id": 45633, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"banjo\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000321", - "question_id": 45634, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000330", - "question_id": 45637, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000962", - "question_id": 45652, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001252", - "question_id": 45654, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000581", - "question_id": 45670, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001089", - "question_id": 45671, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000812", - "question_id": 45679, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001100", - "question_id": 45691, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"drum\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "evv00001425", - "question_id": 45704, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001089", - "question_id": 45714, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000272", - "question_id": 45728, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"trumpet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "sa00006317", - "question_id": 45738, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00001205", - "question_id": 45744, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001391", - "question_id": 45749, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000917", - "question_id": 45750, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001273", - "question_id": 45757, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000265", - "question_id": 45768, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"left\", \"bagpipe\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000217", - "question_id": 45775, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000770", - "question_id": 45782, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001197", - "question_id": 45783, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"middle\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000765", - "question_id": 45806, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000786", - "question_id": 45822, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00000845", - "question_id": 45826, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000976", - "question_id": 45834, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001455", - "question_id": 45843, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000458", - "question_id": 45852, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001331", - "question_id": 45861, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001115", - "question_id": 45864, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001381", - "question_id": 45866, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00001194", - "question_id": 45877, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000668", - "question_id": 45886, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001448", - "question_id": 45890, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "va00004789", - "question_id": 45904, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "esa00000164", - "question_id": 45937, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001030", - "question_id": 45959, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000938", - "question_id": 45967, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000343", - "question_id": 45972, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000419", - "question_id": 45996, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00001005", - "question_id": 45997, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000202", - "question_id": 46003, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001270", - "question_id": 46005, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001455", - "question_id": 46010, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"trumpet\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000748", - "question_id": 46021, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00000936", - "question_id": 46040, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"middle\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001173", - "question_id": 46066, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000906", - "question_id": 46069, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "eva00001064", - "question_id": 46085, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00000963", - "question_id": 46092, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001387", - "question_id": 46096, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001387", - "question_id": 46096, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000931", - "question_id": 46097, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001206", - "question_id": 46098, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001076", - "question_id": 46099, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "evv00001319", - "question_id": 46100, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"tuba\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000814", - "question_id": 46105, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001108", - "question_id": 46112, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001392", - "question_id": 46121, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001043", - "question_id": 46124, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "evv00001367", - "question_id": 46134, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001350", - "question_id": 46142, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001374", - "question_id": 46159, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000796", - "question_id": 46163, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000458", - "question_id": 46171, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "evv00001361", - "question_id": 46175, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000615", - "question_id": 46196, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000845", - "question_id": 46202, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "evv00001281", - "question_id": 46208, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001315", - "question_id": 46212, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "eva00000723", - "question_id": 46222, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006220", - "question_id": 46223, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "esa00000151", - "question_id": 46224, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001474", - "question_id": 46236, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001361", - "question_id": 46237, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001476", - "question_id": 46241, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001334", - "question_id": 46250, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"middle\", \"tuba\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000576", - "question_id": 46251, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "va00005551", - "question_id": 46252, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00000891", - "question_id": 46255, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"clarinet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "eva00000701", - "question_id": 46265, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000562", - "question_id": 46275, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"congas\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001306", - "question_id": 46304, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000720", - "question_id": 46307, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004320", - "question_id": 46326, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "eva00001009", - "question_id": 46327, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001020", - "question_id": 46334, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00001076", - "question_id": 46337, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bagpipe\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001189", - "question_id": 46339, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001166", - "question_id": 46341, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000952", - "question_id": 46343, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000622", - "question_id": 46349, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00001012", - "question_id": 46350, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001433", - "question_id": 46352, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000839", - "question_id": 46357, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001029", - "question_id": 46373, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000289", - "question_id": 46374, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "esa00000287", - "question_id": 46392, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000732", - "question_id": 46393, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "esa00000324", - "question_id": 46402, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001336", - "question_id": 46405, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001484", - "question_id": 46406, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "eva00000699", - "question_id": 46438, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001116", - "question_id": 46445, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001397", - "question_id": 46446, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000811", - "question_id": 46453, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"tuba\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000427", - "question_id": 46457, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000371", - "question_id": 46466, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001104", - "question_id": 46476, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001433", - "question_id": 46477, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008079", - "question_id": 46483, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001283", - "question_id": 46487, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001297", - "question_id": 46489, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001336", - "question_id": 46495, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000923", - "question_id": 46496, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001028", - "question_id": 46497, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000795", - "question_id": 46500, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000416", - "question_id": 46506, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001218", - "question_id": 46510, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001237", - "question_id": 46523, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000796", - "question_id": 46528, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00001056", - "question_id": 46537, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001217", - "question_id": 46549, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000831", - "question_id": 46552, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000725", - "question_id": 46554, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000397", - "question_id": 46560, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000551", - "question_id": 46561, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001099", - "question_id": 46566, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000602", - "question_id": 46567, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001184", - "question_id": 46579, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000768", - "question_id": 46586, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00000882", - "question_id": 46590, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000930", - "question_id": 46597, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000947", - "question_id": 46599, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001097", - "question_id": 46621, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001325", - "question_id": 46623, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000781", - "question_id": 46626, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "eva00000867", - "question_id": 46628, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001064", - "question_id": 46647, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001453", - "question_id": 46649, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000972", - "question_id": 46650, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00000883", - "question_id": 46657, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "esa00000329", - "question_id": 46669, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000310", - "question_id": 46673, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"right\", \"erhu\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000193", - "question_id": 46686, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000427", - "question_id": 46692, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001238", - "question_id": 46696, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000882", - "question_id": 46718, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000740", - "question_id": 46737, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000740", - "question_id": 46737, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000520", - "question_id": 46741, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008603", - "question_id": 46744, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001055", - "question_id": 46749, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00001159", - "question_id": 46754, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000806", - "question_id": 46756, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001325", - "question_id": 46757, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001312", - "question_id": 46759, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "evv00001397", - "question_id": 46777, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"piano\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000485", - "question_id": 46792, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000723", - "question_id": 46813, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001415", - "question_id": 46824, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"middle\", \"pipa\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000551", - "question_id": 46825, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001445", - "question_id": 46827, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000827", - "question_id": 46843, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "eva00000736", - "question_id": 46868, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000668", - "question_id": 46869, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000425", - "question_id": 46871, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001448", - "question_id": 46876, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"middle\", \"suona\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001126", - "question_id": 46881, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001126", - "question_id": 46881, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000933", - "question_id": 46882, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001402", - "question_id": 46887, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001113", - "question_id": 46902, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "evv00001341", - "question_id": 46903, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"suona\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000903", - "question_id": 46915, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000270", - "question_id": 46930, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000835", - "question_id": 46931, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000378", - "question_id": 46958, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001108", - "question_id": 46973, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "evv00001310", - "question_id": 46976, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001310", - "question_id": 46976, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001427", - "question_id": 46984, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000505", - "question_id": 46986, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000945", - "question_id": 46993, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000945", - "question_id": 46993, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000835", - "question_id": 47008, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001168", - "question_id": 47009, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001076", - "question_id": 47012, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000477", - "question_id": 47017, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001350", - "question_id": 47019, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00001126", - "question_id": 47036, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001126", - "question_id": 47036, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001476", - "question_id": 47038, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000350", - "question_id": 47043, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "eva00001098", - "question_id": 47044, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000751", - "question_id": 47046, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001083", - "question_id": 47051, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001010", - "question_id": 47055, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"piano\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "eva00000777", - "question_id": 47057, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000678", - "question_id": 47069, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000465", - "question_id": 47104, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001187", - "question_id": 47107, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000142", - "question_id": 47123, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000946", - "question_id": 47128, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00000783", - "question_id": 47148, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000215", - "question_id": 47149, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001148", - "question_id": 47155, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000715", - "question_id": 47159, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000199", - "question_id": 47174, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001390", - "question_id": 47181, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001356", - "question_id": 47189, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00000996", - "question_id": 47199, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00001067", - "question_id": 47201, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000363", - "question_id": 47212, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000715", - "question_id": 47231, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000276", - "question_id": 47237, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006658", - "question_id": 47238, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000178", - "question_id": 47247, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000462", - "question_id": 47260, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001281", - "question_id": 47270, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000249", - "question_id": 47274, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000163", - "question_id": 47276, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000695", - "question_id": 47281, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000144", - "question_id": 47284, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000266", - "question_id": 47285, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001045", - "question_id": 47293, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "esa00000423", - "question_id": 47300, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000423", - "question_id": 47300, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00001187", - "question_id": 47303, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000616", - "question_id": 47307, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"electric_bass\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000756", - "question_id": 47310, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000934", - "question_id": 47326, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000815", - "question_id": 47327, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "esa00000688", - "question_id": 47334, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001402", - "question_id": 47335, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00001097", - "question_id": 47358, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000337", - "question_id": 47370, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000463", - "question_id": 47384, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000669", - "question_id": 47387, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001414", - "question_id": 47393, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "esa00000560", - "question_id": 47395, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000349", - "question_id": 47396, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000623", - "question_id": 47406, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "esa00000439", - "question_id": 47410, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bagpipe\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000963", - "question_id": 47413, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001121", - "question_id": 47416, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001157", - "question_id": 47422, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001366", - "question_id": 47428, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "esa00000535", - "question_id": 47436, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000155", - "question_id": 47450, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000296", - "question_id": 47456, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bagpipe\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000706", - "question_id": 47463, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000006", - "question_id": 47464, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001261", - "question_id": 47477, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "esa00000246", - "question_id": 47479, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000610", - "question_id": 47481, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000293", - "question_id": 47483, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000655", - "question_id": 47486, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000178", - "question_id": 47487, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001147", - "question_id": 47496, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000288", - "question_id": 47507, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000642", - "question_id": 47509, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000868", - "question_id": 47524, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "esa00000217", - "question_id": 47529, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000278", - "question_id": 47535, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000984", - "question_id": 47539, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00000984", - "question_id": 47546, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00000763", - "question_id": 47547, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000340", - "question_id": 47551, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000707", - "question_id": 47553, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000522", - "question_id": 47555, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001329", - "question_id": 47558, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "sa00007055", - "question_id": 47572, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008256", - "question_id": 47584, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "esa00000367", - "question_id": 47595, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000994", - "question_id": 47596, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007576", - "question_id": 47618, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007687", - "question_id": 47619, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001174", - "question_id": 47621, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"trumpet\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005002", - "question_id": 47663, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"congas\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000402", - "question_id": 47690, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001264", - "question_id": 47705, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "eva00001175", - "question_id": 47706, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002689", - "question_id": 47756, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"congas\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "eva00000720", - "question_id": 47765, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "esa00000643", - "question_id": 47768, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "sa00007785", - "question_id": 47790, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "sa00007543", - "question_id": 47802, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "va00005661", - "question_id": 47853, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "va00004305", - "question_id": 47869, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007216", - "question_id": 47872, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000539", - "question_id": 47875, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004149", - "question_id": 47889, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "sa00007909", - "question_id": 47918, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "va00004513", - "question_id": 47923, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "va00005596", - "question_id": 47937, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "sa00006779", - "question_id": 47944, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "va00005466", - "question_id": 47956, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "va00004470", - "question_id": 47959, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00005972", - "question_id": 47964, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "va00003152", - "question_id": 48006, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "sa00008653", - "question_id": 48027, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "esa00000399", - "question_id": 48035, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "va00004431", - "question_id": 48050, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "sa00007703", - "question_id": 48066, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "esa00000565", - "question_id": 48074, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "sa00006519", - "question_id": 48082, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "esa00000585", - "question_id": 48083, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "sa00006755", - "question_id": 48099, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"suona\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000287", - "question_id": 48100, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003369", - "question_id": 48116, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "esa00000309", - "question_id": 48119, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "eva00001018", - "question_id": 48120, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"last\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "sa00008264", - "question_id": 48129, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "sa00007997", - "question_id": 48151, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "vv00000190", - "question_id": 48156, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"guzheng\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "eva00001194", - "question_id": 48158, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "evv00001418", - "question_id": 48169, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007016", - "question_id": 48205, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "esa00000005", - "question_id": 48208, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "va00003955", - "question_id": 48210, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "sa00007390", - "question_id": 48215, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "vv00003001", - "question_id": 48236, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000825", - "question_id": 48241, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004370", - "question_id": 48251, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "esa00000250", - "question_id": 48292, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "eva00000921", - "question_id": 48309, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "va00004999", - "question_id": 48311, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000594", - "question_id": 48334, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "va00003256", - "question_id": 48352, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004559", - "question_id": 48355, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "esa00000577", - "question_id": 48372, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "esa00000562", - "question_id": 48402, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "esa00000243", - "question_id": 48403, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "sa00006424", - "question_id": 48405, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "esa00000324", - "question_id": 48407, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "vv00002386", - "question_id": 48438, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001203", - "question_id": 48440, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008222", - "question_id": 48441, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "evv00001367", - "question_id": 48465, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000423", - "question_id": 48483, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000731", - "question_id": 48493, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000439", - "question_id": 48502, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "va00003906", - "question_id": 48513, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "esa00000012", - "question_id": 48533, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001137", - "question_id": 48534, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000440", - "question_id": 48540, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000209", - "question_id": 48542, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000486", - "question_id": 48551, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007108", - "question_id": 48574, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "eva00001215", - "question_id": 48610, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bassoon\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000672", - "question_id": 48630, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "esa00000437", - "question_id": 48635, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "sa00008827", - "question_id": 48637, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "evv00001263", - "question_id": 48674, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000194", - "question_id": 48686, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005573", - "question_id": 48701, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "sa00008889", - "question_id": 48723, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003836", - "question_id": 48725, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "evv00001390", - "question_id": 48746, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000908", - "question_id": 48748, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007755", - "question_id": 48758, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "sa00007759", - "question_id": 48765, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000975", - "question_id": 48767, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001203", - "question_id": 48780, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007215", - "question_id": 48784, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "esa00000174", - "question_id": 48797, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000594", - "question_id": 48801, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000642", - "question_id": 48802, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"suona\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007735", - "question_id": 48804, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001274", - "question_id": 48826, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bassoon\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006826", - "question_id": 48832, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"tuba\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000448", - "question_id": 48841, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001007", - "question_id": 48860, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00002732", - "question_id": 48868, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008119", - "question_id": 48870, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "sa00006020", - "question_id": 48878, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "esa00000363", - "question_id": 48879, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001147", - "question_id": 48886, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "evv00001272", - "question_id": 48888, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005272", - "question_id": 48919, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "sa00006568", - "question_id": 48925, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004036", - "question_id": 48928, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000933", - "question_id": 48929, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000508", - "question_id": 48941, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "esa00000477", - "question_id": 48945, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008532", - "question_id": 48952, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008180", - "question_id": 48972, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "eva00001104", - "question_id": 48974, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000280", - "question_id": 48987, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007525", - "question_id": 48991, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "eva00000885", - "question_id": 49000, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000652", - "question_id": 49005, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000443", - "question_id": 49007, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "sa00008654", - "question_id": 49012, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bagpipe\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004786", - "question_id": 49019, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bagpipe\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007328", - "question_id": 49020, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "va00004130", - "question_id": 49032, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002440", - "question_id": 49055, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "vv00002764", - "question_id": 49065, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005213", - "question_id": 49080, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "sa00008387", - "question_id": 49084, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"xylophone\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000010", - "question_id": 49087, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006590", - "question_id": 49101, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "eva00000859", - "question_id": 49138, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "esa00000174", - "question_id": 49161, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "vv00000084", - "question_id": 49162, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "eva00000970", - "question_id": 49165, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001197", - "question_id": 49254, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"last\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "esa00000017", - "question_id": 49256, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000504", - "question_id": 49261, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002888", - "question_id": 49262, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000843", - "question_id": 49266, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "va00003105", - "question_id": 49268, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "va00005770", - "question_id": 49273, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "esa00000270", - "question_id": 49275, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000337", - "question_id": 49281, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006728", - "question_id": 49282, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "va00004863", - "question_id": 49285, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "sa00008367", - "question_id": 49290, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "sa00008284", - "question_id": 49291, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001084", - "question_id": 49292, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"electric_bass\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000258", - "question_id": 49294, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000158", - "question_id": 49296, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000303", - "question_id": 49303, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "sa00006956", - "question_id": 49306, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005166", - "question_id": 49312, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"banjo\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000293", - "question_id": 49314, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000655", - "question_id": 49315, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "esa00000155", - "question_id": 49318, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "esa00000332", - "question_id": 49323, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "esa00000299", - "question_id": 49324, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "va00003298", - "question_id": 49328, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000540", - "question_id": 49332, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "sa00006088", - "question_id": 49339, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "eva00001208", - "question_id": 49352, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "sa00008206", - "question_id": 49355, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000688", - "question_id": 49359, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "esa00000635", - "question_id": 49362, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "eva00001161", - "question_id": 49374, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000378", - "question_id": 49380, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "esa00000483", - "question_id": 49389, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "esa00000632", - "question_id": 49407, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000380", - "question_id": 49413, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001181", - "question_id": 49431, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}] \ No newline at end of file diff --git a/data/json/avqa-test_real.json b/data/json/avqa-test_real.json deleted file mode 100644 index 42b9314..0000000 --- a/data/json/avqa-test_real.json +++ /dev/null @@ -1,59217 +0,0 @@ -[{ - "video_id": "00000093", - "question_id": 12, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000153", - "question_id": 13, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000086", - "question_id": 28, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000100", - "question_id": 35, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000023", - "question_id": 48, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000224", - "question_id": 55, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000217", - "question_id": 66, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000128", - "question_id": 73, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000153", - "question_id": 82, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000048", - "question_id": 83, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000226", - "question_id": 85, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000113", - "question_id": 89, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000017", - "question_id": 90, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000151", - "question_id": 93, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000045", - "question_id": 95, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000213", - "question_id": 96, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000291", - "question_id": 103, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000172", - "question_id": 108, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000201", - "question_id": 111, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000048", - "question_id": 112, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00000191", - "question_id": 116, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000030", - "question_id": 118, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000141", - "question_id": 122, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000249", - "question_id": 125, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000277", - "question_id": 127, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000176", - "question_id": 136, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000111", - "question_id": 139, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000071", - "question_id": 146, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000146", - "question_id": 155, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000082", - "question_id": 156, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000272", - "question_id": 160, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000224", - "question_id": 162, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000141", - "question_id": 169, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000012", - "question_id": 174, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000206", - "question_id": 184, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000195", - "question_id": 188, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000189", - "question_id": 190, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000026", - "question_id": 191, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000199", - "question_id": 198, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000296", - "question_id": 200, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000073", - "question_id": 201, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000036", - "question_id": 210, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000285", - "question_id": 213, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000368", - "question_id": 224, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007197", - "question_id": 225, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004394", - "question_id": 227, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000034", - "question_id": 235, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002565", - "question_id": 239, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004169", - "question_id": 240, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003311", - "question_id": 254, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002391", - "question_id": 260, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002936", - "question_id": 265, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004539", - "question_id": 267, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006428", - "question_id": 275, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00005593", - "question_id": 277, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008185", - "question_id": 281, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007086", - "question_id": 286, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002986", - "question_id": 288, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000563", - "question_id": 290, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006543", - "question_id": 295, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007924", - "question_id": 302, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008385", - "question_id": 312, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006334", - "question_id": 313, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002236", - "question_id": 318, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008170", - "question_id": 323, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008174", - "question_id": 324, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002572", - "question_id": 326, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003590", - "question_id": 329, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005064", - "question_id": 338, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006608", - "question_id": 339, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005615", - "question_id": 341, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002089", - "question_id": 347, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "eight" -}, { - "video_id": "00004319", - "question_id": 350, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003963", - "question_id": 370, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004688", - "question_id": 375, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000900", - "question_id": 383, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "more than ten" -}, { - "video_id": "00002165", - "question_id": 385, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006715", - "question_id": 387, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002514", - "question_id": 391, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001638", - "question_id": 395, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007636", - "question_id": 398, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007982", - "question_id": 400, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006646", - "question_id": 409, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007871", - "question_id": 412, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008779", - "question_id": 413, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000726", - "question_id": 417, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006991", - "question_id": 422, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007716", - "question_id": 431, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008424", - "question_id": 434, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001842", - "question_id": 441, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000480", - "question_id": 464, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003688", - "question_id": 468, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002705", - "question_id": 474, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001919", - "question_id": 496, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007128", - "question_id": 497, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002033", - "question_id": 498, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007490", - "question_id": 499, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008333", - "question_id": 500, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004691", - "question_id": 517, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000807", - "question_id": 523, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002998", - "question_id": 528, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004045", - "question_id": 535, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000252", - "question_id": 537, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001672", - "question_id": 543, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005868", - "question_id": 550, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001358", - "question_id": 554, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001927", - "question_id": 558, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003723", - "question_id": 560, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000747", - "question_id": 561, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008193", - "question_id": 564, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000181", - "question_id": 567, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005321", - "question_id": 571, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008601", - "question_id": 572, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006971", - "question_id": 578, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001690", - "question_id": 579, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000307", - "question_id": 581, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002156", - "question_id": 583, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005269", - "question_id": 590, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006520", - "question_id": 596, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008486", - "question_id": 597, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001405", - "question_id": 601, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001260", - "question_id": 608, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008035", - "question_id": 609, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005990", - "question_id": 615, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001284", - "question_id": 618, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005539", - "question_id": 635, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004794", - "question_id": 637, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000461", - "question_id": 640, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004146", - "question_id": 642, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002078", - "question_id": 644, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005377", - "question_id": 647, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007897", - "question_id": 650, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005406", - "question_id": 653, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001484", - "question_id": 660, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007116", - "question_id": 666, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007609", - "question_id": 672, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007315", - "question_id": 673, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001466", - "question_id": 693, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002248", - "question_id": 701, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002349", - "question_id": 714, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005045", - "question_id": 717, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001450", - "question_id": 718, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000993", - "question_id": 723, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008616", - "question_id": 737, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004846", - "question_id": 744, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006022", - "question_id": 753, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002696", - "question_id": 755, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002747", - "question_id": 759, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007671", - "question_id": 761, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005420", - "question_id": 764, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000326", - "question_id": 766, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004016", - "question_id": 767, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006346", - "question_id": 773, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008510", - "question_id": 774, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002152", - "question_id": 782, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003577", - "question_id": 783, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004315", - "question_id": 786, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002027", - "question_id": 789, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002796", - "question_id": 790, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006653", - "question_id": 791, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004562", - "question_id": 798, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002480", - "question_id": 809, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005697", - "question_id": 810, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002761", - "question_id": 813, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004794", - "question_id": 815, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007468", - "question_id": 818, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002430", - "question_id": 829, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006665", - "question_id": 843, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008032", - "question_id": 849, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006913", - "question_id": 851, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006359", - "question_id": 853, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008979", - "question_id": 856, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "more than ten" -}, { - "video_id": "00004217", - "question_id": 857, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007770", - "question_id": 865, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003420", - "question_id": 870, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003582", - "question_id": 884, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002679", - "question_id": 885, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005152", - "question_id": 887, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005334", - "question_id": 891, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004155", - "question_id": 901, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002865", - "question_id": 906, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007212", - "question_id": 911, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007298", - "question_id": 915, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004477", - "question_id": 923, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003878", - "question_id": 927, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004003", - "question_id": 937, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000857", - "question_id": 939, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002212", - "question_id": 942, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000710", - "question_id": 943, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004731", - "question_id": 950, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007853", - "question_id": 951, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004938", - "question_id": 963, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008797", - "question_id": 966, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004233", - "question_id": 968, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001102", - "question_id": 977, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006264", - "question_id": 981, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005776", - "question_id": 983, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001063", - "question_id": 984, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004065", - "question_id": 986, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004519", - "question_id": 990, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007834", - "question_id": 1000, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003971", - "question_id": 1017, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004648", - "question_id": 1022, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005240", - "question_id": 1025, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001440", - "question_id": 1026, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001581", - "question_id": 1036, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "more than ten" -}, { - "video_id": "00008339", - "question_id": 1038, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007242", - "question_id": 1043, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007227", - "question_id": 1046, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006299", - "question_id": 1049, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008131", - "question_id": 1052, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008667", - "question_id": 1057, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008392", - "question_id": 1067, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000936", - "question_id": 1069, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000311", - "question_id": 1074, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007938", - "question_id": 1079, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001641", - "question_id": 1090, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005886", - "question_id": 1092, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003212", - "question_id": 1096, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006375", - "question_id": 1099, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001177", - "question_id": 1103, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003432", - "question_id": 1113, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008274", - "question_id": 1117, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000529", - "question_id": 1119, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002325", - "question_id": 1120, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002293", - "question_id": 1127, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000768", - "question_id": 1128, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001646", - "question_id": 1130, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000871", - "question_id": 1132, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005778", - "question_id": 1138, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005778", - "question_id": 1138, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006142", - "question_id": 1150, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "nine" -}, { - "video_id": "00000133", - "question_id": 1153, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007733", - "question_id": 1154, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003540", - "question_id": 1155, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006583", - "question_id": 1160, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005571", - "question_id": 1163, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003068", - "question_id": 1164, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003641", - "question_id": 1175, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006964", - "question_id": 1177, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005968", - "question_id": 1182, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001853", - "question_id": 1187, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000213", - "question_id": 1196, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000422", - "question_id": 1197, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008377", - "question_id": 1203, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004068", - "question_id": 1206, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002258", - "question_id": 1210, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00004410", - "question_id": 1219, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004410", - "question_id": 1219, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002060", - "question_id": 1221, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003847", - "question_id": 1223, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004132", - "question_id": 1227, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00001503", - "question_id": 1232, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000694", - "question_id": 1233, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003124", - "question_id": 1237, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004202", - "question_id": 1238, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007277", - "question_id": 1250, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006789", - "question_id": 1257, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003262", - "question_id": 1269, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007410", - "question_id": 1272, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000516", - "question_id": 1278, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005310", - "question_id": 1280, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000208", - "question_id": 1294, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00000415", - "question_id": 1305, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000522", - "question_id": 1317, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007859", - "question_id": 1323, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008414", - "question_id": 1326, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005850", - "question_id": 1327, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006412", - "question_id": 1331, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002374", - "question_id": 1343, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008133", - "question_id": 1354, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006524", - "question_id": 1365, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003868", - "question_id": 1367, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004494", - "question_id": 1370, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005691", - "question_id": 1373, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008730", - "question_id": 1375, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003079", - "question_id": 1384, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008543", - "question_id": 1388, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003370", - "question_id": 1390, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007364", - "question_id": 1392, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004923", - "question_id": 1393, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004283", - "question_id": 1395, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006549", - "question_id": 1403, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001476", - "question_id": 1413, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001476", - "question_id": 1413, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008051", - "question_id": 1415, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004814", - "question_id": 1417, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003731", - "question_id": 1424, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001386", - "question_id": 1427, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007893", - "question_id": 1430, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006563", - "question_id": 1431, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001533", - "question_id": 1432, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005003", - "question_id": 1440, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002790", - "question_id": 1442, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006211", - "question_id": 1452, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006040", - "question_id": 1453, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003643", - "question_id": 1462, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008294", - "question_id": 1464, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005535", - "question_id": 1470, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004225", - "question_id": 1475, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005755", - "question_id": 1484, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001317", - "question_id": 1487, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000309", - "question_id": 1490, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001189", - "question_id": 1514, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001182", - "question_id": 1515, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002098", - "question_id": 1529, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003392", - "question_id": 1534, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001801", - "question_id": 1538, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00008087", - "question_id": 1546, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002898", - "question_id": 1551, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005807", - "question_id": 1559, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001487", - "question_id": 1562, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005500", - "question_id": 1573, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000870", - "question_id": 1574, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001717", - "question_id": 1578, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000300", - "question_id": 1580, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004828", - "question_id": 1584, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000343", - "question_id": 1596, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005835", - "question_id": 1602, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007581", - "question_id": 1605, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000059", - "question_id": 1610, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007878", - "question_id": 1615, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005262", - "question_id": 1618, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006035", - "question_id": 1625, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004229", - "question_id": 1629, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006125", - "question_id": 1636, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005196", - "question_id": 1650, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000925", - "question_id": 1658, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008820", - "question_id": 1665, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008786", - "question_id": 1685, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003133", - "question_id": 1702, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007001", - "question_id": 1703, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003698", - "question_id": 1705, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005522", - "question_id": 1706, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002666", - "question_id": 1714, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001780", - "question_id": 1727, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001341", - "question_id": 1728, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007461", - "question_id": 1733, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001559", - "question_id": 1743, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000960", - "question_id": 1746, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006532", - "question_id": 1749, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002959", - "question_id": 1752, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002610", - "question_id": 1757, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006136", - "question_id": 1758, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000015", - "question_id": 1760, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001234", - "question_id": 1775, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008458", - "question_id": 1776, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004455", - "question_id": 1813, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001183", - "question_id": 1818, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000794", - "question_id": 1822, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004193", - "question_id": 1824, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002128", - "question_id": 1826, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001296", - "question_id": 1830, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001080", - "question_id": 1851, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002494", - "question_id": 1858, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003196", - "question_id": 1859, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006979", - "question_id": 1868, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002553", - "question_id": 1869, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004075", - "question_id": 1875, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000723", - "question_id": 1879, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007059", - "question_id": 1886, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005680", - "question_id": 1888, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00000317", - "question_id": 1892, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002468", - "question_id": 1893, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000060", - "question_id": 1900, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005876", - "question_id": 1903, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003927", - "question_id": 1918, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005754", - "question_id": 1923, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000738", - "question_id": 1925, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007547", - "question_id": 1928, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008825", - "question_id": 1931, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000820", - "question_id": 1951, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003996", - "question_id": 1954, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006053", - "question_id": 1955, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004010", - "question_id": 1966, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001682", - "question_id": 1969, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008437", - "question_id": 1977, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002394", - "question_id": 1979, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008117", - "question_id": 1982, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007792", - "question_id": 1983, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006374", - "question_id": 1991, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005938", - "question_id": 1994, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006485", - "question_id": 1995, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001768", - "question_id": 2000, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001573", - "question_id": 2001, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006916", - "question_id": 2015, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008144", - "question_id": 2021, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005479", - "question_id": 2024, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001542", - "question_id": 2026, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008954", - "question_id": 2032, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008352", - "question_id": 2044, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000679", - "question_id": 2047, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000787", - "question_id": 2053, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008505", - "question_id": 2057, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003509", - "question_id": 2058, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001115", - "question_id": 2067, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001788", - "question_id": 2075, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006358", - "question_id": 2082, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00005767", - "question_id": 2085, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008677", - "question_id": 2093, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002335", - "question_id": 2101, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007104", - "question_id": 2105, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002456", - "question_id": 2107, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008805", - "question_id": 2114, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007902", - "question_id": 2128, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005743", - "question_id": 2130, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001397", - "question_id": 2133, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008385", - "question_id": 2140, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001668", - "question_id": 2144, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005433", - "question_id": 2151, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008812", - "question_id": 2152, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001142", - "question_id": 2159, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002244", - "question_id": 2160, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007816", - "question_id": 2162, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000279", - "question_id": 2166, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002171", - "question_id": 2167, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000875", - "question_id": 2170, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007344", - "question_id": 2173, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002741", - "question_id": 2174, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004035", - "question_id": 2178, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007691", - "question_id": 2180, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002559", - "question_id": 2181, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002739", - "question_id": 2188, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003170", - "question_id": 2198, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006752", - "question_id": 2199, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006778", - "question_id": 2202, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002892", - "question_id": 2204, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002164", - "question_id": 2219, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007358", - "question_id": 2220, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002805", - "question_id": 2229, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000549", - "question_id": 2240, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005089", - "question_id": 2248, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007994", - "question_id": 2249, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006276", - "question_id": 2252, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007376", - "question_id": 2254, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003974", - "question_id": 2263, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007183", - "question_id": 2266, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008733", - "question_id": 2267, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004666", - "question_id": 2280, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005128", - "question_id": 2285, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004653", - "question_id": 2292, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006748", - "question_id": 2293, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008011", - "question_id": 2297, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005368", - "question_id": 2299, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007679", - "question_id": 2301, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008857", - "question_id": 2312, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008073", - "question_id": 2313, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007301", - "question_id": 2321, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003175", - "question_id": 2325, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006817", - "question_id": 2327, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003718", - "question_id": 2332, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001717", - "question_id": 2340, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006250", - "question_id": 2344, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001894", - "question_id": 2345, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001971", - "question_id": 2346, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006957", - "question_id": 2348, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004354", - "question_id": 2350, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008270", - "question_id": 2353, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002071", - "question_id": 2356, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003385", - "question_id": 2361, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008161", - "question_id": 2364, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008913", - "question_id": 2368, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002823", - "question_id": 2370, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007436", - "question_id": 2377, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002731", - "question_id": 2378, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000274", - "question_id": 2380, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000944", - "question_id": 2382, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000425", - "question_id": 2384, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000816", - "question_id": 2387, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006506", - "question_id": 2389, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008016", - "question_id": 2393, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008301", - "question_id": 2397, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001505", - "question_id": 2406, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001113", - "question_id": 2428, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003490", - "question_id": 2438, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002111", - "question_id": 2440, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001901", - "question_id": 2461, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001673", - "question_id": 2462, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003100", - "question_id": 2469, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006201", - "question_id": 2470, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001649", - "question_id": 2471, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000526", - "question_id": 2480, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005249", - "question_id": 2481, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004624", - "question_id": 2483, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006500", - "question_id": 2500, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000003", - "question_id": 2501, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000385", - "question_id": 2507, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001910", - "question_id": 2516, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003563", - "question_id": 2518, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000583", - "question_id": 2520, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004389", - "question_id": 2527, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002407", - "question_id": 2531, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003085", - "question_id": 2535, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008587", - "question_id": 2537, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006803", - "question_id": 2542, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00005902", - "question_id": 2555, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000133", - "question_id": 2558, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008864", - "question_id": 2569, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000506", - "question_id": 2572, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001464", - "question_id": 2575, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000688", - "question_id": 2576, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002313", - "question_id": 2587, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004060", - "question_id": 2595, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003224", - "question_id": 2603, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004524", - "question_id": 2608, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001283", - "question_id": 2609, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001220", - "question_id": 2610, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000408", - "question_id": 2614, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002044", - "question_id": 2616, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001442", - "question_id": 2620, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008154", - "question_id": 2621, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004598", - "question_id": 2628, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006923", - "question_id": 2633, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000648", - "question_id": 2646, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004120", - "question_id": 2649, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003922", - "question_id": 2653, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004988", - "question_id": 2656, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007269", - "question_id": 2658, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00004840", - "question_id": 2667, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008916", - "question_id": 2670, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007630", - "question_id": 2675, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008076", - "question_id": 2678, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003436", - "question_id": 2679, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003072", - "question_id": 2681, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000704", - "question_id": 2682, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001902", - "question_id": 2684, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00004373", - "question_id": 2686, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004578", - "question_id": 2687, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006878", - "question_id": 2693, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003452", - "question_id": 2695, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005269", - "question_id": 2707, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004918", - "question_id": 2722, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007763", - "question_id": 2724, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001338", - "question_id": 2730, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001290", - "question_id": 2748, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001012", - "question_id": 2757, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002671", - "question_id": 2766, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008759", - "question_id": 2768, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001046", - "question_id": 2771, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000830", - "question_id": 2784, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002946", - "question_id": 2795, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002649", - "question_id": 2797, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005735", - "question_id": 2800, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008627", - "question_id": 2802, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002665", - "question_id": 2804, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008021", - "question_id": 2812, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002249", - "question_id": 2816, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002143", - "question_id": 2818, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003958", - "question_id": 2821, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006955", - "question_id": 2831, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008688", - "question_id": 2835, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006171", - "question_id": 2851, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003067", - "question_id": 2866, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000253", - "question_id": 2872, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007185", - "question_id": 2874, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003116", - "question_id": 2892, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005280", - "question_id": 2894, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004642", - "question_id": 2900, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003452", - "question_id": 2909, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008756", - "question_id": 2911, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008918", - "question_id": 2912, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00003158", - "question_id": 2914, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004099", - "question_id": 2919, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001550", - "question_id": 2922, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003648", - "question_id": 2927, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001158", - "question_id": 2931, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006321", - "question_id": 2932, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004552", - "question_id": 2937, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002335", - "question_id": 2939, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000441", - "question_id": 2944, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000823", - "question_id": 2945, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003470", - "question_id": 2946, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004562", - "question_id": 2953, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003304", - "question_id": 2954, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005973", - "question_id": 2958, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005973", - "question_id": 2958, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003997", - "question_id": 2961, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003467", - "question_id": 2966, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001985", - "question_id": 2973, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00008178", - "question_id": 2982, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000944", - "question_id": 2985, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008689", - "question_id": 2990, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003187", - "question_id": 3004, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000012", - "question_id": 3009, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008967", - "question_id": 3010, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001335", - "question_id": 3012, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002879", - "question_id": 3016, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008790", - "question_id": 3019, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006675", - "question_id": 3022, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007224", - "question_id": 3027, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001666", - "question_id": 3028, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004813", - "question_id": 3032, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008241", - "question_id": 3034, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005023", - "question_id": 3035, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006986", - "question_id": 3050, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006325", - "question_id": 3056, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004222", - "question_id": 3074, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001940", - "question_id": 3085, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007124", - "question_id": 3086, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005550", - "question_id": 3089, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007113", - "question_id": 3093, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007952", - "question_id": 3094, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001586", - "question_id": 3097, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005370", - "question_id": 3098, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006948", - "question_id": 3111, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005430", - "question_id": 3114, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005298", - "question_id": 3120, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004327", - "question_id": 3125, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004264", - "question_id": 3143, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007269", - "question_id": 3145, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003949", - "question_id": 3150, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007513", - "question_id": 3155, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001596", - "question_id": 3156, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007349", - "question_id": 3159, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006840", - "question_id": 3166, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006638", - "question_id": 3171, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006906", - "question_id": 3174, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008689", - "question_id": 3191, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005840", - "question_id": 3205, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007831", - "question_id": 3212, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001073", - "question_id": 3213, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006190", - "question_id": 3217, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003249", - "question_id": 3221, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005853", - "question_id": 3229, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007665", - "question_id": 3230, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003358", - "question_id": 3243, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006279", - "question_id": 3244, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001955", - "question_id": 3247, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000269", - "question_id": 3252, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004135", - "question_id": 3254, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005710", - "question_id": 3260, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007335", - "question_id": 3266, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008644", - "question_id": 3268, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008228", - "question_id": 3270, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006157", - "question_id": 3273, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000670", - "question_id": 3279, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001753", - "question_id": 3280, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004345", - "question_id": 3283, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004877", - "question_id": 3285, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003537", - "question_id": 3287, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005922", - "question_id": 3293, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001102", - "question_id": 3299, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006017", - "question_id": 3304, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006751", - "question_id": 3322, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004429", - "question_id": 3324, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003776", - "question_id": 3327, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003576", - "question_id": 3335, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008210", - "question_id": 3345, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008109", - "question_id": 3358, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006368", - "question_id": 3361, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001015", - "question_id": 3368, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004176", - "question_id": 3388, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000706", - "question_id": 3395, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007307", - "question_id": 3397, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005548", - "question_id": 3399, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002636", - "question_id": 3402, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000924", - "question_id": 3404, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003999", - "question_id": 3406, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007523", - "question_id": 3411, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001914", - "question_id": 3412, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003623", - "question_id": 3415, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003014", - "question_id": 3416, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008199", - "question_id": 3428, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004722", - "question_id": 3438, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006793", - "question_id": 3447, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005058", - "question_id": 3457, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000501", - "question_id": 3463, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005030", - "question_id": 3472, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005790", - "question_id": 3476, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002342", - "question_id": 3489, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004247", - "question_id": 3497, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001142", - "question_id": 3503, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006239", - "question_id": 3508, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000719", - "question_id": 3510, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003940", - "question_id": 3515, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001317", - "question_id": 3520, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001690", - "question_id": 3527, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002578", - "question_id": 3531, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005868", - "question_id": 3533, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003023", - "question_id": 3534, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005182", - "question_id": 3536, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004820", - "question_id": 3540, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001249", - "question_id": 3541, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002658", - "question_id": 3542, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006261", - "question_id": 3545, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008128", - "question_id": 3561, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007159", - "question_id": 3564, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001311", - "question_id": 3567, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005290", - "question_id": 3568, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000494", - "question_id": 3575, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001617", - "question_id": 3578, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002336", - "question_id": 3582, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005450", - "question_id": 3583, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006935", - "question_id": 3584, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008832", - "question_id": 3585, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000290", - "question_id": 3596, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003107", - "question_id": 3597, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006292", - "question_id": 3599, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007004", - "question_id": 3607, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008659", - "question_id": 3608, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005082", - "question_id": 3610, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004291", - "question_id": 3611, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002115", - "question_id": 3628, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004751", - "question_id": 3633, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008328", - "question_id": 3634, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002869", - "question_id": 3635, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001158", - "question_id": 3636, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007012", - "question_id": 3650, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005126", - "question_id": 3668, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004403", - "question_id": 3686, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001799", - "question_id": 3691, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002912", - "question_id": 3697, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002733", - "question_id": 3701, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003868", - "question_id": 3703, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006861", - "question_id": 3714, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002504", - "question_id": 3721, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002318", - "question_id": 3737, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005172", - "question_id": 3742, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000907", - "question_id": 3753, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004864", - "question_id": 3759, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008241", - "question_id": 3763, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002208", - "question_id": 3774, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001700", - "question_id": 3777, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004739", - "question_id": 3786, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002021", - "question_id": 3787, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007409", - "question_id": 3790, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000475", - "question_id": 3791, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004976", - "question_id": 3797, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007173", - "question_id": 3798, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000390", - "question_id": 3799, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000054", - "question_id": 3802, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002904", - "question_id": 3803, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005555", - "question_id": 3809, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007965", - "question_id": 3810, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002205", - "question_id": 3811, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001592", - "question_id": 3820, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001208", - "question_id": 3823, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007050", - "question_id": 3835, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003552", - "question_id": 3837, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005398", - "question_id": 3846, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004161", - "question_id": 3853, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005440", - "question_id": 3854, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007652", - "question_id": 3857, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005202", - "question_id": 3863, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003949", - "question_id": 3865, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004429", - "question_id": 3870, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007806", - "question_id": 3871, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007998", - "question_id": 3872, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003288", - "question_id": 3874, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001424", - "question_id": 3877, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008791", - "question_id": 3882, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00002004", - "question_id": 3884, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00002240", - "question_id": 3886, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007152", - "question_id": 3889, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003458", - "question_id": 3896, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004604", - "question_id": 3900, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005230", - "question_id": 3917, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002190", - "question_id": 3920, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004506", - "question_id": 3934, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003708", - "question_id": 3936, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003653", - "question_id": 3939, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004464", - "question_id": 3941, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002951", - "question_id": 3952, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001749", - "question_id": 3953, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003859", - "question_id": 3954, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003912", - "question_id": 3956, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007652", - "question_id": 3958, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006933", - "question_id": 3959, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001705", - "question_id": 3961, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005570", - "question_id": 3962, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002835", - "question_id": 3965, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005948", - "question_id": 3969, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005093", - "question_id": 3975, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000067", - "question_id": 3978, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003818", - "question_id": 3983, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006297", - "question_id": 3986, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005836", - "question_id": 3989, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002439", - "question_id": 4005, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007202", - "question_id": 4009, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000732", - "question_id": 4018, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003859", - "question_id": 4030, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005757", - "question_id": 4038, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004606", - "question_id": 4047, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000247", - "question_id": 4054, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002476", - "question_id": 4061, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001068", - "question_id": 4073, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006153", - "question_id": 4075, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002653", - "question_id": 4079, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003368", - "question_id": 4080, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001250", - "question_id": 4081, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000655", - "question_id": 4087, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003795", - "question_id": 4093, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007220", - "question_id": 4095, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003759", - "question_id": 4097, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007990", - "question_id": 4099, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004974", - "question_id": 4112, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004075", - "question_id": 4116, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003402", - "question_id": 4121, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00003788", - "question_id": 4127, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003367", - "question_id": 4128, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006438", - "question_id": 4143, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"banjo\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005563", - "question_id": 4146, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005077", - "question_id": 4164, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001608", - "question_id": 4165, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002323", - "question_id": 4169, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007608", - "question_id": 4173, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005018", - "question_id": 4178, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007944", - "question_id": 4182, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005251", - "question_id": 4183, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003253", - "question_id": 4190, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001430", - "question_id": 4207, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007839", - "question_id": 4212, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005650", - "question_id": 4217, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007911", - "question_id": 4222, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008787", - "question_id": 4230, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00006817", - "question_id": 4233, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008550", - "question_id": 4236, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003119", - "question_id": 4240, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008726", - "question_id": 4243, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005640", - "question_id": 4250, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000159", - "question_id": 4252, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000727", - "question_id": 4264, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008090", - "question_id": 4272, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007426", - "question_id": 4277, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001427", - "question_id": 4281, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002759", - "question_id": 4286, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007465", - "question_id": 4291, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000825", - "question_id": 4294, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007094", - "question_id": 4304, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004842", - "question_id": 4305, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008954", - "question_id": 4314, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007634", - "question_id": 4317, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006642", - "question_id": 4320, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006861", - "question_id": 4323, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005989", - "question_id": 4324, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006710", - "question_id": 4325, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006950", - "question_id": 4338, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00008839", - "question_id": 4341, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008126", - "question_id": 4342, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006001", - "question_id": 4359, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001539", - "question_id": 4361, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004476", - "question_id": 4370, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003751", - "question_id": 4376, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004266", - "question_id": 4387, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00008161", - "question_id": 4400, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00004676", - "question_id": 4419, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008910", - "question_id": 4429, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000999", - "question_id": 4431, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007880", - "question_id": 4436, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005616", - "question_id": 4441, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003427", - "question_id": 4444, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007559", - "question_id": 4445, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00003161", - "question_id": 4452, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003161", - "question_id": 4452, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006875", - "question_id": 4457, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000451", - "question_id": 4461, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000451", - "question_id": 4461, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000868", - "question_id": 4464, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003103", - "question_id": 4469, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006316", - "question_id": 4472, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006771", - "question_id": 4476, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005847", - "question_id": 4481, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005979", - "question_id": 4482, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006238", - "question_id": 4491, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006459", - "question_id": 4501, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005493", - "question_id": 4502, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006392", - "question_id": 4504, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005704", - "question_id": 4506, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000774", - "question_id": 4510, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006105", - "question_id": 4520, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008615", - "question_id": 4529, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002847", - "question_id": 4539, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005795", - "question_id": 4540, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007070", - "question_id": 4545, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008130", - "question_id": 4546, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001331", - "question_id": 4547, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00001813", - "question_id": 4558, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002079", - "question_id": 4573, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000917", - "question_id": 4574, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000823", - "question_id": 4579, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001858", - "question_id": 4584, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007706", - "question_id": 4591, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000844", - "question_id": 4599, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00004735", - "question_id": 4608, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001766", - "question_id": 4610, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005013", - "question_id": 4616, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006814", - "question_id": 4622, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004001", - "question_id": 4626, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001704", - "question_id": 4627, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001830", - "question_id": 4635, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003056", - "question_id": 4637, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006835", - "question_id": 4639, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007717", - "question_id": 4641, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007717", - "question_id": 4641, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004853", - "question_id": 4643, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000108", - "question_id": 4651, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007835", - "question_id": 4654, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003232", - "question_id": 4665, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00000028", - "question_id": 4670, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000114", - "question_id": 4676, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000053", - "question_id": 4677, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006190", - "question_id": 4683, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008969", - "question_id": 4689, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"last\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005396", - "question_id": 4690, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000778", - "question_id": 4692, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001841", - "question_id": 4701, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005242", - "question_id": 4714, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008121", - "question_id": 4719, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00004508", - "question_id": 4721, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007468", - "question_id": 4727, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002128", - "question_id": 4728, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000489", - "question_id": 4730, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001361", - "question_id": 4732, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005955", - "question_id": 4734, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003526", - "question_id": 4735, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005637", - "question_id": 4736, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001450", - "question_id": 4740, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002117", - "question_id": 4753, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003722", - "question_id": 4756, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003132", - "question_id": 4767, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007364", - "question_id": 4770, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000234", - "question_id": 4775, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006708", - "question_id": 4797, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006589", - "question_id": 4798, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006071", - "question_id": 4801, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003037", - "question_id": 4812, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007143", - "question_id": 4815, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008324", - "question_id": 4828, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004774", - "question_id": 4829, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00000901", - "question_id": 4830, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002836", - "question_id": 4831, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00001073", - "question_id": 4832, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008016", - "question_id": 4838, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00003454", - "question_id": 4839, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000023", - "question_id": 4859, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003077", - "question_id": 4862, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008788", - "question_id": 4872, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005325", - "question_id": 4876, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002649", - "question_id": 4888, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000438", - "question_id": 4893, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008011", - "question_id": 4899, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007293", - "question_id": 4913, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001001", - "question_id": 4921, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001911", - "question_id": 4932, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003168", - "question_id": 4935, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"drum\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00003506", - "question_id": 4942, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008918", - "question_id": 4946, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005542", - "question_id": 4959, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000043", - "question_id": 4964, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005283", - "question_id": 4976, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003658", - "question_id": 4979, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001708", - "question_id": 4985, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005199", - "question_id": 4987, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007707", - "question_id": 4988, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003050", - "question_id": 5004, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008843", - "question_id": 5006, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007558", - "question_id": 5007, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002236", - "question_id": 5009, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006354", - "question_id": 5018, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004483", - "question_id": 5022, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002763", - "question_id": 5025, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008157", - "question_id": 5026, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003936", - "question_id": 5029, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004704", - "question_id": 5034, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001535", - "question_id": 5037, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003406", - "question_id": 5039, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008734", - "question_id": 5043, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007625", - "question_id": 5046, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007777", - "question_id": 5049, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005659", - "question_id": 5050, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007875", - "question_id": 5053, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003164", - "question_id": 5054, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001370", - "question_id": 5059, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002176", - "question_id": 5063, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006687", - "question_id": 5069, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003226", - "question_id": 5095, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004332", - "question_id": 5098, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007132", - "question_id": 5100, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001588", - "question_id": 5102, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006952", - "question_id": 5105, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002708", - "question_id": 5109, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003857", - "question_id": 5115, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000352", - "question_id": 5146, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004080", - "question_id": 5159, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000528", - "question_id": 5172, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006988", - "question_id": 5175, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001325", - "question_id": 5181, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003855", - "question_id": 5184, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007236", - "question_id": 5191, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002337", - "question_id": 5204, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000220", - "question_id": 5206, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007313", - "question_id": 5209, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004865", - "question_id": 5211, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007766", - "question_id": 5216, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004141", - "question_id": 5218, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001730", - "question_id": 5222, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004568", - "question_id": 5233, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008214", - "question_id": 5249, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005119", - "question_id": 5250, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001197", - "question_id": 5251, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008796", - "question_id": 5275, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003199", - "question_id": 5282, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008396", - "question_id": 5287, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00003611", - "question_id": 5290, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005620", - "question_id": 5291, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007431", - "question_id": 5296, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002825", - "question_id": 5297, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005014", - "question_id": 5302, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002139", - "question_id": 5304, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008941", - "question_id": 5306, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007348", - "question_id": 5317, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bagpipe\", \"middle\", \"electric_bass\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007030", - "question_id": 5321, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003230", - "question_id": 5333, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004012", - "question_id": 5345, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004929", - "question_id": 5354, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00006494", - "question_id": 5355, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004667", - "question_id": 5356, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00001252", - "question_id": 5360, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004407", - "question_id": 5362, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003423", - "question_id": 5363, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007929", - "question_id": 5367, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001972", - "question_id": 5370, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002945", - "question_id": 5374, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000543", - "question_id": 5377, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005225", - "question_id": 5381, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"banjo\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000877", - "question_id": 5389, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000705", - "question_id": 5394, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003181", - "question_id": 5397, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006491", - "question_id": 5401, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004029", - "question_id": 5406, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006669", - "question_id": 5409, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008364", - "question_id": 5436, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004480", - "question_id": 5452, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004368", - "question_id": 5453, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"congas\", \"left\", \"congas\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000781", - "question_id": 5461, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006977", - "question_id": 5474, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003687", - "question_id": 5478, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000612", - "question_id": 5481, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003485", - "question_id": 5482, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007737", - "question_id": 5486, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007579", - "question_id": 5487, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006146", - "question_id": 5497, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006449", - "question_id": 5505, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000489", - "question_id": 5527, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003033", - "question_id": 5532, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007045", - "question_id": 5533, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008396", - "question_id": 5538, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000798", - "question_id": 5543, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007737", - "question_id": 5544, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003505", - "question_id": 5546, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002996", - "question_id": 5560, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006067", - "question_id": 5564, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007787", - "question_id": 5565, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00003550", - "question_id": 5567, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001949", - "question_id": 5575, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001312", - "question_id": 5580, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002237", - "question_id": 5582, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001115", - "question_id": 5588, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006353", - "question_id": 5595, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008340", - "question_id": 5596, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005884", - "question_id": 5597, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00006805", - "question_id": 5600, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002611", - "question_id": 5607, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002808", - "question_id": 5609, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004064", - "question_id": 5614, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000226", - "question_id": 5619, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004275", - "question_id": 5622, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002475", - "question_id": 5628, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003213", - "question_id": 5635, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004668", - "question_id": 5641, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004104", - "question_id": 5646, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003861", - "question_id": 5651, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003302", - "question_id": 5652, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004912", - "question_id": 5655, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00002994", - "question_id": 5656, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004765", - "question_id": 5658, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004882", - "question_id": 5659, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000326", - "question_id": 5663, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001877", - "question_id": 5665, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002485", - "question_id": 5668, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002485", - "question_id": 5668, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002397", - "question_id": 5672, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008027", - "question_id": 5673, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008228", - "question_id": 5680, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007141", - "question_id": 5683, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001014", - "question_id": 5686, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008879", - "question_id": 5687, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005562", - "question_id": 5699, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001723", - "question_id": 5702, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002159", - "question_id": 5713, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007005", - "question_id": 5716, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005246", - "question_id": 5717, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002584", - "question_id": 5718, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006166", - "question_id": 5739, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000002", - "question_id": 5768, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001476", - "question_id": 5780, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000961", - "question_id": 5788, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001143", - "question_id": 5791, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001015", - "question_id": 5803, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002220", - "question_id": 5805, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005612", - "question_id": 5811, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001152", - "question_id": 5814, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000951", - "question_id": 5819, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006828", - "question_id": 5820, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006145", - "question_id": 5822, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002672", - "question_id": 5827, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003757", - "question_id": 5829, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004841", - "question_id": 5830, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001700", - "question_id": 5833, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004396", - "question_id": 5844, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005861", - "question_id": 5853, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003179", - "question_id": 5856, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007812", - "question_id": 5858, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002932", - "question_id": 5859, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003479", - "question_id": 5860, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001474", - "question_id": 5864, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000784", - "question_id": 5865, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003143", - "question_id": 5866, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006654", - "question_id": 5872, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008701", - "question_id": 5877, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004230", - "question_id": 5880, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008926", - "question_id": 5888, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002294", - "question_id": 5892, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008668", - "question_id": 5905, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005176", - "question_id": 5914, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003321", - "question_id": 5926, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005417", - "question_id": 5938, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005431", - "question_id": 5942, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008564", - "question_id": 5952, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008668", - "question_id": 5953, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006559", - "question_id": 5954, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003618", - "question_id": 5957, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001038", - "question_id": 5961, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007656", - "question_id": 5974, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003633", - "question_id": 5991, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006191", - "question_id": 5995, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002809", - "question_id": 5999, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007483", - "question_id": 6005, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008668", - "question_id": 6007, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003007", - "question_id": 6012, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008680", - "question_id": 6013, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007913", - "question_id": 6016, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008364", - "question_id": 6020, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005747", - "question_id": 6021, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007210", - "question_id": 6023, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002696", - "question_id": 6027, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000243", - "question_id": 6031, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000604", - "question_id": 6040, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003920", - "question_id": 6049, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006630", - "question_id": 6052, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005856", - "question_id": 6070, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008606", - "question_id": 6072, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006848", - "question_id": 6073, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001373", - "question_id": 6076, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00000075", - "question_id": 6085, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004775", - "question_id": 6090, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006729", - "question_id": 6096, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002635", - "question_id": 6107, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000640", - "question_id": 6108, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001071", - "question_id": 6116, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004630", - "question_id": 6123, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"acoustic_guitar\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002370", - "question_id": 6127, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002370", - "question_id": 6127, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008861", - "question_id": 6133, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005106", - "question_id": 6135, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003148", - "question_id": 6136, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005832", - "question_id": 6148, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00007397", - "question_id": 6150, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005095", - "question_id": 6151, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00000831", - "question_id": 6182, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002355", - "question_id": 6187, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007137", - "question_id": 6197, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001962", - "question_id": 6202, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004196", - "question_id": 6209, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005092", - "question_id": 6225, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008831", - "question_id": 6243, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005671", - "question_id": 6246, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"congas\", \"right\", \"xylophone\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004457", - "question_id": 6247, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006303", - "question_id": 6260, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003707", - "question_id": 6266, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001404", - "question_id": 6272, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004423", - "question_id": 6278, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001569", - "question_id": 6281, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005020", - "question_id": 6284, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008424", - "question_id": 6287, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004718", - "question_id": 6293, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007820", - "question_id": 6295, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003803", - "question_id": 6303, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00008103", - "question_id": 6306, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001024", - "question_id": 6308, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001197", - "question_id": 6313, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003463", - "question_id": 6321, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006470", - "question_id": 6324, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008481", - "question_id": 6327, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008162", - "question_id": 6339, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003434", - "question_id": 6343, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00000243", - "question_id": 6365, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004886", - "question_id": 6368, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001536", - "question_id": 6371, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002205", - "question_id": 6387, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000168", - "question_id": 6392, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004113", - "question_id": 6397, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"fifth\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00006217", - "question_id": 6400, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003098", - "question_id": 6408, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008361", - "question_id": 6410, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00002115", - "question_id": 6413, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007980", - "question_id": 6419, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008813", - "question_id": 6421, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001523", - "question_id": 6422, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000973", - "question_id": 6423, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001442", - "question_id": 6429, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004998", - "question_id": 6432, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006481", - "question_id": 6435, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008808", - "question_id": 6438, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008912", - "question_id": 6443, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000696", - "question_id": 6447, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003338", - "question_id": 6448, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000054", - "question_id": 6457, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004437", - "question_id": 6467, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004437", - "question_id": 6467, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005636", - "question_id": 6468, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006074", - "question_id": 6469, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003254", - "question_id": 6473, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000474", - "question_id": 6476, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002304", - "question_id": 6478, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007182", - "question_id": 6480, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00002470", - "question_id": 6489, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007806", - "question_id": 6494, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003605", - "question_id": 6495, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"fourth\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00007632", - "question_id": 6497, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008207", - "question_id": 6500, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001094", - "question_id": 6503, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003316", - "question_id": 6504, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003230", - "question_id": 6517, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008844", - "question_id": 6521, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005152", - "question_id": 6543, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008147", - "question_id": 6551, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003280", - "question_id": 6556, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005368", - "question_id": 6560, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004958", - "question_id": 6561, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008232", - "question_id": 6563, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002154", - "question_id": 6566, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00008932", - "question_id": 6573, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005142", - "question_id": 6578, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003863", - "question_id": 6585, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007515", - "question_id": 6587, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007022", - "question_id": 6590, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00006966", - "question_id": 6591, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00008507", - "question_id": 6615, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003782", - "question_id": 6618, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001400", - "question_id": 6620, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00007661", - "question_id": 6622, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001515", - "question_id": 6623, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002847", - "question_id": 6641, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000340", - "question_id": 6651, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00004350", - "question_id": 6657, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008471", - "question_id": 6675, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007096", - "question_id": 6678, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008124", - "question_id": 6681, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002420", - "question_id": 6686, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007760", - "question_id": 6697, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008044", - "question_id": 6703, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005207", - "question_id": 6709, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003449", - "question_id": 6712, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002242", - "question_id": 6721, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007169", - "question_id": 6724, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004635", - "question_id": 6725, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003257", - "question_id": 6727, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006121", - "question_id": 6733, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002119", - "question_id": 6734, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000170", - "question_id": 6738, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004386", - "question_id": 6751, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000786", - "question_id": 6760, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005327", - "question_id": 6768, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008267", - "question_id": 6769, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004416", - "question_id": 6780, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007820", - "question_id": 6788, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004746", - "question_id": 6792, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006656", - "question_id": 6794, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00000761", - "question_id": 6825, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006648", - "question_id": 6829, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008501", - "question_id": 6833, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004573", - "question_id": 6834, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00003789", - "question_id": 6835, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003354", - "question_id": 6845, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006213", - "question_id": 6848, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000083", - "question_id": 6853, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007290", - "question_id": 6854, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001519", - "question_id": 6865, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002161", - "question_id": 6866, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00008886", - "question_id": 6870, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00006223", - "question_id": 6872, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004084", - "question_id": 6876, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002900", - "question_id": 6887, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00005543", - "question_id": 6888, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000246", - "question_id": 6889, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001115", - "question_id": 6892, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004359", - "question_id": 6894, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000418", - "question_id": 6900, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008637", - "question_id": 6909, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006865", - "question_id": 6911, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002869", - "question_id": 6912, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003925", - "question_id": 6918, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002206", - "question_id": 6922, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004644", - "question_id": 6923, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000329", - "question_id": 6924, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"violin\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000479", - "question_id": 6925, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004070", - "question_id": 6937, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002910", - "question_id": 6941, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008526", - "question_id": 6973, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008573", - "question_id": 6981, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002033", - "question_id": 6983, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008418", - "question_id": 6992, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002979", - "question_id": 6996, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002836", - "question_id": 7006, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006618", - "question_id": 7009, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00000334", - "question_id": 7010, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006163", - "question_id": 7016, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000362", - "question_id": 7025, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000963", - "question_id": 7030, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001042", - "question_id": 7031, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006995", - "question_id": 7032, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001538", - "question_id": 7037, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003535", - "question_id": 7054, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003596", - "question_id": 7059, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004183", - "question_id": 7079, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"right\", \"erhu\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003408", - "question_id": 7088, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008949", - "question_id": 7102, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004127", - "question_id": 7104, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000950", - "question_id": 7107, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004563", - "question_id": 7112, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004807", - "question_id": 7120, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007348", - "question_id": 7132, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007121", - "question_id": 7133, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00003470", - "question_id": 7136, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007731", - "question_id": 7137, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008750", - "question_id": 7138, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005824", - "question_id": 7139, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008828", - "question_id": 7143, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004907", - "question_id": 7151, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007423", - "question_id": 7162, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005245", - "question_id": 7164, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007616", - "question_id": 7182, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005640", - "question_id": 7184, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008105", - "question_id": 7185, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006600", - "question_id": 7195, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008446", - "question_id": 7198, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006461", - "question_id": 7199, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"clarinet\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002662", - "question_id": 7200, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004825", - "question_id": 7209, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004619", - "question_id": 7213, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005876", - "question_id": 7222, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000710", - "question_id": 7228, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "more than ten" -}, { - "video_id": "00008901", - "question_id": 7229, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001385", - "question_id": 7231, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002359", - "question_id": 7237, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007915", - "question_id": 7245, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001313", - "question_id": 7252, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002013", - "question_id": 7253, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000852", - "question_id": 7260, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000028", - "question_id": 7267, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006929", - "question_id": 7268, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003410", - "question_id": 7270, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004766", - "question_id": 7278, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000806", - "question_id": 7280, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007191", - "question_id": 7284, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008318", - "question_id": 7293, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000565", - "question_id": 7294, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004128", - "question_id": 7297, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000021", - "question_id": 7304, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00006047", - "question_id": 7313, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008111", - "question_id": 7327, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002606", - "question_id": 7334, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001716", - "question_id": 7342, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008370", - "question_id": 7343, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006907", - "question_id": 7347, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001261", - "question_id": 7352, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001516", - "question_id": 7354, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003561", - "question_id": 7356, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00000680", - "question_id": 7357, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"middle\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005604", - "question_id": 7358, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006800", - "question_id": 7362, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005485", - "question_id": 7367, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00006621", - "question_id": 7369, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003250", - "question_id": 7384, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002664", - "question_id": 7386, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005973", - "question_id": 7412, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000189", - "question_id": 7415, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002109", - "question_id": 7422, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"right\", \"erhu\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005740", - "question_id": 7429, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000175", - "question_id": 7457, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005530", - "question_id": 7468, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005311", - "question_id": 7476, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00004124", - "question_id": 7478, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000963", - "question_id": 7482, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006505", - "question_id": 7487, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005967", - "question_id": 7496, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00008109", - "question_id": 7500, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000897", - "question_id": 7503, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003040", - "question_id": 7509, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004707", - "question_id": 7517, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007502", - "question_id": 7518, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000186", - "question_id": 7521, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007760", - "question_id": 7537, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008830", - "question_id": 7540, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002596", - "question_id": 7561, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004178", - "question_id": 7564, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00003611", - "question_id": 7567, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003225", - "question_id": 7577, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00003842", - "question_id": 7584, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004900", - "question_id": 7598, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000413", - "question_id": 7603, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002237", - "question_id": 7616, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002298", - "question_id": 7620, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003042", - "question_id": 7621, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008203", - "question_id": 7622, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00008392", - "question_id": 7624, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006850", - "question_id": 7627, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000234", - "question_id": 7628, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008403", - "question_id": 7631, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000169", - "question_id": 7646, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000583", - "question_id": 7649, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004448", - "question_id": 7652, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000360", - "question_id": 7668, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003450", - "question_id": 7684, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002974", - "question_id": 7697, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005672", - "question_id": 7698, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001080", - "question_id": 7702, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003218", - "question_id": 7703, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005196", - "question_id": 7704, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003805", - "question_id": 7707, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008340", - "question_id": 7712, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002470", - "question_id": 7713, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004360", - "question_id": 7715, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007846", - "question_id": 7716, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003283", - "question_id": 7718, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000961", - "question_id": 7725, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001305", - "question_id": 7726, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003957", - "question_id": 7731, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006191", - "question_id": 7738, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001222", - "question_id": 7740, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006719", - "question_id": 7745, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007176", - "question_id": 7750, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006087", - "question_id": 7763, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006003", - "question_id": 7765, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005376", - "question_id": 7767, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006620", - "question_id": 7772, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000717", - "question_id": 7774, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001233", - "question_id": 7778, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005075", - "question_id": 7792, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003520", - "question_id": 7798, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004489", - "question_id": 7803, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00008522", - "question_id": 7806, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004460", - "question_id": 7810, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007908", - "question_id": 7821, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000294", - "question_id": 7825, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006329", - "question_id": 7826, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00008173", - "question_id": 7829, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003097", - "question_id": 7835, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00008551", - "question_id": 7838, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000148", - "question_id": 7839, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003441", - "question_id": 7843, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006465", - "question_id": 7849, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00005547", - "question_id": 7855, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"first\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00007856", - "question_id": 7859, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007825", - "question_id": 7866, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006804", - "question_id": 7872, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005064", - "question_id": 7875, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00008276", - "question_id": 7890, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00005386", - "question_id": 7893, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003606", - "question_id": 7895, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00003938", - "question_id": 7897, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000977", - "question_id": 7898, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000539", - "question_id": 7905, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005648", - "question_id": 7925, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002758", - "question_id": 7927, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004563", - "question_id": 7935, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006836", - "question_id": 7936, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004616", - "question_id": 7945, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002397", - "question_id": 7949, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001571", - "question_id": 7951, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00005541", - "question_id": 7952, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000968", - "question_id": 7953, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001950", - "question_id": 7958, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00001446", - "question_id": 7960, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005678", - "question_id": 7964, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003989", - "question_id": 7972, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002025", - "question_id": 7983, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006861", - "question_id": 7999, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000903", - "question_id": 8001, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006310", - "question_id": 8003, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000211", - "question_id": 8007, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001697", - "question_id": 8008, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bagpipe\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001360", - "question_id": 8016, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001386", - "question_id": 8019, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007986", - "question_id": 8020, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000425", - "question_id": 8023, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000556", - "question_id": 8024, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004749", - "question_id": 8026, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00008954", - "question_id": 8033, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006772", - "question_id": 8046, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003087", - "question_id": 8053, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003966", - "question_id": 8059, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006911", - "question_id": 8062, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004186", - "question_id": 8063, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001640", - "question_id": 8066, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00004167", - "question_id": 8077, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00002073", - "question_id": 8087, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007230", - "question_id": 8088, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007224", - "question_id": 8090, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004621", - "question_id": 8092, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008236", - "question_id": 8095, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004705", - "question_id": 8096, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007798", - "question_id": 8100, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003021", - "question_id": 8102, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005420", - "question_id": 8104, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004953", - "question_id": 8105, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005598", - "question_id": 8110, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006860", - "question_id": 8115, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006184", - "question_id": 8118, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004990", - "question_id": 8120, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000138", - "question_id": 8132, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003037", - "question_id": 8137, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006854", - "question_id": 8139, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"congas\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007527", - "question_id": 8153, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005910", - "question_id": 8154, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001227", - "question_id": 8156, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003973", - "question_id": 8163, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001746", - "question_id": 8176, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002199", - "question_id": 8180, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004357", - "question_id": 8184, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003567", - "question_id": 8189, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004750", - "question_id": 8192, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003393", - "question_id": 8197, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003017", - "question_id": 8198, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005866", - "question_id": 8200, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000033", - "question_id": 8205, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001275", - "question_id": 8213, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005916", - "question_id": 8218, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002095", - "question_id": 8220, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001737", - "question_id": 8221, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000856", - "question_id": 8224, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004092", - "question_id": 8234, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002015", - "question_id": 8237, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00004994", - "question_id": 8238, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008474", - "question_id": 8242, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006407", - "question_id": 8245, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006123", - "question_id": 8251, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007883", - "question_id": 8254, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000628", - "question_id": 8260, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003185", - "question_id": 8270, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00006132", - "question_id": 8279, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007365", - "question_id": 8283, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004981", - "question_id": 8284, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"electric_bass\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008386", - "question_id": 8294, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000618", - "question_id": 8304, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00004992", - "question_id": 8307, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005703", - "question_id": 8315, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006546", - "question_id": 8331, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004934", - "question_id": 8335, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00004897", - "question_id": 8345, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005845", - "question_id": 8347, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00000275", - "question_id": 8356, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008190", - "question_id": 8357, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007874", - "question_id": 8359, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002761", - "question_id": 8360, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001125", - "question_id": 8361, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00001863", - "question_id": 8364, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007459", - "question_id": 8371, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00005790", - "question_id": 8376, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003687", - "question_id": 8378, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000502", - "question_id": 8381, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006955", - "question_id": 8384, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000928", - "question_id": 8398, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002920", - "question_id": 8400, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00005711", - "question_id": 8401, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"xylophone\", \"right\", \"xylophone\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001885", - "question_id": 8402, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"drum\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003851", - "question_id": 8419, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007712", - "question_id": 8428, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008186", - "question_id": 8433, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "eight" -}, { - "video_id": "00005591", - "question_id": 8434, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006840", - "question_id": 8435, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008891", - "question_id": 8436, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003191", - "question_id": 8438, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00002941", - "question_id": 8440, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00007130", - "question_id": 8441, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005986", - "question_id": 8448, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00007375", - "question_id": 8455, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000207", - "question_id": 8462, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002883", - "question_id": 8466, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000941", - "question_id": 8467, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000637", - "question_id": 8470, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001931", - "question_id": 8478, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003491", - "question_id": 8487, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002524", - "question_id": 8490, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005281", - "question_id": 8492, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003667", - "question_id": 8498, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008172", - "question_id": 8500, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002493", - "question_id": 8502, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002725", - "question_id": 8505, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006250", - "question_id": 8523, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000943", - "question_id": 8526, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006678", - "question_id": 8527, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003106", - "question_id": 8531, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006194", - "question_id": 8534, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008680", - "question_id": 8535, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000290", - "question_id": 8547, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005066", - "question_id": 8563, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002517", - "question_id": 8571, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002443", - "question_id": 8578, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"trumpet\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000559", - "question_id": 8586, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003634", - "question_id": 8587, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007836", - "question_id": 8591, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"fourth\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00001973", - "question_id": 8604, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007402", - "question_id": 8607, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003847", - "question_id": 8618, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004784", - "question_id": 8623, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001524", - "question_id": 8624, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00008020", - "question_id": 8625, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003230", - "question_id": 8628, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000662", - "question_id": 8630, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007457", - "question_id": 8637, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003964", - "question_id": 8642, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001387", - "question_id": 8648, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004711", - "question_id": 8649, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007567", - "question_id": 8653, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003881", - "question_id": 8656, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003014", - "question_id": 8669, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004860", - "question_id": 8671, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007238", - "question_id": 8673, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004388", - "question_id": 8675, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001623", - "question_id": 8676, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008112", - "question_id": 8688, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000309", - "question_id": 8698, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00001648", - "question_id": 8699, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00000705", - "question_id": 8709, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00000936", - "question_id": 8711, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000787", - "question_id": 8712, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006757", - "question_id": 8713, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000378", - "question_id": 8714, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007762", - "question_id": 8715, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002658", - "question_id": 8716, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005762", - "question_id": 8718, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003733", - "question_id": 8726, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003733", - "question_id": 8730, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007062", - "question_id": 8733, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008685", - "question_id": 8734, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001172", - "question_id": 8739, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005254", - "question_id": 8741, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003599", - "question_id": 8748, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001682", - "question_id": 8749, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002843", - "question_id": 8756, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004506", - "question_id": 8762, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00000462", - "question_id": 8765, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006948", - "question_id": 8772, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002528", - "question_id": 8785, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001596", - "question_id": 8792, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007990", - "question_id": 8793, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006693", - "question_id": 8794, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003534", - "question_id": 8799, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007480", - "question_id": 8802, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005188", - "question_id": 8811, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006704", - "question_id": 8812, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00001055", - "question_id": 8813, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00001361", - "question_id": 8815, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006928", - "question_id": 8820, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007615", - "question_id": 8823, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00008562", - "question_id": 8829, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006333", - "question_id": 8833, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00001491", - "question_id": 8836, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005294", - "question_id": 8842, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008241", - "question_id": 8856, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002901", - "question_id": 8877, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001861", - "question_id": 8880, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00007260", - "question_id": 8883, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000631", - "question_id": 8889, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000222", - "question_id": 8900, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000222", - "question_id": 8900, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008370", - "question_id": 8906, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003190", - "question_id": 8911, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004397", - "question_id": 8920, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003274", - "question_id": 8926, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003424", - "question_id": 8928, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005487", - "question_id": 8929, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003865", - "question_id": 8932, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005582", - "question_id": 8940, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004737", - "question_id": 8943, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004085", - "question_id": 8957, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004738", - "question_id": 8964, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005017", - "question_id": 8972, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001085", - "question_id": 8978, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008714", - "question_id": 8979, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00005163", - "question_id": 8985, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"fourth\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002857", - "question_id": 8986, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004782", - "question_id": 8989, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005774", - "question_id": 8997, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008294", - "question_id": 8998, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008712", - "question_id": 9001, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000346", - "question_id": 9009, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"xylophone\", \"middle\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006760", - "question_id": 9011, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007492", - "question_id": 9013, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005618", - "question_id": 9018, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003877", - "question_id": 9022, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005901", - "question_id": 9023, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007938", - "question_id": 9028, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004089", - "question_id": 9029, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002438", - "question_id": 9031, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003714", - "question_id": 9032, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"drum\", \"left\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001588", - "question_id": 9034, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008326", - "question_id": 9037, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003119", - "question_id": 9048, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00001711", - "question_id": 9065, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004698", - "question_id": 9075, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000818", - "question_id": 9081, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004839", - "question_id": 9089, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008621", - "question_id": 9095, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001015", - "question_id": 9098, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005392", - "question_id": 9105, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003389", - "question_id": 9107, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000759", - "question_id": 9120, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00001891", - "question_id": 9123, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006676", - "question_id": 9126, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004361", - "question_id": 9128, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001139", - "question_id": 9135, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00002280", - "question_id": 9138, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006695", - "question_id": 9143, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"fifth\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007837", - "question_id": 9147, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003892", - "question_id": 9152, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005072", - "question_id": 9155, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003519", - "question_id": 9162, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002684", - "question_id": 9165, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006275", - "question_id": 9167, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005309", - "question_id": 9176, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003169", - "question_id": 9186, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004427", - "question_id": 9189, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004744", - "question_id": 9192, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006839", - "question_id": 9202, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008800", - "question_id": 9204, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002739", - "question_id": 9208, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006572", - "question_id": 9217, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005940", - "question_id": 9218, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00000783", - "question_id": 9219, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006804", - "question_id": 9223, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006816", - "question_id": 9237, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008613", - "question_id": 9238, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002041", - "question_id": 9247, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003710", - "question_id": 9250, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006656", - "question_id": 9254, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004768", - "question_id": 9265, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000675", - "question_id": 9273, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008310", - "question_id": 9275, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004678", - "question_id": 9283, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000425", - "question_id": 9284, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008356", - "question_id": 9287, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004496", - "question_id": 9293, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005962", - "question_id": 9296, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004652", - "question_id": 9304, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000208", - "question_id": 9313, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003111", - "question_id": 9314, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00008856", - "question_id": 9315, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005905", - "question_id": 9316, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005562", - "question_id": 9317, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00007471", - "question_id": 9323, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001874", - "question_id": 9325, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004740", - "question_id": 9329, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001092", - "question_id": 9333, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004816", - "question_id": 9346, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006994", - "question_id": 9350, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002967", - "question_id": 9351, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003188", - "question_id": 9361, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000281", - "question_id": 9362, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003066", - "question_id": 9363, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005456", - "question_id": 9364, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000895", - "question_id": 9365, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006708", - "question_id": 9368, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007792", - "question_id": 9370, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"cello\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00007501", - "question_id": 9380, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002971", - "question_id": 9382, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006584", - "question_id": 9386, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"banjo\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003029", - "question_id": 9391, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007989", - "question_id": 9397, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005435", - "question_id": 9399, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00006743", - "question_id": 9402, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00007291", - "question_id": 9409, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005992", - "question_id": 9412, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002947", - "question_id": 9420, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008366", - "question_id": 9422, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001573", - "question_id": 9423, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004699", - "question_id": 9434, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007740", - "question_id": 9441, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001930", - "question_id": 9445, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003499", - "question_id": 9446, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00004192", - "question_id": 9459, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000054", - "question_id": 9464, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004079", - "question_id": 9465, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000432", - "question_id": 9468, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003000", - "question_id": 9470, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002419", - "question_id": 9472, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005300", - "question_id": 9480, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001476", - "question_id": 9483, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004806", - "question_id": 9484, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008251", - "question_id": 9487, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004600", - "question_id": 9491, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008506", - "question_id": 9494, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003308", - "question_id": 9496, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005268", - "question_id": 9498, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005502", - "question_id": 9505, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005742", - "question_id": 9506, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008873", - "question_id": 9508, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002413", - "question_id": 9509, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007517", - "question_id": 9513, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001725", - "question_id": 9514, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000004", - "question_id": 9519, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002143", - "question_id": 9520, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005253", - "question_id": 9524, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004006", - "question_id": 9525, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002186", - "question_id": 9532, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004572", - "question_id": 9536, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007652", - "question_id": 9551, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003730", - "question_id": 9553, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005500", - "question_id": 9566, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005392", - "question_id": 9569, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004890", - "question_id": 9576, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003528", - "question_id": 9579, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003469", - "question_id": 9582, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001758", - "question_id": 9583, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007280", - "question_id": 9593, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006270", - "question_id": 9596, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008090", - "question_id": 9598, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003418", - "question_id": 9603, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008514", - "question_id": 9608, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006727", - "question_id": 9618, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002950", - "question_id": 9621, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007857", - "question_id": 9624, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005866", - "question_id": 9626, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005898", - "question_id": 9627, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007579", - "question_id": 9628, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005082", - "question_id": 9629, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005743", - "question_id": 9643, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001555", - "question_id": 9644, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003714", - "question_id": 9648, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002601", - "question_id": 9649, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00004317", - "question_id": 9664, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004973", - "question_id": 9666, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005751", - "question_id": 9670, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008058", - "question_id": 9680, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00001240", - "question_id": 9682, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001516", - "question_id": 9686, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002071", - "question_id": 9697, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001070", - "question_id": 9698, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008766", - "question_id": 9699, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008730", - "question_id": 9701, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002506", - "question_id": 9709, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005652", - "question_id": 9713, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007360", - "question_id": 9715, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005822", - "question_id": 9717, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004815", - "question_id": 9722, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004350", - "question_id": 9728, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000797", - "question_id": 9741, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005962", - "question_id": 9742, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00004679", - "question_id": 9755, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"trumpet\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008799", - "question_id": 9762, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001532", - "question_id": 9776, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005132", - "question_id": 9779, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002575", - "question_id": 9786, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004424", - "question_id": 9790, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000385", - "question_id": 9792, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001021", - "question_id": 9807, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007660", - "question_id": 9810, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008373", - "question_id": 9811, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002389", - "question_id": 9821, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001159", - "question_id": 9822, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00001778", - "question_id": 9826, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005158", - "question_id": 9827, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006315", - "question_id": 9828, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000898", - "question_id": 9833, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007071", - "question_id": 9834, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001907", - "question_id": 9838, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007773", - "question_id": 9839, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002550", - "question_id": 9847, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008635", - "question_id": 9854, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006349", - "question_id": 9856, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008474", - "question_id": 9859, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006331", - "question_id": 9862, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004970", - "question_id": 9867, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001629", - "question_id": 9868, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007811", - "question_id": 9871, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00002671", - "question_id": 9879, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006670", - "question_id": 9882, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002027", - "question_id": 9892, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007409", - "question_id": 9896, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004529", - "question_id": 9914, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004133", - "question_id": 9919, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00003772", - "question_id": 9926, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008718", - "question_id": 9930, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007908", - "question_id": 9932, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007273", - "question_id": 9935, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003599", - "question_id": 9939, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005357", - "question_id": 9944, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002313", - "question_id": 9953, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006280", - "question_id": 9961, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002298", - "question_id": 9966, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00004695", - "question_id": 9975, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002321", - "question_id": 9990, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003997", - "question_id": 10004, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"erhu\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001758", - "question_id": 10018, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001101", - "question_id": 10023, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003432", - "question_id": 10027, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000285", - "question_id": 10034, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005246", - "question_id": 10043, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006997", - "question_id": 10050, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00005517", - "question_id": 10057, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005008", - "question_id": 10061, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006537", - "question_id": 10083, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007551", - "question_id": 10109, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003784", - "question_id": 10113, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001654", - "question_id": 10123, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00005546", - "question_id": 10125, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00003436", - "question_id": 10126, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008185", - "question_id": 10128, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002434", - "question_id": 10140, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001248", - "question_id": 10141, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008449", - "question_id": 10143, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003776", - "question_id": 10158, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000542", - "question_id": 10167, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006253", - "question_id": 10173, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007722", - "question_id": 10174, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007656", - "question_id": 10180, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005702", - "question_id": 10181, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001744", - "question_id": 10183, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003657", - "question_id": 10198, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001333", - "question_id": 10199, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003436", - "question_id": 10207, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000126", - "question_id": 10211, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005665", - "question_id": 10217, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008261", - "question_id": 10219, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000759", - "question_id": 10236, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008301", - "question_id": 10239, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007671", - "question_id": 10248, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008220", - "question_id": 10249, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00007857", - "question_id": 10265, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003544", - "question_id": 10267, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001222", - "question_id": 10270, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001184", - "question_id": 10280, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006355", - "question_id": 10286, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007955", - "question_id": 10291, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001036", - "question_id": 10297, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007700", - "question_id": 10299, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002316", - "question_id": 10309, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000571", - "question_id": 10318, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002376", - "question_id": 10322, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007499", - "question_id": 10347, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007499", - "question_id": 10347, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005236", - "question_id": 10360, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005034", - "question_id": 10363, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001999", - "question_id": 10373, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002952", - "question_id": 10375, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00002155", - "question_id": 10384, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007198", - "question_id": 10385, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004940", - "question_id": 10391, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002409", - "question_id": 10404, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007528", - "question_id": 10406, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00003325", - "question_id": 10408, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002648", - "question_id": 10423, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00007418", - "question_id": 10434, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008397", - "question_id": 10441, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000512", - "question_id": 10446, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007958", - "question_id": 10457, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006004", - "question_id": 10464, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001728", - "question_id": 10475, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004062", - "question_id": 10488, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005256", - "question_id": 10494, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00007290", - "question_id": 10498, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006408", - "question_id": 10503, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004403", - "question_id": 10508, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004552", - "question_id": 10534, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008820", - "question_id": 10538, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008944", - "question_id": 10544, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008257", - "question_id": 10546, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000592", - "question_id": 10559, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000662", - "question_id": 10560, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001175", - "question_id": 10561, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002926", - "question_id": 10562, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006796", - "question_id": 10567, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005492", - "question_id": 10581, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003999", - "question_id": 10584, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005732", - "question_id": 10587, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002959", - "question_id": 10617, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002091", - "question_id": 10620, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002228", - "question_id": 10621, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000017", - "question_id": 10624, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000352", - "question_id": 10627, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00006617", - "question_id": 10629, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006132", - "question_id": 10633, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005067", - "question_id": 10638, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004942", - "question_id": 10643, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00003875", - "question_id": 10644, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00000115", - "question_id": 10649, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00007131", - "question_id": 10653, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007969", - "question_id": 10654, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002168", - "question_id": 10660, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008629", - "question_id": 10662, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00007752", - "question_id": 10666, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005145", - "question_id": 10667, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004790", - "question_id": 10677, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003032", - "question_id": 10683, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007387", - "question_id": 10690, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001335", - "question_id": 10702, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005893", - "question_id": 10712, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005367", - "question_id": 10722, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004678", - "question_id": 10728, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"middle\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003129", - "question_id": 10732, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007615", - "question_id": 10738, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001489", - "question_id": 10740, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00002684", - "question_id": 10749, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004933", - "question_id": 10759, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005582", - "question_id": 10760, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00004876", - "question_id": 10764, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003030", - "question_id": 10769, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002552", - "question_id": 10774, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004206", - "question_id": 10785, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001117", - "question_id": 10787, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001164", - "question_id": 10788, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001935", - "question_id": 10789, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005562", - "question_id": 10811, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00003304", - "question_id": 10816, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007537", - "question_id": 10825, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000778", - "question_id": 10834, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006265", - "question_id": 10837, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008069", - "question_id": 10846, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00006359", - "question_id": 10855, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007547", - "question_id": 10857, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002076", - "question_id": 10861, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006287", - "question_id": 10865, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002353", - "question_id": 10873, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003275", - "question_id": 10875, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002839", - "question_id": 10878, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000041", - "question_id": 10882, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005170", - "question_id": 10889, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"right\", \"trumpet\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000890", - "question_id": 10892, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002427", - "question_id": 10897, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006066", - "question_id": 10902, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00006369", - "question_id": 10912, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000767", - "question_id": 10925, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"banjo\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004527", - "question_id": 10928, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005442", - "question_id": 10932, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001112", - "question_id": 10944, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008231", - "question_id": 10946, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00008150", - "question_id": 10947, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005531", - "question_id": 10961, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004986", - "question_id": 10972, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002997", - "question_id": 10974, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007320", - "question_id": 10976, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001193", - "question_id": 10978, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006072", - "question_id": 10981, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003058", - "question_id": 10997, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004416", - "question_id": 11011, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003060", - "question_id": 11020, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006212", - "question_id": 11025, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007025", - "question_id": 11031, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007510", - "question_id": 11034, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004631", - "question_id": 11036, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002730", - "question_id": 11040, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003025", - "question_id": 11042, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003045", - "question_id": 11056, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00006075", - "question_id": 11058, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000656", - "question_id": 11066, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00004803", - "question_id": 11071, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006735", - "question_id": 11073, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003380", - "question_id": 11077, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007078", - "question_id": 11093, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007269", - "question_id": 11111, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"middle\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003007", - "question_id": 11112, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004834", - "question_id": 11115, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003000", - "question_id": 11116, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008894", - "question_id": 11117, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003225", - "question_id": 11122, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00002866", - "question_id": 11136, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001193", - "question_id": 11139, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001028", - "question_id": 11142, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006256", - "question_id": 11144, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007099", - "question_id": 11153, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007923", - "question_id": 11156, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006406", - "question_id": 11165, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003679", - "question_id": 11167, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003175", - "question_id": 11169, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003496", - "question_id": 11171, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004445", - "question_id": 11182, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000005", - "question_id": 11188, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"drum\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008181", - "question_id": 11198, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005049", - "question_id": 11210, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003146", - "question_id": 11211, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006175", - "question_id": 11212, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003002", - "question_id": 11213, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004124", - "question_id": 11215, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001462", - "question_id": 11217, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"xylophone\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002938", - "question_id": 11220, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006478", - "question_id": 11227, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001274", - "question_id": 11229, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005156", - "question_id": 11232, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004270", - "question_id": 11242, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006516", - "question_id": 11244, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007927", - "question_id": 11262, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005992", - "question_id": 11264, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006516", - "question_id": 11266, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005629", - "question_id": 11270, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"drum\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003939", - "question_id": 11271, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008702", - "question_id": 11283, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006989", - "question_id": 11289, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000411", - "question_id": 11293, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000043", - "question_id": 11297, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007945", - "question_id": 11302, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003175", - "question_id": 11308, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008840", - "question_id": 11311, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00004503", - "question_id": 11321, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005960", - "question_id": 11327, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001833", - "question_id": 11330, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003829", - "question_id": 11339, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002612", - "question_id": 11342, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002855", - "question_id": 11349, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00007824", - "question_id": 11352, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002791", - "question_id": 11354, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001488", - "question_id": 11365, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008779", - "question_id": 11377, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000143", - "question_id": 11380, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00008472", - "question_id": 11397, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006612", - "question_id": 11406, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008730", - "question_id": 11409, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002005", - "question_id": 11417, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001064", - "question_id": 11418, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"violin\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008774", - "question_id": 11422, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005557", - "question_id": 11427, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005813", - "question_id": 11432, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002823", - "question_id": 11436, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007731", - "question_id": 11438, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000835", - "question_id": 11448, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"piano\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005082", - "question_id": 11455, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"middle\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003493", - "question_id": 11460, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000159", - "question_id": 11476, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001101", - "question_id": 11478, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bagpipe\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001808", - "question_id": 11492, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008214", - "question_id": 11493, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002035", - "question_id": 11506, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007263", - "question_id": 11517, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004495", - "question_id": 11518, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008040", - "question_id": 11523, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000947", - "question_id": 11524, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004662", - "question_id": 11526, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"electric_bass\", \"left\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001846", - "question_id": 11527, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007706", - "question_id": 11537, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004388", - "question_id": 11547, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008748", - "question_id": 11552, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008753", - "question_id": 11553, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003203", - "question_id": 11586, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006243", - "question_id": 11588, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002925", - "question_id": 11590, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00004852", - "question_id": 11601, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001781", - "question_id": 11603, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003835", - "question_id": 11612, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008333", - "question_id": 11618, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005610", - "question_id": 11622, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007883", - "question_id": 11635, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000376", - "question_id": 11637, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001581", - "question_id": 11640, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00005629", - "question_id": 11646, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005857", - "question_id": 11651, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008123", - "question_id": 11656, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004243", - "question_id": 11673, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007370", - "question_id": 11678, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005188", - "question_id": 11681, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008152", - "question_id": 11688, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004795", - "question_id": 11691, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003569", - "question_id": 11694, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008842", - "question_id": 11696, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004193", - "question_id": 11704, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002917", - "question_id": 11709, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005697", - "question_id": 11710, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003373", - "question_id": 11712, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003411", - "question_id": 11714, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00007346", - "question_id": 11720, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001968", - "question_id": 11721, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007304", - "question_id": 11737, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001067", - "question_id": 11743, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006129", - "question_id": 11755, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004102", - "question_id": 11763, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bagpipe\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004643", - "question_id": 11772, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004653", - "question_id": 11774, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002595", - "question_id": 11775, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001501", - "question_id": 11778, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002230", - "question_id": 11784, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003630", - "question_id": 11787, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008942", - "question_id": 11789, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005820", - "question_id": 11790, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000427", - "question_id": 11791, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006011", - "question_id": 11795, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007461", - "question_id": 11807, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006485", - "question_id": 11809, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003489", - "question_id": 11812, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006147", - "question_id": 11815, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006812", - "question_id": 11820, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008664", - "question_id": 11824, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007572", - "question_id": 11825, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004556", - "question_id": 11829, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001113", - "question_id": 11842, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003752", - "question_id": 11843, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006394", - "question_id": 11848, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00008124", - "question_id": 11854, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008443", - "question_id": 11855, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006532", - "question_id": 11858, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004209", - "question_id": 11861, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003413", - "question_id": 11864, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001904", - "question_id": 11867, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006057", - "question_id": 11882, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003291", - "question_id": 11901, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005893", - "question_id": 11902, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002962", - "question_id": 11906, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003462", - "question_id": 11912, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004560", - "question_id": 11913, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00006176", - "question_id": 11914, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00001919", - "question_id": 11916, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001736", - "question_id": 11924, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00003015", - "question_id": 11930, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000908", - "question_id": 11931, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002608", - "question_id": 11932, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005542", - "question_id": 11933, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008272", - "question_id": 11936, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002821", - "question_id": 11938, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"electric_bass\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006171", - "question_id": 11939, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"banjo\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006536", - "question_id": 11940, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002861", - "question_id": 11943, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002171", - "question_id": 11949, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003921", - "question_id": 11958, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003954", - "question_id": 11963, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003693", - "question_id": 11977, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005274", - "question_id": 11978, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004554", - "question_id": 11981, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001968", - "question_id": 11986, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001503", - "question_id": 11999, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007934", - "question_id": 12001, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001350", - "question_id": 12004, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002812", - "question_id": 12010, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005702", - "question_id": 12013, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006386", - "question_id": 12016, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001291", - "question_id": 12017, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008692", - "question_id": 12021, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006163", - "question_id": 12023, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004253", - "question_id": 12027, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007436", - "question_id": 12044, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00002621", - "question_id": 12050, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006106", - "question_id": 12051, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002781", - "question_id": 12052, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"bassoon\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005951", - "question_id": 12059, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006596", - "question_id": 12069, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008816", - "question_id": 12073, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005515", - "question_id": 12075, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000324", - "question_id": 12080, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008655", - "question_id": 12084, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001202", - "question_id": 12089, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001312", - "question_id": 12090, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000230", - "question_id": 12100, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000230", - "question_id": 12100, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005159", - "question_id": 12105, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002655", - "question_id": 12121, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005546", - "question_id": 12123, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006175", - "question_id": 12137, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002775", - "question_id": 12150, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001834", - "question_id": 12152, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00001981", - "question_id": 12155, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008664", - "question_id": 12163, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000743", - "question_id": 12171, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005198", - "question_id": 12172, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000405", - "question_id": 12173, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000023", - "question_id": 12177, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002672", - "question_id": 12180, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008069", - "question_id": 12214, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00006835", - "question_id": 12217, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005582", - "question_id": 12219, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006576", - "question_id": 12221, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005366", - "question_id": 12223, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001393", - "question_id": 12224, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006098", - "question_id": 12226, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000439", - "question_id": 12234, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005416", - "question_id": 12236, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006411", - "question_id": 12241, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006131", - "question_id": 12243, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006022", - "question_id": 12249, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00008152", - "question_id": 12253, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000923", - "question_id": 12254, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006147", - "question_id": 12256, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002341", - "question_id": 12258, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002341", - "question_id": 12258, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000260", - "question_id": 12259, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001401", - "question_id": 12290, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00003116", - "question_id": 12294, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000416", - "question_id": 12297, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005287", - "question_id": 12301, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004424", - "question_id": 12315, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00000297", - "question_id": 12319, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007456", - "question_id": 12325, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008952", - "question_id": 12327, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006876", - "question_id": 12330, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006161", - "question_id": 12332, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008100", - "question_id": 12333, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007195", - "question_id": 12334, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001348", - "question_id": 12337, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000863", - "question_id": 12338, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000174", - "question_id": 12339, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002476", - "question_id": 12345, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00003788", - "question_id": 12346, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004718", - "question_id": 12354, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00007109", - "question_id": 12360, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001806", - "question_id": 12363, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001806", - "question_id": 12363, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001637", - "question_id": 12367, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008405", - "question_id": 12370, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004838", - "question_id": 12371, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002892", - "question_id": 12387, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008131", - "question_id": 12390, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003939", - "question_id": 12392, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00001090", - "question_id": 12395, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004874", - "question_id": 12401, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00001029", - "question_id": 12410, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005014", - "question_id": 12411, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005704", - "question_id": 12413, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002501", - "question_id": 12419, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007452", - "question_id": 12437, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003520", - "question_id": 12440, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005262", - "question_id": 12444, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007954", - "question_id": 12448, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005864", - "question_id": 12453, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007119", - "question_id": 12462, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002716", - "question_id": 12466, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000669", - "question_id": 12467, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005588", - "question_id": 12468, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"right\", \"erhu\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004112", - "question_id": 12469, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003573", - "question_id": 12470, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003739", - "question_id": 12476, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006851", - "question_id": 12483, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000458", - "question_id": 12488, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006831", - "question_id": 12491, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008439", - "question_id": 12502, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002054", - "question_id": 12513, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003348", - "question_id": 12515, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002188", - "question_id": 12517, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002710", - "question_id": 12522, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002327", - "question_id": 12525, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"middle\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008814", - "question_id": 12532, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001358", - "question_id": 12541, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006723", - "question_id": 12547, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00003994", - "question_id": 12550, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001237", - "question_id": 12554, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001219", - "question_id": 12555, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004723", - "question_id": 12563, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006777", - "question_id": 12568, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002542", - "question_id": 12569, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002762", - "question_id": 12572, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000993", - "question_id": 12574, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001587", - "question_id": 12581, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008487", - "question_id": 12587, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00006342", - "question_id": 12588, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00001467", - "question_id": 12594, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003562", - "question_id": 12596, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004780", - "question_id": 12610, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003699", - "question_id": 12617, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004298", - "question_id": 12622, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006345", - "question_id": 12625, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007488", - "question_id": 12627, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00003124", - "question_id": 12635, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002362", - "question_id": 12638, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002523", - "question_id": 12645, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001085", - "question_id": 12650, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008142", - "question_id": 12651, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00001848", - "question_id": 12652, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005811", - "question_id": 12659, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006471", - "question_id": 12665, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001064", - "question_id": 12668, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"drum\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002090", - "question_id": 12669, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002314", - "question_id": 12677, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002721", - "question_id": 12682, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000304", - "question_id": 12684, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004562", - "question_id": 12691, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008545", - "question_id": 12695, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008007", - "question_id": 12696, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005636", - "question_id": 12705, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006202", - "question_id": 12712, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008496", - "question_id": 12713, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005045", - "question_id": 12716, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008460", - "question_id": 12717, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001792", - "question_id": 12718, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006065", - "question_id": 12720, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008511", - "question_id": 12727, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005559", - "question_id": 12731, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004535", - "question_id": 12732, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005601", - "question_id": 12753, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005844", - "question_id": 12757, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002803", - "question_id": 12760, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003991", - "question_id": 12761, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003111", - "question_id": 12778, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002601", - "question_id": 12784, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000464", - "question_id": 12786, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006444", - "question_id": 12794, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005404", - "question_id": 12797, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000597", - "question_id": 12826, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00006619", - "question_id": 12833, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005324", - "question_id": 12838, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004821", - "question_id": 12844, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002512", - "question_id": 12847, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001406", - "question_id": 12848, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002726", - "question_id": 12849, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004855", - "question_id": 12857, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008878", - "question_id": 12860, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002985", - "question_id": 12871, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003374", - "question_id": 12874, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001790", - "question_id": 12875, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007611", - "question_id": 12884, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007052", - "question_id": 12888, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007936", - "question_id": 12891, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007608", - "question_id": 12894, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008647", - "question_id": 12895, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002362", - "question_id": 12896, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007960", - "question_id": 12902, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008644", - "question_id": 12904, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000740", - "question_id": 12909, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008591", - "question_id": 12910, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00005651", - "question_id": 12911, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006346", - "question_id": 12912, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007198", - "question_id": 12915, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000201", - "question_id": 12920, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000280", - "question_id": 12942, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007881", - "question_id": 12947, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008261", - "question_id": 12951, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004173", - "question_id": 12952, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001773", - "question_id": 12955, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008307", - "question_id": 12960, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007047", - "question_id": 12962, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005876", - "question_id": 12965, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004272", - "question_id": 12966, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004761", - "question_id": 12970, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003864", - "question_id": 12977, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003837", - "question_id": 12980, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007720", - "question_id": 12988, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004691", - "question_id": 12991, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005726", - "question_id": 12998, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003408", - "question_id": 13001, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006668", - "question_id": 13003, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00000377", - "question_id": 13005, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005860", - "question_id": 13006, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001654", - "question_id": 13011, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00001234", - "question_id": 13014, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008836", - "question_id": 13018, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006149", - "question_id": 13027, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003266", - "question_id": 13028, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002795", - "question_id": 13030, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008919", - "question_id": 13032, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007447", - "question_id": 13034, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"congas\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005232", - "question_id": 13040, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007674", - "question_id": 13045, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006581", - "question_id": 13051, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003694", - "question_id": 13053, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002448", - "question_id": 13056, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000725", - "question_id": 13065, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008258", - "question_id": 13068, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005268", - "question_id": 13070, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001798", - "question_id": 13074, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006087", - "question_id": 13079, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004206", - "question_id": 13082, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001841", - "question_id": 13085, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000519", - "question_id": 13087, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003908", - "question_id": 13089, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006135", - "question_id": 13090, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004802", - "question_id": 13093, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006874", - "question_id": 13096, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00001573", - "question_id": 13097, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001632", - "question_id": 13098, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007912", - "question_id": 13099, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00001787", - "question_id": 13101, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00003355", - "question_id": 13108, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001861", - "question_id": 13110, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00005771", - "question_id": 13113, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00007188", - "question_id": 13126, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001916", - "question_id": 13129, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001462", - "question_id": 13133, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000949", - "question_id": 13138, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007698", - "question_id": 13142, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00001316", - "question_id": 13143, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006408", - "question_id": 13144, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007550", - "question_id": 13145, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004477", - "question_id": 13154, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003260", - "question_id": 13158, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003314", - "question_id": 13159, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002364", - "question_id": 13160, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001547", - "question_id": 13163, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002534", - "question_id": 13167, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005486", - "question_id": 13169, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000164", - "question_id": 13170, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004532", - "question_id": 13177, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001111", - "question_id": 13179, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000186", - "question_id": 13181, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001959", - "question_id": 13192, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006842", - "question_id": 13194, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008865", - "question_id": 13195, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005297", - "question_id": 13198, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007805", - "question_id": 13206, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00007035", - "question_id": 13211, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004998", - "question_id": 13216, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003541", - "question_id": 13238, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00006890", - "question_id": 13241, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000576", - "question_id": 13245, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000065", - "question_id": 13251, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"saxophone\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00003438", - "question_id": 13256, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001708", - "question_id": 13258, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002119", - "question_id": 13260, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001181", - "question_id": 13269, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007002", - "question_id": 13271, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00003676", - "question_id": 13277, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002566", - "question_id": 13280, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005748", - "question_id": 13283, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008945", - "question_id": 13290, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00005389", - "question_id": 13293, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008910", - "question_id": 13298, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007120", - "question_id": 13303, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005196", - "question_id": 13309, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004177", - "question_id": 13312, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00006374", - "question_id": 13313, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003954", - "question_id": 13314, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00001501", - "question_id": 13321, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004160", - "question_id": 13324, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003698", - "question_id": 13333, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000735", - "question_id": 13336, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003628", - "question_id": 13337, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003885", - "question_id": 13340, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00005653", - "question_id": 13342, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003650", - "question_id": 13347, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005323", - "question_id": 13355, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001524", - "question_id": 13364, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006320", - "question_id": 13370, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007038", - "question_id": 13380, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007038", - "question_id": 13380, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004164", - "question_id": 13389, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006282", - "question_id": 13396, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000098", - "question_id": 13400, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00002754", - "question_id": 13401, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007076", - "question_id": 13405, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "eight" -}, { - "video_id": "00001809", - "question_id": 13406, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00002512", - "question_id": 13413, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007477", - "question_id": 13417, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000431", - "question_id": 13418, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005695", - "question_id": 13422, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002962", - "question_id": 13426, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00008480", - "question_id": 13440, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003471", - "question_id": 13441, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"saxophone\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00008697", - "question_id": 13445, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000986", - "question_id": 13456, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001793", - "question_id": 13464, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005214", - "question_id": 13471, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002233", - "question_id": 13476, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001685", - "question_id": 13481, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003416", - "question_id": 13495, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00008627", - "question_id": 13498, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004670", - "question_id": 13502, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003876", - "question_id": 13510, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001025", - "question_id": 13511, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00007568", - "question_id": 13513, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00001472", - "question_id": 13515, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005613", - "question_id": 13525, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008175", - "question_id": 13531, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000232", - "question_id": 13539, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007923", - "question_id": 13550, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008322", - "question_id": 13564, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001697", - "question_id": 13565, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bagpipe\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007473", - "question_id": 13575, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00000885", - "question_id": 13577, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000751", - "question_id": 13578, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007173", - "question_id": 13589, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004904", - "question_id": 13592, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "seven" -}, { - "video_id": "00005966", - "question_id": 13593, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008220", - "question_id": 13596, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007355", - "question_id": 13598, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004085", - "question_id": 13603, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005840", - "question_id": 13604, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002380", - "question_id": 13609, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007014", - "question_id": 13610, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007281", - "question_id": 13618, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006499", - "question_id": 13619, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002473", - "question_id": 13620, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000060", - "question_id": 13630, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008148", - "question_id": 13633, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008337", - "question_id": 13636, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001901", - "question_id": 13639, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008225", - "question_id": 13650, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004579", - "question_id": 13653, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005142", - "question_id": 13655, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000717", - "question_id": 13661, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007113", - "question_id": 13664, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006258", - "question_id": 13669, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004972", - "question_id": 13672, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002868", - "question_id": 13678, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000989", - "question_id": 13684, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008308", - "question_id": 13685, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008236", - "question_id": 13691, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00001197", - "question_id": 13695, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006429", - "question_id": 13696, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001027", - "question_id": 13702, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006313", - "question_id": 13710, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00008273", - "question_id": 13715, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008196", - "question_id": 13718, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00005195", - "question_id": 13738, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00008724", - "question_id": 13739, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004925", - "question_id": 13740, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008974", - "question_id": 13741, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00006488", - "question_id": 13742, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008548", - "question_id": 13748, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007961", - "question_id": 13749, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001506", - "question_id": 13752, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003018", - "question_id": 13758, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005007", - "question_id": 13760, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007384", - "question_id": 13766, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003420", - "question_id": 13773, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003818", - "question_id": 13777, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000186", - "question_id": 13781, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002745", - "question_id": 13784, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004823", - "question_id": 13799, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000619", - "question_id": 13816, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002417", - "question_id": 13838, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002635", - "question_id": 13841, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006623", - "question_id": 13848, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00002248", - "question_id": 13859, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002463", - "question_id": 13874, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003733", - "question_id": 13876, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"xylophone\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000398", - "question_id": 13881, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001826", - "question_id": 13907, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004151", - "question_id": 13913, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008422", - "question_id": 13919, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001453", - "question_id": 13922, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005955", - "question_id": 13929, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003206", - "question_id": 13930, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000235", - "question_id": 13937, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008415", - "question_id": 13953, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007764", - "question_id": 13957, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00008931", - "question_id": 13964, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00003573", - "question_id": 13967, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007013", - "question_id": 13974, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008339", - "question_id": 13976, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000909", - "question_id": 13977, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003167", - "question_id": 13981, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008334", - "question_id": 13992, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001132", - "question_id": 13994, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001988", - "question_id": 13996, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00002467", - "question_id": 14003, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006681", - "question_id": 14006, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001752", - "question_id": 14010, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002351", - "question_id": 14012, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000339", - "question_id": 14028, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003559", - "question_id": 14029, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003628", - "question_id": 14032, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001642", - "question_id": 14033, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002927", - "question_id": 14042, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002054", - "question_id": 14046, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007360", - "question_id": 14048, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007868", - "question_id": 14049, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008186", - "question_id": 14051, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001354", - "question_id": 14052, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000923", - "question_id": 14054, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00003013", - "question_id": 14056, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007090", - "question_id": 14061, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007090", - "question_id": 14061, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001497", - "question_id": 14064, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003475", - "question_id": 14076, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003178", - "question_id": 14077, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003846", - "question_id": 14078, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003540", - "question_id": 14081, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00005414", - "question_id": 14083, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003352", - "question_id": 14084, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007244", - "question_id": 14091, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004550", - "question_id": 14101, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006265", - "question_id": 14102, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000548", - "question_id": 14109, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00008610", - "question_id": 14110, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00000809", - "question_id": 14118, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007981", - "question_id": 14131, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002051", - "question_id": 14136, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002178", - "question_id": 14137, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000843", - "question_id": 14144, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001656", - "question_id": 14147, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006101", - "question_id": 14149, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00006934", - "question_id": 14152, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"electric_bass\", \"left\", \"drum\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005185", - "question_id": 14154, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007230", - "question_id": 14157, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006452", - "question_id": 14169, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001334", - "question_id": 14175, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00003397", - "question_id": 14183, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005051", - "question_id": 14185, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006470", - "question_id": 14186, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003512", - "question_id": 14190, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005428", - "question_id": 14198, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005392", - "question_id": 14199, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005809", - "question_id": 14205, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006052", - "question_id": 14210, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007998", - "question_id": 14215, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"tuba\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005840", - "question_id": 14216, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000719", - "question_id": 14217, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004266", - "question_id": 14220, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005275", - "question_id": 14233, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003879", - "question_id": 14240, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001440", - "question_id": 14250, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001800", - "question_id": 14251, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007180", - "question_id": 14254, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007522", - "question_id": 14255, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004169", - "question_id": 14259, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"ukulele\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00004920", - "question_id": 14261, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006526", - "question_id": 14267, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003800", - "question_id": 14273, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008044", - "question_id": 14277, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"middle\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005425", - "question_id": 14281, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008200", - "question_id": 14285, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"middle\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006579", - "question_id": 14307, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003810", - "question_id": 14308, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003329", - "question_id": 14313, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005468", - "question_id": 14319, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000286", - "question_id": 14320, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001264", - "question_id": 14327, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00004089", - "question_id": 14337, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003619", - "question_id": 14338, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003139", - "question_id": 14339, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005432", - "question_id": 14341, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001183", - "question_id": 14346, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007420", - "question_id": 14352, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008491", - "question_id": 14357, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004575", - "question_id": 14362, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007042", - "question_id": 14366, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003247", - "question_id": 14376, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001898", - "question_id": 14381, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"banjo\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001207", - "question_id": 14385, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006563", - "question_id": 14399, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003042", - "question_id": 14400, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005445", - "question_id": 14405, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002104", - "question_id": 14414, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "nine" -}, { - "video_id": "00002351", - "question_id": 14418, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004728", - "question_id": 14421, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005808", - "question_id": 14423, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003367", - "question_id": 14424, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000130", - "question_id": 14426, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002162", - "question_id": 14438, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001077", - "question_id": 14453, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007683", - "question_id": 14456, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002930", - "question_id": 14485, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006596", - "question_id": 14493, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"guzheng\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00002201", - "question_id": 14496, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002232", - "question_id": 14508, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001532", - "question_id": 14510, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001532", - "question_id": 14510, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006060", - "question_id": 14512, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004944", - "question_id": 14515, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007813", - "question_id": 14522, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005178", - "question_id": 14529, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002731", - "question_id": 14530, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003901", - "question_id": 14532, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005955", - "question_id": 14533, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008454", - "question_id": 14559, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000212", - "question_id": 14561, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"drum\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003451", - "question_id": 14562, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007059", - "question_id": 14567, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002460", - "question_id": 14572, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008449", - "question_id": 14575, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006819", - "question_id": 14578, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006076", - "question_id": 14580, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005061", - "question_id": 14582, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bagpipe\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003734", - "question_id": 14585, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005077", - "question_id": 14586, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000311", - "question_id": 14587, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003651", - "question_id": 14600, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008341", - "question_id": 14601, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007966", - "question_id": 14603, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003958", - "question_id": 14612, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003049", - "question_id": 14613, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004049", - "question_id": 14616, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00006499", - "question_id": 14623, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003087", - "question_id": 14625, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00008558", - "question_id": 14629, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000488", - "question_id": 14631, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007343", - "question_id": 14644, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000441", - "question_id": 14654, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004145", - "question_id": 14655, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000092", - "question_id": 14665, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001639", - "question_id": 14681, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00005422", - "question_id": 14686, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000630", - "question_id": 14695, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007293", - "question_id": 14696, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000481", - "question_id": 14704, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001614", - "question_id": 14707, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003599", - "question_id": 14708, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008022", - "question_id": 14712, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008887", - "question_id": 14713, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007038", - "question_id": 14727, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006830", - "question_id": 14733, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006552", - "question_id": 14735, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00004625", - "question_id": 14737, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007099", - "question_id": 14739, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006324", - "question_id": 14751, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003841", - "question_id": 14752, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008557", - "question_id": 14764, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007388", - "question_id": 14765, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000464", - "question_id": 14767, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003631", - "question_id": 14775, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002165", - "question_id": 14777, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007142", - "question_id": 14781, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002893", - "question_id": 14784, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00006929", - "question_id": 14787, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00008335", - "question_id": 14790, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008273", - "question_id": 14796, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003197", - "question_id": 14801, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007450", - "question_id": 14802, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00008823", - "question_id": 14803, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005343", - "question_id": 14807, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003805", - "question_id": 14817, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004589", - "question_id": 14821, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005922", - "question_id": 14824, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006707", - "question_id": 14826, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002284", - "question_id": 14828, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003984", - "question_id": 14832, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006749", - "question_id": 14839, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006903", - "question_id": 14848, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001168", - "question_id": 14867, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004700", - "question_id": 14875, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002079", - "question_id": 14881, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008098", - "question_id": 14883, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006325", - "question_id": 14886, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008624", - "question_id": 14892, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008576", - "question_id": 14900, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008855", - "question_id": 14908, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001422", - "question_id": 14919, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000618", - "question_id": 14929, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001938", - "question_id": 14938, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000944", - "question_id": 14940, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004035", - "question_id": 14948, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004158", - "question_id": 14949, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005960", - "question_id": 14967, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004266", - "question_id": 14970, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006843", - "question_id": 14971, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001620", - "question_id": 14981, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000483", - "question_id": 14982, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007833", - "question_id": 14984, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007499", - "question_id": 14985, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000130", - "question_id": 14987, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007497", - "question_id": 14994, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008065", - "question_id": 14999, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007869", - "question_id": 15008, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004346", - "question_id": 15011, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008844", - "question_id": 15016, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000385", - "question_id": 15021, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008088", - "question_id": 15027, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007355", - "question_id": 15039, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003308", - "question_id": 15041, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001265", - "question_id": 15042, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002898", - "question_id": 15054, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004158", - "question_id": 15055, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00000470", - "question_id": 15058, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002941", - "question_id": 15064, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002417", - "question_id": 15066, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002398", - "question_id": 15067, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006089", - "question_id": 15075, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00002066", - "question_id": 15079, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003979", - "question_id": 15083, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007336", - "question_id": 15089, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004798", - "question_id": 15092, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005418", - "question_id": 15105, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006522", - "question_id": 15116, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005967", - "question_id": 15124, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004457", - "question_id": 15133, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004311", - "question_id": 15139, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002495", - "question_id": 15145, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008558", - "question_id": 15152, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007156", - "question_id": 15156, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005398", - "question_id": 15168, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004456", - "question_id": 15171, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002722", - "question_id": 15175, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000266", - "question_id": 15176, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008354", - "question_id": 15179, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007953", - "question_id": 15185, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007805", - "question_id": 15187, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001300", - "question_id": 15191, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002262", - "question_id": 15194, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003073", - "question_id": 15202, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008780", - "question_id": 15212, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008091", - "question_id": 15214, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002301", - "question_id": 15218, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006758", - "question_id": 15221, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006710", - "question_id": 15233, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005775", - "question_id": 15236, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006843", - "question_id": 15238, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005974", - "question_id": 15239, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002984", - "question_id": 15242, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008512", - "question_id": 15249, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004409", - "question_id": 15252, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00004417", - "question_id": 15255, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001600", - "question_id": 15256, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008925", - "question_id": 15264, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006872", - "question_id": 15267, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002604", - "question_id": 15268, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007999", - "question_id": 15273, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000055", - "question_id": 15279, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006315", - "question_id": 15291, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004306", - "question_id": 15296, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006138", - "question_id": 15302, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004164", - "question_id": 15314, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002598", - "question_id": 15320, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006699", - "question_id": 15331, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000875", - "question_id": 15339, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003752", - "question_id": 15348, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004466", - "question_id": 15349, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001382", - "question_id": 15362, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003615", - "question_id": 15367, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008399", - "question_id": 15371, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006967", - "question_id": 15383, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00003237", - "question_id": 15389, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004109", - "question_id": 15399, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001107", - "question_id": 15404, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00007401", - "question_id": 15406, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004839", - "question_id": 15408, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004247", - "question_id": 15410, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004587", - "question_id": 15416, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001903", - "question_id": 15422, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002856", - "question_id": 15423, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006034", - "question_id": 15424, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004333", - "question_id": 15427, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003545", - "question_id": 15434, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001295", - "question_id": 15439, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00006371", - "question_id": 15446, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007855", - "question_id": 15457, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004648", - "question_id": 15470, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00004992", - "question_id": 15475, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008495", - "question_id": 15479, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007941", - "question_id": 15481, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001653", - "question_id": 15484, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002385", - "question_id": 15490, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006434", - "question_id": 15499, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008591", - "question_id": 15507, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002819", - "question_id": 15512, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001732", - "question_id": 15514, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"pipa\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003821", - "question_id": 15515, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008139", - "question_id": 15516, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000330", - "question_id": 15520, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007577", - "question_id": 15538, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006920", - "question_id": 15540, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004560", - "question_id": 15543, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005799", - "question_id": 15551, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006149", - "question_id": 15552, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004095", - "question_id": 15555, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002526", - "question_id": 15560, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007767", - "question_id": 15565, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000392", - "question_id": 15566, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004870", - "question_id": 15570, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00005888", - "question_id": 15574, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006035", - "question_id": 15582, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004225", - "question_id": 15595, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008957", - "question_id": 15597, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002472", - "question_id": 15606, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007765", - "question_id": 15616, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000151", - "question_id": 15620, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007231", - "question_id": 15623, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004688", - "question_id": 15629, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00005081", - "question_id": 15632, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006066", - "question_id": 15647, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004715", - "question_id": 15649, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006633", - "question_id": 15650, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007619", - "question_id": 15655, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002602", - "question_id": 15666, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008616", - "question_id": 15668, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004292", - "question_id": 15670, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001639", - "question_id": 15684, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00001769", - "question_id": 15685, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002726", - "question_id": 15704, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001284", - "question_id": 15717, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003143", - "question_id": 15718, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000820", - "question_id": 15719, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"saxophone\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00005979", - "question_id": 15725, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008584", - "question_id": 15733, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001892", - "question_id": 15734, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002973", - "question_id": 15738, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002615", - "question_id": 15746, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002615", - "question_id": 15746, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000237", - "question_id": 15747, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008753", - "question_id": 15750, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003171", - "question_id": 15752, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005344", - "question_id": 15756, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002326", - "question_id": 15776, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005025", - "question_id": 15780, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004217", - "question_id": 15781, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005614", - "question_id": 15784, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00005924", - "question_id": 15788, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00006082", - "question_id": 15789, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"erhu\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006105", - "question_id": 15792, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001984", - "question_id": 15794, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002805", - "question_id": 15812, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000797", - "question_id": 15816, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004364", - "question_id": 15824, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003508", - "question_id": 15836, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004731", - "question_id": 15837, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005418", - "question_id": 15840, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004233", - "question_id": 15855, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006864", - "question_id": 15863, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005115", - "question_id": 15878, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002743", - "question_id": 15879, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008809", - "question_id": 15886, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005310", - "question_id": 15889, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007395", - "question_id": 15891, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00008783", - "question_id": 15898, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007344", - "question_id": 15901, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002971", - "question_id": 15907, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00003160", - "question_id": 15908, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008721", - "question_id": 15909, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008362", - "question_id": 15912, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005694", - "question_id": 15921, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008004", - "question_id": 15926, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003246", - "question_id": 15938, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005680", - "question_id": 15939, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001351", - "question_id": 15947, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00004713", - "question_id": 15953, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005306", - "question_id": 15954, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00006463", - "question_id": 15960, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003241", - "question_id": 15963, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007190", - "question_id": 15967, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008798", - "question_id": 15972, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002157", - "question_id": 15974, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005172", - "question_id": 15987, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000913", - "question_id": 15988, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001415", - "question_id": 15995, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004597", - "question_id": 15999, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00007979", - "question_id": 16002, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007285", - "question_id": 16004, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007003", - "question_id": 16013, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004756", - "question_id": 16018, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004672", - "question_id": 16023, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00006464", - "question_id": 16024, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006554", - "question_id": 16028, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006749", - "question_id": 16033, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008200", - "question_id": 16045, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000703", - "question_id": 16047, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004232", - "question_id": 16050, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000153", - "question_id": 16052, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002591", - "question_id": 16054, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002854", - "question_id": 16063, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005616", - "question_id": 16066, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008485", - "question_id": 16070, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003087", - "question_id": 16072, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007728", - "question_id": 16075, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003071", - "question_id": 16080, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005450", - "question_id": 16088, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005321", - "question_id": 16097, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000652", - "question_id": 16099, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00005576", - "question_id": 16101, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006275", - "question_id": 16125, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002955", - "question_id": 16136, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005315", - "question_id": 16137, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000310", - "question_id": 16143, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003416", - "question_id": 16145, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007252", - "question_id": 16153, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000512", - "question_id": 16157, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001545", - "question_id": 16166, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006478", - "question_id": 16168, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000135", - "question_id": 16174, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005974", - "question_id": 16178, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007533", - "question_id": 16179, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006691", - "question_id": 16180, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000610", - "question_id": 16183, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006622", - "question_id": 16184, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006484", - "question_id": 16196, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003292", - "question_id": 16212, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00002288", - "question_id": 16214, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00002342", - "question_id": 16217, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005423", - "question_id": 16224, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008916", - "question_id": 16225, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008318", - "question_id": 16233, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007392", - "question_id": 16237, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003876", - "question_id": 16239, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008979", - "question_id": 16241, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "more than ten" -}, { - "video_id": "00004043", - "question_id": 16259, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00001887", - "question_id": 16264, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007819", - "question_id": 16270, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007607", - "question_id": 16275, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005687", - "question_id": 16283, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005355", - "question_id": 16284, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003166", - "question_id": 16287, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00000699", - "question_id": 16293, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008846", - "question_id": 16300, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004325", - "question_id": 16304, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008288", - "question_id": 16311, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005567", - "question_id": 16313, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004405", - "question_id": 16321, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005354", - "question_id": 16325, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003355", - "question_id": 16330, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000981", - "question_id": 16334, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004119", - "question_id": 16339, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000689", - "question_id": 16342, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003287", - "question_id": 16351, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004230", - "question_id": 16352, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001121", - "question_id": 16364, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008031", - "question_id": 16401, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004035", - "question_id": 16406, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000589", - "question_id": 16411, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000723", - "question_id": 16415, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000827", - "question_id": 16417, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007863", - "question_id": 16419, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007301", - "question_id": 16423, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00002830", - "question_id": 16425, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bagpipe\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003776", - "question_id": 16428, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000343", - "question_id": 16429, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004653", - "question_id": 16432, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004176", - "question_id": 16435, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005697", - "question_id": 16447, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007501", - "question_id": 16448, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002790", - "question_id": 16458, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000388", - "question_id": 16462, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007441", - "question_id": 16475, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002337", - "question_id": 16477, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007219", - "question_id": 16482, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007001", - "question_id": 16491, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003638", - "question_id": 16492, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000493", - "question_id": 16498, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002870", - "question_id": 16513, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003336", - "question_id": 16524, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00000112", - "question_id": 16526, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006518", - "question_id": 16533, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008855", - "question_id": 16537, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001918", - "question_id": 16538, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00000471", - "question_id": 16539, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002285", - "question_id": 16540, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00001672", - "question_id": 16541, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007314", - "question_id": 16550, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000172", - "question_id": 16556, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002406", - "question_id": 16557, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001586", - "question_id": 16563, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00001244", - "question_id": 16564, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00001814", - "question_id": 16574, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000045", - "question_id": 16579, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006696", - "question_id": 16583, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005601", - "question_id": 16584, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005878", - "question_id": 16585, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00003489", - "question_id": 16593, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00000023", - "question_id": 16609, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003024", - "question_id": 16612, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008711", - "question_id": 16614, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005929", - "question_id": 16617, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005913", - "question_id": 16619, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008595", - "question_id": 16623, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008595", - "question_id": 16623, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002151", - "question_id": 16630, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003806", - "question_id": 16631, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006767", - "question_id": 16633, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00002370", - "question_id": 16634, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002370", - "question_id": 16634, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006788", - "question_id": 16635, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000050", - "question_id": 16641, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003858", - "question_id": 16645, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001700", - "question_id": 16646, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008012", - "question_id": 16647, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"electric_bass\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008363", - "question_id": 16653, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008247", - "question_id": 16655, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000591", - "question_id": 16672, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008289", - "question_id": 16680, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007302", - "question_id": 16687, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000862", - "question_id": 16708, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005133", - "question_id": 16720, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001619", - "question_id": 16726, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000402", - "question_id": 16734, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003043", - "question_id": 16736, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00006673", - "question_id": 16740, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002859", - "question_id": 16749, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000109", - "question_id": 16750, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000771", - "question_id": 16759, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008449", - "question_id": 16764, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006530", - "question_id": 16765, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000168", - "question_id": 16776, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008426", - "question_id": 16777, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"xylophone\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004005", - "question_id": 16780, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001930", - "question_id": 16793, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00004077", - "question_id": 16806, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006517", - "question_id": 16807, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004956", - "question_id": 16812, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000751", - "question_id": 16816, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00001415", - "question_id": 16826, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005361", - "question_id": 16828, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004497", - "question_id": 16843, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005144", - "question_id": 16844, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001255", - "question_id": 16845, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008516", - "question_id": 16848, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00006554", - "question_id": 16849, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006019", - "question_id": 16854, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000740", - "question_id": 16872, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004912", - "question_id": 16874, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004606", - "question_id": 16875, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005137", - "question_id": 16897, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001274", - "question_id": 16903, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000865", - "question_id": 16906, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007546", - "question_id": 16909, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00005802", - "question_id": 16919, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004333", - "question_id": 16926, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002646", - "question_id": 16934, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008799", - "question_id": 16947, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00000008", - "question_id": 16949, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000882", - "question_id": 16951, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001444", - "question_id": 16961, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007940", - "question_id": 16964, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007116", - "question_id": 16969, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003297", - "question_id": 16970, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000807", - "question_id": 16971, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003325", - "question_id": 16976, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002657", - "question_id": 16977, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004048", - "question_id": 16979, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006041", - "question_id": 16982, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002686", - "question_id": 17020, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002460", - "question_id": 17022, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005173", - "question_id": 17026, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007377", - "question_id": 17032, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002923", - "question_id": 17033, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007189", - "question_id": 17035, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003336", - "question_id": 17036, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007095", - "question_id": 17041, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008490", - "question_id": 17048, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002897", - "question_id": 17058, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000581", - "question_id": 17069, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001151", - "question_id": 17073, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001867", - "question_id": 17074, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000315", - "question_id": 17077, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006741", - "question_id": 17085, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bagpipe\", \"left\", \"bagpipe\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003762", - "question_id": 17091, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002071", - "question_id": 17099, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004610", - "question_id": 17104, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005629", - "question_id": 17108, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003374", - "question_id": 17112, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002805", - "question_id": 17118, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006823", - "question_id": 17122, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006452", - "question_id": 17124, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005852", - "question_id": 17129, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003513", - "question_id": 17131, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000735", - "question_id": 17132, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001625", - "question_id": 17137, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001135", - "question_id": 17158, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000948", - "question_id": 17173, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005436", - "question_id": 17189, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002699", - "question_id": 17194, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005804", - "question_id": 17196, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001476", - "question_id": 17200, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007591", - "question_id": 17201, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006039", - "question_id": 17202, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007520", - "question_id": 17210, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003984", - "question_id": 17215, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005454", - "question_id": 17218, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001070", - "question_id": 17224, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007914", - "question_id": 17228, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005411", - "question_id": 17231, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000163", - "question_id": 17235, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005557", - "question_id": 17240, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008464", - "question_id": 17244, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005439", - "question_id": 17249, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004757", - "question_id": 17254, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006931", - "question_id": 17255, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008874", - "question_id": 17257, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000337", - "question_id": 17263, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000573", - "question_id": 17264, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00007061", - "question_id": 17270, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002365", - "question_id": 17274, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008029", - "question_id": 17281, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002619", - "question_id": 17284, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008074", - "question_id": 17285, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003970", - "question_id": 17288, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001484", - "question_id": 17290, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00006522", - "question_id": 17301, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006355", - "question_id": 17307, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004812", - "question_id": 17313, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000036", - "question_id": 17317, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000582", - "question_id": 17323, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003643", - "question_id": 17332, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007631", - "question_id": 17333, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006716", - "question_id": 17338, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002372", - "question_id": 17339, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007136", - "question_id": 17345, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006992", - "question_id": 17347, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005929", - "question_id": 17353, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004439", - "question_id": 17363, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002629", - "question_id": 17366, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00003553", - "question_id": 17384, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003550", - "question_id": 17390, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008032", - "question_id": 17395, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"congas\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002211", - "question_id": 17398, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002018", - "question_id": 17417, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005703", - "question_id": 17421, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005109", - "question_id": 17422, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001766", - "question_id": 17424, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00007850", - "question_id": 17430, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007485", - "question_id": 17434, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000080", - "question_id": 17438, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002994", - "question_id": 17443, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001767", - "question_id": 17448, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008655", - "question_id": 17451, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004986", - "question_id": 17454, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00005646", - "question_id": 17458, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006648", - "question_id": 17461, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008199", - "question_id": 17463, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008802", - "question_id": 17472, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002702", - "question_id": 17475, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006439", - "question_id": 17479, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002091", - "question_id": 17493, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005622", - "question_id": 17505, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00002240", - "question_id": 17512, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000976", - "question_id": 17513, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002565", - "question_id": 17520, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000654", - "question_id": 17521, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007681", - "question_id": 17524, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001296", - "question_id": 17526, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001296", - "question_id": 17526, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003393", - "question_id": 17529, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004262", - "question_id": 17532, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00002780", - "question_id": 17543, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007490", - "question_id": 17552, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001007", - "question_id": 17562, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000448", - "question_id": 17566, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000145", - "question_id": 17569, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002044", - "question_id": 17572, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006596", - "question_id": 17575, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"middle\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005463", - "question_id": 17577, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007831", - "question_id": 17579, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003399", - "question_id": 17580, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002709", - "question_id": 17581, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004739", - "question_id": 17586, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003713", - "question_id": 17595, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004487", - "question_id": 17607, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000438", - "question_id": 17611, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005035", - "question_id": 17618, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001616", - "question_id": 17621, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007065", - "question_id": 17624, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006608", - "question_id": 17627, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003143", - "question_id": 17635, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006999", - "question_id": 17642, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00005665", - "question_id": 17644, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004842", - "question_id": 17650, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001760", - "question_id": 17653, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001157", - "question_id": 17655, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008253", - "question_id": 17670, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006677", - "question_id": 17678, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008300", - "question_id": 17693, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006897", - "question_id": 17699, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006566", - "question_id": 17704, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004055", - "question_id": 17709, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001077", - "question_id": 17729, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00000481", - "question_id": 17733, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00003248", - "question_id": 17742, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005747", - "question_id": 17743, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005535", - "question_id": 17744, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004832", - "question_id": 17748, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004796", - "question_id": 17751, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005935", - "question_id": 17754, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006231", - "question_id": 17759, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000816", - "question_id": 17767, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004503", - "question_id": 17782, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006482", - "question_id": 17784, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004183", - "question_id": 17786, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007339", - "question_id": 17787, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007868", - "question_id": 17788, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"saxophone\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007684", - "question_id": 17792, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"suona\", \"middle\", \"erhu\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006713", - "question_id": 17795, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"clarinet\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00008575", - "question_id": 17798, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003215", - "question_id": 17802, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005334", - "question_id": 17807, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008188", - "question_id": 17813, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00004535", - "question_id": 17816, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002261", - "question_id": 17821, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003261", - "question_id": 17832, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005353", - "question_id": 17833, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005350", - "question_id": 17841, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000289", - "question_id": 17842, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003847", - "question_id": 17843, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00004150", - "question_id": 17846, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004216", - "question_id": 17850, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007970", - "question_id": 17857, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002967", - "question_id": 17864, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"tuba\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001181", - "question_id": 17867, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008348", - "question_id": 17868, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002686", - "question_id": 17879, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"accordion\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008729", - "question_id": 17880, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001775", - "question_id": 17885, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004390", - "question_id": 17893, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00003978", - "question_id": 17907, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001333", - "question_id": 17909, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007965", - "question_id": 17911, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001007", - "question_id": 17917, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007858", - "question_id": 17922, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003983", - "question_id": 17925, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004675", - "question_id": 17928, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003085", - "question_id": 17941, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004638", - "question_id": 17943, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003099", - "question_id": 17947, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002059", - "question_id": 17949, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007549", - "question_id": 17950, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007357", - "question_id": 17951, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004741", - "question_id": 17953, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007426", - "question_id": 17967, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004910", - "question_id": 17972, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000844", - "question_id": 17977, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000463", - "question_id": 17978, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007865", - "question_id": 17983, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006444", - "question_id": 17993, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005023", - "question_id": 17997, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005808", - "question_id": 18013, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004455", - "question_id": 18018, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006189", - "question_id": 18024, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000537", - "question_id": 18028, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001076", - "question_id": 18033, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005227", - "question_id": 18034, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001212", - "question_id": 18038, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000954", - "question_id": 18042, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007157", - "question_id": 18043, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007017", - "question_id": 18047, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00006555", - "question_id": 18054, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000367", - "question_id": 18059, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002160", - "question_id": 18060, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007627", - "question_id": 18061, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001552", - "question_id": 18063, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"xylophone\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001345", - "question_id": 18070, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003885", - "question_id": 18072, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004940", - "question_id": 18076, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003489", - "question_id": 18079, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006721", - "question_id": 18080, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002143", - "question_id": 18083, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003811", - "question_id": 18091, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008051", - "question_id": 18093, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006430", - "question_id": 18096, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006790", - "question_id": 18097, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001963", - "question_id": 18101, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006875", - "question_id": 18106, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008709", - "question_id": 18107, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008813", - "question_id": 18110, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003723", - "question_id": 18115, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006640", - "question_id": 18116, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007929", - "question_id": 18128, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007600", - "question_id": 18133, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008587", - "question_id": 18141, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008587", - "question_id": 18141, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003319", - "question_id": 18159, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002842", - "question_id": 18161, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005057", - "question_id": 18167, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000292", - "question_id": 18170, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008791", - "question_id": 18185, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007159", - "question_id": 18187, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006744", - "question_id": 18190, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006943", - "question_id": 18198, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00001481", - "question_id": 18199, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002835", - "question_id": 18205, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005604", - "question_id": 18206, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003678", - "question_id": 18207, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000530", - "question_id": 18216, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006078", - "question_id": 18220, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007627", - "question_id": 18224, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006233", - "question_id": 18228, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008129", - "question_id": 18234, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00004925", - "question_id": 18236, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001846", - "question_id": 18251, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008705", - "question_id": 18252, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001672", - "question_id": 18253, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004122", - "question_id": 18270, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008409", - "question_id": 18273, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008444", - "question_id": 18283, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008203", - "question_id": 18291, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001075", - "question_id": 18310, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003497", - "question_id": 18311, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002439", - "question_id": 18312, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000068", - "question_id": 18316, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004271", - "question_id": 18323, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008478", - "question_id": 18325, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00000519", - "question_id": 18327, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007163", - "question_id": 18335, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007030", - "question_id": 18341, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008923", - "question_id": 18355, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004138", - "question_id": 18356, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004949", - "question_id": 18365, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001929", - "question_id": 18366, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002261", - "question_id": 18368, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006701", - "question_id": 18373, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002499", - "question_id": 18374, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000319", - "question_id": 18378, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006025", - "question_id": 18383, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006495", - "question_id": 18384, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003947", - "question_id": 18392, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008307", - "question_id": 18397, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004372", - "question_id": 18403, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00003009", - "question_id": 18405, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004062", - "question_id": 18409, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005789", - "question_id": 18420, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001764", - "question_id": 18422, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003590", - "question_id": 18428, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004875", - "question_id": 18433, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008571", - "question_id": 18447, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006523", - "question_id": 18449, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004063", - "question_id": 18456, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000693", - "question_id": 18463, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006254", - "question_id": 18465, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003944", - "question_id": 18470, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006377", - "question_id": 18475, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005267", - "question_id": 18479, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002225", - "question_id": 18480, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001217", - "question_id": 18484, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003866", - "question_id": 18498, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008476", - "question_id": 18500, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008171", - "question_id": 18503, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00001828", - "question_id": 18510, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000195", - "question_id": 18514, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003247", - "question_id": 18517, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005445", - "question_id": 18522, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006277", - "question_id": 18524, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004343", - "question_id": 18525, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002815", - "question_id": 18536, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"xylophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003682", - "question_id": 18548, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007034", - "question_id": 18552, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001972", - "question_id": 18557, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005857", - "question_id": 18564, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005067", - "question_id": 18568, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007626", - "question_id": 18569, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001622", - "question_id": 18571, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005728", - "question_id": 18590, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002627", - "question_id": 18598, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002407", - "question_id": 18613, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006228", - "question_id": 18614, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005412", - "question_id": 18622, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006838", - "question_id": 18628, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00001676", - "question_id": 18629, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005263", - "question_id": 18633, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006045", - "question_id": 18635, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002293", - "question_id": 18638, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001960", - "question_id": 18639, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004692", - "question_id": 18658, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00007336", - "question_id": 18662, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004097", - "question_id": 18665, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"tuba\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000780", - "question_id": 18666, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002023", - "question_id": 18670, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000970", - "question_id": 18679, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007513", - "question_id": 18684, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004186", - "question_id": 18699, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006927", - "question_id": 18700, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004244", - "question_id": 18706, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000358", - "question_id": 18707, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006887", - "question_id": 18710, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006064", - "question_id": 18714, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006662", - "question_id": 18718, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006979", - "question_id": 18719, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001377", - "question_id": 18729, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002901", - "question_id": 18732, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00004549", - "question_id": 18734, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004327", - "question_id": 18735, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008885", - "question_id": 18745, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001887", - "question_id": 18756, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005119", - "question_id": 18759, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004898", - "question_id": 18765, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006211", - "question_id": 18770, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005651", - "question_id": 18780, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000686", - "question_id": 18783, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00008571", - "question_id": 18784, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002595", - "question_id": 18801, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003048", - "question_id": 18809, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001738", - "question_id": 18816, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006882", - "question_id": 18817, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007880", - "question_id": 18820, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008947", - "question_id": 18827, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006450", - "question_id": 18828, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003587", - "question_id": 18832, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006414", - "question_id": 18835, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000864", - "question_id": 18846, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008761", - "question_id": 18851, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003775", - "question_id": 18858, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00008736", - "question_id": 18879, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001725", - "question_id": 18881, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00000553", - "question_id": 18883, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002631", - "question_id": 18893, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008637", - "question_id": 18896, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000982", - "question_id": 18903, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007440", - "question_id": 18909, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007683", - "question_id": 18912, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007981", - "question_id": 18930, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005488", - "question_id": 18938, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007869", - "question_id": 18942, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00004630", - "question_id": 18943, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002910", - "question_id": 18944, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005828", - "question_id": 18945, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005789", - "question_id": 18946, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003908", - "question_id": 18950, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004522", - "question_id": 18951, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005974", - "question_id": 18952, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008240", - "question_id": 18956, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008510", - "question_id": 18969, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007914", - "question_id": 18987, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001426", - "question_id": 18995, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007504", - "question_id": 18997, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003709", - "question_id": 19010, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000429", - "question_id": 19017, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002731", - "question_id": 19021, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003772", - "question_id": 19022, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007708", - "question_id": 19035, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005230", - "question_id": 19038, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002696", - "question_id": 19055, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006636", - "question_id": 19067, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00004297", - "question_id": 19072, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008223", - "question_id": 19073, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007309", - "question_id": 19077, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00001503", - "question_id": 19080, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007789", - "question_id": 19085, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000222", - "question_id": 19086, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00001336", - "question_id": 19088, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002915", - "question_id": 19094, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003623", - "question_id": 19101, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003455", - "question_id": 19102, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007896", - "question_id": 19103, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00007903", - "question_id": 19105, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006108", - "question_id": 19106, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005667", - "question_id": 19107, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00005331", - "question_id": 19111, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00007290", - "question_id": 19115, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003459", - "question_id": 19125, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006514", - "question_id": 19136, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005835", - "question_id": 19139, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006071", - "question_id": 19141, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008957", - "question_id": 19142, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008546", - "question_id": 19143, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008881", - "question_id": 19150, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000967", - "question_id": 19152, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001100", - "question_id": 19155, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003427", - "question_id": 19162, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001218", - "question_id": 19168, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005376", - "question_id": 19175, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008564", - "question_id": 19180, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003904", - "question_id": 19212, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007212", - "question_id": 19214, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003856", - "question_id": 19217, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007458", - "question_id": 19219, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006680", - "question_id": 19220, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006903", - "question_id": 19228, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002777", - "question_id": 19229, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007876", - "question_id": 19232, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007411", - "question_id": 19233, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004772", - "question_id": 19234, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001882", - "question_id": 19235, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00007369", - "question_id": 19237, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005779", - "question_id": 19253, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001043", - "question_id": 19255, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006774", - "question_id": 19265, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007904", - "question_id": 19268, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006797", - "question_id": 19271, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000388", - "question_id": 19276, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000984", - "question_id": 19277, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001311", - "question_id": 19281, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002326", - "question_id": 19304, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003147", - "question_id": 19317, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005362", - "question_id": 19319, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006897", - "question_id": 19327, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002947", - "question_id": 19335, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007639", - "question_id": 19350, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002332", - "question_id": 19351, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005689", - "question_id": 19352, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000269", - "question_id": 19353, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004050", - "question_id": 19358, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008612", - "question_id": 19364, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001189", - "question_id": 19369, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004012", - "question_id": 19374, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008419", - "question_id": 19375, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008870", - "question_id": 19376, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00000704", - "question_id": 19384, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007563", - "question_id": 19418, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002637", - "question_id": 19420, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00004218", - "question_id": 19432, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002629", - "question_id": 19438, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006450", - "question_id": 19447, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008098", - "question_id": 19450, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001819", - "question_id": 19454, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005865", - "question_id": 19458, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003388", - "question_id": 19462, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001762", - "question_id": 19471, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006548", - "question_id": 19479, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001620", - "question_id": 19486, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007615", - "question_id": 19487, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003739", - "question_id": 19490, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003970", - "question_id": 19495, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001774", - "question_id": 19502, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002582", - "question_id": 19521, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007559", - "question_id": 19526, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006018", - "question_id": 19533, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005066", - "question_id": 19539, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004054", - "question_id": 19546, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004116", - "question_id": 19549, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000204", - "question_id": 19561, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008476", - "question_id": 19563, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00004228", - "question_id": 19571, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001382", - "question_id": 19572, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005247", - "question_id": 19574, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008633", - "question_id": 19575, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004345", - "question_id": 19576, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008063", - "question_id": 19577, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007300", - "question_id": 19580, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006387", - "question_id": 19584, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004172", - "question_id": 19587, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005550", - "question_id": 19589, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00006412", - "question_id": 19604, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008228", - "question_id": 19605, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004414", - "question_id": 19612, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001825", - "question_id": 19613, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005054", - "question_id": 19637, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007591", - "question_id": 19639, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000601", - "question_id": 19650, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002740", - "question_id": 19653, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004658", - "question_id": 19654, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002937", - "question_id": 19655, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000509", - "question_id": 19660, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005675", - "question_id": 19661, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006977", - "question_id": 19662, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001525", - "question_id": 19668, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006644", - "question_id": 19669, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003120", - "question_id": 19677, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001361", - "question_id": 19678, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003142", - "question_id": 19679, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000739", - "question_id": 19683, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008628", - "question_id": 19689, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002558", - "question_id": 19693, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008182", - "question_id": 19694, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000600", - "question_id": 19695, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002535", - "question_id": 19699, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008507", - "question_id": 19700, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008026", - "question_id": 19702, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000645", - "question_id": 19704, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008567", - "question_id": 19723, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006960", - "question_id": 19731, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008385", - "question_id": 19733, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000402", - "question_id": 19748, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006094", - "question_id": 19763, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003546", - "question_id": 19777, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000536", - "question_id": 19790, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000162", - "question_id": 19798, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003347", - "question_id": 19804, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006662", - "question_id": 19809, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008872", - "question_id": 19814, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006243", - "question_id": 19816, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006423", - "question_id": 19821, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00005984", - "question_id": 19828, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003116", - "question_id": 19832, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004375", - "question_id": 19834, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003763", - "question_id": 19842, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002790", - "question_id": 19847, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006466", - "question_id": 19858, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006051", - "question_id": 19862, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000061", - "question_id": 19869, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002672", - "question_id": 19873, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008457", - "question_id": 19880, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006687", - "question_id": 19883, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000245", - "question_id": 19887, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002211", - "question_id": 19889, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004961", - "question_id": 19892, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001469", - "question_id": 19899, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002317", - "question_id": 19916, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007021", - "question_id": 19917, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001297", - "question_id": 19919, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008925", - "question_id": 19920, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002979", - "question_id": 19921, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003916", - "question_id": 19922, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000034", - "question_id": 19924, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008299", - "question_id": 19928, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008858", - "question_id": 19930, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008056", - "question_id": 19936, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000495", - "question_id": 19937, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007678", - "question_id": 19940, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000914", - "question_id": 19946, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005719", - "question_id": 19948, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001944", - "question_id": 19957, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008973", - "question_id": 19967, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008317", - "question_id": 19974, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001661", - "question_id": 19976, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008308", - "question_id": 19980, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004316", - "question_id": 19985, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003201", - "question_id": 20010, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002505", - "question_id": 20012, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008945", - "question_id": 20029, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002848", - "question_id": 20033, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005829", - "question_id": 20034, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000677", - "question_id": 20036, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005147", - "question_id": 20041, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006470", - "question_id": 20043, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004471", - "question_id": 20049, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007378", - "question_id": 20057, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002806", - "question_id": 20059, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006389", - "question_id": 20060, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "more than ten" -}, { - "video_id": "00008662", - "question_id": 20071, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00001598", - "question_id": 20076, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00003564", - "question_id": 20079, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007800", - "question_id": 20081, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005033", - "question_id": 20086, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008152", - "question_id": 20099, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004427", - "question_id": 20102, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004756", - "question_id": 20104, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007553", - "question_id": 20107, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005527", - "question_id": 20114, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000065", - "question_id": 20116, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00005376", - "question_id": 20126, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004847", - "question_id": 20131, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007011", - "question_id": 20133, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007467", - "question_id": 20138, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002444", - "question_id": 20139, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00007294", - "question_id": 20149, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000641", - "question_id": 20150, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005841", - "question_id": 20162, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"xylophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004251", - "question_id": 20163, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004380", - "question_id": 20164, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001640", - "question_id": 20175, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007506", - "question_id": 20181, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002420", - "question_id": 20187, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004094", - "question_id": 20189, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003761", - "question_id": 20190, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006175", - "question_id": 20193, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001468", - "question_id": 20198, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001602", - "question_id": 20208, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007389", - "question_id": 20217, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006117", - "question_id": 20221, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008397", - "question_id": 20224, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001780", - "question_id": 20228, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003287", - "question_id": 20231, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005806", - "question_id": 20234, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004457", - "question_id": 20242, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00003377", - "question_id": 20243, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007200", - "question_id": 20249, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005481", - "question_id": 20256, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007247", - "question_id": 20273, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003217", - "question_id": 20279, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00004476", - "question_id": 20297, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006858", - "question_id": 20299, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003297", - "question_id": 20302, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001166", - "question_id": 20303, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008454", - "question_id": 20307, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005241", - "question_id": 20312, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000735", - "question_id": 20314, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007287", - "question_id": 20315, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003421", - "question_id": 20317, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002704", - "question_id": 20325, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001095", - "question_id": 20330, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004250", - "question_id": 20331, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00000621", - "question_id": 20333, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006379", - "question_id": 20335, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004771", - "question_id": 20344, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002442", - "question_id": 20346, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002437", - "question_id": 20349, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006782", - "question_id": 20351, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006386", - "question_id": 20365, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003392", - "question_id": 20375, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008058", - "question_id": 20379, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002773", - "question_id": 20382, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005456", - "question_id": 20384, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002531", - "question_id": 20391, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007074", - "question_id": 20396, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000933", - "question_id": 20405, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000436", - "question_id": 20407, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002030", - "question_id": 20414, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006798", - "question_id": 20422, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003528", - "question_id": 20427, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006513", - "question_id": 20428, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00005778", - "question_id": 20431, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001204", - "question_id": 20440, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00003717", - "question_id": 20450, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004782", - "question_id": 20455, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000844", - "question_id": 20457, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000890", - "question_id": 20458, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002550", - "question_id": 20460, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005589", - "question_id": 20461, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007775", - "question_id": 20474, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004597", - "question_id": 20477, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001780", - "question_id": 20485, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "seven" -}, { - "video_id": "00001744", - "question_id": 20487, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000583", - "question_id": 20499, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007209", - "question_id": 20500, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001746", - "question_id": 20503, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001023", - "question_id": 20504, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007235", - "question_id": 20513, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002411", - "question_id": 20519, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004550", - "question_id": 20522, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006099", - "question_id": 20530, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007530", - "question_id": 20538, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002481", - "question_id": 20542, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008168", - "question_id": 20543, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001389", - "question_id": 20547, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002974", - "question_id": 20549, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007040", - "question_id": 20555, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001948", - "question_id": 20559, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002035", - "question_id": 20560, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00001401", - "question_id": 20567, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007949", - "question_id": 20574, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004485", - "question_id": 20575, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003221", - "question_id": 20580, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005628", - "question_id": 20581, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000101", - "question_id": 20588, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00000748", - "question_id": 20590, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004804", - "question_id": 20596, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006398", - "question_id": 20598, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00001500", - "question_id": 20599, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003364", - "question_id": 20602, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004703", - "question_id": 20612, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004276", - "question_id": 20624, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000758", - "question_id": 20628, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004184", - "question_id": 20634, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005717", - "question_id": 20642, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006486", - "question_id": 20649, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008351", - "question_id": 20656, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007150", - "question_id": 20668, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008232", - "question_id": 20670, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002200", - "question_id": 20682, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00001515", - "question_id": 20684, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007874", - "question_id": 20685, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002816", - "question_id": 20694, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000212", - "question_id": 20698, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003234", - "question_id": 20706, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006380", - "question_id": 20707, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006271", - "question_id": 20710, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004724", - "question_id": 20714, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00006581", - "question_id": 20718, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000037", - "question_id": 20728, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00007961", - "question_id": 20729, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004229", - "question_id": 20730, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00004354", - "question_id": 20733, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004722", - "question_id": 20736, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000485", - "question_id": 20737, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004510", - "question_id": 20748, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003897", - "question_id": 20750, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00008899", - "question_id": 20757, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003526", - "question_id": 20758, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006702", - "question_id": 20762, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004810", - "question_id": 20764, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00006874", - "question_id": 20766, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008015", - "question_id": 20769, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00008784", - "question_id": 20770, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004834", - "question_id": 20772, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000450", - "question_id": 20774, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005045", - "question_id": 20778, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006488", - "question_id": 20785, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008308", - "question_id": 20786, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007247", - "question_id": 20787, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003199", - "question_id": 20791, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005885", - "question_id": 20795, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001734", - "question_id": 20796, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001559", - "question_id": 20800, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002835", - "question_id": 20803, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007227", - "question_id": 20804, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004611", - "question_id": 20816, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000562", - "question_id": 20825, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006445", - "question_id": 20828, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00008655", - "question_id": 20831, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008711", - "question_id": 20832, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000995", - "question_id": 20838, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000995", - "question_id": 20838, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008389", - "question_id": 20839, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007597", - "question_id": 20851, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006279", - "question_id": 20853, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003659", - "question_id": 20854, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004846", - "question_id": 20855, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004112", - "question_id": 20856, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005218", - "question_id": 20862, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000728", - "question_id": 20865, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003212", - "question_id": 20868, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006593", - "question_id": 20871, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00000134", - "question_id": 20873, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002294", - "question_id": 20883, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002659", - "question_id": 20902, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004951", - "question_id": 20911, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005754", - "question_id": 20912, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00003281", - "question_id": 20915, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005007", - "question_id": 20928, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001082", - "question_id": 20934, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008357", - "question_id": 20940, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007704", - "question_id": 20948, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002966", - "question_id": 20952, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008406", - "question_id": 20971, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00003329", - "question_id": 20972, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006351", - "question_id": 20981, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002915", - "question_id": 20988, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00008340", - "question_id": 20999, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002426", - "question_id": 21003, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002884", - "question_id": 21012, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002235", - "question_id": 21013, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003133", - "question_id": 21017, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000530", - "question_id": 21026, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001117", - "question_id": 21028, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002256", - "question_id": 21037, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004383", - "question_id": 21042, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002103", - "question_id": 21053, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001121", - "question_id": 21054, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00000748", - "question_id": 21055, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006524", - "question_id": 21058, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007573", - "question_id": 21062, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004857", - "question_id": 21081, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002587", - "question_id": 21083, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008766", - "question_id": 21098, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007218", - "question_id": 21100, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004037", - "question_id": 21101, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000891", - "question_id": 21103, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003938", - "question_id": 21107, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000852", - "question_id": 21110, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007361", - "question_id": 21116, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002646", - "question_id": 21118, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003590", - "question_id": 21122, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003993", - "question_id": 21125, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002802", - "question_id": 21128, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004869", - "question_id": 21130, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000931", - "question_id": 21132, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005781", - "question_id": 21138, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007047", - "question_id": 21154, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001715", - "question_id": 21158, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001979", - "question_id": 21164, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007691", - "question_id": 21166, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002875", - "question_id": 21170, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002912", - "question_id": 21171, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007807", - "question_id": 21173, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001327", - "question_id": 21174, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000103", - "question_id": 21179, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007597", - "question_id": 21192, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007487", - "question_id": 21205, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000334", - "question_id": 21207, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00005671", - "question_id": 21214, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"saxophone\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00008763", - "question_id": 21215, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007453", - "question_id": 21217, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00002454", - "question_id": 21221, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00003848", - "question_id": 21224, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006380", - "question_id": 21230, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007049", - "question_id": 21233, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000633", - "question_id": 21253, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002103", - "question_id": 21256, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00003588", - "question_id": 21267, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00004109", - "question_id": 21268, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00004189", - "question_id": 21274, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"drum\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004855", - "question_id": 21276, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002187", - "question_id": 21280, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003803", - "question_id": 21286, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008437", - "question_id": 21301, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004044", - "question_id": 21309, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "eight" -}, { - "video_id": "00005464", - "question_id": 21310, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004696", - "question_id": 21321, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006597", - "question_id": 21322, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001435", - "question_id": 21325, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007929", - "question_id": 21329, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008251", - "question_id": 21336, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00007035", - "question_id": 21338, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006084", - "question_id": 21340, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006887", - "question_id": 21342, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001680", - "question_id": 21345, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001395", - "question_id": 21354, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003745", - "question_id": 21355, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001986", - "question_id": 21359, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001908", - "question_id": 21360, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005139", - "question_id": 21365, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004883", - "question_id": 21374, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005455", - "question_id": 21375, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008298", - "question_id": 21377, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"guzheng\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000937", - "question_id": 21379, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006226", - "question_id": 21383, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006663", - "question_id": 21388, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002139", - "question_id": 21391, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004251", - "question_id": 21397, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008297", - "question_id": 21398, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003319", - "question_id": 21404, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002896", - "question_id": 21409, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003092", - "question_id": 21412, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008594", - "question_id": 21419, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00004022", - "question_id": 21420, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000147", - "question_id": 21426, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003973", - "question_id": 21429, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007140", - "question_id": 21448, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005204", - "question_id": 21450, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000027", - "question_id": 21453, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00004991", - "question_id": 21458, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000258", - "question_id": 21464, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006815", - "question_id": 21471, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004087", - "question_id": 21475, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000936", - "question_id": 21476, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007028", - "question_id": 21478, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002489", - "question_id": 21481, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006024", - "question_id": 21482, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00002549", - "question_id": 21485, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001605", - "question_id": 21487, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002710", - "question_id": 21499, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005762", - "question_id": 21500, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006360", - "question_id": 21505, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00005007", - "question_id": 21509, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000070", - "question_id": 21521, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002182", - "question_id": 21525, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003797", - "question_id": 21526, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003549", - "question_id": 21527, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007949", - "question_id": 21531, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000107", - "question_id": 21534, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008542", - "question_id": 21535, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002496", - "question_id": 21538, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008740", - "question_id": 21555, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002983", - "question_id": 21556, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007567", - "question_id": 21567, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005863", - "question_id": 21574, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000733", - "question_id": 21579, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006431", - "question_id": 21586, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003018", - "question_id": 21587, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001829", - "question_id": 21591, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008051", - "question_id": 21598, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003305", - "question_id": 21599, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008559", - "question_id": 21606, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002781", - "question_id": 21608, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005966", - "question_id": 21614, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002982", - "question_id": 21617, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00007094", - "question_id": 21618, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004878", - "question_id": 21620, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002962", - "question_id": 21625, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008383", - "question_id": 21629, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004684", - "question_id": 21633, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002455", - "question_id": 21635, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007538", - "question_id": 21639, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000265", - "question_id": 21640, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00003644", - "question_id": 21641, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00005847", - "question_id": 21645, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005505", - "question_id": 21649, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005605", - "question_id": 21664, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007479", - "question_id": 21677, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007268", - "question_id": 21682, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007660", - "question_id": 21684, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006482", - "question_id": 21717, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003749", - "question_id": 21727, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001206", - "question_id": 21738, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00002417", - "question_id": 21744, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008546", - "question_id": 21748, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007625", - "question_id": 21753, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006022", - "question_id": 21755, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005404", - "question_id": 21756, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00000865", - "question_id": 21758, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008190", - "question_id": 21764, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006139", - "question_id": 21766, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004879", - "question_id": 21776, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006438", - "question_id": 21780, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00001803", - "question_id": 21783, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003395", - "question_id": 21787, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007634", - "question_id": 21802, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007168", - "question_id": 21805, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001380", - "question_id": 21808, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005939", - "question_id": 21811, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008577", - "question_id": 21812, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008677", - "question_id": 21813, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000480", - "question_id": 21830, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001976", - "question_id": 21832, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007172", - "question_id": 21834, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004909", - "question_id": 21838, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000055", - "question_id": 21845, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00006898", - "question_id": 21847, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003304", - "question_id": 21853, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001084", - "question_id": 21855, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003616", - "question_id": 21857, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008799", - "question_id": 21859, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003635", - "question_id": 21860, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008619", - "question_id": 21861, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001981", - "question_id": 21882, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004165", - "question_id": 21885, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003784", - "question_id": 21900, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002343", - "question_id": 21909, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006800", - "question_id": 21910, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005218", - "question_id": 21915, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007551", - "question_id": 21919, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002105", - "question_id": 21921, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001561", - "question_id": 21926, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007062", - "question_id": 21928, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"ukulele\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008590", - "question_id": 21933, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006416", - "question_id": 21937, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003598", - "question_id": 21939, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007081", - "question_id": 21948, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00008898", - "question_id": 21949, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"xylophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002382", - "question_id": 21956, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005875", - "question_id": 21961, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000960", - "question_id": 21964, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001816", - "question_id": 21973, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003171", - "question_id": 21984, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005219", - "question_id": 21988, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000725", - "question_id": 21999, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005957", - "question_id": 22001, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002338", - "question_id": 22014, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001608", - "question_id": 22019, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008623", - "question_id": 22035, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003355", - "question_id": 22036, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004446", - "question_id": 22038, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001864", - "question_id": 22044, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008965", - "question_id": 22058, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004918", - "question_id": 22062, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002187", - "question_id": 22071, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000163", - "question_id": 22073, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000540", - "question_id": 22087, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00007887", - "question_id": 22089, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003777", - "question_id": 22093, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006365", - "question_id": 22096, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006135", - "question_id": 22098, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005792", - "question_id": 22108, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008973", - "question_id": 22114, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008935", - "question_id": 22116, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00001599", - "question_id": 22123, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004014", - "question_id": 22125, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008655", - "question_id": 22127, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00002227", - "question_id": 22128, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00007204", - "question_id": 22132, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003569", - "question_id": 22139, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00006380", - "question_id": 22144, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00008141", - "question_id": 22166, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007177", - "question_id": 22168, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004876", - "question_id": 22170, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000115", - "question_id": 22174, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00006226", - "question_id": 22178, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006415", - "question_id": 22180, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004362", - "question_id": 22202, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007448", - "question_id": 22209, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008507", - "question_id": 22211, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004632", - "question_id": 22212, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004688", - "question_id": 22214, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007410", - "question_id": 22220, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003518", - "question_id": 22221, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006193", - "question_id": 22222, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008112", - "question_id": 22224, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001174", - "question_id": 22229, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004394", - "question_id": 22239, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"xylophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007679", - "question_id": 22242, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007946", - "question_id": 22263, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003991", - "question_id": 22264, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002700", - "question_id": 22267, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003054", - "question_id": 22273, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004435", - "question_id": 22278, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005334", - "question_id": 22282, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000555", - "question_id": 22283, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00001554", - "question_id": 22285, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002492", - "question_id": 22296, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004333", - "question_id": 22305, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000414", - "question_id": 22307, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00003850", - "question_id": 22311, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001267", - "question_id": 22314, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006282", - "question_id": 22318, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002811", - "question_id": 22326, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000921", - "question_id": 22335, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000815", - "question_id": 22337, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007299", - "question_id": 22348, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004133", - "question_id": 22353, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006139", - "question_id": 22361, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007092", - "question_id": 22368, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00004691", - "question_id": 22369, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003095", - "question_id": 22370, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008740", - "question_id": 22372, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001105", - "question_id": 22377, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008658", - "question_id": 22378, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004844", - "question_id": 22380, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008858", - "question_id": 22381, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000246", - "question_id": 22382, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001001", - "question_id": 22384, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00008010", - "question_id": 22402, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003007", - "question_id": 22409, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004769", - "question_id": 22410, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006894", - "question_id": 22424, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001647", - "question_id": 22433, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004337", - "question_id": 22443, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007418", - "question_id": 22448, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008813", - "question_id": 22451, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00006599", - "question_id": 22460, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006094", - "question_id": 22463, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001551", - "question_id": 22467, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00003740", - "question_id": 22472, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008519", - "question_id": 22477, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005643", - "question_id": 22483, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000849", - "question_id": 22486, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003193", - "question_id": 22489, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008933", - "question_id": 22491, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004203", - "question_id": 22492, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00004631", - "question_id": 22493, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004155", - "question_id": 22495, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007242", - "question_id": 22499, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"bassoon\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003381", - "question_id": 22501, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006801", - "question_id": 22504, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001002", - "question_id": 22507, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004506", - "question_id": 22509, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002931", - "question_id": 22510, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001328", - "question_id": 22514, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002837", - "question_id": 22515, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006334", - "question_id": 22521, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000461", - "question_id": 22523, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006807", - "question_id": 22524, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002532", - "question_id": 22534, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002586", - "question_id": 22538, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005328", - "question_id": 22540, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002163", - "question_id": 22542, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007365", - "question_id": 22552, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000040", - "question_id": 22558, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003800", - "question_id": 22559, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00008029", - "question_id": 22574, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007425", - "question_id": 22585, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00000472", - "question_id": 22594, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003724", - "question_id": 22597, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001210", - "question_id": 22609, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002280", - "question_id": 22613, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001021", - "question_id": 22614, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008076", - "question_id": 22615, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00001656", - "question_id": 22618, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007757", - "question_id": 22627, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001041", - "question_id": 22631, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007895", - "question_id": 22638, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003331", - "question_id": 22640, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008093", - "question_id": 22643, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001451", - "question_id": 22645, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001258", - "question_id": 22648, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007639", - "question_id": 22663, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004529", - "question_id": 22666, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001648", - "question_id": 22672, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004855", - "question_id": 22684, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002659", - "question_id": 22692, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008223", - "question_id": 22695, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003578", - "question_id": 22699, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007506", - "question_id": 22708, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004951", - "question_id": 22728, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001150", - "question_id": 22734, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007278", - "question_id": 22737, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006562", - "question_id": 22749, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004121", - "question_id": 22750, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004886", - "question_id": 22751, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006843", - "question_id": 22752, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002879", - "question_id": 22754, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007787", - "question_id": 22759, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007723", - "question_id": 22767, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007689", - "question_id": 22777, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002651", - "question_id": 22785, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007529", - "question_id": 22788, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002698", - "question_id": 22790, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007840", - "question_id": 22800, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003364", - "question_id": 22802, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005513", - "question_id": 22803, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003691", - "question_id": 22804, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006114", - "question_id": 22809, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00008065", - "question_id": 22810, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006767", - "question_id": 22814, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002722", - "question_id": 22815, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000562", - "question_id": 22816, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007218", - "question_id": 22820, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001353", - "question_id": 22823, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001353", - "question_id": 22823, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003422", - "question_id": 22825, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000609", - "question_id": 22827, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007492", - "question_id": 22831, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004033", - "question_id": 22835, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000279", - "question_id": 22836, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003361", - "question_id": 22838, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006355", - "question_id": 22839, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00008882", - "question_id": 22841, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004433", - "question_id": 22844, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008035", - "question_id": 22845, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008353", - "question_id": 22855, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00004319", - "question_id": 22856, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006498", - "question_id": 22860, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006120", - "question_id": 22864, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004286", - "question_id": 22867, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007259", - "question_id": 22872, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007302", - "question_id": 22879, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004567", - "question_id": 22881, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002436", - "question_id": 22885, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006019", - "question_id": 22886, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00002751", - "question_id": 22887, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007662", - "question_id": 22888, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007906", - "question_id": 22896, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00001546", - "question_id": 22897, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000077", - "question_id": 22898, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001729", - "question_id": 22902, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004501", - "question_id": 22903, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00001205", - "question_id": 22904, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003646", - "question_id": 22908, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003579", - "question_id": 22915, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00003979", - "question_id": 22918, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002202", - "question_id": 22929, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006439", - "question_id": 22936, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002859", - "question_id": 22938, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006188", - "question_id": 22946, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002810", - "question_id": 22947, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00001834", - "question_id": 22950, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006633", - "question_id": 22951, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001425", - "question_id": 22952, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000113", - "question_id": 22960, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000162", - "question_id": 22961, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004590", - "question_id": 22970, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006769", - "question_id": 22984, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000677", - "question_id": 22985, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001085", - "question_id": 22987, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007878", - "question_id": 22995, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002495", - "question_id": 23004, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006692", - "question_id": 23005, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005236", - "question_id": 23007, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004675", - "question_id": 23008, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001453", - "question_id": 23012, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008102", - "question_id": 23016, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008003", - "question_id": 23025, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001126", - "question_id": 23030, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002517", - "question_id": 23032, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007188", - "question_id": 23042, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006300", - "question_id": 23048, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006120", - "question_id": 23054, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008297", - "question_id": 23064, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008437", - "question_id": 23078, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008892", - "question_id": 23086, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"tuba\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00008525", - "question_id": 23088, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006799", - "question_id": 23093, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001490", - "question_id": 23095, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007652", - "question_id": 23099, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00004585", - "question_id": 23101, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001690", - "question_id": 23111, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00004408", - "question_id": 23117, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008959", - "question_id": 23118, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003033", - "question_id": 23131, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00005621", - "question_id": 23132, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002269", - "question_id": 23140, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008450", - "question_id": 23145, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004306", - "question_id": 23153, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005814", - "question_id": 23154, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007365", - "question_id": 23161, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000709", - "question_id": 23166, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00002260", - "question_id": 23171, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003263", - "question_id": 23203, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001910", - "question_id": 23206, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003944", - "question_id": 23208, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000897", - "question_id": 23213, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000273", - "question_id": 23226, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006363", - "question_id": 23230, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006161", - "question_id": 23235, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001561", - "question_id": 23239, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000244", - "question_id": 23242, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00003154", - "question_id": 23254, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002179", - "question_id": 23261, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003598", - "question_id": 23269, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004368", - "question_id": 23271, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000771", - "question_id": 23272, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000749", - "question_id": 23276, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001857", - "question_id": 23278, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"banjo\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00001980", - "question_id": 23280, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001559", - "question_id": 23283, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003967", - "question_id": 23287, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00005180", - "question_id": 23291, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005382", - "question_id": 23293, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000423", - "question_id": 23302, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005597", - "question_id": 23307, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00008572", - "question_id": 23309, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008475", - "question_id": 23311, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003031", - "question_id": 23313, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000788", - "question_id": 23316, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00001304", - "question_id": 23317, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00001407", - "question_id": 23328, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000362", - "question_id": 23329, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00001298", - "question_id": 23337, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002043", - "question_id": 23344, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007261", - "question_id": 23348, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005280", - "question_id": 23349, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003202", - "question_id": 23355, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00002392", - "question_id": 23366, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005472", - "question_id": 23370, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004237", - "question_id": 23375, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008938", - "question_id": 23377, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002928", - "question_id": 23380, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007634", - "question_id": 23390, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008002", - "question_id": 23395, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008293", - "question_id": 23397, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005919", - "question_id": 23398, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004020", - "question_id": 23408, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"tuba\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005204", - "question_id": 23409, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002114", - "question_id": 23416, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002279", - "question_id": 23431, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008961", - "question_id": 23434, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004963", - "question_id": 23436, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001250", - "question_id": 23442, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008810", - "question_id": 23445, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006459", - "question_id": 23446, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002378", - "question_id": 23447, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001565", - "question_id": 23453, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006082", - "question_id": 23458, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005654", - "question_id": 23466, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001656", - "question_id": 23467, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008605", - "question_id": 23471, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007858", - "question_id": 23482, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002410", - "question_id": 23483, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001815", - "question_id": 23497, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"xylophone\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005644", - "question_id": 23500, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007165", - "question_id": 23504, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004924", - "question_id": 23509, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001565", - "question_id": 23519, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"drum\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002843", - "question_id": 23531, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006316", - "question_id": 23532, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005189", - "question_id": 23534, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007057", - "question_id": 23535, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001215", - "question_id": 23536, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005375", - "question_id": 23537, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003706", - "question_id": 23542, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001699", - "question_id": 23547, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003234", - "question_id": 23552, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007991", - "question_id": 23560, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001961", - "question_id": 23561, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003550", - "question_id": 23567, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004202", - "question_id": 23579, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004268", - "question_id": 23583, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005460", - "question_id": 23591, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001455", - "question_id": 23595, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005095", - "question_id": 23597, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004308", - "question_id": 23614, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007583", - "question_id": 23627, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004681", - "question_id": 23636, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002044", - "question_id": 23638, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001931", - "question_id": 23648, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00008252", - "question_id": 23653, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"middle\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005561", - "question_id": 23657, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001681", - "question_id": 23658, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00000713", - "question_id": 23660, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005821", - "question_id": 23665, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00002430", - "question_id": 23670, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006954", - "question_id": 23676, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008747", - "question_id": 23688, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00006576", - "question_id": 23698, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"suona\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006131", - "question_id": 23700, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000902", - "question_id": 23702, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000800", - "question_id": 23709, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003910", - "question_id": 23711, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002305", - "question_id": 23714, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006900", - "question_id": 23740, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001667", - "question_id": 23748, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007812", - "question_id": 23755, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007897", - "question_id": 23756, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007822", - "question_id": 23766, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004756", - "question_id": 23774, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007341", - "question_id": 23783, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007380", - "question_id": 23790, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00006263", - "question_id": 23798, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000019", - "question_id": 23803, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007167", - "question_id": 23806, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000471", - "question_id": 23828, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005687", - "question_id": 23829, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008965", - "question_id": 23833, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"trumpet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003394", - "question_id": 23834, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001537", - "question_id": 23854, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008806", - "question_id": 23856, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007583", - "question_id": 23864, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007597", - "question_id": 23865, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004528", - "question_id": 23867, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006011", - "question_id": 23870, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000311", - "question_id": 23874, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002542", - "question_id": 23881, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003602", - "question_id": 23883, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007639", - "question_id": 23884, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00007957", - "question_id": 23887, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007702", - "question_id": 23888, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008003", - "question_id": 23892, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006714", - "question_id": 23898, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007010", - "question_id": 23900, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000603", - "question_id": 23906, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005801", - "question_id": 23910, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000596", - "question_id": 23918, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00006466", - "question_id": 23924, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001514", - "question_id": 23926, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006888", - "question_id": 23930, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006807", - "question_id": 23931, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000544", - "question_id": 23945, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001340", - "question_id": 23947, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002968", - "question_id": 23951, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006991", - "question_id": 23956, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004862", - "question_id": 23958, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006651", - "question_id": 23965, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006827", - "question_id": 23968, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008115", - "question_id": 23974, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002901", - "question_id": 23983, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004088", - "question_id": 23986, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003691", - "question_id": 23997, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004692", - "question_id": 24003, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007985", - "question_id": 24005, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005050", - "question_id": 24007, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002001", - "question_id": 24018, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005447", - "question_id": 24030, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007545", - "question_id": 24035, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00005638", - "question_id": 24039, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008208", - "question_id": 24040, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007281", - "question_id": 24041, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004636", - "question_id": 24047, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003238", - "question_id": 24053, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008895", - "question_id": 24061, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007738", - "question_id": 24065, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004012", - "question_id": 24067, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001525", - "question_id": 24073, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003818", - "question_id": 24075, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001719", - "question_id": 24092, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005387", - "question_id": 24094, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00002848", - "question_id": 24095, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002876", - "question_id": 24103, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00006573", - "question_id": 24104, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006110", - "question_id": 24106, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"electric_bass\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000654", - "question_id": 24110, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002681", - "question_id": 24121, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002132", - "question_id": 24131, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00008659", - "question_id": 24132, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007442", - "question_id": 24137, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007430", - "question_id": 24149, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000748", - "question_id": 24151, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000715", - "question_id": 24153, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008917", - "question_id": 24157, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001141", - "question_id": 24162, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007095", - "question_id": 24188, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"banjo\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003933", - "question_id": 24197, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007762", - "question_id": 24199, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001846", - "question_id": 24200, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007005", - "question_id": 24202, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008117", - "question_id": 24205, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003769", - "question_id": 24212, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001709", - "question_id": 24213, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001302", - "question_id": 24222, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000787", - "question_id": 24224, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"xylophone\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005140", - "question_id": 24232, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00005442", - "question_id": 24245, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007700", - "question_id": 24246, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004663", - "question_id": 24255, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002875", - "question_id": 24259, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003493", - "question_id": 24263, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005030", - "question_id": 24264, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007969", - "question_id": 24267, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00002115", - "question_id": 24271, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006875", - "question_id": 24273, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00002965", - "question_id": 24274, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00005688", - "question_id": 24278, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003897", - "question_id": 24284, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008093", - "question_id": 24289, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003720", - "question_id": 24298, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006936", - "question_id": 24300, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002615", - "question_id": 24303, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001224", - "question_id": 24305, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00007840", - "question_id": 24312, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003099", - "question_id": 24321, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008482", - "question_id": 24324, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002312", - "question_id": 24327, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001174", - "question_id": 24328, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002720", - "question_id": 24331, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005499", - "question_id": 24335, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000635", - "question_id": 24336, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000104", - "question_id": 24345, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000578", - "question_id": 24346, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007206", - "question_id": 24347, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001900", - "question_id": 24351, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004873", - "question_id": 24356, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007403", - "question_id": 24361, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007690", - "question_id": 24362, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007021", - "question_id": 24363, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001089", - "question_id": 24366, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008921", - "question_id": 24369, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003149", - "question_id": 24372, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008935", - "question_id": 24376, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002180", - "question_id": 24383, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003310", - "question_id": 24392, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003801", - "question_id": 24393, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004382", - "question_id": 24402, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007057", - "question_id": 24413, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004006", - "question_id": 24414, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00000687", - "question_id": 24427, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005645", - "question_id": 24431, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00004031", - "question_id": 24432, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000801", - "question_id": 24434, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00004321", - "question_id": 24437, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001009", - "question_id": 24441, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005880", - "question_id": 24446, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001120", - "question_id": 24448, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006365", - "question_id": 24461, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006527", - "question_id": 24470, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001153", - "question_id": 24473, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004504", - "question_id": 24479, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004741", - "question_id": 24486, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005164", - "question_id": 24487, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003144", - "question_id": 24495, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000793", - "question_id": 24496, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004448", - "question_id": 24498, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003725", - "question_id": 24499, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000607", - "question_id": 24500, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00008516", - "question_id": 24503, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005197", - "question_id": 24515, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004610", - "question_id": 24522, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003414", - "question_id": 24526, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002181", - "question_id": 24529, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"congas\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006447", - "question_id": 24535, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001722", - "question_id": 24536, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000973", - "question_id": 24540, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001718", - "question_id": 24543, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003402", - "question_id": 24545, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003921", - "question_id": 24546, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007719", - "question_id": 24547, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007249", - "question_id": 24548, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001540", - "question_id": 24552, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006332", - "question_id": 24561, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00003212", - "question_id": 24568, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"suona\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003484", - "question_id": 24570, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007905", - "question_id": 24571, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000687", - "question_id": 24581, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001430", - "question_id": 24583, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006316", - "question_id": 24588, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005126", - "question_id": 24591, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"drum\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000974", - "question_id": 24594, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00005736", - "question_id": 24596, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000718", - "question_id": 24600, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003722", - "question_id": 24608, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00005732", - "question_id": 24609, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000603", - "question_id": 24614, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000833", - "question_id": 24624, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003282", - "question_id": 24626, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005800", - "question_id": 24629, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00004153", - "question_id": 24630, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008632", - "question_id": 24632, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004729", - "question_id": 24633, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006649", - "question_id": 24638, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00006404", - "question_id": 24650, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002006", - "question_id": 24651, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005502", - "question_id": 24673, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003013", - "question_id": 24674, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004072", - "question_id": 24677, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001940", - "question_id": 24681, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005340", - "question_id": 24688, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004844", - "question_id": 24694, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00003403", - "question_id": 24697, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006872", - "question_id": 24698, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004428", - "question_id": 24699, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005939", - "question_id": 24702, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006402", - "question_id": 24703, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005883", - "question_id": 24704, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005608", - "question_id": 24713, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005015", - "question_id": 24718, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005792", - "question_id": 24722, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007557", - "question_id": 24725, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"accordion\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000135", - "question_id": 24726, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00003790", - "question_id": 24736, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008487", - "question_id": 24745, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004967", - "question_id": 24751, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008065", - "question_id": 24760, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007827", - "question_id": 24764, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002817", - "question_id": 24766, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006396", - "question_id": 24770, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"clarinet\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004418", - "question_id": 24771, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004340", - "question_id": 24772, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005036", - "question_id": 24777, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000206", - "question_id": 24778, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002922", - "question_id": 24785, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004788", - "question_id": 24793, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000006", - "question_id": 24797, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00004013", - "question_id": 24807, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00004492", - "question_id": 24808, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008140", - "question_id": 24822, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004605", - "question_id": 24831, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00008060", - "question_id": 24832, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001955", - "question_id": 24834, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007260", - "question_id": 24835, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001343", - "question_id": 24839, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008308", - "question_id": 24843, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00006801", - "question_id": 24844, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006771", - "question_id": 24850, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006400", - "question_id": 24857, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000080", - "question_id": 24861, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008271", - "question_id": 24866, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"congas\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001260", - "question_id": 24869, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00007777", - "question_id": 24873, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005490", - "question_id": 24877, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004660", - "question_id": 24879, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000935", - "question_id": 24891, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005073", - "question_id": 24900, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006970", - "question_id": 24903, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004045", - "question_id": 24906, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001267", - "question_id": 24908, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005109", - "question_id": 24914, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00007244", - "question_id": 24918, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"xylophone\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004763", - "question_id": 24921, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008358", - "question_id": 24926, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007307", - "question_id": 24930, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006715", - "question_id": 24937, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004358", - "question_id": 24940, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007725", - "question_id": 24951, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00005890", - "question_id": 24966, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001361", - "question_id": 24972, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00001932", - "question_id": 24974, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005384", - "question_id": 24978, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002979", - "question_id": 24979, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000969", - "question_id": 24987, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000996", - "question_id": 24993, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008744", - "question_id": 24996, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000549", - "question_id": 24999, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008457", - "question_id": 25000, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000480", - "question_id": 25005, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00003403", - "question_id": 25010, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002188", - "question_id": 25015, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006974", - "question_id": 25016, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"bassoon\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007604", - "question_id": 25019, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008106", - "question_id": 25023, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001819", - "question_id": 25027, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000820", - "question_id": 25028, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003772", - "question_id": 25029, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001495", - "question_id": 25043, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008346", - "question_id": 25046, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003067", - "question_id": 25054, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003484", - "question_id": 25055, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002799", - "question_id": 25067, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00007514", - "question_id": 25069, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001040", - "question_id": 25070, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00005957", - "question_id": 25076, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008407", - "question_id": 25078, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008806", - "question_id": 25079, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001801", - "question_id": 25090, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006692", - "question_id": 25094, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000030", - "question_id": 25102, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008297", - "question_id": 25108, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008036", - "question_id": 25112, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006866", - "question_id": 25114, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"middle\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003604", - "question_id": 25118, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003981", - "question_id": 25127, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00005597", - "question_id": 25140, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007011", - "question_id": 25146, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00003557", - "question_id": 25154, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00004485", - "question_id": 25160, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000185", - "question_id": 25172, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007493", - "question_id": 25199, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007480", - "question_id": 25204, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006901", - "question_id": 25212, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005252", - "question_id": 25213, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005078", - "question_id": 25221, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003555", - "question_id": 25226, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001444", - "question_id": 25231, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004261", - "question_id": 25235, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003917", - "question_id": 25236, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005826", - "question_id": 25240, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000442", - "question_id": 25244, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005425", - "question_id": 25246, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002862", - "question_id": 25247, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001054", - "question_id": 25253, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00006860", - "question_id": 25257, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00001630", - "question_id": 25260, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008962", - "question_id": 25268, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006700", - "question_id": 25279, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000379", - "question_id": 25286, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003051", - "question_id": 25310, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"tuba\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000718", - "question_id": 25313, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007006", - "question_id": 25314, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000356", - "question_id": 25319, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008503", - "question_id": 25327, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"last\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00006787", - "question_id": 25337, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002117", - "question_id": 25345, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006885", - "question_id": 25347, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003647", - "question_id": 25349, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00006183", - "question_id": 25373, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001307", - "question_id": 25375, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00005411", - "question_id": 25376, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002523", - "question_id": 25377, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00005669", - "question_id": 25385, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004336", - "question_id": 25389, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004441", - "question_id": 25391, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005463", - "question_id": 25394, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00001632", - "question_id": 25396, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007911", - "question_id": 25399, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002461", - "question_id": 25403, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00006115", - "question_id": 25413, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003195", - "question_id": 25415, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003208", - "question_id": 25417, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004881", - "question_id": 25418, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007600", - "question_id": 25423, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007988", - "question_id": 25428, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006637", - "question_id": 25433, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"ukulele\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006850", - "question_id": 25437, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005104", - "question_id": 25441, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001870", - "question_id": 25445, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005010", - "question_id": 25449, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004983", - "question_id": 25452, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006262", - "question_id": 25456, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008334", - "question_id": 25462, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007836", - "question_id": 25471, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007618", - "question_id": 25477, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007093", - "question_id": 25482, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004769", - "question_id": 25487, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00000006", - "question_id": 25503, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000921", - "question_id": 25509, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006607", - "question_id": 25513, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008267", - "question_id": 25514, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006069", - "question_id": 25529, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008644", - "question_id": 25536, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004393", - "question_id": 25539, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004891", - "question_id": 25542, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003045", - "question_id": 25544, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008125", - "question_id": 25554, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001851", - "question_id": 25561, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007557", - "question_id": 25573, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003191", - "question_id": 25578, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002712", - "question_id": 25580, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003519", - "question_id": 25598, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008716", - "question_id": 25600, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00001679", - "question_id": 25601, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003937", - "question_id": 25602, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005283", - "question_id": 25607, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003790", - "question_id": 25609, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004276", - "question_id": 25613, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000845", - "question_id": 25626, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005724", - "question_id": 25633, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002735", - "question_id": 25645, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003487", - "question_id": 25656, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004409", - "question_id": 25662, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00004285", - "question_id": 25670, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007902", - "question_id": 25673, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000410", - "question_id": 25676, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007304", - "question_id": 25684, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007784", - "question_id": 25695, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005035", - "question_id": 25697, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00004972", - "question_id": 25702, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003629", - "question_id": 25706, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008539", - "question_id": 25716, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00008001", - "question_id": 25725, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000184", - "question_id": 25729, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001366", - "question_id": 25735, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002006", - "question_id": 25737, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00004241", - "question_id": 25739, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003624", - "question_id": 25740, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000996", - "question_id": 25745, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006990", - "question_id": 25746, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006056", - "question_id": 25749, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004912", - "question_id": 25756, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00008576", - "question_id": 25784, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004270", - "question_id": 25789, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002963", - "question_id": 25795, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000338", - "question_id": 25798, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008774", - "question_id": 25803, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004613", - "question_id": 25816, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006386", - "question_id": 25820, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005338", - "question_id": 25826, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001542", - "question_id": 25834, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006594", - "question_id": 25843, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000593", - "question_id": 25863, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008045", - "question_id": 25868, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005999", - "question_id": 25871, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008972", - "question_id": 25878, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007052", - "question_id": 25886, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00004022", - "question_id": 25891, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00000342", - "question_id": 25898, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00007843", - "question_id": 25903, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007222", - "question_id": 25904, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004096", - "question_id": 25913, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008235", - "question_id": 25914, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001781", - "question_id": 25918, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004060", - "question_id": 25927, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00007926", - "question_id": 25936, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003104", - "question_id": 25941, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000979", - "question_id": 25947, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004407", - "question_id": 25949, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002534", - "question_id": 25962, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"tuba\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001692", - "question_id": 25966, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002718", - "question_id": 25977, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006998", - "question_id": 25983, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000462", - "question_id": 25985, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008578", - "question_id": 25986, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007872", - "question_id": 25987, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00001713", - "question_id": 25997, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003160", - "question_id": 26004, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008465", - "question_id": 26007, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006078", - "question_id": 26018, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006375", - "question_id": 26020, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002591", - "question_id": 26026, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00003538", - "question_id": 26029, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001480", - "question_id": 26035, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008430", - "question_id": 26036, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006786", - "question_id": 26040, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003327", - "question_id": 26047, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003327", - "question_id": 26047, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000893", - "question_id": 26051, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006399", - "question_id": 26053, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005730", - "question_id": 26055, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"accordion\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003352", - "question_id": 26065, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002288", - "question_id": 26067, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002365", - "question_id": 26072, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00000346", - "question_id": 26079, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00006885", - "question_id": 26089, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004310", - "question_id": 26091, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00001402", - "question_id": 26100, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002448", - "question_id": 26107, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000200", - "question_id": 26108, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004671", - "question_id": 26117, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001275", - "question_id": 26124, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001389", - "question_id": 26126, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000325", - "question_id": 26129, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005144", - "question_id": 26130, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002104", - "question_id": 26132, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006217", - "question_id": 26139, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005239", - "question_id": 26145, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004417", - "question_id": 26146, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000642", - "question_id": 26150, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007551", - "question_id": 26157, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006329", - "question_id": 26167, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001319", - "question_id": 26170, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003287", - "question_id": 26176, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000652", - "question_id": 26187, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"drum\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002030", - "question_id": 26215, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001837", - "question_id": 26219, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005951", - "question_id": 26220, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000696", - "question_id": 26229, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008266", - "question_id": 26236, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00005471", - "question_id": 26237, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003984", - "question_id": 26239, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006057", - "question_id": 26248, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00006051", - "question_id": 26252, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002255", - "question_id": 26255, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005722", - "question_id": 26261, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003551", - "question_id": 26265, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008929", - "question_id": 26266, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007400", - "question_id": 26279, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006991", - "question_id": 26281, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003589", - "question_id": 26282, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00002893", - "question_id": 26291, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00003277", - "question_id": 26300, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004599", - "question_id": 26308, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008241", - "question_id": 26309, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00005911", - "question_id": 26314, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003993", - "question_id": 26323, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007072", - "question_id": 26324, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007945", - "question_id": 26325, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008279", - "question_id": 26330, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003026", - "question_id": 26331, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008523", - "question_id": 26332, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002347", - "question_id": 26335, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00002240", - "question_id": 26337, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005048", - "question_id": 26338, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00003506", - "question_id": 26340, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00001303", - "question_id": 26342, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001635", - "question_id": 26348, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003679", - "question_id": 26353, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004018", - "question_id": 26356, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001739", - "question_id": 26357, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001739", - "question_id": 26357, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004190", - "question_id": 26363, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001481", - "question_id": 26365, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008114", - "question_id": 26369, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004189", - "question_id": 26378, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004392", - "question_id": 26380, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005492", - "question_id": 26395, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007329", - "question_id": 26400, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005482", - "question_id": 26412, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002419", - "question_id": 26416, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006043", - "question_id": 26417, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006730", - "question_id": 26423, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00005406", - "question_id": 26426, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000571", - "question_id": 26430, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004824", - "question_id": 26432, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003764", - "question_id": 26435, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00002463", - "question_id": 26436, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008903", - "question_id": 26437, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002004", - "question_id": 26448, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000839", - "question_id": 26456, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004169", - "question_id": 26465, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008581", - "question_id": 26467, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004017", - "question_id": 26470, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004306", - "question_id": 26478, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001375", - "question_id": 26480, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005953", - "question_id": 26481, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005512", - "question_id": 26482, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008530", - "question_id": 26484, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00000240", - "question_id": 26487, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002519", - "question_id": 26489, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004892", - "question_id": 26497, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006784", - "question_id": 26499, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00008464", - "question_id": 26506, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005927", - "question_id": 26511, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001541", - "question_id": 26522, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008290", - "question_id": 26527, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00006193", - "question_id": 26533, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004848", - "question_id": 26535, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004638", - "question_id": 26549, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004759", - "question_id": 26550, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005016", - "question_id": 26551, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000769", - "question_id": 26556, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00007451", - "question_id": 26567, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008784", - "question_id": 26581, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004834", - "question_id": 26590, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004519", - "question_id": 26603, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004721", - "question_id": 26607, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002110", - "question_id": 26611, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002071", - "question_id": 26613, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008200", - "question_id": 26615, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002067", - "question_id": 26617, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005732", - "question_id": 26623, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005469", - "question_id": 26624, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004252", - "question_id": 26638, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008137", - "question_id": 26646, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002116", - "question_id": 26657, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004139", - "question_id": 26659, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004450", - "question_id": 26661, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00000427", - "question_id": 26665, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008430", - "question_id": 26667, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004796", - "question_id": 26683, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005779", - "question_id": 26686, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001262", - "question_id": 26721, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002524", - "question_id": 26725, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003922", - "question_id": 26730, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002939", - "question_id": 26734, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004381", - "question_id": 26737, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005744", - "question_id": 26765, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001818", - "question_id": 26767, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000592", - "question_id": 26768, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001962", - "question_id": 26771, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006786", - "question_id": 26786, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007437", - "question_id": 26787, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007249", - "question_id": 26800, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004450", - "question_id": 26805, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006031", - "question_id": 26826, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008681", - "question_id": 26832, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005760", - "question_id": 26838, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003895", - "question_id": 26839, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007620", - "question_id": 26848, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001733", - "question_id": 26849, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00002192", - "question_id": 26850, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003963", - "question_id": 26855, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006222", - "question_id": 26858, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001727", - "question_id": 26860, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000317", - "question_id": 26861, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001563", - "question_id": 26862, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00004552", - "question_id": 26864, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008561", - "question_id": 26867, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002346", - "question_id": 26908, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000253", - "question_id": 26909, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"congas\", \"left\", \"congas\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006934", - "question_id": 26911, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006624", - "question_id": 26918, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008438", - "question_id": 26921, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005159", - "question_id": 26922, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007387", - "question_id": 26925, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"middle\", \"erhu\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001420", - "question_id": 26933, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002248", - "question_id": 26936, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007460", - "question_id": 26939, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002512", - "question_id": 26945, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001400", - "question_id": 26962, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006428", - "question_id": 26970, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003307", - "question_id": 26973, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003632", - "question_id": 26975, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002123", - "question_id": 26990, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003321", - "question_id": 26991, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00007528", - "question_id": 26996, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002996", - "question_id": 26997, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002996", - "question_id": 26997, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005237", - "question_id": 26998, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005214", - "question_id": 27001, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006922", - "question_id": 27022, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00007379", - "question_id": 27023, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000540", - "question_id": 27025, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007744", - "question_id": 27028, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005585", - "question_id": 27039, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006288", - "question_id": 27042, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002574", - "question_id": 27044, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000661", - "question_id": 27046, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003128", - "question_id": 27054, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006351", - "question_id": 27063, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006351", - "question_id": 27063, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004180", - "question_id": 27064, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000504", - "question_id": 27069, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003735", - "question_id": 27070, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000285", - "question_id": 27084, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00007891", - "question_id": 27093, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00004688", - "question_id": 27107, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007744", - "question_id": 27110, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008682", - "question_id": 27111, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00005997", - "question_id": 27116, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00008754", - "question_id": 27117, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001574", - "question_id": 27118, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001471", - "question_id": 27119, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00005609", - "question_id": 27129, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00000514", - "question_id": 27132, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00005685", - "question_id": 27133, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006390", - "question_id": 27138, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004023", - "question_id": 27139, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002172", - "question_id": 27141, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004707", - "question_id": 27156, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006639", - "question_id": 27162, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001414", - "question_id": 27172, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008747", - "question_id": 27175, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003874", - "question_id": 27177, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002101", - "question_id": 27180, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001555", - "question_id": 27184, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00008887", - "question_id": 27187, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003639", - "question_id": 27189, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004852", - "question_id": 27205, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003250", - "question_id": 27214, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003869", - "question_id": 27216, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008339", - "question_id": 27224, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00008169", - "question_id": 27228, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007487", - "question_id": 27231, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005190", - "question_id": 27247, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00001342", - "question_id": 27248, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00006064", - "question_id": 27249, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006510", - "question_id": 27250, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002305", - "question_id": 27251, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003706", - "question_id": 27252, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002047", - "question_id": 27254, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00002090", - "question_id": 27258, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002444", - "question_id": 27259, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000888", - "question_id": 27264, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006661", - "question_id": 27270, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007649", - "question_id": 27272, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002380", - "question_id": 27279, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000640", - "question_id": 27280, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006441", - "question_id": 27282, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007086", - "question_id": 27284, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004994", - "question_id": 27287, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002365", - "question_id": 27289, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003763", - "question_id": 27300, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004380", - "question_id": 27310, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006950", - "question_id": 27314, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007568", - "question_id": 27320, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006467", - "question_id": 27324, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005269", - "question_id": 27325, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006735", - "question_id": 27345, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004084", - "question_id": 27357, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004224", - "question_id": 27367, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00002625", - "question_id": 27377, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007353", - "question_id": 27380, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004078", - "question_id": 27381, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003968", - "question_id": 27382, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006866", - "question_id": 27386, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004944", - "question_id": 27390, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006761", - "question_id": 27393, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00002999", - "question_id": 27402, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00001157", - "question_id": 27406, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006999", - "question_id": 27419, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006739", - "question_id": 27422, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00000546", - "question_id": 27441, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00003660", - "question_id": 27443, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008628", - "question_id": 27445, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007660", - "question_id": 27456, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001517", - "question_id": 27460, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007293", - "question_id": 27462, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007241", - "question_id": 27463, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004091", - "question_id": 27475, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00002677", - "question_id": 27476, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00004632", - "question_id": 27478, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001036", - "question_id": 27505, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00008155", - "question_id": 27509, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00002617", - "question_id": 27518, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00002683", - "question_id": 27523, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005744", - "question_id": 27529, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00003119", - "question_id": 27533, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000967", - "question_id": 27538, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004301", - "question_id": 27543, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005958", - "question_id": 27548, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00001901", - "question_id": 27550, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00003326", - "question_id": 27557, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004536", - "question_id": 27558, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00004536", - "question_id": 27558, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007105", - "question_id": 27561, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002029", - "question_id": 27563, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002506", - "question_id": 27568, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004733", - "question_id": 27570, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004375", - "question_id": 27572, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005815", - "question_id": 27574, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00004891", - "question_id": 27578, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000755", - "question_id": 27589, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002839", - "question_id": 27597, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005766", - "question_id": 27599, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008706", - "question_id": 27601, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00004875", - "question_id": 27604, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00007098", - "question_id": 27606, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007349", - "question_id": 27609, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007239", - "question_id": 27613, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00005613", - "question_id": 27615, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002194", - "question_id": 27625, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007689", - "question_id": 27628, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004549", - "question_id": 27630, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001905", - "question_id": 27634, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00001527", - "question_id": 27635, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004348", - "question_id": 27644, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006700", - "question_id": 27655, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00006730", - "question_id": 27671, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004568", - "question_id": 27676, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002550", - "question_id": 27678, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007284", - "question_id": 27685, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008722", - "question_id": 27694, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005323", - "question_id": 27702, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004571", - "question_id": 27712, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001068", - "question_id": 27726, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003684", - "question_id": 27728, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005104", - "question_id": 27730, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001958", - "question_id": 27742, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008613", - "question_id": 27753, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004066", - "question_id": 27757, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006009", - "question_id": 27758, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008026", - "question_id": 27762, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003327", - "question_id": 27768, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003327", - "question_id": 27768, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005106", - "question_id": 27775, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000853", - "question_id": 27779, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00002990", - "question_id": 27780, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00000601", - "question_id": 27781, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002825", - "question_id": 27790, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002198", - "question_id": 27799, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00002397", - "question_id": 27809, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003918", - "question_id": 27813, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001188", - "question_id": 27814, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000602", - "question_id": 27822, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000659", - "question_id": 27832, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00000078", - "question_id": 27839, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004578", - "question_id": 27840, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008949", - "question_id": 27846, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006181", - "question_id": 27852, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00007733", - "question_id": 27859, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00000450", - "question_id": 27875, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00001731", - "question_id": 27876, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"saxophone\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000761", - "question_id": 27896, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001180", - "question_id": 27898, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003744", - "question_id": 27909, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007844", - "question_id": 27912, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007088", - "question_id": 27915, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005834", - "question_id": 27921, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001228", - "question_id": 27927, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004445", - "question_id": 27932, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005053", - "question_id": 27934, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006630", - "question_id": 27936, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004221", - "question_id": 27939, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008962", - "question_id": 27940, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008090", - "question_id": 27945, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004083", - "question_id": 27948, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003840", - "question_id": 27954, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00007082", - "question_id": 27976, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005123", - "question_id": 27981, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007110", - "question_id": 27988, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002480", - "question_id": 27989, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00005989", - "question_id": 27990, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00007773", - "question_id": 27992, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001850", - "question_id": 28006, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007894", - "question_id": 28019, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004765", - "question_id": 28031, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001244", - "question_id": 28034, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00003960", - "question_id": 28039, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005409", - "question_id": 28047, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006251", - "question_id": 28048, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006423", - "question_id": 28054, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002606", - "question_id": 28062, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005319", - "question_id": 28063, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003930", - "question_id": 28068, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001615", - "question_id": 28073, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008283", - "question_id": 28076, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007067", - "question_id": 28088, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002126", - "question_id": 28091, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007153", - "question_id": 28097, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00006001", - "question_id": 28099, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004749", - "question_id": 28103, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007781", - "question_id": 28131, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003162", - "question_id": 28133, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002688", - "question_id": 28144, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002754", - "question_id": 28145, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007573", - "question_id": 28146, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005701", - "question_id": 28152, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00003905", - "question_id": 28155, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001825", - "question_id": 28156, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004096", - "question_id": 28166, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001988", - "question_id": 28168, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000123", - "question_id": 28169, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005531", - "question_id": 28170, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008316", - "question_id": 28174, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003568", - "question_id": 28176, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00006016", - "question_id": 28179, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00006347", - "question_id": 28182, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006892", - "question_id": 28184, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005481", - "question_id": 28190, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002428", - "question_id": 28191, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008422", - "question_id": 28199, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000073", - "question_id": 28203, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002995", - "question_id": 28204, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000147", - "question_id": 28227, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000249", - "question_id": 28237, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007218", - "question_id": 28239, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002019", - "question_id": 28249, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007145", - "question_id": 28255, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008764", - "question_id": 28259, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001012", - "question_id": 28261, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001047", - "question_id": 28265, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004904", - "question_id": 28266, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006741", - "question_id": 28271, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00003582", - "question_id": 28272, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004958", - "question_id": 28281, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005021", - "question_id": 28283, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008935", - "question_id": 28290, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007675", - "question_id": 28301, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002095", - "question_id": 28305, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001579", - "question_id": 28315, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008636", - "question_id": 28334, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005336", - "question_id": 28335, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002883", - "question_id": 28336, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002268", - "question_id": 28337, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006746", - "question_id": 28343, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00008863", - "question_id": 28345, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004961", - "question_id": 28367, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001816", - "question_id": 28368, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00003099", - "question_id": 28370, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00000779", - "question_id": 28375, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004425", - "question_id": 28382, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00002575", - "question_id": 28385, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008002", - "question_id": 28386, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000049", - "question_id": 28391, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005381", - "question_id": 28405, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001918", - "question_id": 28414, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00006075", - "question_id": 28417, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005874", - "question_id": 28425, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003524", - "question_id": 28436, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004071", - "question_id": 28439, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000017", - "question_id": 28453, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003300", - "question_id": 28456, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006660", - "question_id": 28461, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00006615", - "question_id": 28465, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001285", - "question_id": 28476, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008686", - "question_id": 28477, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000496", - "question_id": 28486, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001839", - "question_id": 28487, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000984", - "question_id": 28509, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003017", - "question_id": 28513, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008590", - "question_id": 28517, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00001085", - "question_id": 28519, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005026", - "question_id": 28520, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000387", - "question_id": 28521, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002648", - "question_id": 28533, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006577", - "question_id": 28534, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001705", - "question_id": 28551, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00003668", - "question_id": 28561, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001380", - "question_id": 28562, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007798", - "question_id": 28578, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00008618", - "question_id": 28584, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002614", - "question_id": 28589, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006845", - "question_id": 28597, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00006761", - "question_id": 28599, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003851", - "question_id": 28604, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004578", - "question_id": 28608, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006980", - "question_id": 28611, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001882", - "question_id": 28612, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006043", - "question_id": 28614, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00003370", - "question_id": 28618, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000975", - "question_id": 28621, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005863", - "question_id": 28623, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004216", - "question_id": 28629, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008288", - "question_id": 28631, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004474", - "question_id": 28637, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001111", - "question_id": 28642, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002054", - "question_id": 28649, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001971", - "question_id": 28653, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006038", - "question_id": 28656, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00006958", - "question_id": 28663, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00005630", - "question_id": 28665, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004288", - "question_id": 28668, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00001034", - "question_id": 28672, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003253", - "question_id": 28673, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007179", - "question_id": 28677, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003155", - "question_id": 28678, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00001228", - "question_id": 28680, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002521", - "question_id": 28681, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008840", - "question_id": 28690, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005525", - "question_id": 28694, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008183", - "question_id": 28698, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008115", - "question_id": 28699, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005053", - "question_id": 28705, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007144", - "question_id": 28709, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006029", - "question_id": 28717, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00001840", - "question_id": 28723, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00007408", - "question_id": 28729, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00007199", - "question_id": 28739, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001145", - "question_id": 28742, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00007334", - "question_id": 28745, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000174", - "question_id": 28747, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002138", - "question_id": 28758, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005087", - "question_id": 28771, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bagpipe\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001532", - "question_id": 28781, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005396", - "question_id": 28783, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00003754", - "question_id": 28789, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004976", - "question_id": 28802, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00003479", - "question_id": 28808, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00001762", - "question_id": 28811, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00004104", - "question_id": 28817, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008102", - "question_id": 28820, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008125", - "question_id": 28824, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001508", - "question_id": 28838, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001136", - "question_id": 28842, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005631", - "question_id": 28844, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003039", - "question_id": 28851, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00003821", - "question_id": 28855, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00002238", - "question_id": 28857, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001549", - "question_id": 28864, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00004321", - "question_id": 28872, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00006723", - "question_id": 28873, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007439", - "question_id": 28876, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001463", - "question_id": 28894, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003310", - "question_id": 28895, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002191", - "question_id": 28897, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002211", - "question_id": 28904, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002316", - "question_id": 28909, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00000315", - "question_id": 28925, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008214", - "question_id": 28933, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00008823", - "question_id": 28940, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001107", - "question_id": 28941, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"drum\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005895", - "question_id": 28942, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00005160", - "question_id": 28949, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000031", - "question_id": 28968, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00006017", - "question_id": 28973, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005286", - "question_id": 28984, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008828", - "question_id": 28992, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00000522", - "question_id": 28998, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00001529", - "question_id": 29000, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00003668", - "question_id": 29002, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006233", - "question_id": 29019, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008956", - "question_id": 29034, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002191", - "question_id": 29042, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004624", - "question_id": 29053, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00000368", - "question_id": 29060, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006544", - "question_id": 29062, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00008415", - "question_id": 29065, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006185", - "question_id": 29080, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00002775", - "question_id": 29090, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006908", - "question_id": 29095, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000995", - "question_id": 29102, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003925", - "question_id": 29111, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008213", - "question_id": 29118, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003109", - "question_id": 29120, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00004589", - "question_id": 29135, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002164", - "question_id": 29147, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00000793", - "question_id": 29149, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006291", - "question_id": 29150, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006883", - "question_id": 29153, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004831", - "question_id": 29157, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001808", - "question_id": 29167, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007537", - "question_id": 29172, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007751", - "question_id": 29177, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00005110", - "question_id": 29179, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005260", - "question_id": 29180, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007122", - "question_id": 29189, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006308", - "question_id": 29197, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006238", - "question_id": 29203, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000668", - "question_id": 29206, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005711", - "question_id": 29214, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00004440", - "question_id": 29217, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00006395", - "question_id": 29222, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00004507", - "question_id": 29233, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003718", - "question_id": 29243, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00002475", - "question_id": 29244, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005102", - "question_id": 29248, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001425", - "question_id": 29252, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001586", - "question_id": 29254, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006588", - "question_id": 29261, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002645", - "question_id": 29263, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00004334", - "question_id": 29268, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001984", - "question_id": 29280, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005156", - "question_id": 29282, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00002824", - "question_id": 29287, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00005350", - "question_id": 29292, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00000451", - "question_id": 29306, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00000451", - "question_id": 29306, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001791", - "question_id": 29307, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00006584", - "question_id": 29324, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005003", - "question_id": 29335, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003707", - "question_id": 29348, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"bassoon\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002758", - "question_id": 29356, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008681", - "question_id": 29357, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005451", - "question_id": 29376, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003658", - "question_id": 29384, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005096", - "question_id": 29386, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001984", - "question_id": 29392, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004403", - "question_id": 29397, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00001644", - "question_id": 29404, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002489", - "question_id": 29409, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001166", - "question_id": 29428, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002396", - "question_id": 29431, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004391", - "question_id": 29446, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008018", - "question_id": 29452, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00006700", - "question_id": 29454, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007792", - "question_id": 29456, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008080", - "question_id": 29464, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001999", - "question_id": 29468, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007593", - "question_id": 29470, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008523", - "question_id": 29471, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006603", - "question_id": 29475, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002670", - "question_id": 29482, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000533", - "question_id": 29487, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007928", - "question_id": 29492, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002660", - "question_id": 29493, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00000083", - "question_id": 29495, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001894", - "question_id": 29497, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003176", - "question_id": 29505, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00002538", - "question_id": 29510, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001365", - "question_id": 29513, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001743", - "question_id": 29515, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008062", - "question_id": 29518, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00008830", - "question_id": 29520, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002541", - "question_id": 29524, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002369", - "question_id": 29526, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008208", - "question_id": 29534, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002401", - "question_id": 29549, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001925", - "question_id": 29566, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005714", - "question_id": 29569, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005182", - "question_id": 29573, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007670", - "question_id": 29576, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005164", - "question_id": 29583, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000689", - "question_id": 29585, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006412", - "question_id": 29593, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002320", - "question_id": 29595, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00006331", - "question_id": 29596, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003754", - "question_id": 29597, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002624", - "question_id": 29599, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005526", - "question_id": 29600, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00008418", - "question_id": 29601, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005802", - "question_id": 29618, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004132", - "question_id": 29621, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00008904", - "question_id": 29624, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003361", - "question_id": 29628, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002599", - "question_id": 29632, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002466", - "question_id": 29637, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003885", - "question_id": 29646, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006108", - "question_id": 29668, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006896", - "question_id": 29670, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000628", - "question_id": 29683, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006791", - "question_id": 29689, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001756", - "question_id": 29709, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002918", - "question_id": 29716, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001652", - "question_id": 29718, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006810", - "question_id": 29720, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008581", - "question_id": 29721, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002584", - "question_id": 29724, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005128", - "question_id": 29746, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008349", - "question_id": 29749, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003688", - "question_id": 29751, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004732", - "question_id": 29756, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00000777", - "question_id": 29759, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005144", - "question_id": 29772, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00008589", - "question_id": 29781, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004339", - "question_id": 29786, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00006848", - "question_id": 29810, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007566", - "question_id": 29812, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00004477", - "question_id": 29814, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000914", - "question_id": 29819, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002820", - "question_id": 29821, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006676", - "question_id": 29825, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001772", - "question_id": 29832, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002653", - "question_id": 29838, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008899", - "question_id": 29842, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001390", - "question_id": 29845, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00006449", - "question_id": 29849, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001322", - "question_id": 29860, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008694", - "question_id": 29867, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002944", - "question_id": 29868, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004492", - "question_id": 29884, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000103", - "question_id": 29886, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001912", - "question_id": 29891, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"erhu\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004540", - "question_id": 29892, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003141", - "question_id": 29893, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006175", - "question_id": 29894, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00007536", - "question_id": 29896, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001721", - "question_id": 29915, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00005853", - "question_id": 29921, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003270", - "question_id": 29922, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00003430", - "question_id": 29931, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007719", - "question_id": 29957, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000274", - "question_id": 29964, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00002275", - "question_id": 29966, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00001139", - "question_id": 29973, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00006968", - "question_id": 29979, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"middle\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001207", - "question_id": 29980, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006981", - "question_id": 29985, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"saxophone\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000634", - "question_id": 29996, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006387", - "question_id": 29997, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00003074", - "question_id": 29999, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003547", - "question_id": 30008, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00004521", - "question_id": 30014, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008560", - "question_id": 30015, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005200", - "question_id": 30023, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003467", - "question_id": 30025, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000952", - "question_id": 30032, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004057", - "question_id": 30033, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004663", - "question_id": 30034, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00004935", - "question_id": 30040, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001625", - "question_id": 30046, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00005602", - "question_id": 30049, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003661", - "question_id": 30054, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007789", - "question_id": 30055, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00001945", - "question_id": 30062, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00005655", - "question_id": 30066, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005930", - "question_id": 30069, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00008643", - "question_id": 30075, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004827", - "question_id": 30078, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00001061", - "question_id": 30079, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00003780", - "question_id": 30087, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004027", - "question_id": 30089, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004892", - "question_id": 30092, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000644", - "question_id": 30097, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005209", - "question_id": 30100, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008536", - "question_id": 30119, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000068", - "question_id": 30128, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002566", - "question_id": 30129, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00008908", - "question_id": 30137, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006245", - "question_id": 30143, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008012", - "question_id": 30151, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003126", - "question_id": 30153, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000824", - "question_id": 30167, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00007059", - "question_id": 30173, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002382", - "question_id": 30182, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004760", - "question_id": 30184, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00005195", - "question_id": 30186, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008911", - "question_id": 30191, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001374", - "question_id": 30192, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002697", - "question_id": 30202, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006802", - "question_id": 30220, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000835", - "question_id": 30231, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007628", - "question_id": 30246, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003442", - "question_id": 30250, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001399", - "question_id": 30255, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007538", - "question_id": 30258, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"drum\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000919", - "question_id": 30261, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002360", - "question_id": 30262, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000798", - "question_id": 30271, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007972", - "question_id": 30298, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003532", - "question_id": 30304, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007737", - "question_id": 30308, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005521", - "question_id": 30324, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000670", - "question_id": 30327, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000698", - "question_id": 30331, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004886", - "question_id": 30342, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007836", - "question_id": 30353, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000675", - "question_id": 30359, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00008875", - "question_id": 30365, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005672", - "question_id": 30372, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007934", - "question_id": 30374, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008071", - "question_id": 30379, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00000774", - "question_id": 30381, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00001699", - "question_id": 30386, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00003515", - "question_id": 30389, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006091", - "question_id": 30401, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00006072", - "question_id": 30406, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003530", - "question_id": 30408, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002415", - "question_id": 30409, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006582", - "question_id": 30417, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00001278", - "question_id": 30418, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008522", - "question_id": 30427, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002300", - "question_id": 30441, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002143", - "question_id": 30455, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00005637", - "question_id": 30473, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003593", - "question_id": 30476, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001029", - "question_id": 30483, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002477", - "question_id": 30486, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007416", - "question_id": 30490, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001249", - "question_id": 30496, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"ukulele\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006740", - "question_id": 30505, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"tuba\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00002495", - "question_id": 30511, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005172", - "question_id": 30512, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002743", - "question_id": 30534, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003650", - "question_id": 30550, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004869", - "question_id": 30553, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"bassoon\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00001311", - "question_id": 30560, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00008143", - "question_id": 30561, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000908", - "question_id": 30579, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00007366", - "question_id": 30583, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006124", - "question_id": 30584, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002297", - "question_id": 30589, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008979", - "question_id": 30596, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00007446", - "question_id": 30608, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00005926", - "question_id": 30609, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001619", - "question_id": 30611, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007486", - "question_id": 30612, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007318", - "question_id": 30614, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007586", - "question_id": 30618, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004570", - "question_id": 30633, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"xylophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005941", - "question_id": 30637, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008382", - "question_id": 30640, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002805", - "question_id": 30652, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00006854", - "question_id": 30659, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006900", - "question_id": 30669, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004296", - "question_id": 30680, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006101", - "question_id": 30694, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00007851", - "question_id": 30695, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00004831", - "question_id": 30699, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007018", - "question_id": 30706, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006430", - "question_id": 30708, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005938", - "question_id": 30716, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008553", - "question_id": 30728, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002908", - "question_id": 30736, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003810", - "question_id": 30750, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002220", - "question_id": 30753, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007603", - "question_id": 30759, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004780", - "question_id": 30765, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00007805", - "question_id": 30772, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00003344", - "question_id": 30781, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004734", - "question_id": 30795, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004251", - "question_id": 30800, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"tuba\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008522", - "question_id": 30819, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006000", - "question_id": 30821, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002865", - "question_id": 30827, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00005601", - "question_id": 30829, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003680", - "question_id": 30831, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001328", - "question_id": 30833, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005304", - "question_id": 30840, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00004629", - "question_id": 30841, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001289", - "question_id": 30867, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007492", - "question_id": 30868, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00004859", - "question_id": 30869, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000721", - "question_id": 30870, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00002078", - "question_id": 30873, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007744", - "question_id": 30883, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007129", - "question_id": 30885, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005937", - "question_id": 30894, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007476", - "question_id": 30909, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001079", - "question_id": 30912, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00002379", - "question_id": 30913, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008773", - "question_id": 30916, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00008042", - "question_id": 30920, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003238", - "question_id": 30934, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006827", - "question_id": 30935, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002626", - "question_id": 30957, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00004198", - "question_id": 30970, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004721", - "question_id": 30982, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00006947", - "question_id": 30983, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00000501", - "question_id": 30984, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00004996", - "question_id": 30993, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004106", - "question_id": 30997, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007923", - "question_id": 31005, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005934", - "question_id": 31012, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001592", - "question_id": 31015, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003430", - "question_id": 31019, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000966", - "question_id": 31030, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000401", - "question_id": 31034, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"ukulele\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006471", - "question_id": 31038, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00004995", - "question_id": 31050, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007800", - "question_id": 31053, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004144", - "question_id": 31056, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00001593", - "question_id": 31058, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005612", - "question_id": 31069, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008946", - "question_id": 31080, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008254", - "question_id": 31084, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008818", - "question_id": 31089, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001395", - "question_id": 31091, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002409", - "question_id": 31100, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008378", - "question_id": 31102, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000271", - "question_id": 31105, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008087", - "question_id": 31113, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005360", - "question_id": 31114, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007781", - "question_id": 31116, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004467", - "question_id": 31125, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006757", - "question_id": 31132, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001938", - "question_id": 31133, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003330", - "question_id": 31134, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005186", - "question_id": 31153, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006043", - "question_id": 31161, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008461", - "question_id": 31165, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"erhu\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006359", - "question_id": 31174, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004004", - "question_id": 31179, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000573", - "question_id": 31200, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005585", - "question_id": 31206, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005353", - "question_id": 31209, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004026", - "question_id": 31215, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004350", - "question_id": 31229, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005730", - "question_id": 31234, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000293", - "question_id": 31238, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000769", - "question_id": 31251, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000327", - "question_id": 31256, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006150", - "question_id": 31257, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001390", - "question_id": 31262, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005877", - "question_id": 31263, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003748", - "question_id": 31277, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007984", - "question_id": 31287, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007307", - "question_id": 31291, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007179", - "question_id": 31293, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003865", - "question_id": 31296, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007451", - "question_id": 31297, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00000629", - "question_id": 31301, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004642", - "question_id": 31319, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005425", - "question_id": 31320, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002082", - "question_id": 31326, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003385", - "question_id": 31331, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000428", - "question_id": 31343, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004191", - "question_id": 31346, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001346", - "question_id": 31347, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000367", - "question_id": 31357, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004924", - "question_id": 31361, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007260", - "question_id": 31362, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005522", - "question_id": 31366, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005548", - "question_id": 31367, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008517", - "question_id": 31372, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005919", - "question_id": 31374, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004538", - "question_id": 31382, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006540", - "question_id": 31393, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007199", - "question_id": 31401, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003735", - "question_id": 31409, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001863", - "question_id": 31410, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005514", - "question_id": 31412, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00002743", - "question_id": 31426, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003612", - "question_id": 31427, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003274", - "question_id": 31430, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003678", - "question_id": 31436, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00001061", - "question_id": 31440, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008798", - "question_id": 31443, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008535", - "question_id": 31448, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002688", - "question_id": 31463, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002272", - "question_id": 31467, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008933", - "question_id": 31475, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007853", - "question_id": 31490, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"electric_bass\", \"left\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007223", - "question_id": 31497, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003809", - "question_id": 31504, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002135", - "question_id": 31512, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002745", - "question_id": 31520, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003873", - "question_id": 31526, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003258", - "question_id": 31534, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005814", - "question_id": 31539, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004433", - "question_id": 31547, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001374", - "question_id": 31553, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003555", - "question_id": 31560, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000910", - "question_id": 31568, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007072", - "question_id": 31569, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002286", - "question_id": 31576, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000403", - "question_id": 31581, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008133", - "question_id": 31588, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001054", - "question_id": 31589, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007211", - "question_id": 31604, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008794", - "question_id": 31612, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007217", - "question_id": 31613, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008850", - "question_id": 31617, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000630", - "question_id": 31620, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002488", - "question_id": 31623, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003663", - "question_id": 31624, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007775", - "question_id": 31626, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007750", - "question_id": 31633, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007426", - "question_id": 31637, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006917", - "question_id": 31645, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00007934", - "question_id": 31648, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008259", - "question_id": 31649, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007859", - "question_id": 31651, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002306", - "question_id": 31656, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003887", - "question_id": 31673, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007979", - "question_id": 31691, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003272", - "question_id": 31692, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007473", - "question_id": 31718, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003339", - "question_id": 31720, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00008599", - "question_id": 31724, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007280", - "question_id": 31729, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00002966", - "question_id": 31742, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004438", - "question_id": 31749, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007054", - "question_id": 31756, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001224", - "question_id": 31771, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002431", - "question_id": 31773, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008848", - "question_id": 31779, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002038", - "question_id": 31780, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002705", - "question_id": 31788, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007127", - "question_id": 31790, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006370", - "question_id": 31793, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00005664", - "question_id": 31797, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000356", - "question_id": 31804, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007367", - "question_id": 31810, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006203", - "question_id": 31813, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004174", - "question_id": 31816, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002642", - "question_id": 31832, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003299", - "question_id": 31840, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003437", - "question_id": 31845, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005103", - "question_id": 31858, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004955", - "question_id": 31864, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003972", - "question_id": 31877, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000445", - "question_id": 31882, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002038", - "question_id": 31892, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002229", - "question_id": 31893, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001977", - "question_id": 31897, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007251", - "question_id": 31900, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006382", - "question_id": 31918, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005158", - "question_id": 31919, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001188", - "question_id": 31923, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006431", - "question_id": 31948, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001545", - "question_id": 31950, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005096", - "question_id": 31957, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003264", - "question_id": 31960, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008719", - "question_id": 31972, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002002", - "question_id": 31975, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003572", - "question_id": 31981, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000683", - "question_id": 31993, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007273", - "question_id": 32002, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003318", - "question_id": 32017, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007127", - "question_id": 32018, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006976", - "question_id": 32029, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008623", - "question_id": 32040, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004156", - "question_id": 32044, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000371", - "question_id": 32046, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005635", - "question_id": 32053, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004781", - "question_id": 32062, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004079", - "question_id": 32063, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006513", - "question_id": 32083, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007886", - "question_id": 32118, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008465", - "question_id": 32122, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007466", - "question_id": 32145, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006345", - "question_id": 32147, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005092", - "question_id": 32160, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000930", - "question_id": 32172, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00006440", - "question_id": 32180, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004649", - "question_id": 32183, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005390", - "question_id": 32185, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003373", - "question_id": 32193, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005599", - "question_id": 32194, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002181", - "question_id": 32214, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001667", - "question_id": 32215, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002198", - "question_id": 32221, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004748", - "question_id": 32242, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005690", - "question_id": 32243, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00002079", - "question_id": 32245, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003108", - "question_id": 32256, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003185", - "question_id": 32258, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00001225", - "question_id": 32271, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007519", - "question_id": 32281, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008277", - "question_id": 32284, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000039", - "question_id": 32286, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008418", - "question_id": 32300, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005455", - "question_id": 32329, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002310", - "question_id": 32344, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000582", - "question_id": 32346, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004933", - "question_id": 32360, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003613", - "question_id": 32362, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"banjo\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000024", - "question_id": 32363, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001429", - "question_id": 32373, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005741", - "question_id": 32375, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00005899", - "question_id": 32378, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006162", - "question_id": 32389, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003242", - "question_id": 32393, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004603", - "question_id": 32398, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003750", - "question_id": 32402, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002055", - "question_id": 32406, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000264", - "question_id": 32418, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007647", - "question_id": 32428, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005961", - "question_id": 32430, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000672", - "question_id": 32435, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005221", - "question_id": 32436, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005922", - "question_id": 32438, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001739", - "question_id": 32443, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007846", - "question_id": 32469, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006944", - "question_id": 32480, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001603", - "question_id": 32485, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002921", - "question_id": 32506, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001234", - "question_id": 32509, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005825", - "question_id": 32510, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006631", - "question_id": 32513, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006168", - "question_id": 32521, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005825", - "question_id": 32529, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006271", - "question_id": 32540, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00000957", - "question_id": 32542, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001057", - "question_id": 32557, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005958", - "question_id": 32558, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003639", - "question_id": 32564, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008061", - "question_id": 32582, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005708", - "question_id": 32587, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000363", - "question_id": 32592, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003522", - "question_id": 32593, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000474", - "question_id": 32594, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006564", - "question_id": 32595, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008890", - "question_id": 32597, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002449", - "question_id": 32601, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004199", - "question_id": 32602, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006248", - "question_id": 32622, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002154", - "question_id": 32625, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00007385", - "question_id": 32634, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001649", - "question_id": 32640, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002673", - "question_id": 32642, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006010", - "question_id": 32644, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005232", - "question_id": 32645, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003176", - "question_id": 32652, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00008159", - "question_id": 32658, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005075", - "question_id": 32667, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002223", - "question_id": 32674, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000122", - "question_id": 32676, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003324", - "question_id": 32677, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002784", - "question_id": 32683, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008553", - "question_id": 32699, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006966", - "question_id": 32704, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006269", - "question_id": 32710, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008407", - "question_id": 32711, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007399", - "question_id": 32716, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003209", - "question_id": 32719, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007422", - "question_id": 32730, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005784", - "question_id": 32751, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004966", - "question_id": 32754, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006225", - "question_id": 32760, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002500", - "question_id": 32764, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005255", - "question_id": 32765, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004154", - "question_id": 32769, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004818", - "question_id": 32777, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003034", - "question_id": 32778, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008208", - "question_id": 32789, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006904", - "question_id": 32807, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008582", - "question_id": 32812, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001127", - "question_id": 32824, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006489", - "question_id": 32831, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008826", - "question_id": 32834, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001574", - "question_id": 32843, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000888", - "question_id": 32844, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003903", - "question_id": 32847, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001945", - "question_id": 32848, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005188", - "question_id": 32851, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001307", - "question_id": 32883, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002560", - "question_id": 32891, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001771", - "question_id": 32897, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001598", - "question_id": 32901, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000860", - "question_id": 32915, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006087", - "question_id": 32936, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005138", - "question_id": 32950, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004943", - "question_id": 32954, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008851", - "question_id": 32955, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003748", - "question_id": 32960, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00005179", - "question_id": 32976, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008349", - "question_id": 32977, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005126", - "question_id": 32985, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001712", - "question_id": 33006, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005605", - "question_id": 33008, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008607", - "question_id": 33020, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006564", - "question_id": 33026, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003264", - "question_id": 33030, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"pipa\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007376", - "question_id": 33041, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008748", - "question_id": 33061, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006931", - "question_id": 33069, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003141", - "question_id": 33075, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004520", - "question_id": 33079, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005063", - "question_id": 33082, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000420", - "question_id": 33083, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006308", - "question_id": 33088, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002129", - "question_id": 33090, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005480", - "question_id": 33136, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003391", - "question_id": 33137, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000813", - "question_id": 33139, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006598", - "question_id": 33143, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000969", - "question_id": 33145, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005134", - "question_id": 33157, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007865", - "question_id": 33159, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003798", - "question_id": 33160, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005769", - "question_id": 33162, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002562", - "question_id": 33179, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004809", - "question_id": 33181, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000372", - "question_id": 33183, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005708", - "question_id": 33190, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003294", - "question_id": 33196, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006047", - "question_id": 33198, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000668", - "question_id": 33199, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001012", - "question_id": 33210, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004105", - "question_id": 33222, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003199", - "question_id": 33230, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001670", - "question_id": 33239, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00004258", - "question_id": 33240, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000860", - "question_id": 33241, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00006543", - "question_id": 33246, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007588", - "question_id": 33253, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004758", - "question_id": 33277, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000788", - "question_id": 33280, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006971", - "question_id": 33287, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006669", - "question_id": 33298, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003775", - "question_id": 33319, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000355", - "question_id": 33321, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001168", - "question_id": 33326, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008281", - "question_id": 33334, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007325", - "question_id": 33335, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006078", - "question_id": 33346, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005916", - "question_id": 33348, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008601", - "question_id": 33349, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005202", - "question_id": 33351, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002617", - "question_id": 33352, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002851", - "question_id": 33366, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008579", - "question_id": 33367, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003564", - "question_id": 33387, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005473", - "question_id": 33401, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007504", - "question_id": 33404, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002778", - "question_id": 33416, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005871", - "question_id": 33420, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008365", - "question_id": 33424, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001485", - "question_id": 33429, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003502", - "question_id": 33437, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001136", - "question_id": 33439, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001849", - "question_id": 33446, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004417", - "question_id": 33448, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002568", - "question_id": 33483, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004142", - "question_id": 33490, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000123", - "question_id": 33498, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003059", - "question_id": 33511, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008552", - "question_id": 33514, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006115", - "question_id": 33517, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000693", - "question_id": 33521, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005899", - "question_id": 33542, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003505", - "question_id": 33550, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004210", - "question_id": 33561, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00002334", - "question_id": 33564, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007748", - "question_id": 33566, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002108", - "question_id": 33573, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001287", - "question_id": 33575, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006161", - "question_id": 33588, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001354", - "question_id": 33605, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006143", - "question_id": 33609, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002143", - "question_id": 33613, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002708", - "question_id": 33621, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004117", - "question_id": 33624, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008257", - "question_id": 33627, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000354", - "question_id": 33630, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003895", - "question_id": 33631, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008022", - "question_id": 33651, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008553", - "question_id": 33670, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004277", - "question_id": 33679, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00008754", - "question_id": 33687, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001870", - "question_id": 33689, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007800", - "question_id": 33700, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004296", - "question_id": 33708, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003668", - "question_id": 33719, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008411", - "question_id": 33721, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007956", - "question_id": 33725, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001994", - "question_id": 33747, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006446", - "question_id": 33748, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006480", - "question_id": 33751, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003222", - "question_id": 33756, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000508", - "question_id": 33758, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000711", - "question_id": 33762, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004154", - "question_id": 33769, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001543", - "question_id": 33791, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008506", - "question_id": 33808, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006721", - "question_id": 33814, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007524", - "question_id": 33822, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00008704", - "question_id": 33824, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000656", - "question_id": 33832, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004746", - "question_id": 33834, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006889", - "question_id": 33836, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002255", - "question_id": 33848, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004828", - "question_id": 33849, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004592", - "question_id": 33858, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002343", - "question_id": 33861, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002414", - "question_id": 33868, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002269", - "question_id": 33870, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007058", - "question_id": 33871, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000401", - "question_id": 33875, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005681", - "question_id": 33881, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003181", - "question_id": 33886, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002771", - "question_id": 33902, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"banjo\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00001028", - "question_id": 33903, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002063", - "question_id": 33914, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004791", - "question_id": 33921, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001797", - "question_id": 33935, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001200", - "question_id": 33948, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006994", - "question_id": 33956, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008270", - "question_id": 33985, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004350", - "question_id": 33986, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002479", - "question_id": 33990, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003010", - "question_id": 33991, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001037", - "question_id": 33993, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005819", - "question_id": 34022, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004464", - "question_id": 34040, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001606", - "question_id": 34041, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003208", - "question_id": 34057, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001924", - "question_id": 34061, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000450", - "question_id": 34064, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002564", - "question_id": 34072, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003608", - "question_id": 34073, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00005788", - "question_id": 34080, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006587", - "question_id": 34093, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001155", - "question_id": 34103, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007389", - "question_id": 34104, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002403", - "question_id": 34105, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007129", - "question_id": 34113, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000630", - "question_id": 34116, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005947", - "question_id": 34127, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00006736", - "question_id": 34137, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003786", - "question_id": 34138, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001241", - "question_id": 34143, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007416", - "question_id": 34150, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002269", - "question_id": 34154, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004148", - "question_id": 34159, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000401", - "question_id": 34164, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001166", - "question_id": 34166, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007045", - "question_id": 34175, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007319", - "question_id": 34183, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003196", - "question_id": 34187, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000098", - "question_id": 34188, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006299", - "question_id": 34203, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008142", - "question_id": 34218, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005515", - "question_id": 34232, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008436", - "question_id": 34242, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008714", - "question_id": 34273, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000617", - "question_id": 34274, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005843", - "question_id": 34275, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004261", - "question_id": 34278, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007646", - "question_id": 34310, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008167", - "question_id": 34317, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002340", - "question_id": 34320, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00007042", - "question_id": 34323, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004057", - "question_id": 34329, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002451", - "question_id": 34332, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002462", - "question_id": 34333, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004753", - "question_id": 34338, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002054", - "question_id": 34341, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004909", - "question_id": 34345, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005293", - "question_id": 34354, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007512", - "question_id": 34356, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00003748", - "question_id": 34358, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003414", - "question_id": 34361, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002473", - "question_id": 34369, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001295", - "question_id": 34373, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"guzheng\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003265", - "question_id": 34377, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008084", - "question_id": 34381, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005302", - "question_id": 34384, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003833", - "question_id": 34390, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002328", - "question_id": 34392, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001475", - "question_id": 34411, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003827", - "question_id": 34425, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007895", - "question_id": 34429, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003005", - "question_id": 34445, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002509", - "question_id": 34457, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006642", - "question_id": 34460, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004715", - "question_id": 34477, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006422", - "question_id": 34486, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003835", - "question_id": 34496, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004288", - "question_id": 34502, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002637", - "question_id": 34503, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000063", - "question_id": 34506, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008207", - "question_id": 34521, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008828", - "question_id": 34532, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002607", - "question_id": 34541, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007382", - "question_id": 34544, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001140", - "question_id": 34545, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004166", - "question_id": 34566, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006212", - "question_id": 34569, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007892", - "question_id": 34575, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006494", - "question_id": 34577, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00003780", - "question_id": 34580, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000621", - "question_id": 34585, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008673", - "question_id": 34606, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008329", - "question_id": 34610, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006423", - "question_id": 34615, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003725", - "question_id": 34618, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007892", - "question_id": 34652, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001412", - "question_id": 34659, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006286", - "question_id": 34664, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005428", - "question_id": 34677, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"guzheng\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002699", - "question_id": 34688, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001992", - "question_id": 34699, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008279", - "question_id": 34700, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005283", - "question_id": 34701, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"banjo\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006537", - "question_id": 34703, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00007865", - "question_id": 34711, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000731", - "question_id": 34715, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002676", - "question_id": 34716, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004829", - "question_id": 34719, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005536", - "question_id": 34725, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00004481", - "question_id": 34729, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"trumpet\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005118", - "question_id": 34735, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003608", - "question_id": 34746, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000830", - "question_id": 34748, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003911", - "question_id": 34750, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002793", - "question_id": 34754, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002354", - "question_id": 34756, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001992", - "question_id": 34759, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008689", - "question_id": 34767, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002072", - "question_id": 34781, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008177", - "question_id": 34793, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000952", - "question_id": 34807, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002285", - "question_id": 34812, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003658", - "question_id": 34817, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008452", - "question_id": 34821, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007886", - "question_id": 34822, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "more than ten" -}, { - "video_id": "00006236", - "question_id": 34828, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004204", - "question_id": 34833, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006758", - "question_id": 34836, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005408", - "question_id": 34841, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001251", - "question_id": 34844, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006396", - "question_id": 34861, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005939", - "question_id": 34866, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000634", - "question_id": 34867, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005150", - "question_id": 34876, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008632", - "question_id": 34881, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006560", - "question_id": 34891, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001456", - "question_id": 34894, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000248", - "question_id": 34907, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002223", - "question_id": 34911, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"electric_bass\", \"left\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008575", - "question_id": 34920, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004193", - "question_id": 34936, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001292", - "question_id": 34939, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008851", - "question_id": 34943, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003920", - "question_id": 34958, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008471", - "question_id": 34962, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002791", - "question_id": 34966, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00002536", - "question_id": 34973, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00008292", - "question_id": 34978, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002768", - "question_id": 34982, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008870", - "question_id": 34990, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008006", - "question_id": 35000, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006301", - "question_id": 35002, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00005783", - "question_id": 35004, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"banjo\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00003217", - "question_id": 35005, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"banjo\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001584", - "question_id": 35013, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003457", - "question_id": 35014, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005648", - "question_id": 35017, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006289", - "question_id": 35028, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003586", - "question_id": 35050, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002549", - "question_id": 35058, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002625", - "question_id": 35060, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00002784", - "question_id": 35066, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005210", - "question_id": 35078, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006944", - "question_id": 35081, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000420", - "question_id": 35090, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005488", - "question_id": 35093, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"pipa\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000756", - "question_id": 35094, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000122", - "question_id": 35097, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007968", - "question_id": 35099, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002047", - "question_id": 35100, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002882", - "question_id": 35102, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006291", - "question_id": 35116, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004788", - "question_id": 35131, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005362", - "question_id": 35146, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008761", - "question_id": 35158, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001490", - "question_id": 35163, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008770", - "question_id": 35174, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003741", - "question_id": 35176, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002022", - "question_id": 35181, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007796", - "question_id": 35194, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005372", - "question_id": 35216, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006610", - "question_id": 35217, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002579", - "question_id": 35236, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006770", - "question_id": 35237, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00005762", - "question_id": 35257, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002539", - "question_id": 35266, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005580", - "question_id": 35275, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000817", - "question_id": 35281, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003185", - "question_id": 35282, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008829", - "question_id": 35296, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003662", - "question_id": 35301, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006528", - "question_id": 35305, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008070", - "question_id": 35306, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004465", - "question_id": 35307, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "eight" -}, { - "video_id": "00007112", - "question_id": 35309, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000303", - "question_id": 35312, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001965", - "question_id": 35315, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00007696", - "question_id": 35322, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002470", - "question_id": 35348, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005410", - "question_id": 35352, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005684", - "question_id": 35361, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007015", - "question_id": 35363, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004652", - "question_id": 35373, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003445", - "question_id": 35384, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001014", - "question_id": 35393, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004302", - "question_id": 35396, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003833", - "question_id": 35410, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000809", - "question_id": 35414, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007080", - "question_id": 35421, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002059", - "question_id": 35441, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003886", - "question_id": 35461, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004205", - "question_id": 35464, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004328", - "question_id": 35465, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004983", - "question_id": 35471, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007319", - "question_id": 35483, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004363", - "question_id": 35484, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005441", - "question_id": 35487, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007623", - "question_id": 35494, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000829", - "question_id": 35499, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00002984", - "question_id": 35510, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004976", - "question_id": 35521, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001624", - "question_id": 35533, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008970", - "question_id": 35540, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005093", - "question_id": 35550, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00001797", - "question_id": 35568, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"right\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007987", - "question_id": 35569, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001522", - "question_id": 35572, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002329", - "question_id": 35579, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000565", - "question_id": 35587, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008377", - "question_id": 35600, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008837", - "question_id": 35603, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008427", - "question_id": 35627, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006238", - "question_id": 35631, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006501", - "question_id": 35640, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002200", - "question_id": 35643, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002903", - "question_id": 35646, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004567", - "question_id": 35653, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000366", - "question_id": 35659, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002607", - "question_id": 35665, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005833", - "question_id": 35670, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008536", - "question_id": 35675, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003355", - "question_id": 35686, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007105", - "question_id": 35688, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008732", - "question_id": 35700, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"banjo\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002297", - "question_id": 35705, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004388", - "question_id": 35713, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003182", - "question_id": 35721, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003636", - "question_id": 35735, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007849", - "question_id": 35741, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005304", - "question_id": 35744, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002765", - "question_id": 35752, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"drum\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00000392", - "question_id": 35760, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006030", - "question_id": 35763, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003650", - "question_id": 35764, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008891", - "question_id": 35768, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005293", - "question_id": 35781, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00003732", - "question_id": 35787, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00004519", - "question_id": 35798, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007182", - "question_id": 35799, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006655", - "question_id": 35815, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007084", - "question_id": 35819, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007618", - "question_id": 35829, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005588", - "question_id": 35850, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"pipa\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00000855", - "question_id": 35851, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005363", - "question_id": 35856, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002784", - "question_id": 35857, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"bassoon\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00006585", - "question_id": 35858, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008601", - "question_id": 35860, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004465", - "question_id": 35862, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006166", - "question_id": 35876, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002518", - "question_id": 35877, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00004712", - "question_id": 35883, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006298", - "question_id": 35886, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00004594", - "question_id": 35897, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006151", - "question_id": 35917, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00002727", - "question_id": 35927, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007519", - "question_id": 35932, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007076", - "question_id": 35934, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "eight" -}, { - "video_id": "00005275", - "question_id": 35941, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"cello\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00001964", - "question_id": 35944, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "more than ten" -}, { - "video_id": "00005011", - "question_id": 35951, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00006618", - "question_id": 35967, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008708", - "question_id": 35978, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002392", - "question_id": 35986, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008951", - "question_id": 36008, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001870", - "question_id": 36019, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00008974", - "question_id": 36027, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004278", - "question_id": 36031, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00008724", - "question_id": 36056, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008873", - "question_id": 36061, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003510", - "question_id": 36078, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000536", - "question_id": 36079, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003669", - "question_id": 36084, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006821", - "question_id": 36090, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000623", - "question_id": 36091, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005035", - "question_id": 36096, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007655", - "question_id": 36097, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001409", - "question_id": 36107, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001313", - "question_id": 36108, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001281", - "question_id": 36116, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003930", - "question_id": 36119, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00008554", - "question_id": 36121, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000919", - "question_id": 36123, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00007900", - "question_id": 36126, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005438", - "question_id": 36132, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000264", - "question_id": 36135, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005352", - "question_id": 36160, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000067", - "question_id": 36179, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001860", - "question_id": 36180, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002560", - "question_id": 36186, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006632", - "question_id": 36189, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008190", - "question_id": 36195, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002561", - "question_id": 36208, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006822", - "question_id": 36209, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001270", - "question_id": 36242, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004917", - "question_id": 36247, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006183", - "question_id": 36255, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003701", - "question_id": 36256, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001940", - "question_id": 36264, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002685", - "question_id": 36300, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004666", - "question_id": 36329, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008248", - "question_id": 36346, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007337", - "question_id": 36355, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007611", - "question_id": 36363, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002405", - "question_id": 36364, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"tuba\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003709", - "question_id": 36365, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003262", - "question_id": 36379, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00004867", - "question_id": 36392, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00007320", - "question_id": 36408, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001129", - "question_id": 36412, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003831", - "question_id": 36426, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006541", - "question_id": 36436, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008670", - "question_id": 36440, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002694", - "question_id": 36444, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006642", - "question_id": 36452, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004489", - "question_id": 36454, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006280", - "question_id": 36456, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"tuba\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006014", - "question_id": 36458, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005282", - "question_id": 36459, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002379", - "question_id": 36468, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004732", - "question_id": 36486, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005509", - "question_id": 36503, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004285", - "question_id": 36506, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000340", - "question_id": 36507, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000329", - "question_id": 36513, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004049", - "question_id": 36519, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008828", - "question_id": 36520, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008676", - "question_id": 36530, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004579", - "question_id": 36548, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005084", - "question_id": 36559, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004729", - "question_id": 36569, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"suona\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000435", - "question_id": 36575, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001036", - "question_id": 36587, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007588", - "question_id": 36598, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006538", - "question_id": 36604, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"last\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00004172", - "question_id": 36606, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004216", - "question_id": 36608, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007829", - "question_id": 36614, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002850", - "question_id": 36627, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007656", - "question_id": 36628, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000505", - "question_id": 36629, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000741", - "question_id": 36631, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003445", - "question_id": 36638, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005030", - "question_id": 36670, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001194", - "question_id": 36677, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"piano\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003910", - "question_id": 36684, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"electric_bass\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001567", - "question_id": 36689, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006206", - "question_id": 36719, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001796", - "question_id": 36723, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005654", - "question_id": 36741, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008975", - "question_id": 36743, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001269", - "question_id": 36750, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007283", - "question_id": 36751, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006420", - "question_id": 36757, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "seven" -}, { - "video_id": "00005122", - "question_id": 36767, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002830", - "question_id": 36770, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001456", - "question_id": 36773, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005315", - "question_id": 36778, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005137", - "question_id": 36782, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002798", - "question_id": 36802, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002571", - "question_id": 36807, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007259", - "question_id": 36812, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000549", - "question_id": 36813, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"trumpet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000842", - "question_id": 36816, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"bassoon\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007023", - "question_id": 36822, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004783", - "question_id": 36828, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003742", - "question_id": 36842, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008960", - "question_id": 36847, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004371", - "question_id": 36853, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002296", - "question_id": 36859, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00005769", - "question_id": 36873, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00005897", - "question_id": 36874, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"tuba\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007123", - "question_id": 36891, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00002916", - "question_id": 36894, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007701", - "question_id": 36903, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005267", - "question_id": 36924, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003414", - "question_id": 36943, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00002153", - "question_id": 36973, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001517", - "question_id": 36985, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000566", - "question_id": 36986, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002303", - "question_id": 36997, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004258", - "question_id": 36998, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"banjo\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008048", - "question_id": 37000, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008292", - "question_id": 37008, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006951", - "question_id": 37031, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005046", - "question_id": 37033, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008783", - "question_id": 37040, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00004542", - "question_id": 37081, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008379", - "question_id": 37091, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004645", - "question_id": 37102, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007825", - "question_id": 37109, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000932", - "question_id": 37125, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007529", - "question_id": 37127, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003388", - "question_id": 37132, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002438", - "question_id": 37160, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002075", - "question_id": 37168, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00006420", - "question_id": 37173, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008976", - "question_id": 37175, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007728", - "question_id": 37194, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005775", - "question_id": 37214, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008070", - "question_id": 37226, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006030", - "question_id": 37259, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003082", - "question_id": 37261, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005115", - "question_id": 37271, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001046", - "question_id": 37299, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008949", - "question_id": 37307, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002180", - "question_id": 37316, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001147", - "question_id": 37317, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008628", - "question_id": 37339, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003804", - "question_id": 37351, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005981", - "question_id": 37373, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00001052", - "question_id": 37374, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007144", - "question_id": 37377, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005907", - "question_id": 37381, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00001600", - "question_id": 37408, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007676", - "question_id": 37416, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008431", - "question_id": 37419, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004142", - "question_id": 37423, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000587", - "question_id": 37430, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00003825", - "question_id": 37435, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004928", - "question_id": 37436, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004187", - "question_id": 37448, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004187", - "question_id": 37448, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001156", - "question_id": 37465, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000304", - "question_id": 37471, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003441", - "question_id": 37479, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000490", - "question_id": 37483, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004108", - "question_id": 37490, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005773", - "question_id": 37494, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006768", - "question_id": 37498, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002827", - "question_id": 37507, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002104", - "question_id": 37508, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002490", - "question_id": 37516, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003134", - "question_id": 37547, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007535", - "question_id": 37552, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003132", - "question_id": 37554, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"pipa\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004707", - "question_id": 37559, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"banjo\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00005664", - "question_id": 37560, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00005701", - "question_id": 37575, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006599", - "question_id": 37590, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006206", - "question_id": 37607, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001826", - "question_id": 37614, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008134", - "question_id": 37624, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008917", - "question_id": 37625, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002813", - "question_id": 37632, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008838", - "question_id": 37662, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006705", - "question_id": 37670, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008010", - "question_id": 37691, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00000756", - "question_id": 37693, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007690", - "question_id": 37701, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006764", - "question_id": 37705, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004557", - "question_id": 37710, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"bassoon\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00008226", - "question_id": 37711, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007983", - "question_id": 37723, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002329", - "question_id": 37733, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00005560", - "question_id": 37736, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004397", - "question_id": 37757, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002378", - "question_id": 37767, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006509", - "question_id": 37777, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003756", - "question_id": 37778, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008807", - "question_id": 37783, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002430", - "question_id": 37785, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004014", - "question_id": 37792, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003527", - "question_id": 37796, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008909", - "question_id": 37824, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002590", - "question_id": 37825, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002503", - "question_id": 37835, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"saxophone\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00005134", - "question_id": 37843, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00007429", - "question_id": 37851, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005180", - "question_id": 37864, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005073", - "question_id": 37866, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007138", - "question_id": 37869, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003887", - "question_id": 37872, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001031", - "question_id": 37876, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007237", - "question_id": 37877, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002889", - "question_id": 37878, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00007041", - "question_id": 37882, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000378", - "question_id": 37889, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00008445", - "question_id": 37890, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000200", - "question_id": 37901, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001441", - "question_id": 37902, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"congas\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005901", - "question_id": 37907, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008432", - "question_id": 37916, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006689", - "question_id": 37918, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008725", - "question_id": 37927, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008343", - "question_id": 37930, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006674", - "question_id": 37933, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002173", - "question_id": 37946, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001693", - "question_id": 37964, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001739", - "question_id": 37973, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004254", - "question_id": 37981, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00004467", - "question_id": 37986, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002149", - "question_id": 37991, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00000087", - "question_id": 37992, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007665", - "question_id": 38007, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001098", - "question_id": 38008, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00001324", - "question_id": 38027, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004210", - "question_id": 38033, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000194", - "question_id": 38056, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005910", - "question_id": 38073, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002183", - "question_id": 38077, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004236", - "question_id": 38098, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"accordion\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005161", - "question_id": 38099, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008898", - "question_id": 38101, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"xylophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002490", - "question_id": 38104, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008404", - "question_id": 38119, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004584", - "question_id": 38121, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004241", - "question_id": 38124, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004100", - "question_id": 38129, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008622", - "question_id": 38133, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000556", - "question_id": 38136, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000791", - "question_id": 38137, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001367", - "question_id": 38141, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000512", - "question_id": 38150, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003070", - "question_id": 38159, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006262", - "question_id": 38162, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"congas\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00003574", - "question_id": 38178, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004952", - "question_id": 38179, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007752", - "question_id": 38184, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001492", - "question_id": 38186, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007019", - "question_id": 38191, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004957", - "question_id": 38198, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004427", - "question_id": 38199, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001267", - "question_id": 38210, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000259", - "question_id": 38211, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00005626", - "question_id": 38217, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002040", - "question_id": 38218, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006129", - "question_id": 38219, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008151", - "question_id": 38228, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"pipa\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00007144", - "question_id": 38231, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006899", - "question_id": 38260, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008316", - "question_id": 38263, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004270", - "question_id": 38275, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008358", - "question_id": 38308, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001840", - "question_id": 38311, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003482", - "question_id": 38315, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001129", - "question_id": 38316, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001354", - "question_id": 38325, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00000694", - "question_id": 38340, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007741", - "question_id": 38372, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007741", - "question_id": 38391, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001003", - "question_id": 38415, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00004054", - "question_id": 38434, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003835", - "question_id": 38446, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000608", - "question_id": 38455, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004886", - "question_id": 38466, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000608", - "question_id": 38471, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005118", - "question_id": 38485, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000960", - "question_id": 38486, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004238", - "question_id": 38487, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005399", - "question_id": 38491, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003516", - "question_id": 38493, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007904", - "question_id": 38496, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002581", - "question_id": 38497, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002590", - "question_id": 38513, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000810", - "question_id": 38529, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"tuba\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00000895", - "question_id": 38535, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007463", - "question_id": 38552, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006505", - "question_id": 38560, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006873", - "question_id": 38568, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000194", - "question_id": 38572, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000882", - "question_id": 38587, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000412", - "question_id": 38595, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005624", - "question_id": 38596, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005250", - "question_id": 38622, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001965", - "question_id": 38630, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008663", - "question_id": 38663, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005718", - "question_id": 38670, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002446", - "question_id": 38712, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002642", - "question_id": 38716, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004659", - "question_id": 38734, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003340", - "question_id": 38761, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008672", - "question_id": 38772, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002942", - "question_id": 38778, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004126", - "question_id": 38789, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007549", - "question_id": 38797, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003184", - "question_id": 38804, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"xylophone\", \"left\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000422", - "question_id": 38816, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004671", - "question_id": 38823, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002391", - "question_id": 38825, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006918", - "question_id": 38830, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007716", - "question_id": 38834, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001952", - "question_id": 38844, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006362", - "question_id": 38845, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003059", - "question_id": 38856, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00004438", - "question_id": 38866, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008554", - "question_id": 38887, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000547", - "question_id": 38911, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002755", - "question_id": 38930, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007432", - "question_id": 38934, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008534", - "question_id": 38946, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00007386", - "question_id": 38971, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006055", - "question_id": 38993, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003983", - "question_id": 38994, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004809", - "question_id": 39004, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003270", - "question_id": 39013, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"accordion\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00000505", - "question_id": 39028, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001878", - "question_id": 39046, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000931", - "question_id": 39049, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008498", - "question_id": 39057, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00006529", - "question_id": 39082, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003747", - "question_id": 39084, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005294", - "question_id": 39094, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004281", - "question_id": 39096, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002855", - "question_id": 39101, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002679", - "question_id": 39103, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000098", - "question_id": 39147, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008492", - "question_id": 39149, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008880", - "question_id": 39153, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006682", - "question_id": 39175, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00000346", - "question_id": 39208, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006244", - "question_id": 39209, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004507", - "question_id": 39210, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003340", - "question_id": 39238, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007064", - "question_id": 39244, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006615", - "question_id": 39263, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006731", - "question_id": 39286, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003554", - "question_id": 39289, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005116", - "question_id": 39294, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"tuba\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005313", - "question_id": 39299, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001754", - "question_id": 39306, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003444", - "question_id": 39318, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006916", - "question_id": 39326, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001658", - "question_id": 39331, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002136", - "question_id": 39349, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"electric_bass\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004614", - "question_id": 39354, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001748", - "question_id": 39362, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005339", - "question_id": 39363, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000122", - "question_id": 39389, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000086", - "question_id": 39390, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008922", - "question_id": 39407, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004449", - "question_id": 39411, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007109", - "question_id": 39417, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003330", - "question_id": 39445, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006497", - "question_id": 39449, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007164", - "question_id": 39455, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007481", - "question_id": 39456, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007472", - "question_id": 39468, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006043", - "question_id": 39469, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001304", - "question_id": 39477, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006305", - "question_id": 39492, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004301", - "question_id": 39499, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008529", - "question_id": 39525, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004254", - "question_id": 39532, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006151", - "question_id": 39535, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007748", - "question_id": 39542, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006348", - "question_id": 39559, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000819", - "question_id": 39615, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000613", - "question_id": 39616, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005722", - "question_id": 39636, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007028", - "question_id": 39661, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000136", - "question_id": 39665, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006388", - "question_id": 39677, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003793", - "question_id": 39681, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008495", - "question_id": 39690, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001994", - "question_id": 39699, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004788", - "question_id": 39703, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007449", - "question_id": 39724, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002524", - "question_id": 39730, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003347", - "question_id": 39741, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004312", - "question_id": 39744, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001508", - "question_id": 39745, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006010", - "question_id": 39761, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001876", - "question_id": 39766, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001876", - "question_id": 39766, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008221", - "question_id": 39778, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005509", - "question_id": 39780, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004935", - "question_id": 39784, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003910", - "question_id": 39803, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006689", - "question_id": 39867, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001395", - "question_id": 39874, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001754", - "question_id": 39893, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002504", - "question_id": 39900, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00005921", - "question_id": 39916, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002551", - "question_id": 39928, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003941", - "question_id": 39937, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001239", - "question_id": 39960, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00000861", - "question_id": 39966, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007603", - "question_id": 39995, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003936", - "question_id": 40055, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001194", - "question_id": 40081, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00000919", - "question_id": 40093, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001777", - "question_id": 40094, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006559", - "question_id": 40098, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004197", - "question_id": 40099, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003070", - "question_id": 40101, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008860", - "question_id": 40127, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005227", - "question_id": 40132, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007766", - "question_id": 40138, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007325", - "question_id": 40140, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002024", - "question_id": 40142, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00001477", - "question_id": 40153, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003831", - "question_id": 40171, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002560", - "question_id": 40188, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006338", - "question_id": 40190, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00000736", - "question_id": 40200, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001092", - "question_id": 40219, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"trumpet\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005560", - "question_id": 40249, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005038", - "question_id": 40255, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000623", - "question_id": 40260, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007950", - "question_id": 40288, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00007646", - "question_id": 40292, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008859", - "question_id": 40313, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008701", - "question_id": 40323, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002024", - "question_id": 40382, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004851", - "question_id": 40420, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"congas\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00003474", - "question_id": 40442, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00004227", - "question_id": 40446, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002574", - "question_id": 40450, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008881", - "question_id": 40458, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"tuba\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00002574", - "question_id": 40464, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00008353", - "question_id": 40466, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"banjo\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002087", - "question_id": 40474, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003690", - "question_id": 40495, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003854", - "question_id": 40508, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006405", - "question_id": 40512, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002955", - "question_id": 40528, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"tuba\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00000562", - "question_id": 40531, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00001595", - "question_id": 40534, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002255", - "question_id": 40535, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002599", - "question_id": 40541, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002212", - "question_id": 40559, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"pipa\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00006168", - "question_id": 40570, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"xylophone\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00004371", - "question_id": 40575, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001432", - "question_id": 40576, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004663", - "question_id": 40598, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000978", - "question_id": 40610, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007322", - "question_id": 40611, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007322", - "question_id": 40611, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000443", - "question_id": 40614, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006405", - "question_id": 40631, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008697", - "question_id": 40646, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004947", - "question_id": 40658, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005897", - "question_id": 40680, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008146", - "question_id": 40705, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001818", - "question_id": 40708, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004073", - "question_id": 40713, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006653", - "question_id": 40729, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008903", - "question_id": 40762, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003231", - "question_id": 40764, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00004447", - "question_id": 40775, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001942", - "question_id": 40778, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006505", - "question_id": 40785, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004141", - "question_id": 40809, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004122", - "question_id": 40815, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008735", - "question_id": 40837, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004929", - "question_id": 40850, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002456", - "question_id": 40851, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002190", - "question_id": 40864, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008050", - "question_id": 40865, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002753", - "question_id": 40924, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006290", - "question_id": 40926, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004771", - "question_id": 40928, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002398", - "question_id": 40947, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000331", - "question_id": 40955, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005023", - "question_id": 40965, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00008770", - "question_id": 40981, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004594", - "question_id": 40984, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002268", - "question_id": 40985, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007318", - "question_id": 41003, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002282", - "question_id": 41009, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003030", - "question_id": 41010, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002207", - "question_id": 41045, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"tuba\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00005110", - "question_id": 41048, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007822", - "question_id": 41066, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006197", - "question_id": 41089, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002360", - "question_id": 41095, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007696", - "question_id": 41098, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007317", - "question_id": 41101, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001045", - "question_id": 41112, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001045", - "question_id": 41112, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001410", - "question_id": 41134, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007274", - "question_id": 41136, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008980", - "question_id": 41157, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008451", - "question_id": 41164, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005479", - "question_id": 41197, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006113", - "question_id": 41241, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003798", - "question_id": 41251, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006915", - "question_id": 41253, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008761", - "question_id": 41271, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006743", - "question_id": 41290, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001823", - "question_id": 41292, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004287", - "question_id": 41305, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001848", - "question_id": 41324, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001932", - "question_id": 41354, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002049", - "question_id": 41372, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00007571", - "question_id": 41383, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006338", - "question_id": 41389, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004917", - "question_id": 41390, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"tuba\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001604", - "question_id": 41391, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002571", - "question_id": 41396, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006226", - "question_id": 41410, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005101", - "question_id": 41420, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007137", - "question_id": 41441, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005446", - "question_id": 41446, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00000532", - "question_id": 41451, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002084", - "question_id": 41456, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00006614", - "question_id": 41464, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008884", - "question_id": 41468, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007917", - "question_id": 41477, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"violin\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008303", - "question_id": 41503, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008330", - "question_id": 41506, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007248", - "question_id": 41508, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005693", - "question_id": 41523, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"bassoon\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007555", - "question_id": 41555, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"pipa\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007670", - "question_id": 41562, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003677", - "question_id": 41570, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004939", - "question_id": 41602, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008715", - "question_id": 41604, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002377", - "question_id": 41605, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005383", - "question_id": 41617, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001487", - "question_id": 41643, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00004614", - "question_id": 41676, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"violin\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001806", - "question_id": 41690, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007075", - "question_id": 41691, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00004727", - "question_id": 41700, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006273", - "question_id": 41715, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005175", - "question_id": 41717, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001057", - "question_id": 41724, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008189", - "question_id": 41780, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000566", - "question_id": 41784, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000893", - "question_id": 41786, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003231", - "question_id": 41789, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"pipa\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00001804", - "question_id": 41790, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006619", - "question_id": 41792, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008528", - "question_id": 41793, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001367", - "question_id": 41794, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003499", - "question_id": 41797, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000684", - "question_id": 41829, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006643", - "question_id": 41830, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001552", - "question_id": 41882, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006721", - "question_id": 41892, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007245", - "question_id": 41929, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005490", - "question_id": 41961, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005370", - "question_id": 41964, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006539", - "question_id": 41976, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008764", - "question_id": 42002, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001267", - "question_id": 42008, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008050", - "question_id": 42017, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007481", - "question_id": 42034, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006472", - "question_id": 42040, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007769", - "question_id": 42069, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008303", - "question_id": 42074, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000301", - "question_id": 42093, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003705", - "question_id": 42112, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000876", - "question_id": 42113, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006197", - "question_id": 42130, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00002911", - "question_id": 42142, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004939", - "question_id": 42149, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000380", - "question_id": 42150, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005678", - "question_id": 42185, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005662", - "question_id": 42191, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001628", - "question_id": 42199, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "more than ten" -}, { - "video_id": "00004366", - "question_id": 42236, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006734", - "question_id": 42241, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006734", - "question_id": 42241, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005413", - "question_id": 42312, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007075", - "question_id": 42320, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006832", - "question_id": 42346, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000741", - "question_id": 42380, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"xylophone\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00001324", - "question_id": 42415, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006772", - "question_id": 42435, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000978", - "question_id": 42452, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00007952", - "question_id": 42454, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"ukulele\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002534", - "question_id": 42463, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005490", - "question_id": 42464, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004896", - "question_id": 42479, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005849", - "question_id": 42503, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000664", - "question_id": 42552, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008466", - "question_id": 42560, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005843", - "question_id": 42564, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002717", - "question_id": 42600, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007421", - "question_id": 42662, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002927", - "question_id": 42667, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005575", - "question_id": 42677, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"banjo\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000876", - "question_id": 42701, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004814", - "question_id": 42776, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001214", - "question_id": 42796, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007752", - "question_id": 42825, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006721", - "question_id": 42834, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003569", - "question_id": 42845, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00008279", - "question_id": 42849, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007965", - "question_id": 42854, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004530", - "question_id": 42893, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001879", - "question_id": 42908, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002258", - "question_id": 42948, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001611", - "question_id": 42965, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00003902", - "question_id": 42986, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000989", - "question_id": 42987, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00008904", - "question_id": 42991, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002929", - "question_id": 43030, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000544", - "question_id": 43037, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005225", - "question_id": 43042, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002717", - "question_id": 43049, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000431", - "question_id": 43057, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00007670", - "question_id": 43112, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007842", - "question_id": 43130, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001214", - "question_id": 43156, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006262", - "question_id": 43218, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004697", - "question_id": 43239, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006721", - "question_id": 43271, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008084", - "question_id": 43275, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007397", - "question_id": 43277, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002448", - "question_id": 43282, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001575", - "question_id": 43284, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005401", - "question_id": 43289, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001367", - "question_id": 43365, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008431", - "question_id": 43385, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001168", - "question_id": 43410, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00000124", - "question_id": 43448, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001609", - "question_id": 43488, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"tuba\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008257", - "question_id": 43499, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006908", - "question_id": 43502, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002451", - "question_id": 43529, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005709", - "question_id": 43539, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005225", - "question_id": 43569, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005236", - "question_id": 43577, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008350", - "question_id": 43639, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002247", - "question_id": 43680, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00007161", - "question_id": 43697, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001212", - "question_id": 43856, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001456", - "question_id": 43890, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001942", - "question_id": 43976, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001666", - "question_id": 44076, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003827", - "question_id": 44082, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006130", - "question_id": 44086, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008176", - "question_id": 44118, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004865", - "question_id": 44127, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006733", - "question_id": 44161, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003484", - "question_id": 44162, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001182", - "question_id": 44209, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000324", - "question_id": 44222, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005615", - "question_id": 44250, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007228", - "question_id": 44258, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"cello\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007123", - "question_id": 44271, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001629", - "question_id": 44275, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001629", - "question_id": 44344, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"middle\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008373", - "question_id": 44375, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006261", - "question_id": 44385, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006680", - "question_id": 44398, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003504", - "question_id": 44401, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005716", - "question_id": 44406, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008328", - "question_id": 44410, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005755", - "question_id": 44504, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004414", - "question_id": 44515, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003317", - "question_id": 44518, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007530", - "question_id": 44573, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008561", - "question_id": 44618, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000172", - "question_id": 44671, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001636", - "question_id": 44679, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006146", - "question_id": 44693, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004798", - "question_id": 44744, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000666", - "question_id": 44818, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00000732", - "question_id": 44854, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000318", - "question_id": 44901, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000900", - "question_id": 44925, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002039", - "question_id": 44928, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002814", - "question_id": 44942, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001144", - "question_id": 44987, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006370", - "question_id": 45026, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002353", - "question_id": 45095, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005921", - "question_id": 45101, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00005905", - "question_id": 45105, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007321", - "question_id": 45218, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008467", - "question_id": 45236, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007205", - "question_id": 45266, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000868", - "question_id": 45284, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"clarinet\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005091", - "question_id": 45337, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007518", - "question_id": 45360, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002350", - "question_id": 45386, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007713", - "question_id": 45480, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007205", - "question_id": 45562, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008047", - "question_id": 45601, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002350", - "question_id": 45624, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000258", - "question_id": 45658, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000587", - "question_id": 45697, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007357", - "question_id": 45709, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001310", - "question_id": 45819, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001988", - "question_id": 45825, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005515", - "question_id": 45892, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00002442", - "question_id": 45898, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006328", - "question_id": 46049, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000466", - "question_id": 46072, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005084", - "question_id": 46130, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007457", - "question_id": 46181, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005623", - "question_id": 46197, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003950", - "question_id": 46246, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002274", - "question_id": 46247, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005322", - "question_id": 46260, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003950", - "question_id": 46520, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006110", - "question_id": 46531, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005242", - "question_id": 46542, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007297", - "question_id": 46557, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001583", - "question_id": 46595, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008174", - "question_id": 46612, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008526", - "question_id": 46663, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006510", - "question_id": 46797, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008005", - "question_id": 46815, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002275", - "question_id": 46847, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005016", - "question_id": 46853, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007512", - "question_id": 46917, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002907", - "question_id": 46955, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008454", - "question_id": 47090, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000871", - "question_id": 47124, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005678", - "question_id": 47197, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008380", - "question_id": 47236, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005285", - "question_id": 47386, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007181", - "question_id": 47497, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002105", - "question_id": 47530, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004309", - "question_id": 47574, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006217", - "question_id": 47592, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003671", - "question_id": 47616, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00007161", - "question_id": 47629, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005209", - "question_id": 47648, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006307", - "question_id": 47651, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000261", - "question_id": 47682, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007393", - "question_id": 47683, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006108", - "question_id": 47711, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000983", - "question_id": 47715, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006927", - "question_id": 47724, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008473", - "question_id": 47739, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008440", - "question_id": 47749, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00003351", - "question_id": 47761, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00002062", - "question_id": 47800, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000046", - "question_id": 47831, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00002944", - "question_id": 47833, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001506", - "question_id": 47839, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003793", - "question_id": 47842, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00008054", - "question_id": 47857, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00003445", - "question_id": 47866, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004861", - "question_id": 47894, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00005317", - "question_id": 47934, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00007725", - "question_id": 47936, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00000376", - "question_id": 47942, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00006958", - "question_id": 47967, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00005998", - "question_id": 47972, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001693", - "question_id": 47979, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00007583", - "question_id": 47981, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001557", - "question_id": 47983, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00004849", - "question_id": 47987, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005848", - "question_id": 47995, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008734", - "question_id": 48005, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004121", - "question_id": 48016, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00001512", - "question_id": 48021, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00005089", - "question_id": 48029, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00002829", - "question_id": 48056, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001974", - "question_id": 48058, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00004489", - "question_id": 48060, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00004955", - "question_id": 48065, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00002717", - "question_id": 48077, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"piano\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007113", - "question_id": 48078, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003323", - "question_id": 48081, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00008701", - "question_id": 48084, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002068", - "question_id": 48090, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006565", - "question_id": 48098, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008069", - "question_id": 48109, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003667", - "question_id": 48125, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005635", - "question_id": 48146, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002311", - "question_id": 48159, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006178", - "question_id": 48162, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00003198", - "question_id": 48198, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001148", - "question_id": 48199, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002370", - "question_id": 48225, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000139", - "question_id": 48228, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"banjo\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004303", - "question_id": 48229, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008672", - "question_id": 48242, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"middle\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006581", - "question_id": 48271, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000576", - "question_id": 48306, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000082", - "question_id": 48313, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00003120", - "question_id": 48317, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00003536", - "question_id": 48344, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007270", - "question_id": 48363, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00000824", - "question_id": 48395, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001677", - "question_id": 48433, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00001952", - "question_id": 48447, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002262", - "question_id": 48449, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00008594", - "question_id": 48455, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"banjo\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002866", - "question_id": 48469, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00007677", - "question_id": 48471, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000482", - "question_id": 48484, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007340", - "question_id": 48523, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00007777", - "question_id": 48535, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"last\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002875", - "question_id": 48564, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00004598", - "question_id": 48576, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005440", - "question_id": 48588, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006294", - "question_id": 48596, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00001462", - "question_id": 48616, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002721", - "question_id": 48618, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003867", - "question_id": 48633, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007442", - "question_id": 48643, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002040", - "question_id": 48648, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007397", - "question_id": 48649, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002874", - "question_id": 48653, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008724", - "question_id": 48676, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000594", - "question_id": 48687, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004086", - "question_id": 48694, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001095", - "question_id": 48741, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005980", - "question_id": 48769, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00003132", - "question_id": 48792, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003471", - "question_id": 48793, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001743", - "question_id": 48794, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003629", - "question_id": 48814, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00002603", - "question_id": 48836, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"trumpet\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008694", - "question_id": 48837, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005949", - "question_id": 48845, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003576", - "question_id": 48864, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003625", - "question_id": 48867, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006283", - "question_id": 48898, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"middle\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007338", - "question_id": 48901, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008430", - "question_id": 48920, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002359", - "question_id": 48962, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000214", - "question_id": 48965, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00000222", - "question_id": 48970, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003054", - "question_id": 48981, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005129", - "question_id": 48983, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00004143", - "question_id": 48997, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005739", - "question_id": 49013, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000449", - "question_id": 49025, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00007947", - "question_id": 49026, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00001785", - "question_id": 49028, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003015", - "question_id": 49033, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005681", - "question_id": 49046, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00008078", - "question_id": 49071, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000222", - "question_id": 49075, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bassoon\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001018", - "question_id": 49076, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"pipa\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002169", - "question_id": 49088, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000924", - "question_id": 49096, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"accordion\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00001915", - "question_id": 49104, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005333", - "question_id": 49117, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006031", - "question_id": 49133, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007821", - "question_id": 49137, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00000801", - "question_id": 49141, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00000436", - "question_id": 49144, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00008034", - "question_id": 49146, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"bassoon\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000149", - "question_id": 49149, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001613", - "question_id": 49151, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"suona\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002466", - "question_id": 49167, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006669", - "question_id": 49168, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00005471", - "question_id": 49171, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005471", - "question_id": 49172, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000259", - "question_id": 49179, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001211", - "question_id": 49180, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003969", - "question_id": 49189, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004603", - "question_id": 49204, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008747", - "question_id": 49238, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008534", - "question_id": 49265, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00003482", - "question_id": 49284, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007438", - "question_id": 49302, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00000684", - "question_id": 49307, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00007355", - "question_id": 49310, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002017", - "question_id": 49316, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00003359", - "question_id": 49320, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004656", - "question_id": 49325, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001702", - "question_id": 49330, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00004042", - "question_id": 49340, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000318", - "question_id": 49344, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00000701", - "question_id": 49345, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003834", - "question_id": 49348, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000668", - "question_id": 49353, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003292", - "question_id": 49365, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004903", - "question_id": 49372, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001344", - "question_id": 49378, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00002880", - "question_id": 49383, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002176", - "question_id": 49385, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001343", - "question_id": 49387, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007498", - "question_id": 49405, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00005367", - "question_id": 49414, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}] \ No newline at end of file diff --git a/data/json/avqa-train.json b/data/json/avqa-train.json deleted file mode 100644 index d1da1c6..0000000 --- a/data/json/avqa-train.json +++ /dev/null @@ -1,288785 +0,0 @@ -[ - { - "video_id": "00000238", - "question_id": 8, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000024", - "question_id": 9, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000111", - "question_id": 14, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000046", - "question_id": 15, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00000150", - "question_id": 16, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000136", - "question_id": 17, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000188", - "question_id": 18, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00000272", - "question_id": 19, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000031", - "question_id": 20, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00000026", - "question_id": 21, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000071", - "question_id": 22, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000250", - "question_id": 23, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000197", - "question_id": 24, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000270", - "question_id": 25, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000254", - "question_id": 26, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000225", - "question_id": 27, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000232", - "question_id": 29, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00000152", - "question_id": 30, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000085", - "question_id": 32, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000074", - "question_id": 33, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000143", - "question_id": 34, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000015", - "question_id": 36, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000199", - "question_id": 38, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000247", - "question_id": 39, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "seven" - }, - { - "video_id": "00000209", - "question_id": 40, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000147", - "question_id": 41, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000223", - "question_id": 42, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000205", - "question_id": 43, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000107", - "question_id": 44, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000097", - "question_id": 45, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00000045", - "question_id": 46, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000249", - "question_id": 47, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000028", - "question_id": 49, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00000272", - "question_id": 50, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000220", - "question_id": 51, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000157", - "question_id": 52, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000157", - "question_id": 53, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000028", - "question_id": 54, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000258", - "question_id": 56, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000064", - "question_id": 57, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000050", - "question_id": 58, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000111", - "question_id": 59, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000092", - "question_id": 61, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000175", - "question_id": 63, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000035", - "question_id": 64, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000294", - "question_id": 65, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000271", - "question_id": 67, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000182", - "question_id": 69, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000105", - "question_id": 70, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000114", - "question_id": 71, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000007", - "question_id": 72, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000187", - "question_id": 75, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000181", - "question_id": 76, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000074", - "question_id": 77, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000198", - "question_id": 78, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000245", - "question_id": 79, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000287", - "question_id": 80, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000185", - "question_id": 81, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000209", - "question_id": 84, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000188", - "question_id": 87, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000109", - "question_id": 88, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000251", - "question_id": 91, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000082", - "question_id": 92, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000286", - "question_id": 94, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000292", - "question_id": 97, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000112", - "question_id": 99, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000085", - "question_id": 101, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000051", - "question_id": 102, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000006", - "question_id": 104, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000143", - "question_id": 105, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"electric_bass\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000025", - "question_id": 107, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000217", - "question_id": 109, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000151", - "question_id": 110, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000150", - "question_id": 114, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000003", - "question_id": 115, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000090", - "question_id": 117, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000033", - "question_id": 119, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000244", - "question_id": 120, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000241", - "question_id": 121, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000220", - "question_id": 123, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000197", - "question_id": 124, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000109", - "question_id": 126, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000296", - "question_id": 128, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000162", - "question_id": 129, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000145", - "question_id": 130, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000141", - "question_id": 131, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000015", - "question_id": 132, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000275", - "question_id": 134, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000058", - "question_id": 135, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000153", - "question_id": 140, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000019", - "question_id": 143, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000188", - "question_id": 144, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000245", - "question_id": 145, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000026", - "question_id": 147, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000043", - "question_id": 148, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000074", - "question_id": 149, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000189", - "question_id": 151, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000114", - "question_id": 152, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000073", - "question_id": 153, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000259", - "question_id": 157, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000299", - "question_id": 158, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000076", - "question_id": 159, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000046", - "question_id": 161, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000266", - "question_id": 163, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000210", - "question_id": 164, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000114", - "question_id": 165, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000150", - "question_id": 166, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000232", - "question_id": 168, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000122", - "question_id": 170, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000067", - "question_id": 171, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000063", - "question_id": 175, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000277", - "question_id": 176, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000167", - "question_id": 177, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000104", - "question_id": 178, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000299", - "question_id": 179, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000270", - "question_id": 180, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00000250", - "question_id": 181, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000033", - "question_id": 182, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000100", - "question_id": 185, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000231", - "question_id": 186, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000031", - "question_id": 187, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00000211", - "question_id": 189, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000058", - "question_id": 192, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000265", - "question_id": 193, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000112", - "question_id": 194, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000232", - "question_id": 195, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00000072", - "question_id": 196, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000105", - "question_id": 197, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000100", - "question_id": 202, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000297", - "question_id": 203, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000159", - "question_id": 204, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000184", - "question_id": 205, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000188", - "question_id": 207, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00000164", - "question_id": 209, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000045", - "question_id": 211, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000132", - "question_id": 212, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000226", - "question_id": 214, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000058", - "question_id": 215, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007030", - "question_id": 216, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007872", - "question_id": 217, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002172", - "question_id": 218, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006128", - "question_id": 219, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002314", - "question_id": 220, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001784", - "question_id": 221, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008341", - "question_id": 222, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004743", - "question_id": 223, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003779", - "question_id": 228, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008034", - "question_id": 231, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005998", - "question_id": 232, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005472", - "question_id": 233, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001545", - "question_id": 234, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008103", - "question_id": 236, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006767", - "question_id": 237, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002259", - "question_id": 238, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006939", - "question_id": 241, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001243", - "question_id": 242, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003739", - "question_id": 243, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000194", - "question_id": 244, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006893", - "question_id": 245, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002528", - "question_id": 246, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005038", - "question_id": 247, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001241", - "question_id": 248, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00003491", - "question_id": 249, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000423", - "question_id": 250, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004747", - "question_id": 251, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003498", - "question_id": 252, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004678", - "question_id": 253, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007297", - "question_id": 255, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001944", - "question_id": 256, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004505", - "question_id": 257, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006109", - "question_id": 258, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004268", - "question_id": 259, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006865", - "question_id": 261, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002359", - "question_id": 262, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004155", - "question_id": 264, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005198", - "question_id": 269, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003846", - "question_id": 270, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008057", - "question_id": 271, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004650", - "question_id": 272, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004747", - "question_id": 274, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002077", - "question_id": 276, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006447", - "question_id": 278, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002657", - "question_id": 279, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005797", - "question_id": 283, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006544", - "question_id": 284, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008471", - "question_id": 285, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008732", - "question_id": 287, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008212", - "question_id": 289, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007239", - "question_id": 292, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006720", - "question_id": 293, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008823", - "question_id": 294, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000243", - "question_id": 296, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005806", - "question_id": 297, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001373", - "question_id": 298, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000456", - "question_id": 299, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000015", - "question_id": 300, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000589", - "question_id": 301, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002152", - "question_id": 303, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002680", - "question_id": 304, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007315", - "question_id": 305, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003339", - "question_id": 308, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005014", - "question_id": 309, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004201", - "question_id": 310, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003432", - "question_id": 316, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004435", - "question_id": 317, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002917", - "question_id": 319, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001305", - "question_id": 320, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006484", - "question_id": 321, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004008", - "question_id": 322, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003668", - "question_id": 325, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004576", - "question_id": 327, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002082", - "question_id": 328, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000818", - "question_id": 330, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005260", - "question_id": 331, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001492", - "question_id": 332, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001035", - "question_id": 333, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001519", - "question_id": 334, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006411", - "question_id": 335, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004224", - "question_id": 336, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000648", - "question_id": 340, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008086", - "question_id": 342, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007179", - "question_id": 344, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008619", - "question_id": 345, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008132", - "question_id": 351, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005274", - "question_id": 352, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008717", - "question_id": 353, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001669", - "question_id": 354, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001692", - "question_id": 355, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003766", - "question_id": 358, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008586", - "question_id": 360, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000959", - "question_id": 361, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006107", - "question_id": 363, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008825", - "question_id": 364, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006585", - "question_id": 365, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003217", - "question_id": 366, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005499", - "question_id": 367, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002408", - "question_id": 368, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003904", - "question_id": 369, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001272", - "question_id": 371, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004849", - "question_id": 372, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007830", - "question_id": 374, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008221", - "question_id": 376, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006073", - "question_id": 379, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005913", - "question_id": 380, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008335", - "question_id": 381, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005521", - "question_id": 382, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000551", - "question_id": 384, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000722", - "question_id": 386, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001801", - "question_id": 388, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001329", - "question_id": 389, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004038", - "question_id": 390, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005675", - "question_id": 393, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001702", - "question_id": 394, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005639", - "question_id": 396, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001959", - "question_id": 397, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00007205", - "question_id": 399, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006997", - "question_id": 401, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004325", - "question_id": 402, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001348", - "question_id": 403, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002959", - "question_id": 405, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004135", - "question_id": 406, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008744", - "question_id": 407, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002455", - "question_id": 408, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006303", - "question_id": 414, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006291", - "question_id": 415, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006595", - "question_id": 416, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003107", - "question_id": 418, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001435", - "question_id": 420, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008384", - "question_id": 421, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000727", - "question_id": 423, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000817", - "question_id": 424, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001507", - "question_id": 425, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001906", - "question_id": 426, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005712", - "question_id": 429, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004134", - "question_id": 430, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002352", - "question_id": 432, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001715", - "question_id": 433, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000508", - "question_id": 435, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006516", - "question_id": 436, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002659", - "question_id": 437, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000877", - "question_id": 438, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007344", - "question_id": 439, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000545", - "question_id": 440, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002517", - "question_id": 442, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008915", - "question_id": 443, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008833", - "question_id": 444, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002293", - "question_id": 445, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000661", - "question_id": 446, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001645", - "question_id": 447, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006038", - "question_id": 448, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002751", - "question_id": 451, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008061", - "question_id": 452, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001642", - "question_id": 453, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006572", - "question_id": 454, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005532", - "question_id": 455, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003058", - "question_id": 457, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006387", - "question_id": 458, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000662", - "question_id": 460, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005757", - "question_id": 461, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000408", - "question_id": 462, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002325", - "question_id": 463, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005979", - "question_id": 465, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004145", - "question_id": 466, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007247", - "question_id": 467, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002644", - "question_id": 469, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001575", - "question_id": 470, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000897", - "question_id": 471, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008819", - "question_id": 472, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006482", - "question_id": 473, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003458", - "question_id": 475, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005029", - "question_id": 477, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003402", - "question_id": 478, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006213", - "question_id": 479, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00007647", - "question_id": 480, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000922", - "question_id": 481, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001820", - "question_id": 482, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007998", - "question_id": 483, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001177", - "question_id": 484, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000305", - "question_id": 486, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001784", - "question_id": 487, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000342", - "question_id": 488, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004558", - "question_id": 490, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007095", - "question_id": 491, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003970", - "question_id": 492, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008729", - "question_id": 493, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008638", - "question_id": 494, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002317", - "question_id": 495, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000049", - "question_id": 501, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007128", - "question_id": 502, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008145", - "question_id": 503, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001500", - "question_id": 504, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006918", - "question_id": 505, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005664", - "question_id": 506, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006292", - "question_id": 507, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003566", - "question_id": 508, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008153", - "question_id": 509, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005580", - "question_id": 511, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003407", - "question_id": 512, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007408", - "question_id": 513, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008078", - "question_id": 515, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003077", - "question_id": 516, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007402", - "question_id": 518, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001285", - "question_id": 519, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000529", - "question_id": 520, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000868", - "question_id": 521, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008845", - "question_id": 522, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005368", - "question_id": 524, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005610", - "question_id": 525, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006261", - "question_id": 526, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003969", - "question_id": 527, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008383", - "question_id": 529, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003840", - "question_id": 530, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002473", - "question_id": 532, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00003163", - "question_id": 533, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005502", - "question_id": 534, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008582", - "question_id": 536, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002894", - "question_id": 538, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003338", - "question_id": 539, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008855", - "question_id": 540, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004056", - "question_id": 541, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007010", - "question_id": 542, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002306", - "question_id": 544, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006536", - "question_id": 546, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004768", - "question_id": 547, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005738", - "question_id": 548, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007536", - "question_id": 549, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008788", - "question_id": 551, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004062", - "question_id": 552, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004894", - "question_id": 553, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005948", - "question_id": 555, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004651", - "question_id": 556, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001071", - "question_id": 557, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000272", - "question_id": 562, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007044", - "question_id": 563, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006411", - "question_id": 565, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005444", - "question_id": 566, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002163", - "question_id": 568, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00005390", - "question_id": 569, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002112", - "question_id": 570, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001654", - "question_id": 573, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000539", - "question_id": 574, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005405", - "question_id": 575, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007986", - "question_id": 576, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008687", - "question_id": 577, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002058", - "question_id": 582, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004706", - "question_id": 584, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007003", - "question_id": 585, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006703", - "question_id": 586, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005751", - "question_id": 587, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001325", - "question_id": 588, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005855", - "question_id": 589, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005689", - "question_id": 591, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000349", - "question_id": 592, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004058", - "question_id": 593, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001389", - "question_id": 594, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007316", - "question_id": 595, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005415", - "question_id": 598, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002528", - "question_id": 599, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000423", - "question_id": 600, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008727", - "question_id": 603, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005790", - "question_id": 605, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002003", - "question_id": 606, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006881", - "question_id": 607, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007649", - "question_id": 610, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002931", - "question_id": 611, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003218", - "question_id": 612, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006290", - "question_id": 613, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001540", - "question_id": 614, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006998", - "question_id": 616, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002332", - "question_id": 619, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004394", - "question_id": 620, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003038", - "question_id": 621, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006544", - "question_id": 622, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006214", - "question_id": 623, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003026", - "question_id": 624, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006862", - "question_id": 625, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002277", - "question_id": 627, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003864", - "question_id": 631, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006180", - "question_id": 632, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002337", - "question_id": 633, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008530", - "question_id": 634, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005806", - "question_id": 636, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002230", - "question_id": 638, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008401", - "question_id": 639, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000955", - "question_id": 643, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007224", - "question_id": 645, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008888", - "question_id": 646, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00006401", - "question_id": 648, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001679", - "question_id": 649, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005026", - "question_id": 651, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007654", - "question_id": 652, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007131", - "question_id": 656, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002984", - "question_id": 657, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008210", - "question_id": 658, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002491", - "question_id": 659, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000033", - "question_id": 661, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001721", - "question_id": 662, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00000433", - "question_id": 665, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006416", - "question_id": 667, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000320", - "question_id": 668, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001813", - "question_id": 669, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008262", - "question_id": 670, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001489", - "question_id": 671, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002941", - "question_id": 674, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007634", - "question_id": 675, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006825", - "question_id": 676, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000569", - "question_id": 677, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004572", - "question_id": 678, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007299", - "question_id": 679, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000751", - "question_id": 680, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000770", - "question_id": 681, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003410", - "question_id": 682, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00002740", - "question_id": 683, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004074", - "question_id": 684, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002903", - "question_id": 686, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003741", - "question_id": 687, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006722", - "question_id": 690, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000863", - "question_id": 691, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005906", - "question_id": 692, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006106", - "question_id": 695, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004972", - "question_id": 696, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00005239", - "question_id": 697, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004671", - "question_id": 699, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004922", - "question_id": 700, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004458", - "question_id": 702, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006903", - "question_id": 704, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008752", - "question_id": 705, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004379", - "question_id": 706, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001608", - "question_id": 707, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002559", - "question_id": 708, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003946", - "question_id": 709, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008807", - "question_id": 710, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005046", - "question_id": 711, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008285", - "question_id": 712, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007025", - "question_id": 713, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005059", - "question_id": 715, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001082", - "question_id": 716, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007528", - "question_id": 719, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001627", - "question_id": 720, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008333", - "question_id": 721, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003744", - "question_id": 722, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008780", - "question_id": 724, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000933", - "question_id": 725, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004316", - "question_id": 726, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005133", - "question_id": 727, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003995", - "question_id": 728, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008574", - "question_id": 729, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001525", - "question_id": 730, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006033", - "question_id": 731, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003949", - "question_id": 733, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001420", - "question_id": 734, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007093", - "question_id": 735, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006622", - "question_id": 736, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001072", - "question_id": 738, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004774", - "question_id": 739, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001001", - "question_id": 740, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005280", - "question_id": 742, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005616", - "question_id": 743, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007858", - "question_id": 745, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000821", - "question_id": 746, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005667", - "question_id": 747, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002042", - "question_id": 748, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005721", - "question_id": 750, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005570", - "question_id": 751, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006782", - "question_id": 752, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002690", - "question_id": 754, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005873", - "question_id": 756, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003104", - "question_id": 757, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006520", - "question_id": 758, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007190", - "question_id": 760, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004749", - "question_id": 762, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000651", - "question_id": 763, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001343", - "question_id": 765, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005186", - "question_id": 768, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004286", - "question_id": 770, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005852", - "question_id": 771, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006181", - "question_id": 772, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002563", - "question_id": 775, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002152", - "question_id": 776, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000729", - "question_id": 777, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000328", - "question_id": 778, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003174", - "question_id": 779, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000542", - "question_id": 780, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003549", - "question_id": 781, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002174", - "question_id": 785, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003262", - "question_id": 787, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007862", - "question_id": 788, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001307", - "question_id": 792, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005556", - "question_id": 793, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005853", - "question_id": 794, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006752", - "question_id": 795, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008075", - "question_id": 796, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000137", - "question_id": 797, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004611", - "question_id": 799, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000873", - "question_id": 800, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008185", - "question_id": 801, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007131", - "question_id": 803, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002252", - "question_id": 804, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004766", - "question_id": 806, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002243", - "question_id": 807, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002442", - "question_id": 808, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002347", - "question_id": 811, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007306", - "question_id": 812, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003956", - "question_id": 814, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007240", - "question_id": 817, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001472", - "question_id": 819, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002806", - "question_id": 820, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001100", - "question_id": 821, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006623", - "question_id": 822, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006623", - "question_id": 822, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007206", - "question_id": 823, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007606", - "question_id": 824, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002823", - "question_id": 825, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007039", - "question_id": 826, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002387", - "question_id": 827, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006040", - "question_id": 828, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007625", - "question_id": 830, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004315", - "question_id": 831, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003220", - "question_id": 832, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "more than ten" - }, - { - "video_id": "00000784", - "question_id": 834, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001947", - "question_id": 836, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003837", - "question_id": 837, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005452", - "question_id": 838, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001274", - "question_id": 839, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002552", - "question_id": 840, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000237", - "question_id": 841, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004814", - "question_id": 842, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006225", - "question_id": 844, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003499", - "question_id": 845, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003793", - "question_id": 846, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008344", - "question_id": 847, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006713", - "question_id": 848, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "seven" - }, - { - "video_id": "00007574", - "question_id": 850, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008662", - "question_id": 852, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007581", - "question_id": 854, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002549", - "question_id": 855, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00006447", - "question_id": 858, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001184", - "question_id": 859, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006660", - "question_id": 861, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00001154", - "question_id": 863, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002142", - "question_id": 864, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002710", - "question_id": 866, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006745", - "question_id": 867, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003025", - "question_id": 868, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003964", - "question_id": 869, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007558", - "question_id": 871, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000883", - "question_id": 873, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006600", - "question_id": 874, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002009", - "question_id": 875, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007163", - "question_id": 876, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003998", - "question_id": 877, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003459", - "question_id": 879, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005887", - "question_id": 881, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008516", - "question_id": 882, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007160", - "question_id": 883, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008276", - "question_id": 886, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003357", - "question_id": 888, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006135", - "question_id": 889, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006830", - "question_id": 890, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004782", - "question_id": 892, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000465", - "question_id": 893, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001512", - "question_id": 894, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006292", - "question_id": 895, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000129", - "question_id": 896, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008756", - "question_id": 897, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002949", - "question_id": 898, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000540", - "question_id": 899, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008134", - "question_id": 900, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006365", - "question_id": 902, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000310", - "question_id": 903, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004235", - "question_id": 904, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000192", - "question_id": 905, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000622", - "question_id": 907, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007614", - "question_id": 908, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002881", - "question_id": 909, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000217", - "question_id": 910, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001292", - "question_id": 912, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003146", - "question_id": 913, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002745", - "question_id": 916, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003548", - "question_id": 917, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006744", - "question_id": 918, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000761", - "question_id": 919, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003230", - "question_id": 920, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000379", - "question_id": 921, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007780", - "question_id": 922, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008326", - "question_id": 924, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000556", - "question_id": 925, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005733", - "question_id": 926, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004566", - "question_id": 928, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006761", - "question_id": 929, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002726", - "question_id": 930, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000781", - "question_id": 931, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004980", - "question_id": 932, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007669", - "question_id": 933, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000746", - "question_id": 934, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002857", - "question_id": 935, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008734", - "question_id": 936, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004422", - "question_id": 938, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003976", - "question_id": 940, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001598", - "question_id": 941, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004286", - "question_id": 944, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004450", - "question_id": 945, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003392", - "question_id": 946, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008834", - "question_id": 947, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008834", - "question_id": 947, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006085", - "question_id": 948, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004439", - "question_id": 949, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001301", - "question_id": 952, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000217", - "question_id": 953, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006120", - "question_id": 954, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008419", - "question_id": 955, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005603", - "question_id": 956, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008033", - "question_id": 958, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002030", - "question_id": 959, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006776", - "question_id": 960, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008099", - "question_id": 961, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000935", - "question_id": 962, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008370", - "question_id": 964, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001964", - "question_id": 965, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008885", - "question_id": 967, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000413", - "question_id": 969, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000277", - "question_id": 970, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003248", - "question_id": 971, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002565", - "question_id": 974, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007940", - "question_id": 975, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006539", - "question_id": 976, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005181", - "question_id": 978, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004991", - "question_id": 979, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00003168", - "question_id": 980, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003413", - "question_id": 982, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003994", - "question_id": 987, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007062", - "question_id": 988, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002189", - "question_id": 989, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008598", - "question_id": 991, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006768", - "question_id": 992, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003201", - "question_id": 993, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000724", - "question_id": 994, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005062", - "question_id": 995, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005277", - "question_id": 996, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000535", - "question_id": 997, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000794", - "question_id": 999, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003491", - "question_id": 1001, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004170", - "question_id": 1002, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001214", - "question_id": 1003, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002354", - "question_id": 1004, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004611", - "question_id": 1005, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007485", - "question_id": 1006, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007847", - "question_id": 1007, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005302", - "question_id": 1008, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008008", - "question_id": 1009, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00001137", - "question_id": 1010, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002744", - "question_id": 1011, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002469", - "question_id": 1012, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000709", - "question_id": 1013, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008176", - "question_id": 1014, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007736", - "question_id": 1015, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000790", - "question_id": 1016, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000305", - "question_id": 1018, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003309", - "question_id": 1019, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002017", - "question_id": 1020, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "seven" - }, - { - "video_id": "00008933", - "question_id": 1021, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002233", - "question_id": 1024, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003927", - "question_id": 1029, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000612", - "question_id": 1030, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008389", - "question_id": 1031, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008553", - "question_id": 1032, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005065", - "question_id": 1033, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008182", - "question_id": 1034, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000442", - "question_id": 1035, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000530", - "question_id": 1037, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007366", - "question_id": 1039, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000835", - "question_id": 1040, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004318", - "question_id": 1042, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005754", - "question_id": 1044, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007448", - "question_id": 1045, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007499", - "question_id": 1047, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001762", - "question_id": 1050, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008550", - "question_id": 1053, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003693", - "question_id": 1054, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001924", - "question_id": 1055, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008299", - "question_id": 1056, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004064", - "question_id": 1058, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006768", - "question_id": 1060, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001304", - "question_id": 1061, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001415", - "question_id": 1062, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007922", - "question_id": 1063, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00002899", - "question_id": 1065, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000035", - "question_id": 1066, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001926", - "question_id": 1068, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003190", - "question_id": 1070, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002578", - "question_id": 1072, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001427", - "question_id": 1073, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003178", - "question_id": 1075, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003590", - "question_id": 1076, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001338", - "question_id": 1078, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006639", - "question_id": 1080, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002060", - "question_id": 1081, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003790", - "question_id": 1082, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008517", - "question_id": 1083, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008363", - "question_id": 1084, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008629", - "question_id": 1085, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004236", - "question_id": 1086, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007548", - "question_id": 1089, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001819", - "question_id": 1091, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001639", - "question_id": 1093, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007315", - "question_id": 1094, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004874", - "question_id": 1095, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007377", - "question_id": 1097, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002292", - "question_id": 1098, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006267", - "question_id": 1100, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002119", - "question_id": 1101, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006997", - "question_id": 1102, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000025", - "question_id": 1104, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004307", - "question_id": 1105, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000248", - "question_id": 1106, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005043", - "question_id": 1107, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004621", - "question_id": 1109, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008578", - "question_id": 1110, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "nine" - }, - { - "video_id": "00007271", - "question_id": 1111, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003698", - "question_id": 1114, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004892", - "question_id": 1115, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001790", - "question_id": 1116, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003454", - "question_id": 1118, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002836", - "question_id": 1121, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007359", - "question_id": 1122, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008266", - "question_id": 1123, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003997", - "question_id": 1124, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008399", - "question_id": 1126, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004542", - "question_id": 1131, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007357", - "question_id": 1133, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008457", - "question_id": 1134, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003940", - "question_id": 1135, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006051", - "question_id": 1136, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00007903", - "question_id": 1137, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008759", - "question_id": 1139, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002910", - "question_id": 1140, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002395", - "question_id": 1141, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001575", - "question_id": 1142, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003578", - "question_id": 1143, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004194", - "question_id": 1144, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005653", - "question_id": 1145, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005925", - "question_id": 1146, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006911", - "question_id": 1148, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006079", - "question_id": 1149, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004556", - "question_id": 1151, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005544", - "question_id": 1152, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001063", - "question_id": 1156, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008509", - "question_id": 1157, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007662", - "question_id": 1158, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006073", - "question_id": 1159, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00007342", - "question_id": 1162, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "seven" - }, - { - "video_id": "00004208", - "question_id": 1165, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003617", - "question_id": 1166, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005187", - "question_id": 1167, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00005657", - "question_id": 1168, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007692", - "question_id": 1169, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003180", - "question_id": 1170, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007197", - "question_id": 1171, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007650", - "question_id": 1172, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002815", - "question_id": 1173, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007303", - "question_id": 1174, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002345", - "question_id": 1176, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001911", - "question_id": 1178, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004966", - "question_id": 1179, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001929", - "question_id": 1180, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006951", - "question_id": 1181, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005330", - "question_id": 1183, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002154", - "question_id": 1184, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007324", - "question_id": 1186, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003991", - "question_id": 1188, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002993", - "question_id": 1189, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003793", - "question_id": 1190, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006626", - "question_id": 1191, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001175", - "question_id": 1192, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003723", - "question_id": 1193, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002434", - "question_id": 1195, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002650", - "question_id": 1198, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005977", - "question_id": 1199, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004446", - "question_id": 1200, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002262", - "question_id": 1202, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007718", - "question_id": 1204, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003724", - "question_id": 1205, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00007169", - "question_id": 1207, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005857", - "question_id": 1208, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002926", - "question_id": 1209, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007765", - "question_id": 1211, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001043", - "question_id": 1212, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003586", - "question_id": 1213, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005754", - "question_id": 1214, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007971", - "question_id": 1215, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007530", - "question_id": 1216, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006130", - "question_id": 1217, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008565", - "question_id": 1220, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008363", - "question_id": 1222, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004092", - "question_id": 1224, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004077", - "question_id": 1225, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000411", - "question_id": 1226, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007453", - "question_id": 1228, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004757", - "question_id": 1229, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006610", - "question_id": 1230, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002598", - "question_id": 1234, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008840", - "question_id": 1239, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002002", - "question_id": 1240, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006266", - "question_id": 1241, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003806", - "question_id": 1242, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004860", - "question_id": 1243, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003905", - "question_id": 1244, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000473", - "question_id": 1245, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000155", - "question_id": 1247, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002068", - "question_id": 1248, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002216", - "question_id": 1249, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002712", - "question_id": 1251, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006215", - "question_id": 1252, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008046", - "question_id": 1253, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001494", - "question_id": 1254, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000303", - "question_id": 1255, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000036", - "question_id": 1259, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001068", - "question_id": 1260, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004929", - "question_id": 1261, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005621", - "question_id": 1263, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000418", - "question_id": 1264, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001877", - "question_id": 1265, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004674", - "question_id": 1266, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007771", - "question_id": 1267, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008962", - "question_id": 1268, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004732", - "question_id": 1270, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008179", - "question_id": 1271, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001876", - "question_id": 1273, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002418", - "question_id": 1274, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002102", - "question_id": 1275, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006834", - "question_id": 1276, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000412", - "question_id": 1277, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006609", - "question_id": 1279, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006680", - "question_id": 1281, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003459", - "question_id": 1282, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002814", - "question_id": 1283, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000202", - "question_id": 1285, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000014", - "question_id": 1286, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006437", - "question_id": 1287, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000046", - "question_id": 1288, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001072", - "question_id": 1289, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007691", - "question_id": 1290, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00002357", - "question_id": 1291, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00003797", - "question_id": 1292, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005120", - "question_id": 1293, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00005757", - "question_id": 1295, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007587", - "question_id": 1296, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008771", - "question_id": 1297, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003111", - "question_id": 1298, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006498", - "question_id": 1299, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001584", - "question_id": 1300, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005004", - "question_id": 1301, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006099", - "question_id": 1304, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006731", - "question_id": 1307, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007003", - "question_id": 1308, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003616", - "question_id": 1309, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002940", - "question_id": 1310, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002716", - "question_id": 1311, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008024", - "question_id": 1312, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003472", - "question_id": 1313, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006852", - "question_id": 1314, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004480", - "question_id": 1315, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003977", - "question_id": 1316, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002580", - "question_id": 1318, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008341", - "question_id": 1319, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001054", - "question_id": 1320, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001741", - "question_id": 1321, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000436", - "question_id": 1322, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00007014", - "question_id": 1324, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007291", - "question_id": 1328, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003825", - "question_id": 1329, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005819", - "question_id": 1330, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001685", - "question_id": 1332, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002073", - "question_id": 1333, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005955", - "question_id": 1334, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001341", - "question_id": 1335, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005082", - "question_id": 1336, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008862", - "question_id": 1337, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004494", - "question_id": 1339, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005550", - "question_id": 1340, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005077", - "question_id": 1341, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001713", - "question_id": 1342, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006308", - "question_id": 1345, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001687", - "question_id": 1346, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006960", - "question_id": 1347, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001381", - "question_id": 1348, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008354", - "question_id": 1349, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001643", - "question_id": 1350, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002019", - "question_id": 1351, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002013", - "question_id": 1352, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005540", - "question_id": 1353, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005028", - "question_id": 1355, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007148", - "question_id": 1356, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003031", - "question_id": 1357, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007851", - "question_id": 1358, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004813", - "question_id": 1359, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005940", - "question_id": 1360, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006047", - "question_id": 1361, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000442", - "question_id": 1362, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005703", - "question_id": 1363, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008056", - "question_id": 1366, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008626", - "question_id": 1368, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008402", - "question_id": 1369, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008872", - "question_id": 1371, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004925", - "question_id": 1372, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000382", - "question_id": 1374, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007521", - "question_id": 1376, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002049", - "question_id": 1377, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004243", - "question_id": 1378, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000680", - "question_id": 1379, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001851", - "question_id": 1380, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00002474", - "question_id": 1381, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008131", - "question_id": 1382, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001359", - "question_id": 1385, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000963", - "question_id": 1386, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002991", - "question_id": 1387, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005986", - "question_id": 1389, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004923", - "question_id": 1391, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008758", - "question_id": 1394, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006659", - "question_id": 1397, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001483", - "question_id": 1398, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000228", - "question_id": 1399, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008241", - "question_id": 1400, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006191", - "question_id": 1401, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007396", - "question_id": 1402, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001927", - "question_id": 1404, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008295", - "question_id": 1405, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002128", - "question_id": 1406, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001523", - "question_id": 1407, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002938", - "question_id": 1408, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002152", - "question_id": 1409, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005423", - "question_id": 1410, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000040", - "question_id": 1414, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000700", - "question_id": 1418, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002922", - "question_id": 1419, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007425", - "question_id": 1420, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00000755", - "question_id": 1421, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006874", - "question_id": 1422, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000061", - "question_id": 1423, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003748", - "question_id": 1426, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001505", - "question_id": 1429, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00002241", - "question_id": 1433, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003007", - "question_id": 1434, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003448", - "question_id": 1435, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006334", - "question_id": 1436, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007440", - "question_id": 1437, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005160", - "question_id": 1438, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004507", - "question_id": 1439, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00002111", - "question_id": 1445, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008598", - "question_id": 1446, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "nine" - }, - { - "video_id": "00008505", - "question_id": 1448, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007369", - "question_id": 1449, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003489", - "question_id": 1450, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006815", - "question_id": 1451, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004226", - "question_id": 1454, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008035", - "question_id": 1455, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008038", - "question_id": 1456, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008912", - "question_id": 1457, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002204", - "question_id": 1458, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007219", - "question_id": 1460, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008906", - "question_id": 1461, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003841", - "question_id": 1465, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003736", - "question_id": 1466, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004016", - "question_id": 1468, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003228", - "question_id": 1469, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000883", - "question_id": 1472, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007145", - "question_id": 1473, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001187", - "question_id": 1474, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007838", - "question_id": 1476, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006286", - "question_id": 1477, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000860", - "question_id": 1479, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005558", - "question_id": 1480, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003034", - "question_id": 1481, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007503", - "question_id": 1482, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007905", - "question_id": 1483, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002050", - "question_id": 1485, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003602", - "question_id": 1486, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00002882", - "question_id": 1488, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000485", - "question_id": 1489, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006709", - "question_id": 1491, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000400", - "question_id": 1492, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00005607", - "question_id": 1493, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001345", - "question_id": 1494, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006594", - "question_id": 1495, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004634", - "question_id": 1497, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002963", - "question_id": 1498, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004147", - "question_id": 1499, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003389", - "question_id": 1500, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003430", - "question_id": 1501, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006727", - "question_id": 1502, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000057", - "question_id": 1503, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005421", - "question_id": 1504, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001491", - "question_id": 1505, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005911", - "question_id": 1506, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005142", - "question_id": 1507, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00005442", - "question_id": 1508, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005128", - "question_id": 1510, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001403", - "question_id": 1511, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000170", - "question_id": 1516, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002977", - "question_id": 1519, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008810", - "question_id": 1520, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001874", - "question_id": 1521, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007110", - "question_id": 1524, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001825", - "question_id": 1525, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006319", - "question_id": 1528, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00007167", - "question_id": 1530, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00002191", - "question_id": 1531, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003175", - "question_id": 1532, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001729", - "question_id": 1533, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008952", - "question_id": 1535, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000208", - "question_id": 1536, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002787", - "question_id": 1537, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007849", - "question_id": 1539, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008731", - "question_id": 1540, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000156", - "question_id": 1541, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000393", - "question_id": 1542, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004290", - "question_id": 1543, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004346", - "question_id": 1544, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002238", - "question_id": 1545, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008075", - "question_id": 1547, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004029", - "question_id": 1548, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006039", - "question_id": 1549, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006975", - "question_id": 1550, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004605", - "question_id": 1554, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007175", - "question_id": 1555, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000734", - "question_id": 1556, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000996", - "question_id": 1557, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003042", - "question_id": 1558, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007996", - "question_id": 1564, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00002641", - "question_id": 1565, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008579", - "question_id": 1566, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006376", - "question_id": 1567, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007175", - "question_id": 1568, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003496", - "question_id": 1569, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006877", - "question_id": 1570, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008142", - "question_id": 1571, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001655", - "question_id": 1572, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002371", - "question_id": 1575, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008779", - "question_id": 1576, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000680", - "question_id": 1577, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001394", - "question_id": 1581, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008354", - "question_id": 1582, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002912", - "question_id": 1583, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008807", - "question_id": 1585, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005486", - "question_id": 1589, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004503", - "question_id": 1590, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002400", - "question_id": 1591, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001408", - "question_id": 1592, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005893", - "question_id": 1594, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000726", - "question_id": 1595, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003855", - "question_id": 1597, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008763", - "question_id": 1598, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005088", - "question_id": 1599, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003418", - "question_id": 1600, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008137", - "question_id": 1601, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007526", - "question_id": 1603, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008036", - "question_id": 1604, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006427", - "question_id": 1607, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004889", - "question_id": 1608, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000921", - "question_id": 1609, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008141", - "question_id": 1611, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006144", - "question_id": 1613, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000545", - "question_id": 1614, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002225", - "question_id": 1616, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008360", - "question_id": 1617, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002486", - "question_id": 1619, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001030", - "question_id": 1622, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001256", - "question_id": 1623, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008721", - "question_id": 1624, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00008577", - "question_id": 1627, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007528", - "question_id": 1628, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008631", - "question_id": 1630, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007429", - "question_id": 1632, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006981", - "question_id": 1634, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002965", - "question_id": 1635, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008955", - "question_id": 1637, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007677", - "question_id": 1638, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007353", - "question_id": 1640, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006987", - "question_id": 1642, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007494", - "question_id": 1643, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005637", - "question_id": 1644, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002407", - "question_id": 1645, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001597", - "question_id": 1646, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008469", - "question_id": 1647, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006703", - "question_id": 1649, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006179", - "question_id": 1651, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008051", - "question_id": 1652, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001415", - "question_id": 1653, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000913", - "question_id": 1655, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000971", - "question_id": 1656, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000300", - "question_id": 1657, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002033", - "question_id": 1659, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002432", - "question_id": 1660, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001299", - "question_id": 1661, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003905", - "question_id": 1662, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007656", - "question_id": 1663, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002479", - "question_id": 1664, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007674", - "question_id": 1666, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003999", - "question_id": 1667, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000027", - "question_id": 1668, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008489", - "question_id": 1670, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006954", - "question_id": 1671, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000880", - "question_id": 1673, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007934", - "question_id": 1674, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000557", - "question_id": 1675, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001107", - "question_id": 1676, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001914", - "question_id": 1677, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007753", - "question_id": 1678, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004689", - "question_id": 1679, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002796", - "question_id": 1680, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001291", - "question_id": 1681, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002842", - "question_id": 1682, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001711", - "question_id": 1683, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000374", - "question_id": 1686, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007822", - "question_id": 1687, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003274", - "question_id": 1689, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003870", - "question_id": 1690, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008275", - "question_id": 1691, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003479", - "question_id": 1692, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000677", - "question_id": 1693, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004692", - "question_id": 1694, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006269", - "question_id": 1695, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003352", - "question_id": 1696, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007573", - "question_id": 1697, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007285", - "question_id": 1698, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004430", - "question_id": 1699, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005007", - "question_id": 1700, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003305", - "question_id": 1701, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003792", - "question_id": 1704, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003918", - "question_id": 1707, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "nine" - }, - { - "video_id": "00003272", - "question_id": 1708, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008664", - "question_id": 1710, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003324", - "question_id": 1711, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004440", - "question_id": 1712, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004173", - "question_id": 1713, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00001055", - "question_id": 1715, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004986", - "question_id": 1722, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007392", - "question_id": 1723, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006480", - "question_id": 1724, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002259", - "question_id": 1725, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003191", - "question_id": 1726, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001347", - "question_id": 1729, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000195", - "question_id": 1734, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007944", - "question_id": 1735, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001583", - "question_id": 1736, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002613", - "question_id": 1737, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001200", - "question_id": 1738, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006420", - "question_id": 1740, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006036", - "question_id": 1741, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000377", - "question_id": 1742, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00008575", - "question_id": 1744, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007844", - "question_id": 1745, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005886", - "question_id": 1750, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007052", - "question_id": 1751, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002260", - "question_id": 1754, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007372", - "question_id": 1755, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003158", - "question_id": 1756, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005114", - "question_id": 1762, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006790", - "question_id": 1763, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005277", - "question_id": 1773, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005498", - "question_id": 1774, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007338", - "question_id": 1777, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003475", - "question_id": 1778, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005080", - "question_id": 1779, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008117", - "question_id": 1780, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002432", - "question_id": 1781, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001843", - "question_id": 1782, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008777", - "question_id": 1783, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bassoon\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005261", - "question_id": 1784, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008071", - "question_id": 1785, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000965", - "question_id": 1786, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006264", - "question_id": 1787, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007931", - "question_id": 1788, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008183", - "question_id": 1801, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006922", - "question_id": 1802, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006619", - "question_id": 1803, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000967", - "question_id": 1808, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005076", - "question_id": 1809, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008170", - "question_id": 1810, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007559", - "question_id": 1811, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001974", - "question_id": 1812, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007411", - "question_id": 1814, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007669", - "question_id": 1815, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001022", - "question_id": 1816, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000459", - "question_id": 1817, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007246", - "question_id": 1819, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000493", - "question_id": 1820, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004739", - "question_id": 1821, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001562", - "question_id": 1823, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001774", - "question_id": 1825, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003701", - "question_id": 1827, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007022", - "question_id": 1828, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005278", - "question_id": 1831, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004879", - "question_id": 1832, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004728", - "question_id": 1833, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001323", - "question_id": 1834, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006294", - "question_id": 1835, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003655", - "question_id": 1836, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006640", - "question_id": 1838, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001148", - "question_id": 1839, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006946", - "question_id": 1843, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000500", - "question_id": 1844, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001120", - "question_id": 1845, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000502", - "question_id": 1846, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004845", - "question_id": 1847, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000411", - "question_id": 1848, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008920", - "question_id": 1849, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002273", - "question_id": 1850, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008590", - "question_id": 1852, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001213", - "question_id": 1854, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007568", - "question_id": 1855, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008705", - "question_id": 1856, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008260", - "question_id": 1857, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00005540", - "question_id": 1860, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007363", - "question_id": 1861, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003285", - "question_id": 1862, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003285", - "question_id": 1862, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00002730", - "question_id": 1863, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006255", - "question_id": 1864, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003404", - "question_id": 1865, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000994", - "question_id": 1866, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001000", - "question_id": 1867, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005194", - "question_id": 1870, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005140", - "question_id": 1871, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003188", - "question_id": 1872, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001869", - "question_id": 1873, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006186", - "question_id": 1874, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001027", - "question_id": 1876, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005102", - "question_id": 1877, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005176", - "question_id": 1880, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003098", - "question_id": 1881, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001842", - "question_id": 1882, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008175", - "question_id": 1883, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003810", - "question_id": 1884, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000074", - "question_id": 1885, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007587", - "question_id": 1887, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004600", - "question_id": 1889, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000968", - "question_id": 1890, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008207", - "question_id": 1894, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004127", - "question_id": 1895, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006165", - "question_id": 1896, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005127", - "question_id": 1897, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000317", - "question_id": 1898, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005692", - "question_id": 1899, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005761", - "question_id": 1901, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000321", - "question_id": 1902, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001733", - "question_id": 1904, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006010", - "question_id": 1906, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000245", - "question_id": 1909, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000910", - "question_id": 1911, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006668", - "question_id": 1913, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007121", - "question_id": 1914, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003070", - "question_id": 1915, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002174", - "question_id": 1916, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004729", - "question_id": 1919, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007776", - "question_id": 1920, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005066", - "question_id": 1921, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005818", - "question_id": 1922, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004595", - "question_id": 1924, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003114", - "question_id": 1926, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001737", - "question_id": 1927, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008484", - "question_id": 1929, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007546", - "question_id": 1930, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008809", - "question_id": 1932, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006013", - "question_id": 1934, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006543", - "question_id": 1935, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007617", - "question_id": 1936, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000603", - "question_id": 1937, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000293", - "question_id": 1938, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006258", - "question_id": 1941, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008811", - "question_id": 1942, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007928", - "question_id": 1945, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002136", - "question_id": 1946, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000679", - "question_id": 1947, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003537", - "question_id": 1948, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001358", - "question_id": 1950, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004847", - "question_id": 1952, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006358", - "question_id": 1953, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004199", - "question_id": 1957, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001211", - "question_id": 1958, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001211", - "question_id": 1958, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003789", - "question_id": 1959, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004278", - "question_id": 1960, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00008684", - "question_id": 1961, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007611", - "question_id": 1962, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003300", - "question_id": 1963, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003388", - "question_id": 1964, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008396", - "question_id": 1965, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008912", - "question_id": 1967, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008749", - "question_id": 1968, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000978", - "question_id": 1970, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000494", - "question_id": 1971, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007382", - "question_id": 1972, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007743", - "question_id": 1974, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005164", - "question_id": 1975, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000139", - "question_id": 1976, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008917", - "question_id": 1978, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001113", - "question_id": 1980, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004011", - "question_id": 1981, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001088", - "question_id": 1984, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001516", - "question_id": 1985, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007575", - "question_id": 1986, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002491", - "question_id": 1987, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000905", - "question_id": 1988, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00003582", - "question_id": 1989, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001334", - "question_id": 1990, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005109", - "question_id": 1992, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00005487", - "question_id": 1996, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000680", - "question_id": 1997, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008549", - "question_id": 1998, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008853", - "question_id": 1999, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000063", - "question_id": 2002, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002714", - "question_id": 2003, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001327", - "question_id": 2004, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002734", - "question_id": 2005, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002167", - "question_id": 2006, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000213", - "question_id": 2007, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006294", - "question_id": 2008, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006060", - "question_id": 2009, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006182", - "question_id": 2010, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003877", - "question_id": 2011, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006979", - "question_id": 2012, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004846", - "question_id": 2013, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000823", - "question_id": 2014, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001256", - "question_id": 2016, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008315", - "question_id": 2017, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006841", - "question_id": 2018, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000816", - "question_id": 2019, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007733", - "question_id": 2020, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008384", - "question_id": 2022, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000806", - "question_id": 2023, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000399", - "question_id": 2025, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004060", - "question_id": 2027, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001497", - "question_id": 2028, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000583", - "question_id": 2029, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004247", - "question_id": 2030, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003796", - "question_id": 2031, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002325", - "question_id": 2034, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002704", - "question_id": 2036, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000181", - "question_id": 2037, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005371", - "question_id": 2038, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005503", - "question_id": 2039, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005614", - "question_id": 2040, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000564", - "question_id": 2041, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000604", - "question_id": 2042, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001459", - "question_id": 2043, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004150", - "question_id": 2045, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008791", - "question_id": 2046, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006269", - "question_id": 2048, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003612", - "question_id": 2050, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000883", - "question_id": 2052, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000175", - "question_id": 2054, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006123", - "question_id": 2055, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "more than ten" - }, - { - "video_id": "00008344", - "question_id": 2059, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003041", - "question_id": 2061, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000795", - "question_id": 2062, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002631", - "question_id": 2063, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006809", - "question_id": 2066, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008244", - "question_id": 2068, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006834", - "question_id": 2069, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003374", - "question_id": 2070, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004119", - "question_id": 2072, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000347", - "question_id": 2073, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004396", - "question_id": 2076, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002796", - "question_id": 2077, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00005359", - "question_id": 2078, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006522", - "question_id": 2079, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003496", - "question_id": 2080, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002734", - "question_id": 2081, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005711", - "question_id": 2083, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007491", - "question_id": 2086, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001175", - "question_id": 2087, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000274", - "question_id": 2088, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007195", - "question_id": 2089, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002032", - "question_id": 2092, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006914", - "question_id": 2094, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008726", - "question_id": 2095, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001258", - "question_id": 2096, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006795", - "question_id": 2097, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001937", - "question_id": 2098, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000199", - "question_id": 2099, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005438", - "question_id": 2100, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001767", - "question_id": 2102, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000552", - "question_id": 2103, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001548", - "question_id": 2104, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007712", - "question_id": 2106, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002332", - "question_id": 2108, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007609", - "question_id": 2109, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005433", - "question_id": 2110, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000296", - "question_id": 2111, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003792", - "question_id": 2112, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008714", - "question_id": 2113, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002293", - "question_id": 2116, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003266", - "question_id": 2118, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000937", - "question_id": 2119, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006348", - "question_id": 2120, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005240", - "question_id": 2121, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005170", - "question_id": 2122, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003740", - "question_id": 2123, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006978", - "question_id": 2124, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003752", - "question_id": 2125, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008591", - "question_id": 2126, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007977", - "question_id": 2127, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008299", - "question_id": 2129, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007320", - "question_id": 2131, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005285", - "question_id": 2134, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006254", - "question_id": 2135, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002265", - "question_id": 2136, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00003957", - "question_id": 2137, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002001", - "question_id": 2138, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000186", - "question_id": 2139, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007644", - "question_id": 2141, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003085", - "question_id": 2142, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007074", - "question_id": 2143, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008272", - "question_id": 2145, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000165", - "question_id": 2148, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008623", - "question_id": 2149, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006253", - "question_id": 2150, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00007871", - "question_id": 2153, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008174", - "question_id": 2154, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001753", - "question_id": 2156, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005531", - "question_id": 2157, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002946", - "question_id": 2158, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000579", - "question_id": 2163, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002675", - "question_id": 2164, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005435", - "question_id": 2165, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000630", - "question_id": 2168, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003875", - "question_id": 2169, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00003014", - "question_id": 2172, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007425", - "question_id": 2177, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006383", - "question_id": 2179, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001571", - "question_id": 2182, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001020", - "question_id": 2183, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004557", - "question_id": 2184, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008822", - "question_id": 2185, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003794", - "question_id": 2187, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005372", - "question_id": 2189, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006521", - "question_id": 2191, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005091", - "question_id": 2192, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005792", - "question_id": 2194, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005287", - "question_id": 2195, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004217", - "question_id": 2197, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003480", - "question_id": 2200, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003564", - "question_id": 2201, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000551", - "question_id": 2203, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008911", - "question_id": 2205, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000516", - "question_id": 2206, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000570", - "question_id": 2207, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004092", - "question_id": 2208, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004519", - "question_id": 2209, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002411", - "question_id": 2210, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00005820", - "question_id": 2211, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007408", - "question_id": 2212, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001468", - "question_id": 2213, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005598", - "question_id": 2214, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003613", - "question_id": 2216, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002673", - "question_id": 2217, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007514", - "question_id": 2218, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006157", - "question_id": 2221, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001980", - "question_id": 2222, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002537", - "question_id": 2223, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005999", - "question_id": 2224, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005826", - "question_id": 2225, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001572", - "question_id": 2226, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003646", - "question_id": 2228, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000475", - "question_id": 2231, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004635", - "question_id": 2232, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006277", - "question_id": 2233, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001454", - "question_id": 2235, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005293", - "question_id": 2236, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007861", - "question_id": 2237, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003884", - "question_id": 2239, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008213", - "question_id": 2241, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008906", - "question_id": 2242, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001121", - "question_id": 2243, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003472", - "question_id": 2244, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005812", - "question_id": 2246, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000470", - "question_id": 2247, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003523", - "question_id": 2251, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006394", - "question_id": 2253, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007713", - "question_id": 2255, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004353", - "question_id": 2256, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004198", - "question_id": 2257, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005475", - "question_id": 2258, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006624", - "question_id": 2259, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003784", - "question_id": 2260, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000235", - "question_id": 2261, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001805", - "question_id": 2262, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001250", - "question_id": 2264, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006631", - "question_id": 2265, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00007313", - "question_id": 2269, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005229", - "question_id": 2270, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001359", - "question_id": 2271, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001827", - "question_id": 2272, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007022", - "question_id": 2273, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007180", - "question_id": 2274, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002182", - "question_id": 2275, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008569", - "question_id": 2277, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005387", - "question_id": 2278, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003780", - "question_id": 2281, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002699", - "question_id": 2282, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003847", - "question_id": 2283, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001401", - "question_id": 2284, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008767", - "question_id": 2286, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008230", - "question_id": 2289, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006634", - "question_id": 2290, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005376", - "question_id": 2291, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007734", - "question_id": 2294, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001266", - "question_id": 2295, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001335", - "question_id": 2296, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006933", - "question_id": 2298, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008115", - "question_id": 2300, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000877", - "question_id": 2302, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008033", - "question_id": 2304, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008434", - "question_id": 2306, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003154", - "question_id": 2307, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001552", - "question_id": 2308, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006772", - "question_id": 2309, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004478", - "question_id": 2310, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008447", - "question_id": 2314, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002795", - "question_id": 2316, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005650", - "question_id": 2317, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008647", - "question_id": 2318, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003756", - "question_id": 2319, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000716", - "question_id": 2320, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006564", - "question_id": 2322, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008370", - "question_id": 2324, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000130", - "question_id": 2329, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000669", - "question_id": 2330, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001967", - "question_id": 2331, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005122", - "question_id": 2333, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004641", - "question_id": 2334, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002536", - "question_id": 2335, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004553", - "question_id": 2336, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000743", - "question_id": 2338, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006442", - "question_id": 2339, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004390", - "question_id": 2341, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002869", - "question_id": 2342, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003565", - "question_id": 2343, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004795", - "question_id": 2349, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007473", - "question_id": 2351, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007707", - "question_id": 2354, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000911", - "question_id": 2355, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002525", - "question_id": 2357, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005667", - "question_id": 2358, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008192", - "question_id": 2359, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006481", - "question_id": 2363, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005669", - "question_id": 2365, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004643", - "question_id": 2367, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007045", - "question_id": 2369, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007557", - "question_id": 2371, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002829", - "question_id": 2372, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000145", - "question_id": 2373, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002793", - "question_id": 2375, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002662", - "question_id": 2376, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008279", - "question_id": 2381, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007699", - "question_id": 2385, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001648", - "question_id": 2386, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004683", - "question_id": 2388, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007202", - "question_id": 2390, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00002864", - "question_id": 2391, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008434", - "question_id": 2392, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008196", - "question_id": 2394, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00007517", - "question_id": 2395, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003752", - "question_id": 2396, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007366", - "question_id": 2398, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002801", - "question_id": 2399, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004218", - "question_id": 2400, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005776", - "question_id": 2401, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008955", - "question_id": 2402, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001623", - "question_id": 2403, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006053", - "question_id": 2404, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004873", - "question_id": 2405, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007965", - "question_id": 2408, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008907", - "question_id": 2409, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000734", - "question_id": 2410, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008131", - "question_id": 2411, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000889", - "question_id": 2412, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002417", - "question_id": 2413, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008511", - "question_id": 2414, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00007313", - "question_id": 2415, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004196", - "question_id": 2416, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002802", - "question_id": 2417, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000502", - "question_id": 2418, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007204", - "question_id": 2419, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008317", - "question_id": 2420, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004711", - "question_id": 2421, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000192", - "question_id": 2422, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004106", - "question_id": 2423, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001981", - "question_id": 2424, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007970", - "question_id": 2426, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008822", - "question_id": 2427, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004894", - "question_id": 2429, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000796", - "question_id": 2430, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002098", - "question_id": 2431, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002298", - "question_id": 2432, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005012", - "question_id": 2433, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003314", - "question_id": 2436, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008929", - "question_id": 2437, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004919", - "question_id": 2439, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006203", - "question_id": 2442, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003580", - "question_id": 2443, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005496", - "question_id": 2444, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004699", - "question_id": 2445, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007133", - "question_id": 2447, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004348", - "question_id": 2448, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007174", - "question_id": 2449, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007465", - "question_id": 2450, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005833", - "question_id": 2451, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005772", - "question_id": 2452, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003289", - "question_id": 2453, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007868", - "question_id": 2454, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003280", - "question_id": 2455, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002757", - "question_id": 2456, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007008", - "question_id": 2457, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003116", - "question_id": 2458, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000541", - "question_id": 2463, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001695", - "question_id": 2464, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003404", - "question_id": 2465, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006136", - "question_id": 2466, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001454", - "question_id": 2468, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003318", - "question_id": 2472, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004426", - "question_id": 2473, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007618", - "question_id": 2474, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001438", - "question_id": 2475, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006958", - "question_id": 2476, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003440", - "question_id": 2477, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008306", - "question_id": 2479, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000117", - "question_id": 2482, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005245", - "question_id": 2484, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000403", - "question_id": 2485, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003717", - "question_id": 2486, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002635", - "question_id": 2487, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006843", - "question_id": 2488, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006034", - "question_id": 2490, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003418", - "question_id": 2491, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007448", - "question_id": 2492, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008712", - "question_id": 2494, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002576", - "question_id": 2495, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006136", - "question_id": 2496, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007980", - "question_id": 2497, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004734", - "question_id": 2498, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007114", - "question_id": 2499, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005118", - "question_id": 2503, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001642", - "question_id": 2504, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005663", - "question_id": 2505, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006443", - "question_id": 2506, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007634", - "question_id": 2508, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007449", - "question_id": 2509, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00001252", - "question_id": 2510, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001944", - "question_id": 2513, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004865", - "question_id": 2514, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001342", - "question_id": 2519, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000969", - "question_id": 2521, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008408", - "question_id": 2522, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006342", - "question_id": 2523, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004353", - "question_id": 2524, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006236", - "question_id": 2525, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003730", - "question_id": 2526, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001359", - "question_id": 2528, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005135", - "question_id": 2529, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007046", - "question_id": 2530, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004706", - "question_id": 2532, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003907", - "question_id": 2536, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006446", - "question_id": 2538, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008784", - "question_id": 2539, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006587", - "question_id": 2540, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008673", - "question_id": 2541, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008673", - "question_id": 2541, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005014", - "question_id": 2543, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000880", - "question_id": 2544, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003516", - "question_id": 2545, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007654", - "question_id": 2546, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002403", - "question_id": 2549, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008193", - "question_id": 2550, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008910", - "question_id": 2552, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002355", - "question_id": 2553, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003726", - "question_id": 2554, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004175", - "question_id": 2556, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002976", - "question_id": 2559, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002850", - "question_id": 2561, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003393", - "question_id": 2562, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000643", - "question_id": 2563, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008267", - "question_id": 2564, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004844", - "question_id": 2566, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004806", - "question_id": 2568, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004476", - "question_id": 2570, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000251", - "question_id": 2571, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006422", - "question_id": 2573, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001580", - "question_id": 2574, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006452", - "question_id": 2578, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000667", - "question_id": 2581, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004879", - "question_id": 2582, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002754", - "question_id": 2583, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008618", - "question_id": 2584, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004909", - "question_id": 2585, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007242", - "question_id": 2588, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000137", - "question_id": 2590, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001038", - "question_id": 2591, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002330", - "question_id": 2592, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005448", - "question_id": 2593, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006987", - "question_id": 2594, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006822", - "question_id": 2596, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001072", - "question_id": 2597, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007819", - "question_id": 2598, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007414", - "question_id": 2599, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008855", - "question_id": 2600, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005162", - "question_id": 2601, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006140", - "question_id": 2602, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004394", - "question_id": 2604, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008348", - "question_id": 2605, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005674", - "question_id": 2606, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002605", - "question_id": 2611, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008843", - "question_id": 2612, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004180", - "question_id": 2613, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005375", - "question_id": 2617, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004726", - "question_id": 2618, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003220", - "question_id": 2619, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000014", - "question_id": 2622, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003455", - "question_id": 2623, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005420", - "question_id": 2624, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003652", - "question_id": 2625, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003265", - "question_id": 2626, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00002564", - "question_id": 2627, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008437", - "question_id": 2629, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008160", - "question_id": 2630, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003199", - "question_id": 2631, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003019", - "question_id": 2632, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007896", - "question_id": 2634, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000713", - "question_id": 2636, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004918", - "question_id": 2637, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000343", - "question_id": 2638, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005717", - "question_id": 2639, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003856", - "question_id": 2640, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008212", - "question_id": 2641, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004970", - "question_id": 2642, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000669", - "question_id": 2645, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003227", - "question_id": 2647, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006778", - "question_id": 2650, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002412", - "question_id": 2651, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006131", - "question_id": 2652, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007378", - "question_id": 2654, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005263", - "question_id": 2655, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006328", - "question_id": 2657, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000509", - "question_id": 2659, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007765", - "question_id": 2660, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003914", - "question_id": 2661, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004039", - "question_id": 2662, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008167", - "question_id": 2664, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006675", - "question_id": 2665, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004841", - "question_id": 2666, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004411", - "question_id": 2668, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001469", - "question_id": 2669, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004970", - "question_id": 2671, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005499", - "question_id": 2672, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007875", - "question_id": 2673, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007610", - "question_id": 2677, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004327", - "question_id": 2680, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006470", - "question_id": 2683, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007573", - "question_id": 2685, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007861", - "question_id": 2688, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004107", - "question_id": 2689, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002607", - "question_id": 2690, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000983", - "question_id": 2691, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003806", - "question_id": 2694, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002783", - "question_id": 2696, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000199", - "question_id": 2697, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005712", - "question_id": 2698, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007475", - "question_id": 2699, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002793", - "question_id": 2700, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001671", - "question_id": 2701, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004915", - "question_id": 2702, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002540", - "question_id": 2703, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002925", - "question_id": 2704, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002947", - "question_id": 2706, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008324", - "question_id": 2708, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008922", - "question_id": 2709, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007253", - "question_id": 2710, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004248", - "question_id": 2712, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001404", - "question_id": 2713, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005035", - "question_id": 2714, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008777", - "question_id": 2715, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008548", - "question_id": 2716, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008034", - "question_id": 2717, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008394", - "question_id": 2718, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002316", - "question_id": 2719, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002898", - "question_id": 2720, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003012", - "question_id": 2721, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003498", - "question_id": 2726, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005784", - "question_id": 2727, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004159", - "question_id": 2728, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008085", - "question_id": 2729, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000476", - "question_id": 2731, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008491", - "question_id": 2732, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007893", - "question_id": 2733, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003939", - "question_id": 2734, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002854", - "question_id": 2736, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000602", - "question_id": 2737, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000509", - "question_id": 2738, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008505", - "question_id": 2740, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000619", - "question_id": 2741, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001706", - "question_id": 2742, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005043", - "question_id": 2743, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003328", - "question_id": 2744, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001213", - "question_id": 2745, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006518", - "question_id": 2746, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002467", - "question_id": 2752, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006272", - "question_id": 2753, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004782", - "question_id": 2754, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001273", - "question_id": 2755, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005032", - "question_id": 2756, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001885", - "question_id": 2759, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000248", - "question_id": 2760, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004165", - "question_id": 2761, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004107", - "question_id": 2762, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002835", - "question_id": 2763, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004684", - "question_id": 2765, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005018", - "question_id": 2767, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001957", - "question_id": 2769, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002304", - "question_id": 2770, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007226", - "question_id": 2772, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005382", - "question_id": 2773, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008533", - "question_id": 2774, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004472", - "question_id": 2775, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005178", - "question_id": 2776, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008739", - "question_id": 2777, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000101", - "question_id": 2778, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005109", - "question_id": 2779, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00004102", - "question_id": 2780, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005228", - "question_id": 2781, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007671", - "question_id": 2782, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007789", - "question_id": 2783, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004248", - "question_id": 2785, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008561", - "question_id": 2786, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001133", - "question_id": 2787, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008346", - "question_id": 2788, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003672", - "question_id": 2789, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003288", - "question_id": 2790, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002362", - "question_id": 2791, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007458", - "question_id": 2792, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005067", - "question_id": 2793, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008651", - "question_id": 2794, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003166", - "question_id": 2796, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006282", - "question_id": 2798, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004482", - "question_id": 2799, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002311", - "question_id": 2801, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003108", - "question_id": 2806, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003455", - "question_id": 2807, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008809", - "question_id": 2808, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000198", - "question_id": 2809, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004135", - "question_id": 2810, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004393", - "question_id": 2811, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000506", - "question_id": 2813, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000960", - "question_id": 2814, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008791", - "question_id": 2815, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005240", - "question_id": 2817, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004333", - "question_id": 2820, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004838", - "question_id": 2822, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001482", - "question_id": 2823, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000514", - "question_id": 2824, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008478", - "question_id": 2825, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001814", - "question_id": 2826, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004797", - "question_id": 2827, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005323", - "question_id": 2828, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004253", - "question_id": 2829, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000059", - "question_id": 2830, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006071", - "question_id": 2832, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007391", - "question_id": 2833, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004389", - "question_id": 2834, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003986", - "question_id": 2836, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007734", - "question_id": 2837, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007071", - "question_id": 2838, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001504", - "question_id": 2839, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005309", - "question_id": 2840, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001594", - "question_id": 2842, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002746", - "question_id": 2843, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007982", - "question_id": 2844, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005839", - "question_id": 2845, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005361", - "question_id": 2847, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005325", - "question_id": 2848, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001703", - "question_id": 2849, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001258", - "question_id": 2850, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008153", - "question_id": 2852, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008392", - "question_id": 2853, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000481", - "question_id": 2854, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005485", - "question_id": 2856, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005200", - "question_id": 2857, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000740", - "question_id": 2858, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008433", - "question_id": 2859, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005684", - "question_id": 2860, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008234", - "question_id": 2861, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008833", - "question_id": 2862, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006216", - "question_id": 2863, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008159", - "question_id": 2865, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000665", - "question_id": 2867, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008469", - "question_id": 2868, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001542", - "question_id": 2869, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005516", - "question_id": 2875, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007651", - "question_id": 2876, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008454", - "question_id": 2877, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005868", - "question_id": 2878, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008112", - "question_id": 2885, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004068", - "question_id": 2887, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000949", - "question_id": 2888, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001572", - "question_id": 2889, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002182", - "question_id": 2890, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004416", - "question_id": 2891, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005233", - "question_id": 2893, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000845", - "question_id": 2895, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007230", - "question_id": 2896, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005751", - "question_id": 2897, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000306", - "question_id": 2898, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002928", - "question_id": 2901, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008418", - "question_id": 2902, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000945", - "question_id": 2903, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004018", - "question_id": 2905, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002619", - "question_id": 2908, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002628", - "question_id": 2910, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000205", - "question_id": 2913, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005124", - "question_id": 2915, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001040", - "question_id": 2916, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000622", - "question_id": 2917, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004820", - "question_id": 2918, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002207", - "question_id": 2920, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007707", - "question_id": 2921, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004147", - "question_id": 2923, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005263", - "question_id": 2924, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004288", - "question_id": 2925, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000815", - "question_id": 2926, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008591", - "question_id": 2928, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002253", - "question_id": 2930, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003655", - "question_id": 2933, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000068", - "question_id": 2934, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004143", - "question_id": 2935, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "nine" - }, - { - "video_id": "00005790", - "question_id": 2936, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001833", - "question_id": 2938, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004429", - "question_id": 2940, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000840", - "question_id": 2941, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002822", - "question_id": 2942, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008363", - "question_id": 2943, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002216", - "question_id": 2947, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002341", - "question_id": 2948, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001603", - "question_id": 2949, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007526", - "question_id": 2951, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001101", - "question_id": 2952, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008498", - "question_id": 2955, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008919", - "question_id": 2956, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000986", - "question_id": 2957, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006330", - "question_id": 2962, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002563", - "question_id": 2963, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006726", - "question_id": 2964, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002076", - "question_id": 2965, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005821", - "question_id": 2967, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005514", - "question_id": 2968, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005294", - "question_id": 2969, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008108", - "question_id": 2974, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008839", - "question_id": 2979, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00000847", - "question_id": 2980, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006546", - "question_id": 2981, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008351", - "question_id": 2983, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006621", - "question_id": 2984, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000038", - "question_id": 2989, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005516", - "question_id": 2991, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004295", - "question_id": 2992, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008293", - "question_id": 2993, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005136", - "question_id": 2994, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002225", - "question_id": 2995, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004450", - "question_id": 2996, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003406", - "question_id": 2997, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001495", - "question_id": 2998, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004947", - "question_id": 2999, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002565", - "question_id": 3001, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003667", - "question_id": 3002, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008140", - "question_id": 3006, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004407", - "question_id": 3007, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004876", - "question_id": 3008, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003669", - "question_id": 3011, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006542", - "question_id": 3013, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007274", - "question_id": 3014, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007459", - "question_id": 3015, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006429", - "question_id": 3017, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003180", - "question_id": 3018, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003180", - "question_id": 3018, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008182", - "question_id": 3020, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007141", - "question_id": 3021, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003041", - "question_id": 3023, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006107", - "question_id": 3024, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008660", - "question_id": 3025, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007673", - "question_id": 3029, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005091", - "question_id": 3030, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006633", - "question_id": 3031, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005728", - "question_id": 3033, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005513", - "question_id": 3037, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000560", - "question_id": 3038, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003492", - "question_id": 3039, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001095", - "question_id": 3040, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001700", - "question_id": 3041, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008701", - "question_id": 3042, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004235", - "question_id": 3043, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004961", - "question_id": 3044, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000215", - "question_id": 3046, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004158", - "question_id": 3047, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003172", - "question_id": 3048, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000640", - "question_id": 3051, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005749", - "question_id": 3052, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007124", - "question_id": 3053, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005936", - "question_id": 3054, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000462", - "question_id": 3055, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002131", - "question_id": 3059, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00008477", - "question_id": 3060, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006431", - "question_id": 3061, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006189", - "question_id": 3062, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006823", - "question_id": 3063, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008405", - "question_id": 3064, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007388", - "question_id": 3065, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001011", - "question_id": 3066, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001002", - "question_id": 3067, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005231", - "question_id": 3070, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005493", - "question_id": 3071, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006638", - "question_id": 3072, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002849", - "question_id": 3073, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002820", - "question_id": 3075, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002790", - "question_id": 3076, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007173", - "question_id": 3077, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003913", - "question_id": 3078, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007385", - "question_id": 3079, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004760", - "question_id": 3081, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005336", - "question_id": 3082, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002109", - "question_id": 3083, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002638", - "question_id": 3084, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000705", - "question_id": 3087, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006960", - "question_id": 3088, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002753", - "question_id": 3090, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005829", - "question_id": 3091, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003275", - "question_id": 3092, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001151", - "question_id": 3095, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000681", - "question_id": 3096, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004410", - "question_id": 3100, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007836", - "question_id": 3101, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008951", - "question_id": 3103, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003068", - "question_id": 3104, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000771", - "question_id": 3105, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005863", - "question_id": 3106, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008879", - "question_id": 3107, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000965", - "question_id": 3108, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006380", - "question_id": 3109, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008549", - "question_id": 3110, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "ten" - }, - { - "video_id": "00007718", - "question_id": 3112, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006214", - "question_id": 3113, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001503", - "question_id": 3116, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001465", - "question_id": 3118, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "seven" - }, - { - "video_id": "00001137", - "question_id": 3119, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003124", - "question_id": 3121, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003310", - "question_id": 3122, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006990", - "question_id": 3123, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006746", - "question_id": 3124, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002610", - "question_id": 3126, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005542", - "question_id": 3128, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007954", - "question_id": 3129, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006284", - "question_id": 3130, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002895", - "question_id": 3131, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007630", - "question_id": 3132, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001182", - "question_id": 3138, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003003", - "question_id": 3139, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003562", - "question_id": 3140, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008582", - "question_id": 3141, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004583", - "question_id": 3142, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003174", - "question_id": 3144, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001127", - "question_id": 3146, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004303", - "question_id": 3147, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000986", - "question_id": 3148, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000250", - "question_id": 3149, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00001759", - "question_id": 3152, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006899", - "question_id": 3154, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003221", - "question_id": 3157, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008106", - "question_id": 3158, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004754", - "question_id": 3160, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005136", - "question_id": 3161, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008391", - "question_id": 3162, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007771", - "question_id": 3163, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000723", - "question_id": 3164, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003462", - "question_id": 3165, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003650", - "question_id": 3167, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003326", - "question_id": 3168, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004881", - "question_id": 3169, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003879", - "question_id": 3170, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007229", - "question_id": 3172, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004048", - "question_id": 3173, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006011", - "question_id": 3175, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003927", - "question_id": 3176, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007270", - "question_id": 3178, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006507", - "question_id": 3179, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000902", - "question_id": 3180, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002526", - "question_id": 3184, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001990", - "question_id": 3185, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008468", - "question_id": 3186, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005665", - "question_id": 3187, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005581", - "question_id": 3188, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006591", - "question_id": 3189, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002780", - "question_id": 3192, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006188", - "question_id": 3193, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000899", - "question_id": 3194, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000941", - "question_id": 3196, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002561", - "question_id": 3197, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006563", - "question_id": 3199, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005728", - "question_id": 3201, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000199", - "question_id": 3202, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002830", - "question_id": 3203, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006427", - "question_id": 3204, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007553", - "question_id": 3206, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003774", - "question_id": 3207, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001320", - "question_id": 3208, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000970", - "question_id": 3211, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003559", - "question_id": 3216, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007956", - "question_id": 3219, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005652", - "question_id": 3220, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002603", - "question_id": 3222, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002603", - "question_id": 3222, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007309", - "question_id": 3223, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000193", - "question_id": 3224, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005685", - "question_id": 3225, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003957", - "question_id": 3227, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004116", - "question_id": 3231, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001388", - "question_id": 3233, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003282", - "question_id": 3234, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00002323", - "question_id": 3236, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001370", - "question_id": 3238, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008511", - "question_id": 3239, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003656", - "question_id": 3240, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003117", - "question_id": 3242, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001237", - "question_id": 3245, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005173", - "question_id": 3246, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006523", - "question_id": 3249, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000043", - "question_id": 3250, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004064", - "question_id": 3251, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002670", - "question_id": 3255, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007989", - "question_id": 3256, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002758", - "question_id": 3257, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000065", - "question_id": 3258, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005505", - "question_id": 3261, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001407", - "question_id": 3264, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008019", - "question_id": 3265, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000018", - "question_id": 3267, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000811", - "question_id": 3269, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008674", - "question_id": 3271, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004102", - "question_id": 3272, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005182", - "question_id": 3274, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003746", - "question_id": 3275, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005721", - "question_id": 3276, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005061", - "question_id": 3277, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005811", - "question_id": 3278, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007954", - "question_id": 3281, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005595", - "question_id": 3282, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001768", - "question_id": 3286, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008739", - "question_id": 3288, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008160", - "question_id": 3289, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006127", - "question_id": 3294, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001181", - "question_id": 3295, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005618", - "question_id": 3296, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002237", - "question_id": 3297, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004178", - "question_id": 3298, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004643", - "question_id": 3300, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007488", - "question_id": 3301, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005146", - "question_id": 3302, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005571", - "question_id": 3303, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001015", - "question_id": 3305, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000750", - "question_id": 3306, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006473", - "question_id": 3308, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006730", - "question_id": 3311, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003381", - "question_id": 3313, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006138", - "question_id": 3315, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004406", - "question_id": 3316, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002554", - "question_id": 3317, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003773", - "question_id": 3318, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005198", - "question_id": 3319, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002159", - "question_id": 3320, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005965", - "question_id": 3321, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005000", - "question_id": 3323, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004930", - "question_id": 3325, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000750", - "question_id": 3326, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004007", - "question_id": 3328, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005709", - "question_id": 3329, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008473", - "question_id": 3330, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007191", - "question_id": 3331, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004922", - "question_id": 3334, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003930", - "question_id": 3336, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006643", - "question_id": 3337, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008343", - "question_id": 3338, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006999", - "question_id": 3340, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002195", - "question_id": 3341, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003450", - "question_id": 3342, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000034", - "question_id": 3343, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000280", - "question_id": 3346, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000116", - "question_id": 3347, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002621", - "question_id": 3348, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007097", - "question_id": 3349, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003234", - "question_id": 3351, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000022", - "question_id": 3352, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002189", - "question_id": 3353, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003671", - "question_id": 3354, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002250", - "question_id": 3355, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006170", - "question_id": 3356, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005000", - "question_id": 3357, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005631", - "question_id": 3359, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006050", - "question_id": 3360, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008900", - "question_id": 3362, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007956", - "question_id": 3365, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004816", - "question_id": 3367, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007985", - "question_id": 3369, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002650", - "question_id": 3370, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006542", - "question_id": 3371, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002659", - "question_id": 3372, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001442", - "question_id": 3373, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001573", - "question_id": 3374, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008148", - "question_id": 3375, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005555", - "question_id": 3377, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001513", - "question_id": 3378, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006316", - "question_id": 3380, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003620", - "question_id": 3381, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007402", - "question_id": 3382, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008120", - "question_id": 3384, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003183", - "question_id": 3385, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006745", - "question_id": 3386, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000321", - "question_id": 3387, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002158", - "question_id": 3389, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003365", - "question_id": 3390, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005654", - "question_id": 3391, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008683", - "question_id": 3392, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001523", - "question_id": 3393, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005139", - "question_id": 3394, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000354", - "question_id": 3396, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004889", - "question_id": 3400, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008736", - "question_id": 3401, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008604", - "question_id": 3403, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001266", - "question_id": 3405, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006710", - "question_id": 3407, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004344", - "question_id": 3408, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000368", - "question_id": 3409, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008764", - "question_id": 3410, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006327", - "question_id": 3413, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000418", - "question_id": 3414, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004128", - "question_id": 3418, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001144", - "question_id": 3420, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005616", - "question_id": 3421, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002589", - "question_id": 3422, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006153", - "question_id": 3423, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003833", - "question_id": 3424, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004953", - "question_id": 3425, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008749", - "question_id": 3427, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007222", - "question_id": 3429, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002387", - "question_id": 3430, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002262", - "question_id": 3431, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005152", - "question_id": 3432, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004654", - "question_id": 3434, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005658", - "question_id": 3435, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000865", - "question_id": 3436, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000165", - "question_id": 3439, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002829", - "question_id": 3440, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008833", - "question_id": 3441, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002760", - "question_id": 3442, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000909", - "question_id": 3444, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006580", - "question_id": 3445, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005296", - "question_id": 3446, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005928", - "question_id": 3448, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008947", - "question_id": 3449, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002809", - "question_id": 3450, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005967", - "question_id": 3451, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002460", - "question_id": 3452, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008978", - "question_id": 3454, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008616", - "question_id": 3455, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003960", - "question_id": 3458, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008424", - "question_id": 3459, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008694", - "question_id": 3460, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005745", - "question_id": 3461, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001773", - "question_id": 3462, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005208", - "question_id": 3464, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002027", - "question_id": 3466, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000696", - "question_id": 3467, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007644", - "question_id": 3469, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005503", - "question_id": 3470, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005846", - "question_id": 3471, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004940", - "question_id": 3473, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001320", - "question_id": 3474, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00004528", - "question_id": 3475, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008448", - "question_id": 3477, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002808", - "question_id": 3478, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002860", - "question_id": 3480, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008378", - "question_id": 3481, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001989", - "question_id": 3482, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007389", - "question_id": 3483, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003708", - "question_id": 3484, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007264", - "question_id": 3485, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008099", - "question_id": 3486, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007316", - "question_id": 3487, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002740", - "question_id": 3488, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007498", - "question_id": 3490, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008749", - "question_id": 3496, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007508", - "question_id": 3498, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004957", - "question_id": 3499, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000107", - "question_id": 3501, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005135", - "question_id": 3502, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004238", - "question_id": 3504, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005547", - "question_id": 3505, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001880", - "question_id": 3506, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002215", - "question_id": 3507, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008443", - "question_id": 3509, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004497", - "question_id": 3512, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000316", - "question_id": 3513, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005949", - "question_id": 3517, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000829", - "question_id": 3518, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008444", - "question_id": 3521, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005256", - "question_id": 3522, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002102", - "question_id": 3523, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003989", - "question_id": 3528, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005447", - "question_id": 3529, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001120", - "question_id": 3530, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005924", - "question_id": 3532, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002899", - "question_id": 3535, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006313", - "question_id": 3537, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003335", - "question_id": 3538, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007654", - "question_id": 3539, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008416", - "question_id": 3543, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007832", - "question_id": 3544, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007767", - "question_id": 3547, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007329", - "question_id": 3548, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007277", - "question_id": 3549, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003962", - "question_id": 3550, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00003426", - "question_id": 3551, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001319", - "question_id": 3552, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001217", - "question_id": 3553, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006777", - "question_id": 3554, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008629", - "question_id": 3555, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003523", - "question_id": 3556, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006876", - "question_id": 3557, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008627", - "question_id": 3558, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000132", - "question_id": 3559, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006081", - "question_id": 3562, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004690", - "question_id": 3566, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001560", - "question_id": 3569, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004691", - "question_id": 3570, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000291", - "question_id": 3571, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003109", - "question_id": 3572, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002212", - "question_id": 3573, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002695", - "question_id": 3579, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004700", - "question_id": 3580, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000488", - "question_id": 3581, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008728", - "question_id": 3586, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004219", - "question_id": 3587, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000729", - "question_id": 3588, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000963", - "question_id": 3589, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001202", - "question_id": 3590, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004318", - "question_id": 3594, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006495", - "question_id": 3595, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003283", - "question_id": 3598, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008779", - "question_id": 3605, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005247", - "question_id": 3606, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "eight" - }, - { - "video_id": "00007575", - "question_id": 3609, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002850", - "question_id": 3612, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000495", - "question_id": 3613, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005775", - "question_id": 3616, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003122", - "question_id": 3617, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003861", - "question_id": 3618, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006771", - "question_id": 3619, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003018", - "question_id": 3620, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004098", - "question_id": 3621, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007489", - "question_id": 3622, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004083", - "question_id": 3623, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003408", - "question_id": 3624, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007050", - "question_id": 3625, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001779", - "question_id": 3626, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002648", - "question_id": 3627, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002870", - "question_id": 3629, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002918", - "question_id": 3630, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007217", - "question_id": 3631, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005227", - "question_id": 3638, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008946", - "question_id": 3639, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008362", - "question_id": 3640, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006490", - "question_id": 3641, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005241", - "question_id": 3642, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003166", - "question_id": 3646, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003403", - "question_id": 3648, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001513", - "question_id": 3649, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001818", - "question_id": 3651, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008166", - "question_id": 3652, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000136", - "question_id": 3653, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002317", - "question_id": 3654, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003579", - "question_id": 3661, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000277", - "question_id": 3664, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002301", - "question_id": 3669, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00005096", - "question_id": 3687, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001537", - "question_id": 3688, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001799", - "question_id": 3692, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007280", - "question_id": 3693, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007941", - "question_id": 3694, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002058", - "question_id": 3695, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008336", - "question_id": 3696, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001473", - "question_id": 3698, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007898", - "question_id": 3699, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006022", - "question_id": 3700, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002608", - "question_id": 3705, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001155", - "question_id": 3706, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006023", - "question_id": 3707, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002096", - "question_id": 3709, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "eight" - }, - { - "video_id": "00002428", - "question_id": 3710, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004475", - "question_id": 3711, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002247", - "question_id": 3712, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006408", - "question_id": 3713, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002916", - "question_id": 3715, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007884", - "question_id": 3717, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001980", - "question_id": 3718, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002177", - "question_id": 3719, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005892", - "question_id": 3720, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006404", - "question_id": 3722, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006912", - "question_id": 3723, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000389", - "question_id": 3724, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002022", - "question_id": 3725, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003183", - "question_id": 3726, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001840", - "question_id": 3727, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006924", - "question_id": 3728, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008711", - "question_id": 3729, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001153", - "question_id": 3730, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007356", - "question_id": 3731, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007851", - "question_id": 3732, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006711", - "question_id": 3733, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007696", - "question_id": 3734, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005631", - "question_id": 3738, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008803", - "question_id": 3739, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001915", - "question_id": 3741, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003922", - "question_id": 3743, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000087", - "question_id": 3744, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001041", - "question_id": 3745, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001187", - "question_id": 3746, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007067", - "question_id": 3747, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008423", - "question_id": 3748, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000374", - "question_id": 3749, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004015", - "question_id": 3750, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006845", - "question_id": 3751, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002942", - "question_id": 3752, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000728", - "question_id": 3754, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000890", - "question_id": 3755, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000326", - "question_id": 3757, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004737", - "question_id": 3758, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005085", - "question_id": 3760, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006904", - "question_id": 3762, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005874", - "question_id": 3764, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001973", - "question_id": 3765, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005585", - "question_id": 3766, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000333", - "question_id": 3767, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003529", - "question_id": 3768, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003789", - "question_id": 3769, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004983", - "question_id": 3770, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007204", - "question_id": 3771, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000123", - "question_id": 3772, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003756", - "question_id": 3773, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002399", - "question_id": 3775, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006484", - "question_id": 3776, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002084", - "question_id": 3778, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003103", - "question_id": 3779, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008749", - "question_id": 3780, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007358", - "question_id": 3781, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007840", - "question_id": 3782, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000994", - "question_id": 3783, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006683", - "question_id": 3784, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008739", - "question_id": 3785, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007248", - "question_id": 3788, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007592", - "question_id": 3789, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003287", - "question_id": 3792, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003611", - "question_id": 3793, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004167", - "question_id": 3794, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002627", - "question_id": 3795, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000534", - "question_id": 3796, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002550", - "question_id": 3800, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008309", - "question_id": 3801, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00005549", - "question_id": 3804, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"banjo\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006806", - "question_id": 3806, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008386", - "question_id": 3807, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003308", - "question_id": 3808, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002568", - "question_id": 3812, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005016", - "question_id": 3813, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008521", - "question_id": 3814, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003657", - "question_id": 3815, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003003", - "question_id": 3816, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002897", - "question_id": 3817, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006666", - "question_id": 3819, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008282", - "question_id": 3821, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002476", - "question_id": 3822, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003973", - "question_id": 3824, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003056", - "question_id": 3826, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008508", - "question_id": 3827, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003737", - "question_id": 3828, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006425", - "question_id": 3829, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005834", - "question_id": 3830, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003475", - "question_id": 3832, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003013", - "question_id": 3833, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007024", - "question_id": 3834, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007892", - "question_id": 3836, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"xylophone\", \"right\", \"xylophone\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004048", - "question_id": 3838, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007523", - "question_id": 3842, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002678", - "question_id": 3843, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00007494", - "question_id": 3844, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008660", - "question_id": 3845, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000441", - "question_id": 3847, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000819", - "question_id": 3849, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006630", - "question_id": 3850, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003876", - "question_id": 3851, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005335", - "question_id": 3852, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001584", - "question_id": 3855, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007001", - "question_id": 3856, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004835", - "question_id": 3858, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006288", - "question_id": 3862, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006288", - "question_id": 3862, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002155", - "question_id": 3864, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002860", - "question_id": 3867, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001869", - "question_id": 3868, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006919", - "question_id": 3869, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007298", - "question_id": 3873, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002954", - "question_id": 3875, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005543", - "question_id": 3876, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000151", - "question_id": 3878, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004941", - "question_id": 3879, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007684", - "question_id": 3880, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001402", - "question_id": 3881, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001927", - "question_id": 3883, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007198", - "question_id": 3885, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005849", - "question_id": 3887, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004524", - "question_id": 3888, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004121", - "question_id": 3890, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004113", - "question_id": 3891, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00006136", - "question_id": 3892, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003017", - "question_id": 3894, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008086", - "question_id": 3895, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003183", - "question_id": 3897, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007830", - "question_id": 3898, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008061", - "question_id": 3899, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007706", - "question_id": 3902, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008718", - "question_id": 3903, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002303", - "question_id": 3905, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002410", - "question_id": 3906, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005001", - "question_id": 3907, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007090", - "question_id": 3908, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004235", - "question_id": 3909, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008511", - "question_id": 3910, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006167", - "question_id": 3911, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004015", - "question_id": 3912, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007335", - "question_id": 3913, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002940", - "question_id": 3914, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008454", - "question_id": 3915, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006842", - "question_id": 3916, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006506", - "question_id": 3918, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002591", - "question_id": 3919, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004247", - "question_id": 3921, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001177", - "question_id": 3922, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003650", - "question_id": 3923, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007998", - "question_id": 3924, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006167", - "question_id": 3925, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007745", - "question_id": 3926, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003673", - "question_id": 3927, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005121", - "question_id": 3928, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003397", - "question_id": 3929, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002028", - "question_id": 3930, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004813", - "question_id": 3931, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001201", - "question_id": 3932, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002808", - "question_id": 3933, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005460", - "question_id": 3937, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001264", - "question_id": 3938, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004690", - "question_id": 3940, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007180", - "question_id": 3942, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003430", - "question_id": 3943, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008955", - "question_id": 3944, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004813", - "question_id": 3945, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006445", - "question_id": 3946, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003353", - "question_id": 3947, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008808", - "question_id": 3948, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003706", - "question_id": 3949, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002687", - "question_id": 3950, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002113", - "question_id": 3951, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004924", - "question_id": 3955, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005262", - "question_id": 3957, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004439", - "question_id": 3960, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001336", - "question_id": 3964, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001547", - "question_id": 3966, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003022", - "question_id": 3967, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000540", - "question_id": 3968, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000719", - "question_id": 3970, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007358", - "question_id": 3971, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007803", - "question_id": 3972, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006371", - "question_id": 3973, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00007078", - "question_id": 3974, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008973", - "question_id": 3976, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008856", - "question_id": 3977, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000477", - "question_id": 3979, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005961", - "question_id": 3981, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001527", - "question_id": 3984, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006389", - "question_id": 3985, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001768", - "question_id": 3987, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004988", - "question_id": 3988, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005971", - "question_id": 3990, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00005353", - "question_id": 3991, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003258", - "question_id": 3992, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003325", - "question_id": 3993, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005177", - "question_id": 3994, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004364", - "question_id": 3995, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004659", - "question_id": 3996, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007350", - "question_id": 3997, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003957", - "question_id": 3998, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006776", - "question_id": 3999, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005394", - "question_id": 4000, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000609", - "question_id": 4002, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008337", - "question_id": 4003, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002089", - "question_id": 4004, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002695", - "question_id": 4006, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004357", - "question_id": 4007, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003155", - "question_id": 4008, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007302", - "question_id": 4010, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007162", - "question_id": 4011, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007620", - "question_id": 4012, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006327", - "question_id": 4013, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001495", - "question_id": 4014, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001277", - "question_id": 4015, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005371", - "question_id": 4016, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"right\", \"pipa\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000769", - "question_id": 4020, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006469", - "question_id": 4022, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003145", - "question_id": 4023, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001343", - "question_id": 4024, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001708", - "question_id": 4025, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003708", - "question_id": 4027, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007779", - "question_id": 4029, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006677", - "question_id": 4032, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001169", - "question_id": 4033, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008843", - "question_id": 4036, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007856", - "question_id": 4042, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008617", - "question_id": 4043, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008373", - "question_id": 4045, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005103", - "question_id": 4048, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007441", - "question_id": 4049, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001669", - "question_id": 4051, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002626", - "question_id": 4052, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"electric_bass\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006813", - "question_id": 4053, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007867", - "question_id": 4055, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002950", - "question_id": 4056, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007035", - "question_id": 4057, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005484", - "question_id": 4058, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003562", - "question_id": 4060, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00001207", - "question_id": 4062, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000347", - "question_id": 4063, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008599", - "question_id": 4064, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006343", - "question_id": 4065, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001986", - "question_id": 4066, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"right\", \"tuba\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007769", - "question_id": 4067, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002408", - "question_id": 4069, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001454", - "question_id": 4070, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004387", - "question_id": 4071, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000297", - "question_id": 4072, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007624", - "question_id": 4074, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004013", - "question_id": 4076, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006655", - "question_id": 4078, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005265", - "question_id": 4082, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006528", - "question_id": 4084, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000985", - "question_id": 4085, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000164", - "question_id": 4086, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003359", - "question_id": 4090, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004791", - "question_id": 4092, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004430", - "question_id": 4094, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002665", - "question_id": 4098, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005591", - "question_id": 4100, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008651", - "question_id": 4101, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001798", - "question_id": 4102, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003862", - "question_id": 4104, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005143", - "question_id": 4105, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007135", - "question_id": 4106, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006070", - "question_id": 4107, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007356", - "question_id": 4108, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00001757", - "question_id": 4109, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003449", - "question_id": 4110, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008391", - "question_id": 4111, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006609", - "question_id": 4113, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000109", - "question_id": 4114, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002863", - "question_id": 4115, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006888", - "question_id": 4118, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00004039", - "question_id": 4119, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001263", - "question_id": 4120, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000448", - "question_id": 4122, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003755", - "question_id": 4125, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006246", - "question_id": 4129, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00003889", - "question_id": 4130, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000388", - "question_id": 4131, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007192", - "question_id": 4132, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00007148", - "question_id": 4133, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003935", - "question_id": 4134, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006214", - "question_id": 4135, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003755", - "question_id": 4136, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005781", - "question_id": 4137, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00005879", - "question_id": 4139, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00002033", - "question_id": 4142, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007859", - "question_id": 4144, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001297", - "question_id": 4147, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001440", - "question_id": 4148, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000636", - "question_id": 4149, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002377", - "question_id": 4150, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000424", - "question_id": 4151, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002862", - "question_id": 4153, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003493", - "question_id": 4154, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004752", - "question_id": 4155, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003451", - "question_id": 4156, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008735", - "question_id": 4157, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007556", - "question_id": 4158, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003948", - "question_id": 4159, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001559", - "question_id": 4160, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004091", - "question_id": 4161, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"banjo\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008017", - "question_id": 4162, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006117", - "question_id": 4166, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002724", - "question_id": 4167, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003036", - "question_id": 4170, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001670", - "question_id": 4171, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008878", - "question_id": 4172, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006385", - "question_id": 4174, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008555", - "question_id": 4175, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002847", - "question_id": 4177, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004602", - "question_id": 4179, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"xylophone\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005261", - "question_id": 4180, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008319", - "question_id": 4184, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006293", - "question_id": 4185, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007651", - "question_id": 4186, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008104", - "question_id": 4187, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00005090", - "question_id": 4188, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005441", - "question_id": 4189, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001169", - "question_id": 4191, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002367", - "question_id": 4193, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005544", - "question_id": 4194, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007520", - "question_id": 4195, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000895", - "question_id": 4196, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006836", - "question_id": 4197, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007061", - "question_id": 4199, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000374", - "question_id": 4200, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00007097", - "question_id": 4201, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008669", - "question_id": 4203, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000714", - "question_id": 4204, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006242", - "question_id": 4205, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001208", - "question_id": 4206, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004161", - "question_id": 4208, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004857", - "question_id": 4209, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004678", - "question_id": 4210, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003529", - "question_id": 4211, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003832", - "question_id": 4213, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007392", - "question_id": 4214, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008050", - "question_id": 4215, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004017", - "question_id": 4216, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003182", - "question_id": 4218, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008453", - "question_id": 4219, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001567", - "question_id": 4220, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006836", - "question_id": 4221, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001932", - "question_id": 4223, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000048", - "question_id": 4224, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004723", - "question_id": 4225, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006505", - "question_id": 4227, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008812", - "question_id": 4229, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00003795", - "question_id": 4231, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"suona\", \"right\", \"drum\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000300", - "question_id": 4232, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006525", - "question_id": 4234, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004592", - "question_id": 4235, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000104", - "question_id": 4237, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000623", - "question_id": 4239, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003733", - "question_id": 4241, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006074", - "question_id": 4245, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001400", - "question_id": 4247, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006287", - "question_id": 4248, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002704", - "question_id": 4249, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003454", - "question_id": 4251, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004670", - "question_id": 4253, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008814", - "question_id": 4254, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008104", - "question_id": 4255, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007490", - "question_id": 4256, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001486", - "question_id": 4258, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006258", - "question_id": 4259, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bagpipe\", \"left\", \"bagpipe\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002263", - "question_id": 4261, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004068", - "question_id": 4262, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002740", - "question_id": 4263, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004683", - "question_id": 4265, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002701", - "question_id": 4266, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003686", - "question_id": 4267, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000794", - "question_id": 4268, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003999", - "question_id": 4269, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003997", - "question_id": 4270, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004246", - "question_id": 4271, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006869", - "question_id": 4273, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004646", - "question_id": 4274, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002483", - "question_id": 4279, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00006473", - "question_id": 4280, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007991", - "question_id": 4282, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004961", - "question_id": 4283, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00001703", - "question_id": 4284, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001703", - "question_id": 4284, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001884", - "question_id": 4285, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004963", - "question_id": 4288, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005429", - "question_id": 4290, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005433", - "question_id": 4292, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008635", - "question_id": 4293, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00005623", - "question_id": 4295, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003108", - "question_id": 4297, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00000532", - "question_id": 4298, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008444", - "question_id": 4299, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000657", - "question_id": 4300, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00000905", - "question_id": 4302, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004089", - "question_id": 4303, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005193", - "question_id": 4306, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003801", - "question_id": 4307, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005651", - "question_id": 4308, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006873", - "question_id": 4309, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000688", - "question_id": 4310, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004556", - "question_id": 4312, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008800", - "question_id": 4315, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004379", - "question_id": 4316, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008239", - "question_id": 4318, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004193", - "question_id": 4319, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007807", - "question_id": 4321, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000061", - "question_id": 4326, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00005386", - "question_id": 4328, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00005651", - "question_id": 4329, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006630", - "question_id": 4330, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000342", - "question_id": 4331, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005265", - "question_id": 4332, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002300", - "question_id": 4333, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002824", - "question_id": 4334, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008111", - "question_id": 4335, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001607", - "question_id": 4336, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006975", - "question_id": 4337, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003512", - "question_id": 4339, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002624", - "question_id": 4340, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003281", - "question_id": 4343, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002491", - "question_id": 4344, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001023", - "question_id": 4345, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005328", - "question_id": 4346, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005076", - "question_id": 4347, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001550", - "question_id": 4348, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007395", - "question_id": 4349, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004897", - "question_id": 4350, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002337", - "question_id": 4352, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004133", - "question_id": 4353, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002512", - "question_id": 4354, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006647", - "question_id": 4355, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00006834", - "question_id": 4356, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003640", - "question_id": 4360, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005183", - "question_id": 4362, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003351", - "question_id": 4364, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003613", - "question_id": 4365, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000958", - "question_id": 4366, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003786", - "question_id": 4368, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006736", - "question_id": 4369, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"middle\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007444", - "question_id": 4371, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002501", - "question_id": 4372, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002664", - "question_id": 4375, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004736", - "question_id": 4377, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001299", - "question_id": 4378, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"middle\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004683", - "question_id": 4379, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004894", - "question_id": 4381, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003325", - "question_id": 4382, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00001076", - "question_id": 4385, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001967", - "question_id": 4386, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005650", - "question_id": 4390, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005200", - "question_id": 4391, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000456", - "question_id": 4392, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003471", - "question_id": 4393, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00005208", - "question_id": 4395, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000576", - "question_id": 4396, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003528", - "question_id": 4397, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001151", - "question_id": 4401, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002112", - "question_id": 4402, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006980", - "question_id": 4403, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008754", - "question_id": 4404, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005073", - "question_id": 4405, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006935", - "question_id": 4406, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005685", - "question_id": 4407, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005670", - "question_id": 4408, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000360", - "question_id": 4409, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004951", - "question_id": 4411, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001795", - "question_id": 4413, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002881", - "question_id": 4414, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000141", - "question_id": 4415, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006160", - "question_id": 4416, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006377", - "question_id": 4417, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008643", - "question_id": 4418, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002166", - "question_id": 4420, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008123", - "question_id": 4421, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"cello\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00008457", - "question_id": 4422, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007464", - "question_id": 4423, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002946", - "question_id": 4425, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005871", - "question_id": 4426, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004478", - "question_id": 4427, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000823", - "question_id": 4428, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003318", - "question_id": 4433, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000641", - "question_id": 4434, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001780", - "question_id": 4435, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008540", - "question_id": 4437, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007200", - "question_id": 4438, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000038", - "question_id": 4440, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002399", - "question_id": 4442, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004414", - "question_id": 4443, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001397", - "question_id": 4447, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003427", - "question_id": 4448, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"clarinet\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00001199", - "question_id": 4450, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004400", - "question_id": 4451, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004835", - "question_id": 4453, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00002434", - "question_id": 4454, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002634", - "question_id": 4455, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005671", - "question_id": 4456, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005842", - "question_id": 4458, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004601", - "question_id": 4459, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"middle\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002770", - "question_id": 4460, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008427", - "question_id": 4462, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000100", - "question_id": 4463, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003598", - "question_id": 4465, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005836", - "question_id": 4466, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000388", - "question_id": 4471, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003197", - "question_id": 4473, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008268", - "question_id": 4474, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007888", - "question_id": 4478, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007590", - "question_id": 4479, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007387", - "question_id": 4480, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005325", - "question_id": 4483, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006029", - "question_id": 4484, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006589", - "question_id": 4485, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001843", - "question_id": 4486, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007111", - "question_id": 4487, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008283", - "question_id": 4488, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006072", - "question_id": 4489, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004261", - "question_id": 4490, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001968", - "question_id": 4492, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006081", - "question_id": 4493, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006081", - "question_id": 4493, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000437", - "question_id": 4494, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005965", - "question_id": 4496, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007265", - "question_id": 4498, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00008959", - "question_id": 4500, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002112", - "question_id": 4503, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005407", - "question_id": 4505, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005407", - "question_id": 4505, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001528", - "question_id": 4508, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001802", - "question_id": 4509, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004558", - "question_id": 4511, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006923", - "question_id": 4512, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007757", - "question_id": 4513, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003349", - "question_id": 4514, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006362", - "question_id": 4515, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002829", - "question_id": 4516, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004273", - "question_id": 4517, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004301", - "question_id": 4518, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004669", - "question_id": 4519, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007073", - "question_id": 4521, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002694", - "question_id": 4522, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007193", - "question_id": 4523, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007030", - "question_id": 4524, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006687", - "question_id": 4525, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000758", - "question_id": 4526, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002204", - "question_id": 4528, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004458", - "question_id": 4530, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006598", - "question_id": 4531, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005389", - "question_id": 4532, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005714", - "question_id": 4533, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001650", - "question_id": 4534, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007809", - "question_id": 4535, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005012", - "question_id": 4538, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001219", - "question_id": 4541, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00006854", - "question_id": 4542, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003741", - "question_id": 4543, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001452", - "question_id": 4544, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005353", - "question_id": 4548, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00007627", - "question_id": 4549, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001346", - "question_id": 4550, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006914", - "question_id": 4551, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000092", - "question_id": 4552, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006203", - "question_id": 4553, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008656", - "question_id": 4556, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008001", - "question_id": 4557, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00008794", - "question_id": 4559, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000710", - "question_id": 4562, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008503", - "question_id": 4565, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003058", - "question_id": 4566, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001884", - "question_id": 4567, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007384", - "question_id": 4568, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000943", - "question_id": 4569, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005652", - "question_id": 4570, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004134", - "question_id": 4572, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00004360", - "question_id": 4575, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004053", - "question_id": 4576, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004942", - "question_id": 4577, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003433", - "question_id": 4578, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007694", - "question_id": 4580, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00003011", - "question_id": 4581, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001014", - "question_id": 4582, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000860", - "question_id": 4583, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001480", - "question_id": 4585, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00008015", - "question_id": 4586, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002604", - "question_id": 4587, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001747", - "question_id": 4592, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007794", - "question_id": 4594, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000414", - "question_id": 4598, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001177", - "question_id": 4600, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000494", - "question_id": 4601, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001087", - "question_id": 4602, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002775", - "question_id": 4603, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004052", - "question_id": 4604, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000555", - "question_id": 4605, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006084", - "question_id": 4606, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004554", - "question_id": 4607, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000160", - "question_id": 4613, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008143", - "question_id": 4614, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006591", - "question_id": 4615, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003398", - "question_id": 4618, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001174", - "question_id": 4619, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001110", - "question_id": 4620, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006835", - "question_id": 4623, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004713", - "question_id": 4624, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"trumpet\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004135", - "question_id": 4625, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007850", - "question_id": 4628, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001507", - "question_id": 4629, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000937", - "question_id": 4631, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00005993", - "question_id": 4632, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002209", - "question_id": 4633, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004681", - "question_id": 4636, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008802", - "question_id": 4638, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001653", - "question_id": 4642, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000347", - "question_id": 4645, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008404", - "question_id": 4648, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007517", - "question_id": 4649, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00008688", - "question_id": 4650, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007017", - "question_id": 4652, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"fourth\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00001519", - "question_id": 4656, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003577", - "question_id": 4657, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003579", - "question_id": 4658, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008087", - "question_id": 4660, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007008", - "question_id": 4661, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000569", - "question_id": 4662, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007938", - "question_id": 4664, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006416", - "question_id": 4667, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004521", - "question_id": 4669, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001221", - "question_id": 4671, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001364", - "question_id": 4672, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00001889", - "question_id": 4674, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001467", - "question_id": 4675, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00008401", - "question_id": 4678, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006646", - "question_id": 4680, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "eight" - }, - { - "video_id": "00002829", - "question_id": 4681, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007992", - "question_id": 4682, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008761", - "question_id": 4684, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008175", - "question_id": 4685, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005556", - "question_id": 4687, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000545", - "question_id": 4688, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00000429", - "question_id": 4691, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000477", - "question_id": 4694, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006345", - "question_id": 4695, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005103", - "question_id": 4696, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001225", - "question_id": 4697, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006933", - "question_id": 4699, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00004298", - "question_id": 4700, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008157", - "question_id": 4703, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008825", - "question_id": 4705, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002960", - "question_id": 4706, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006357", - "question_id": 4707, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003015", - "question_id": 4709, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006274", - "question_id": 4710, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000621", - "question_id": 4711, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000105", - "question_id": 4712, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006143", - "question_id": 4713, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005731", - "question_id": 4716, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"banjo\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003283", - "question_id": 4717, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007657", - "question_id": 4718, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001290", - "question_id": 4720, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000987", - "question_id": 4722, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008160", - "question_id": 4723, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00002807", - "question_id": 4724, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008379", - "question_id": 4725, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001387", - "question_id": 4729, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002737", - "question_id": 4731, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005177", - "question_id": 4733, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006501", - "question_id": 4737, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"saxophone\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00008739", - "question_id": 4738, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008845", - "question_id": 4739, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005593", - "question_id": 4741, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000862", - "question_id": 4742, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008326", - "question_id": 4743, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004919", - "question_id": 4744, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001582", - "question_id": 4746, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000049", - "question_id": 4747, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000347", - "question_id": 4749, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001035", - "question_id": 4750, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006299", - "question_id": 4751, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006597", - "question_id": 4752, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000159", - "question_id": 4754, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00006864", - "question_id": 4757, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000176", - "question_id": 4758, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "seven" - }, - { - "video_id": "00000962", - "question_id": 4759, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003319", - "question_id": 4760, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003041", - "question_id": 4761, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000753", - "question_id": 4762, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006719", - "question_id": 4763, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006037", - "question_id": 4764, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001316", - "question_id": 4765, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005670", - "question_id": 4769, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007950", - "question_id": 4772, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002838", - "question_id": 4773, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003799", - "question_id": 4774, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002339", - "question_id": 4777, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"last\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00001208", - "question_id": 4778, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00005447", - "question_id": 4779, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002523", - "question_id": 4780, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003213", - "question_id": 4782, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000950", - "question_id": 4783, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004497", - "question_id": 4784, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00001406", - "question_id": 4785, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008088", - "question_id": 4786, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008203", - "question_id": 4787, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002311", - "question_id": 4788, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000029", - "question_id": 4789, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00000065", - "question_id": 4791, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001663", - "question_id": 4792, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003483", - "question_id": 4793, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006274", - "question_id": 4794, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001815", - "question_id": 4796, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000146", - "question_id": 4799, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007460", - "question_id": 4802, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008797", - "question_id": 4804, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003043", - "question_id": 4805, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002489", - "question_id": 4806, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002156", - "question_id": 4808, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007444", - "question_id": 4809, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007950", - "question_id": 4810, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00006527", - "question_id": 4813, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001442", - "question_id": 4814, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001803", - "question_id": 4816, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00005264", - "question_id": 4817, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006080", - "question_id": 4818, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005240", - "question_id": 4820, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000963", - "question_id": 4823, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004509", - "question_id": 4824, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006321", - "question_id": 4825, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005346", - "question_id": 4826, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007461", - "question_id": 4827, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000753", - "question_id": 4833, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001249", - "question_id": 4834, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002690", - "question_id": 4835, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003000", - "question_id": 4836, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000459", - "question_id": 4837, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000857", - "question_id": 4840, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001715", - "question_id": 4842, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001323", - "question_id": 4843, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005092", - "question_id": 4844, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008469", - "question_id": 4845, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00008875", - "question_id": 4846, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001694", - "question_id": 4850, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006656", - "question_id": 4851, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00001849", - "question_id": 4852, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000906", - "question_id": 4853, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000371", - "question_id": 4854, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003939", - "question_id": 4855, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000378", - "question_id": 4857, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008669", - "question_id": 4858, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003253", - "question_id": 4860, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003773", - "question_id": 4863, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004321", - "question_id": 4864, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00004224", - "question_id": 4865, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"xylophone\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002700", - "question_id": 4867, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"last\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00005706", - "question_id": 4868, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006231", - "question_id": 4869, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00004420", - "question_id": 4870, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00007039", - "question_id": 4871, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00008944", - "question_id": 4873, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000510", - "question_id": 4874, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001166", - "question_id": 4878, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001953", - "question_id": 4879, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005017", - "question_id": 4880, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007476", - "question_id": 4881, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008934", - "question_id": 4882, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003419", - "question_id": 4883, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007386", - "question_id": 4884, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008349", - "question_id": 4885, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005865", - "question_id": 4886, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000845", - "question_id": 4887, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001143", - "question_id": 4889, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000709", - "question_id": 4890, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006443", - "question_id": 4895, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002483", - "question_id": 4896, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004793", - "question_id": 4898, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003545", - "question_id": 4901, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003040", - "question_id": 4902, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001732", - "question_id": 4904, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003651", - "question_id": 4905, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008162", - "question_id": 4907, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002967", - "question_id": 4908, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"middle\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007863", - "question_id": 4909, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005198", - "question_id": 4910, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004214", - "question_id": 4911, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002381", - "question_id": 4912, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002610", - "question_id": 4914, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008833", - "question_id": 4915, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006735", - "question_id": 4916, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004943", - "question_id": 4917, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"tuba\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004709", - "question_id": 4919, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003248", - "question_id": 4920, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00001365", - "question_id": 4922, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000050", - "question_id": 4923, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002766", - "question_id": 4924, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007063", - "question_id": 4925, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003170", - "question_id": 4926, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00005429", - "question_id": 4927, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007794", - "question_id": 4928, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002233", - "question_id": 4930, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005876", - "question_id": 4931, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001823", - "question_id": 4933, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00002306", - "question_id": 4936, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"guzheng\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005515", - "question_id": 4937, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000946", - "question_id": 4938, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003394", - "question_id": 4939, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004231", - "question_id": 4943, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001833", - "question_id": 4944, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004297", - "question_id": 4945, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007485", - "question_id": 4947, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00006238", - "question_id": 4949, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00004940", - "question_id": 4950, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001658", - "question_id": 4951, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008369", - "question_id": 4954, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006332", - "question_id": 4955, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007722", - "question_id": 4957, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003586", - "question_id": 4958, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006303", - "question_id": 4960, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007720", - "question_id": 4961, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003546", - "question_id": 4962, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005075", - "question_id": 4965, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002896", - "question_id": 4966, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00007096", - "question_id": 4967, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005703", - "question_id": 4968, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004983", - "question_id": 4969, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006615", - "question_id": 4970, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002733", - "question_id": 4971, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001097", - "question_id": 4972, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00005644", - "question_id": 4973, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007780", - "question_id": 4974, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004113", - "question_id": 4975, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000258", - "question_id": 4977, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001853", - "question_id": 4978, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00003530", - "question_id": 4980, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"banjo\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008781", - "question_id": 4982, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004975", - "question_id": 4983, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006208", - "question_id": 4989, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008054", - "question_id": 4990, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007796", - "question_id": 4992, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002413", - "question_id": 4994, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007369", - "question_id": 4995, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000529", - "question_id": 4998, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003107", - "question_id": 5000, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006579", - "question_id": 5002, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004703", - "question_id": 5003, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007510", - "question_id": 5005, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008923", - "question_id": 5010, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000632", - "question_id": 5011, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000632", - "question_id": 5011, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007452", - "question_id": 5012, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000982", - "question_id": 5013, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005963", - "question_id": 5014, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004357", - "question_id": 5015, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008419", - "question_id": 5016, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000077", - "question_id": 5017, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006041", - "question_id": 5023, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001078", - "question_id": 5024, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00003734", - "question_id": 5027, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001064", - "question_id": 5028, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006577", - "question_id": 5030, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006444", - "question_id": 5031, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008449", - "question_id": 5038, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00002044", - "question_id": 5040, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"last\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003966", - "question_id": 5042, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005538", - "question_id": 5044, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001621", - "question_id": 5045, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007684", - "question_id": 5047, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00007036", - "question_id": 5048, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002684", - "question_id": 5051, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005839", - "question_id": 5055, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003617", - "question_id": 5056, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007876", - "question_id": 5057, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007393", - "question_id": 5058, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007306", - "question_id": 5060, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006969", - "question_id": 5062, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008975", - "question_id": 5064, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002923", - "question_id": 5065, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004327", - "question_id": 5066, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005606", - "question_id": 5067, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00005384", - "question_id": 5068, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004631", - "question_id": 5070, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000962", - "question_id": 5071, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007040", - "question_id": 5074, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007264", - "question_id": 5076, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008487", - "question_id": 5077, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000570", - "question_id": 5079, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003087", - "question_id": 5081, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002596", - "question_id": 5083, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003682", - "question_id": 5084, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000294", - "question_id": 5085, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000270", - "question_id": 5086, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000299", - "question_id": 5087, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"fourth\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007071", - "question_id": 5089, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008918", - "question_id": 5090, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004266", - "question_id": 5091, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006650", - "question_id": 5092, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004594", - "question_id": 5093, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005685", - "question_id": 5096, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003502", - "question_id": 5097, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007521", - "question_id": 5101, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003222", - "question_id": 5106, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00001938", - "question_id": 5110, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006825", - "question_id": 5111, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000821", - "question_id": 5112, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002441", - "question_id": 5113, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007554", - "question_id": 5114, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002405", - "question_id": 5116, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004861", - "question_id": 5117, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00001352", - "question_id": 5118, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000006", - "question_id": 5119, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005140", - "question_id": 5121, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00005884", - "question_id": 5123, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006851", - "question_id": 5125, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007682", - "question_id": 5126, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006578", - "question_id": 5127, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"tuba\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003764", - "question_id": 5129, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003946", - "question_id": 5130, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006786", - "question_id": 5131, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00005218", - "question_id": 5132, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003697", - "question_id": 5133, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008296", - "question_id": 5134, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004658", - "question_id": 5137, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002237", - "question_id": 5138, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000328", - "question_id": 5140, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000867", - "question_id": 5141, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000615", - "question_id": 5142, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007129", - "question_id": 5143, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005557", - "question_id": 5144, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005304", - "question_id": 5145, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"guzheng\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00004423", - "question_id": 5147, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005252", - "question_id": 5148, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003513", - "question_id": 5149, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00000841", - "question_id": 5151, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001580", - "question_id": 5152, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003381", - "question_id": 5153, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006256", - "question_id": 5155, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00005089", - "question_id": 5156, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006697", - "question_id": 5157, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001347", - "question_id": 5158, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007837", - "question_id": 5160, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00006215", - "question_id": 5162, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003015", - "question_id": 5163, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008530", - "question_id": 5164, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00000167", - "question_id": 5167, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001000", - "question_id": 5168, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007963", - "question_id": 5169, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006911", - "question_id": 5170, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004992", - "question_id": 5171, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001272", - "question_id": 5176, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004636", - "question_id": 5177, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003399", - "question_id": 5178, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000831", - "question_id": 5179, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007223", - "question_id": 5182, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003288", - "question_id": 5183, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002739", - "question_id": 5186, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003364", - "question_id": 5187, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001815", - "question_id": 5188, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004897", - "question_id": 5189, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003072", - "question_id": 5190, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006922", - "question_id": 5192, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001854", - "question_id": 5193, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000908", - "question_id": 5194, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004987", - "question_id": 5195, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00001975", - "question_id": 5196, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002045", - "question_id": 5199, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008426", - "question_id": 5202, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007041", - "question_id": 5203, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000349", - "question_id": 5205, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007488", - "question_id": 5207, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005049", - "question_id": 5210, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000781", - "question_id": 5213, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001484", - "question_id": 5214, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"electric_bass\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007633", - "question_id": 5215, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005402", - "question_id": 5217, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006673", - "question_id": 5219, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006253", - "question_id": 5220, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002938", - "question_id": 5221, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004398", - "question_id": 5223, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005701", - "question_id": 5224, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004092", - "question_id": 5225, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003226", - "question_id": 5226, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000852", - "question_id": 5227, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001082", - "question_id": 5228, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004870", - "question_id": 5230, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005581", - "question_id": 5231, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006776", - "question_id": 5232, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003474", - "question_id": 5237, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006271", - "question_id": 5238, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003638", - "question_id": 5243, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008621", - "question_id": 5244, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001027", - "question_id": 5246, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00004250", - "question_id": 5247, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007831", - "question_id": 5248, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004598", - "question_id": 5252, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00008789", - "question_id": 5253, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006895", - "question_id": 5255, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002887", - "question_id": 5257, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007057", - "question_id": 5258, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001204", - "question_id": 5259, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002155", - "question_id": 5260, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001530", - "question_id": 5261, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008317", - "question_id": 5262, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007534", - "question_id": 5263, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"bassoon\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008130", - "question_id": 5264, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005361", - "question_id": 5266, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007581", - "question_id": 5267, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003381", - "question_id": 5271, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006228", - "question_id": 5272, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007820", - "question_id": 5273, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002422", - "question_id": 5274, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007303", - "question_id": 5276, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00008952", - "question_id": 5277, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008318", - "question_id": 5278, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006947", - "question_id": 5279, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002849", - "question_id": 5280, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007564", - "question_id": 5281, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002389", - "question_id": 5283, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006032", - "question_id": 5284, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002442", - "question_id": 5285, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004686", - "question_id": 5286, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002967", - "question_id": 5289, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001112", - "question_id": 5293, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00008349", - "question_id": 5294, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002729", - "question_id": 5295, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008617", - "question_id": 5301, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004225", - "question_id": 5303, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bagpipe\", \"left\", \"congas\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000070", - "question_id": 5305, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"pipa\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00002902", - "question_id": 5307, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003192", - "question_id": 5308, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00000092", - "question_id": 5310, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007874", - "question_id": 5312, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002235", - "question_id": 5313, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001688", - "question_id": 5315, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003766", - "question_id": 5318, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008423", - "question_id": 5319, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000041", - "question_id": 5320, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008197", - "question_id": 5322, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003549", - "question_id": 5323, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008330", - "question_id": 5324, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001902", - "question_id": 5325, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001910", - "question_id": 5326, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003249", - "question_id": 5327, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001204", - "question_id": 5328, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002589", - "question_id": 5330, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002242", - "question_id": 5331, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"ukulele\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003005", - "question_id": 5332, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001722", - "question_id": 5334, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006566", - "question_id": 5335, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00004352", - "question_id": 5337, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00003663", - "question_id": 5338, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007935", - "question_id": 5340, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004889", - "question_id": 5341, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002895", - "question_id": 5342, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005516", - "question_id": 5343, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006995", - "question_id": 5344, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004877", - "question_id": 5347, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007114", - "question_id": 5348, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00002063", - "question_id": 5350, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004681", - "question_id": 5351, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004765", - "question_id": 5352, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004176", - "question_id": 5353, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00004726", - "question_id": 5357, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003301", - "question_id": 5359, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002210", - "question_id": 5361, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007903", - "question_id": 5364, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000759", - "question_id": 5365, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003422", - "question_id": 5366, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007611", - "question_id": 5368, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006391", - "question_id": 5369, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008867", - "question_id": 5373, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003201", - "question_id": 5375, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008230", - "question_id": 5376, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006551", - "question_id": 5378, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006487", - "question_id": 5379, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006828", - "question_id": 5380, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003073", - "question_id": 5382, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005924", - "question_id": 5383, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007093", - "question_id": 5384, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004476", - "question_id": 5386, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006922", - "question_id": 5387, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001205", - "question_id": 5388, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002783", - "question_id": 5390, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"acoustic_guitar\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000981", - "question_id": 5391, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003140", - "question_id": 5392, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007647", - "question_id": 5393, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00004857", - "question_id": 5395, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00003799", - "question_id": 5396, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00005857", - "question_id": 5398, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002949", - "question_id": 5399, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007818", - "question_id": 5400, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00003264", - "question_id": 5402, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"middle\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007302", - "question_id": 5403, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003551", - "question_id": 5408, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003618", - "question_id": 5410, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004880", - "question_id": 5413, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006418", - "question_id": 5414, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004109", - "question_id": 5415, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002696", - "question_id": 5416, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003888", - "question_id": 5417, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007360", - "question_id": 5418, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005986", - "question_id": 5419, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008702", - "question_id": 5420, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008560", - "question_id": 5421, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003314", - "question_id": 5423, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004843", - "question_id": 5424, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005732", - "question_id": 5425, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001430", - "question_id": 5426, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004816", - "question_id": 5428, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007690", - "question_id": 5429, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004614", - "question_id": 5430, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008676", - "question_id": 5431, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007505", - "question_id": 5434, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006787", - "question_id": 5435, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004131", - "question_id": 5437, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004033", - "question_id": 5438, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007541", - "question_id": 5440, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008416", - "question_id": 5441, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004396", - "question_id": 5442, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005136", - "question_id": 5443, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000732", - "question_id": 5444, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004766", - "question_id": 5445, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001587", - "question_id": 5446, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008338", - "question_id": 5447, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007072", - "question_id": 5449, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007630", - "question_id": 5450, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00005253", - "question_id": 5451, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007054", - "question_id": 5455, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006322", - "question_id": 5456, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000245", - "question_id": 5457, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006189", - "question_id": 5458, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00008779", - "question_id": 5459, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004945", - "question_id": 5460, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000616", - "question_id": 5462, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006864", - "question_id": 5463, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007550", - "question_id": 5465, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007493", - "question_id": 5466, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000150", - "question_id": 5467, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000827", - "question_id": 5468, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007657", - "question_id": 5470, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008004", - "question_id": 5471, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000041", - "question_id": 5472, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001636", - "question_id": 5475, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007905", - "question_id": 5477, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003304", - "question_id": 5479, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000559", - "question_id": 5480, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005589", - "question_id": 5483, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006142", - "question_id": 5484, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "nine" - }, - { - "video_id": "00002035", - "question_id": 5485, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001303", - "question_id": 5489, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005745", - "question_id": 5490, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003431", - "question_id": 5491, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007749", - "question_id": 5492, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001076", - "question_id": 5493, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001935", - "question_id": 5495, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007565", - "question_id": 5496, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004632", - "question_id": 5498, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004140", - "question_id": 5500, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00000399", - "question_id": 5502, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008612", - "question_id": 5504, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005716", - "question_id": 5506, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004967", - "question_id": 5507, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006901", - "question_id": 5508, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000520", - "question_id": 5509, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006928", - "question_id": 5510, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007905", - "question_id": 5511, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001787", - "question_id": 5514, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006160", - "question_id": 5515, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005628", - "question_id": 5516, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008273", - "question_id": 5517, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000970", - "question_id": 5520, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000004", - "question_id": 5521, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001210", - "question_id": 5522, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007492", - "question_id": 5523, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008433", - "question_id": 5524, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006646", - "question_id": 5525, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "eight" - }, - { - "video_id": "00007082", - "question_id": 5526, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006717", - "question_id": 5528, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002348", - "question_id": 5529, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006376", - "question_id": 5534, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00007870", - "question_id": 5536, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"middle\", \"banjo\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000936", - "question_id": 5537, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005069", - "question_id": 5539, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001588", - "question_id": 5540, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008853", - "question_id": 5541, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003778", - "question_id": 5542, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005563", - "question_id": 5547, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00006004", - "question_id": 5548, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004146", - "question_id": 5549, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003564", - "question_id": 5551, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006395", - "question_id": 5553, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008814", - "question_id": 5554, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003146", - "question_id": 5555, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001142", - "question_id": 5556, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00007838", - "question_id": 5557, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004616", - "question_id": 5558, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006877", - "question_id": 5559, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002025", - "question_id": 5561, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008691", - "question_id": 5562, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00005377", - "question_id": 5563, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002140", - "question_id": 5566, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00008731", - "question_id": 5568, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002345", - "question_id": 5569, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008446", - "question_id": 5571, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00005262", - "question_id": 5572, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004556", - "question_id": 5573, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004654", - "question_id": 5574, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002349", - "question_id": 5576, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001533", - "question_id": 5577, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003856", - "question_id": 5579, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00003142", - "question_id": 5581, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002207", - "question_id": 5583, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004208", - "question_id": 5584, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008736", - "question_id": 5585, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001646", - "question_id": 5589, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008129", - "question_id": 5590, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001908", - "question_id": 5592, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001908", - "question_id": 5592, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002439", - "question_id": 5593, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000485", - "question_id": 5594, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001237", - "question_id": 5599, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002168", - "question_id": 5605, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006497", - "question_id": 5606, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001118", - "question_id": 5608, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008972", - "question_id": 5610, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00007569", - "question_id": 5611, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005950", - "question_id": 5612, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008802", - "question_id": 5613, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000931", - "question_id": 5615, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006000", - "question_id": 5616, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006644", - "question_id": 5620, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003700", - "question_id": 5621, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008645", - "question_id": 5623, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004860", - "question_id": 5624, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000228", - "question_id": 5625, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000155", - "question_id": 5626, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003530", - "question_id": 5629, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000519", - "question_id": 5630, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000585", - "question_id": 5631, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002199", - "question_id": 5632, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006399", - "question_id": 5633, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005969", - "question_id": 5634, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004342", - "question_id": 5636, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003550", - "question_id": 5637, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007539", - "question_id": 5638, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004742", - "question_id": 5639, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003738", - "question_id": 5643, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005971", - "question_id": 5644, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006526", - "question_id": 5645, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002515", - "question_id": 5647, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008390", - "question_id": 5648, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007623", - "question_id": 5650, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002571", - "question_id": 5653, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006112", - "question_id": 5657, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000024", - "question_id": 5661, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008204", - "question_id": 5662, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004722", - "question_id": 5667, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00003870", - "question_id": 5669, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005483", - "question_id": 5670, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006048", - "question_id": 5671, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000980", - "question_id": 5674, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004847", - "question_id": 5676, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000941", - "question_id": 5678, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008233", - "question_id": 5681, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002101", - "question_id": 5684, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006181", - "question_id": 5688, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001216", - "question_id": 5689, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000767", - "question_id": 5690, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001452", - "question_id": 5692, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006592", - "question_id": 5693, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007481", - "question_id": 5694, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007061", - "question_id": 5696, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001594", - "question_id": 5697, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004706", - "question_id": 5698, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002731", - "question_id": 5700, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003042", - "question_id": 5701, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006597", - "question_id": 5703, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000405", - "question_id": 5708, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003457", - "question_id": 5709, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008692", - "question_id": 5711, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002034", - "question_id": 5712, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008350", - "question_id": 5714, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002502", - "question_id": 5715, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002335", - "question_id": 5719, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001776", - "question_id": 5720, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008710", - "question_id": 5721, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007627", - "question_id": 5722, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002307", - "question_id": 5723, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008627", - "question_id": 5724, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007159", - "question_id": 5725, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006400", - "question_id": 5726, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006923", - "question_id": 5727, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00003286", - "question_id": 5728, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008161", - "question_id": 5729, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004399", - "question_id": 5730, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000289", - "question_id": 5731, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000642", - "question_id": 5732, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007930", - "question_id": 5733, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006392", - "question_id": 5736, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001946", - "question_id": 5737, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001879", - "question_id": 5741, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001879", - "question_id": 5741, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006073", - "question_id": 5743, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006732", - "question_id": 5744, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004045", - "question_id": 5746, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002671", - "question_id": 5747, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008501", - "question_id": 5748, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001598", - "question_id": 5751, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"banjo\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005297", - "question_id": 5752, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005246", - "question_id": 5753, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004986", - "question_id": 5754, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008965", - "question_id": 5755, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003664", - "question_id": 5756, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002982", - "question_id": 5761, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004486", - "question_id": 5762, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000228", - "question_id": 5763, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007130", - "question_id": 5764, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006348", - "question_id": 5765, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003171", - "question_id": 5766, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006699", - "question_id": 5767, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003055", - "question_id": 5769, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002823", - "question_id": 5771, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007863", - "question_id": 5775, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003232", - "question_id": 5777, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002110", - "question_id": 5778, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003624", - "question_id": 5779, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000005", - "question_id": 5782, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"electric_bass\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006851", - "question_id": 5786, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008496", - "question_id": 5787, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00005377", - "question_id": 5789, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005076", - "question_id": 5790, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008571", - "question_id": 5792, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003486", - "question_id": 5793, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002009", - "question_id": 5794, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008900", - "question_id": 5795, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001733", - "question_id": 5796, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006521", - "question_id": 5797, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006146", - "question_id": 5799, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006146", - "question_id": 5799, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002874", - "question_id": 5801, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007537", - "question_id": 5802, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006882", - "question_id": 5804, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006203", - "question_id": 5806, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003299", - "question_id": 5807, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002658", - "question_id": 5808, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004406", - "question_id": 5809, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004839", - "question_id": 5812, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008527", - "question_id": 5815, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008720", - "question_id": 5817, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007315", - "question_id": 5821, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000622", - "question_id": 5823, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004281", - "question_id": 5824, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000061", - "question_id": 5826, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"right\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006107", - "question_id": 5828, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004553", - "question_id": 5831, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004802", - "question_id": 5834, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006038", - "question_id": 5839, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007389", - "question_id": 5840, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"banjo\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00002834", - "question_id": 5841, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000419", - "question_id": 5842, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008192", - "question_id": 5843, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001158", - "question_id": 5845, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000405", - "question_id": 5846, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000557", - "question_id": 5847, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000030", - "question_id": 5848, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00007678", - "question_id": 5849, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001857", - "question_id": 5850, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001945", - "question_id": 5851, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006291", - "question_id": 5852, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001928", - "question_id": 5854, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003436", - "question_id": 5857, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005214", - "question_id": 5861, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008798", - "question_id": 5867, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007685", - "question_id": 5868, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007313", - "question_id": 5869, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006069", - "question_id": 5870, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008842", - "question_id": 5871, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006943", - "question_id": 5873, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006193", - "question_id": 5874, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007097", - "question_id": 5875, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000959", - "question_id": 5876, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000393", - "question_id": 5879, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003763", - "question_id": 5881, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007727", - "question_id": 5883, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "seven" - }, - { - "video_id": "00002523", - "question_id": 5886, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002438", - "question_id": 5889, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008805", - "question_id": 5890, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003994", - "question_id": 5891, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007389", - "question_id": 5894, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006665", - "question_id": 5895, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006665", - "question_id": 5895, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001502", - "question_id": 5896, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005365", - "question_id": 5898, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001764", - "question_id": 5899, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002572", - "question_id": 5900, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008509", - "question_id": 5901, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005333", - "question_id": 5903, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008637", - "question_id": 5904, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005820", - "question_id": 5906, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006079", - "question_id": 5907, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008071", - "question_id": 5908, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000891", - "question_id": 5909, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001372", - "question_id": 5910, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006011", - "question_id": 5911, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001298", - "question_id": 5912, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008496", - "question_id": 5915, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006542", - "question_id": 5916, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002464", - "question_id": 5917, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004510", - "question_id": 5918, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002621", - "question_id": 5919, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006913", - "question_id": 5922, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008676", - "question_id": 5924, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006194", - "question_id": 5925, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006850", - "question_id": 5927, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007793", - "question_id": 5928, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006239", - "question_id": 5929, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003120", - "question_id": 5930, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00005078", - "question_id": 5931, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005386", - "question_id": 5932, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003827", - "question_id": 5934, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000138", - "question_id": 5935, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001638", - "question_id": 5936, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008016", - "question_id": 5937, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004555", - "question_id": 5939, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004085", - "question_id": 5940, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001341", - "question_id": 5943, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008077", - "question_id": 5944, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004420", - "question_id": 5945, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003942", - "question_id": 5946, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004793", - "question_id": 5947, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007708", - "question_id": 5948, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008602", - "question_id": 5949, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00005605", - "question_id": 5951, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005834", - "question_id": 5955, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002409", - "question_id": 5956, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005647", - "question_id": 5959, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006566", - "question_id": 5960, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002485", - "question_id": 5962, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007607", - "question_id": 5963, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007289", - "question_id": 5964, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006339", - "question_id": 5965, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000716", - "question_id": 5966, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003731", - "question_id": 5967, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006206", - "question_id": 5968, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007596", - "question_id": 5969, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008038", - "question_id": 5970, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006912", - "question_id": 5971, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008664", - "question_id": 5972, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005884", - "question_id": 5973, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003419", - "question_id": 5976, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002901", - "question_id": 5977, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006126", - "question_id": 5979, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001061", - "question_id": 5980, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00007284", - "question_id": 5981, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001336", - "question_id": 5982, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001343", - "question_id": 5983, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001941", - "question_id": 5984, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000267", - "question_id": 5986, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008599", - "question_id": 5989, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002958", - "question_id": 5993, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003549", - "question_id": 5996, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007968", - "question_id": 5997, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001112", - "question_id": 5998, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002411", - "question_id": 6000, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"middle\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005730", - "question_id": 6002, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008411", - "question_id": 6003, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00002525", - "question_id": 6004, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008572", - "question_id": 6006, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000315", - "question_id": 6011, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002364", - "question_id": 6018, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005113", - "question_id": 6019, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006322", - "question_id": 6022, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007182", - "question_id": 6025, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003025", - "question_id": 6026, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000265", - "question_id": 6028, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006707", - "question_id": 6030, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004496", - "question_id": 6033, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00002460", - "question_id": 6035, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001946", - "question_id": 6036, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004523", - "question_id": 6037, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006538", - "question_id": 6039, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002408", - "question_id": 6041, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004276", - "question_id": 6043, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000032", - "question_id": 6045, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002058", - "question_id": 6046, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003471", - "question_id": 6047, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004214", - "question_id": 6048, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002376", - "question_id": 6050, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004664", - "question_id": 6051, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007552", - "question_id": 6053, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001258", - "question_id": 6054, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001625", - "question_id": 6055, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00003640", - "question_id": 6056, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006805", - "question_id": 6057, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007285", - "question_id": 6059, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008183", - "question_id": 6060, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006494", - "question_id": 6062, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000617", - "question_id": 6063, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008258", - "question_id": 6065, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004915", - "question_id": 6066, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000082", - "question_id": 6067, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000925", - "question_id": 6068, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007678", - "question_id": 6069, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007024", - "question_id": 6071, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002314", - "question_id": 6077, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005913", - "question_id": 6078, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004174", - "question_id": 6079, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002060", - "question_id": 6081, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006805", - "question_id": 6082, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008383", - "question_id": 6086, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"pipa\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001261", - "question_id": 6087, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007831", - "question_id": 6088, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003837", - "question_id": 6093, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003082", - "question_id": 6094, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001626", - "question_id": 6095, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000218", - "question_id": 6097, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008124", - "question_id": 6098, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005936", - "question_id": 6100, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000535", - "question_id": 6101, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00005445", - "question_id": 6102, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000578", - "question_id": 6103, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002905", - "question_id": 6105, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001885", - "question_id": 6106, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005672", - "question_id": 6109, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00007436", - "question_id": 6110, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008188", - "question_id": 6112, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"suona\", \"right\", \"pipa\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002947", - "question_id": 6113, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00007088", - "question_id": 6114, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007036", - "question_id": 6115, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000169", - "question_id": 6117, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002707", - "question_id": 6119, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004337", - "question_id": 6120, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005083", - "question_id": 6121, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000143", - "question_id": 6122, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006977", - "question_id": 6124, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004421", - "question_id": 6125, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001300", - "question_id": 6126, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003475", - "question_id": 6128, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008128", - "question_id": 6129, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005246", - "question_id": 6130, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005980", - "question_id": 6137, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003420", - "question_id": 6138, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002285", - "question_id": 6139, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005865", - "question_id": 6140, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000430", - "question_id": 6141, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00008007", - "question_id": 6142, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002696", - "question_id": 6144, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008801", - "question_id": 6145, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007450", - "question_id": 6147, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007639", - "question_id": 6149, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007844", - "question_id": 6152, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004007", - "question_id": 6155, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003121", - "question_id": 6156, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006276", - "question_id": 6157, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003442", - "question_id": 6161, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00006375", - "question_id": 6162, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004455", - "question_id": 6163, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005932", - "question_id": 6164, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005609", - "question_id": 6165, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007573", - "question_id": 6166, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003346", - "question_id": 6168, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00001030", - "question_id": 6169, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007512", - "question_id": 6171, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006228", - "question_id": 6172, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000719", - "question_id": 6174, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00007913", - "question_id": 6175, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00002609", - "question_id": 6176, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006024", - "question_id": 6178, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004434", - "question_id": 6179, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008176", - "question_id": 6180, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00005980", - "question_id": 6181, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000945", - "question_id": 6183, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000385", - "question_id": 6184, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004833", - "question_id": 6185, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001212", - "question_id": 6188, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002642", - "question_id": 6189, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008602", - "question_id": 6193, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008216", - "question_id": 6194, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006504", - "question_id": 6195, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006626", - "question_id": 6196, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001557", - "question_id": 6198, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005191", - "question_id": 6199, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008333", - "question_id": 6200, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006531", - "question_id": 6201, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006665", - "question_id": 6203, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002923", - "question_id": 6204, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006139", - "question_id": 6206, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007015", - "question_id": 6207, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008845", - "question_id": 6208, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000950", - "question_id": 6210, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002666", - "question_id": 6211, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008185", - "question_id": 6215, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"xylophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003481", - "question_id": 6216, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004362", - "question_id": 6218, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005549", - "question_id": 6219, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007275", - "question_id": 6220, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006459", - "question_id": 6221, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008626", - "question_id": 6222, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008197", - "question_id": 6224, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006996", - "question_id": 6226, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007227", - "question_id": 6227, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000225", - "question_id": 6229, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004292", - "question_id": 6230, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004583", - "question_id": 6231, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003979", - "question_id": 6232, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004660", - "question_id": 6233, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002458", - "question_id": 6234, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008684", - "question_id": 6235, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006813", - "question_id": 6236, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005097", - "question_id": 6239, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007162", - "question_id": 6242, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00007539", - "question_id": 6244, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000252", - "question_id": 6248, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003807", - "question_id": 6249, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"tuba\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005420", - "question_id": 6250, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00000466", - "question_id": 6251, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000560", - "question_id": 6252, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007461", - "question_id": 6253, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002621", - "question_id": 6254, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00007070", - "question_id": 6255, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002997", - "question_id": 6256, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001622", - "question_id": 6257, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000670", - "question_id": 6258, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001410", - "question_id": 6259, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008021", - "question_id": 6261, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007005", - "question_id": 6264, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007165", - "question_id": 6265, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001556", - "question_id": 6267, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00008366", - "question_id": 6268, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001227", - "question_id": 6269, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00006012", - "question_id": 6270, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006574", - "question_id": 6271, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000996", - "question_id": 6276, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002941", - "question_id": 6277, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"right\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008864", - "question_id": 6279, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007303", - "question_id": 6280, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00005952", - "question_id": 6283, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001067", - "question_id": 6285, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007362", - "question_id": 6286, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005394", - "question_id": 6289, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002411", - "question_id": 6291, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001607", - "question_id": 6292, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000399", - "question_id": 6294, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000176", - "question_id": 6298, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002489", - "question_id": 6302, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008698", - "question_id": 6304, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006829", - "question_id": 6305, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003415", - "question_id": 6307, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004408", - "question_id": 6310, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007629", - "question_id": 6312, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000866", - "question_id": 6314, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00002452", - "question_id": 6315, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004075", - "question_id": 6316, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001817", - "question_id": 6317, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005487", - "question_id": 6319, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005903", - "question_id": 6320, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001635", - "question_id": 6322, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002128", - "question_id": 6323, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002612", - "question_id": 6325, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000160", - "question_id": 6326, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006358", - "question_id": 6329, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005285", - "question_id": 6330, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007631", - "question_id": 6331, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004055", - "question_id": 6333, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008476", - "question_id": 6335, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"banjo\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000205", - "question_id": 6336, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001741", - "question_id": 6337, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006766", - "question_id": 6340, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005189", - "question_id": 6341, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003168", - "question_id": 6346, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008565", - "question_id": 6349, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008977", - "question_id": 6350, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00002200", - "question_id": 6351, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"accordion\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00007887", - "question_id": 6352, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002837", - "question_id": 6355, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"right\", \"banjo\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002837", - "question_id": 6355, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"right\", \"banjo\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005017", - "question_id": 6360, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007995", - "question_id": 6362, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004396", - "question_id": 6363, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008688", - "question_id": 6364, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000328", - "question_id": 6366, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000530", - "question_id": 6367, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003447", - "question_id": 6369, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007312", - "question_id": 6370, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000579", - "question_id": 6372, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007700", - "question_id": 6373, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001256", - "question_id": 6374, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004795", - "question_id": 6375, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000195", - "question_id": 6376, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007064", - "question_id": 6377, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006565", - "question_id": 6379, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002870", - "question_id": 6380, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006777", - "question_id": 6381, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004158", - "question_id": 6383, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008886", - "question_id": 6388, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003332", - "question_id": 6389, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006425", - "question_id": 6390, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003203", - "question_id": 6391, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00006089", - "question_id": 6393, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000976", - "question_id": 6394, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002655", - "question_id": 6395, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"guzheng\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00001021", - "question_id": 6398, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008619", - "question_id": 6401, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002926", - "question_id": 6402, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001757", - "question_id": 6403, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006697", - "question_id": 6404, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006373", - "question_id": 6405, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001392", - "question_id": 6406, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005124", - "question_id": 6407, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005887", - "question_id": 6409, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002205", - "question_id": 6412, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002913", - "question_id": 6414, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008060", - "question_id": 6416, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005611", - "question_id": 6418, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"flute\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004742", - "question_id": 6420, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001331", - "question_id": 6427, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007532", - "question_id": 6428, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001528", - "question_id": 6431, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000006", - "question_id": 6433, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007619", - "question_id": 6437, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001933", - "question_id": 6439, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004992", - "question_id": 6440, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003717", - "question_id": 6441, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008918", - "question_id": 6442, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001779", - "question_id": 6444, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00006927", - "question_id": 6445, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006885", - "question_id": 6446, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005878", - "question_id": 6452, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005133", - "question_id": 6453, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007058", - "question_id": 6454, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005682", - "question_id": 6458, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005682", - "question_id": 6458, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006147", - "question_id": 6461, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000017", - "question_id": 6462, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007372", - "question_id": 6464, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000130", - "question_id": 6465, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008405", - "question_id": 6466, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005558", - "question_id": 6470, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004217", - "question_id": 6471, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003750", - "question_id": 6472, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008331", - "question_id": 6475, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004797", - "question_id": 6477, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00007572", - "question_id": 6483, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002330", - "question_id": 6484, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006401", - "question_id": 6485, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005014", - "question_id": 6488, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002004", - "question_id": 6490, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00008568", - "question_id": 6491, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00008843", - "question_id": 6492, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005180", - "question_id": 6493, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006125", - "question_id": 6496, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00007420", - "question_id": 6498, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000715", - "question_id": 6499, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006770", - "question_id": 6501, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007423", - "question_id": 6502, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00001637", - "question_id": 6505, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002757", - "question_id": 6506, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004379", - "question_id": 6507, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008352", - "question_id": 6508, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001352", - "question_id": 6509, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001485", - "question_id": 6510, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004381", - "question_id": 6512, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008792", - "question_id": 6513, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004900", - "question_id": 6514, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006788", - "question_id": 6515, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00007007", - "question_id": 6516, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008892", - "question_id": 6518, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00008864", - "question_id": 6519, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003607", - "question_id": 6520, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008710", - "question_id": 6523, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006641", - "question_id": 6525, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002838", - "question_id": 6526, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003068", - "question_id": 6527, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002471", - "question_id": 6529, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000599", - "question_id": 6530, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006497", - "question_id": 6531, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003631", - "question_id": 6532, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005074", - "question_id": 6533, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008914", - "question_id": 6534, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001479", - "question_id": 6535, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006819", - "question_id": 6536, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005792", - "question_id": 6537, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006354", - "question_id": 6538, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000048", - "question_id": 6539, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003200", - "question_id": 6541, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007906", - "question_id": 6542, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005559", - "question_id": 6544, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008793", - "question_id": 6545, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006105", - "question_id": 6546, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001850", - "question_id": 6547, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004635", - "question_id": 6548, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00007592", - "question_id": 6549, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000220", - "question_id": 6552, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00008024", - "question_id": 6553, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002525", - "question_id": 6554, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00006814", - "question_id": 6557, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00001167", - "question_id": 6558, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001413", - "question_id": 6559, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002287", - "question_id": 6562, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001899", - "question_id": 6564, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008474", - "question_id": 6565, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003025", - "question_id": 6567, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000822", - "question_id": 6568, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00000171", - "question_id": 6570, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00003021", - "question_id": 6571, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003782", - "question_id": 6572, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006276", - "question_id": 6574, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003826", - "question_id": 6575, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001819", - "question_id": 6576, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003055", - "question_id": 6577, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005621", - "question_id": 6579, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001680", - "question_id": 6581, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00004807", - "question_id": 6582, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005547", - "question_id": 6583, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00007629", - "question_id": 6584, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001252", - "question_id": 6586, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002441", - "question_id": 6588, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006298", - "question_id": 6589, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003181", - "question_id": 6592, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002799", - "question_id": 6593, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005054", - "question_id": 6594, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003653", - "question_id": 6595, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008152", - "question_id": 6596, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001001", - "question_id": 6597, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001442", - "question_id": 6598, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001148", - "question_id": 6599, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00000607", - "question_id": 6600, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001971", - "question_id": 6601, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"clarinet\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007956", - "question_id": 6602, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004472", - "question_id": 6603, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00006298", - "question_id": 6604, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00007826", - "question_id": 6605, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006514", - "question_id": 6607, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007450", - "question_id": 6608, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00005066", - "question_id": 6609, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006071", - "question_id": 6610, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008275", - "question_id": 6611, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002838", - "question_id": 6612, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003225", - "question_id": 6613, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002158", - "question_id": 6614, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008683", - "question_id": 6619, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006614", - "question_id": 6625, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00001520", - "question_id": 6626, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001466", - "question_id": 6627, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006946", - "question_id": 6628, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006065", - "question_id": 6629, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002304", - "question_id": 6630, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007505", - "question_id": 6631, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006418", - "question_id": 6632, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002971", - "question_id": 6633, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008020", - "question_id": 6634, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002323", - "question_id": 6635, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008675", - "question_id": 6636, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006900", - "question_id": 6637, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001216", - "question_id": 6638, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005872", - "question_id": 6639, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00003108", - "question_id": 6640, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001256", - "question_id": 6642, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00004090", - "question_id": 6643, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006822", - "question_id": 6644, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001863", - "question_id": 6649, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007590", - "question_id": 6652, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004741", - "question_id": 6653, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00000495", - "question_id": 6654, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005867", - "question_id": 6658, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"clarinet\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005363", - "question_id": 6663, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004285", - "question_id": 6664, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003286", - "question_id": 6666, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004308", - "question_id": 6668, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004940", - "question_id": 6669, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002060", - "question_id": 6670, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002039", - "question_id": 6671, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002072", - "question_id": 6672, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004737", - "question_id": 6674, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005172", - "question_id": 6676, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007614", - "question_id": 6677, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00000050", - "question_id": 6679, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002514", - "question_id": 6683, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005304", - "question_id": 6684, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00005323", - "question_id": 6685, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000520", - "question_id": 6687, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007998", - "question_id": 6688, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"last\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00002165", - "question_id": 6689, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003893", - "question_id": 6690, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008483", - "question_id": 6691, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00008706", - "question_id": 6692, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006384", - "question_id": 6693, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006096", - "question_id": 6694, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007796", - "question_id": 6695, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003712", - "question_id": 6696, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006234", - "question_id": 6698, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000313", - "question_id": 6699, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000019", - "question_id": 6701, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006812", - "question_id": 6702, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006679", - "question_id": 6706, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000321", - "question_id": 6708, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00007863", - "question_id": 6710, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00005990", - "question_id": 6711, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008882", - "question_id": 6713, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000532", - "question_id": 6715, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008014", - "question_id": 6716, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006846", - "question_id": 6717, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008036", - "question_id": 6718, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003878", - "question_id": 6719, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001426", - "question_id": 6722, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004449", - "question_id": 6723, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001592", - "question_id": 6726, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008765", - "question_id": 6730, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006239", - "question_id": 6731, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001720", - "question_id": 6732, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005017", - "question_id": 6736, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001265", - "question_id": 6737, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000364", - "question_id": 6739, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004214", - "question_id": 6741, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004192", - "question_id": 6743, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001906", - "question_id": 6744, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00001098", - "question_id": 6745, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002660", - "question_id": 6746, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006421", - "question_id": 6747, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008871", - "question_id": 6749, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00001957", - "question_id": 6750, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003746", - "question_id": 6753, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002705", - "question_id": 6754, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004173", - "question_id": 6755, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005534", - "question_id": 6756, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002650", - "question_id": 6757, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000731", - "question_id": 6758, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000335", - "question_id": 6759, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000465", - "question_id": 6761, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004529", - "question_id": 6763, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001992", - "question_id": 6764, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004535", - "question_id": 6765, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00004895", - "question_id": 6766, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006145", - "question_id": 6767, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008699", - "question_id": 6770, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000059", - "question_id": 6771, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00006757", - "question_id": 6772, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002406", - "question_id": 6773, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002814", - "question_id": 6774, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004153", - "question_id": 6775, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002284", - "question_id": 6776, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007506", - "question_id": 6777, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003140", - "question_id": 6779, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005768", - "question_id": 6781, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004866", - "question_id": 6782, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007464", - "question_id": 6784, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008553", - "question_id": 6785, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004753", - "question_id": 6789, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002258", - "question_id": 6790, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00002013", - "question_id": 6793, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00008063", - "question_id": 6795, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002498", - "question_id": 6797, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007159", - "question_id": 6798, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007446", - "question_id": 6799, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005486", - "question_id": 6801, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004506", - "question_id": 6802, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004709", - "question_id": 6804, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003212", - "question_id": 6805, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007919", - "question_id": 6806, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00006802", - "question_id": 6807, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002089", - "question_id": 6808, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000364", - "question_id": 6809, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005482", - "question_id": 6810, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004474", - "question_id": 6811, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000637", - "question_id": 6812, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003745", - "question_id": 6814, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005861", - "question_id": 6816, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002102", - "question_id": 6817, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007018", - "question_id": 6818, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002286", - "question_id": 6819, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007082", - "question_id": 6820, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007226", - "question_id": 6822, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006561", - "question_id": 6823, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007943", - "question_id": 6826, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003194", - "question_id": 6828, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00005800", - "question_id": 6831, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003678", - "question_id": 6832, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005852", - "question_id": 6836, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001849", - "question_id": 6837, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006761", - "question_id": 6838, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003185", - "question_id": 6839, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003583", - "question_id": 6840, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00004990", - "question_id": 6842, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004960", - "question_id": 6843, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000459", - "question_id": 6846, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"right\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001917", - "question_id": 6847, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006965", - "question_id": 6849, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004792", - "question_id": 6851, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007628", - "question_id": 6852, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00007246", - "question_id": 6855, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004362", - "question_id": 6856, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008607", - "question_id": 6857, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007350", - "question_id": 6858, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008236", - "question_id": 6859, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007673", - "question_id": 6860, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003283", - "question_id": 6861, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008159", - "question_id": 6862, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007662", - "question_id": 6864, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00006342", - "question_id": 6867, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002039", - "question_id": 6869, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007962", - "question_id": 6871, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003956", - "question_id": 6873, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"bassoon\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005021", - "question_id": 6875, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"last\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00006855", - "question_id": 6877, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007167", - "question_id": 6878, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003825", - "question_id": 6879, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007382", - "question_id": 6880, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004319", - "question_id": 6882, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"flute\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004551", - "question_id": 6883, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008355", - "question_id": 6884, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007427", - "question_id": 6885, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005127", - "question_id": 6890, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006104", - "question_id": 6891, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000722", - "question_id": 6893, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003855", - "question_id": 6895, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008590", - "question_id": 6896, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002849", - "question_id": 6898, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002806", - "question_id": 6899, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000898", - "question_id": 6902, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004089", - "question_id": 6904, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006862", - "question_id": 6905, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004422", - "question_id": 6906, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002204", - "question_id": 6907, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004678", - "question_id": 6908, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005804", - "question_id": 6910, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000014", - "question_id": 6913, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004841", - "question_id": 6914, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000405", - "question_id": 6915, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006004", - "question_id": 6919, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002345", - "question_id": 6920, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005107", - "question_id": 6926, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007232", - "question_id": 6929, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008549", - "question_id": 6930, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007299", - "question_id": 6931, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001000", - "question_id": 6932, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005256", - "question_id": 6933, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005524", - "question_id": 6934, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00002558", - "question_id": 6936, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005408", - "question_id": 6938, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006731", - "question_id": 6939, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00005861", - "question_id": 6940, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00001798", - "question_id": 6942, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008846", - "question_id": 6943, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007439", - "question_id": 6945, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008848", - "question_id": 6946, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008926", - "question_id": 6947, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004899", - "question_id": 6948, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000842", - "question_id": 6949, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000658", - "question_id": 6950, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001544", - "question_id": 6951, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005778", - "question_id": 6952, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001483", - "question_id": 6953, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001550", - "question_id": 6954, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00000078", - "question_id": 6955, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00007827", - "question_id": 6956, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000157", - "question_id": 6957, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000976", - "question_id": 6959, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005234", - "question_id": 6960, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001193", - "question_id": 6961, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003107", - "question_id": 6962, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00004386", - "question_id": 6963, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003527", - "question_id": 6966, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000426", - "question_id": 6967, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00004383", - "question_id": 6970, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005639", - "question_id": 6971, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00005047", - "question_id": 6972, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004557", - "question_id": 6974, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00004418", - "question_id": 6978, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003092", - "question_id": 6980, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004408", - "question_id": 6982, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006516", - "question_id": 6984, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002868", - "question_id": 6985, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008692", - "question_id": 6988, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002113", - "question_id": 6989, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007403", - "question_id": 6990, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"cello\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004102", - "question_id": 6994, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003837", - "question_id": 6995, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007177", - "question_id": 6997, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00007650", - "question_id": 6998, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"last\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00001714", - "question_id": 6999, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008582", - "question_id": 7000, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006996", - "question_id": 7002, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002123", - "question_id": 7003, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005194", - "question_id": 7004, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006744", - "question_id": 7007, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003178", - "question_id": 7008, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007610", - "question_id": 7011, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004481", - "question_id": 7012, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001752", - "question_id": 7014, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008004", - "question_id": 7017, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007483", - "question_id": 7018, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008298", - "question_id": 7020, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005437", - "question_id": 7022, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005019", - "question_id": 7023, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004459", - "question_id": 7024, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000968", - "question_id": 7028, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001612", - "question_id": 7033, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001612", - "question_id": 7033, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005602", - "question_id": 7034, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002229", - "question_id": 7035, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001143", - "question_id": 7036, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004830", - "question_id": 7038, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00008211", - "question_id": 7040, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008726", - "question_id": 7044, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003956", - "question_id": 7046, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007901", - "question_id": 7048, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005009", - "question_id": 7049, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004063", - "question_id": 7050, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002951", - "question_id": 7051, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003127", - "question_id": 7052, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005824", - "question_id": 7053, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007898", - "question_id": 7055, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006525", - "question_id": 7056, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007574", - "question_id": 7057, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007078", - "question_id": 7060, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000357", - "question_id": 7063, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00000329", - "question_id": 7064, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000329", - "question_id": 7064, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007718", - "question_id": 7065, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007622", - "question_id": 7066, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008440", - "question_id": 7067, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004858", - "question_id": 7068, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006170", - "question_id": 7070, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004979", - "question_id": 7071, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003521", - "question_id": 7072, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005125", - "question_id": 7073, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001958", - "question_id": 7074, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000797", - "question_id": 7075, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002697", - "question_id": 7078, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008382", - "question_id": 7080, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004159", - "question_id": 7081, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003248", - "question_id": 7082, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001040", - "question_id": 7084, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006881", - "question_id": 7086, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001313", - "question_id": 7087, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008825", - "question_id": 7089, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001488", - "question_id": 7090, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00003365", - "question_id": 7092, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003012", - "question_id": 7093, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004480", - "question_id": 7094, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007316", - "question_id": 7095, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002193", - "question_id": 7096, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007813", - "question_id": 7097, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007394", - "question_id": 7098, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001368", - "question_id": 7099, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003716", - "question_id": 7100, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003454", - "question_id": 7101, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002126", - "question_id": 7103, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008330", - "question_id": 7106, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002067", - "question_id": 7109, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008638", - "question_id": 7110, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006325", - "question_id": 7114, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007845", - "question_id": 7115, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00007200", - "question_id": 7116, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003277", - "question_id": 7117, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005112", - "question_id": 7118, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008154", - "question_id": 7119, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008725", - "question_id": 7121, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007098", - "question_id": 7123, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004445", - "question_id": 7126, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007116", - "question_id": 7127, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000706", - "question_id": 7128, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008669", - "question_id": 7130, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004833", - "question_id": 7134, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002960", - "question_id": 7140, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003506", - "question_id": 7141, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001412", - "question_id": 7142, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002336", - "question_id": 7144, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003616", - "question_id": 7145, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008203", - "question_id": 7146, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002320", - "question_id": 7147, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004651", - "question_id": 7148, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008177", - "question_id": 7150, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006561", - "question_id": 7152, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004659", - "question_id": 7153, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002810", - "question_id": 7154, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008401", - "question_id": 7155, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000083", - "question_id": 7156, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002884", - "question_id": 7157, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008813", - "question_id": 7158, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001685", - "question_id": 7159, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003469", - "question_id": 7160, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00008088", - "question_id": 7161, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006525", - "question_id": 7165, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00005305", - "question_id": 7167, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006155", - "question_id": 7168, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005510", - "question_id": 7169, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003651", - "question_id": 7170, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006001", - "question_id": 7171, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003892", - "question_id": 7172, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001408", - "question_id": 7173, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003054", - "question_id": 7176, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003112", - "question_id": 7177, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002553", - "question_id": 7178, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002013", - "question_id": 7181, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004102", - "question_id": 7183, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002089", - "question_id": 7186, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001164", - "question_id": 7188, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000715", - "question_id": 7189, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000869", - "question_id": 7190, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000120", - "question_id": 7191, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006328", - "question_id": 7192, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006248", - "question_id": 7193, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008482", - "question_id": 7194, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005999", - "question_id": 7196, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005404", - "question_id": 7197, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007087", - "question_id": 7201, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004010", - "question_id": 7202, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004097", - "question_id": 7203, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008878", - "question_id": 7204, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007712", - "question_id": 7205, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004267", - "question_id": 7207, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003449", - "question_id": 7208, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007690", - "question_id": 7210, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003258", - "question_id": 7211, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005542", - "question_id": 7212, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005929", - "question_id": 7215, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003417", - "question_id": 7216, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000420", - "question_id": 7217, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008527", - "question_id": 7218, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000114", - "question_id": 7221, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000717", - "question_id": 7223, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00002714", - "question_id": 7224, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004834", - "question_id": 7226, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006436", - "question_id": 7227, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003664", - "question_id": 7230, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001067", - "question_id": 7232, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001320", - "question_id": 7233, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006079", - "question_id": 7234, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007595", - "question_id": 7235, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00008160", - "question_id": 7236, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004981", - "question_id": 7238, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007991", - "question_id": 7239, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007947", - "question_id": 7240, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008663", - "question_id": 7241, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000094", - "question_id": 7242, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001583", - "question_id": 7243, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004593", - "question_id": 7244, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007263", - "question_id": 7247, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004159", - "question_id": 7249, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002161", - "question_id": 7254, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008024", - "question_id": 7256, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002814", - "question_id": 7258, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008978", - "question_id": 7261, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004423", - "question_id": 7262, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004695", - "question_id": 7263, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007145", - "question_id": 7264, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002101", - "question_id": 7265, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00003462", - "question_id": 7269, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006076", - "question_id": 7271, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001646", - "question_id": 7272, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005538", - "question_id": 7273, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007093", - "question_id": 7274, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007574", - "question_id": 7276, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003372", - "question_id": 7277, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000958", - "question_id": 7279, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001132", - "question_id": 7281, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00007995", - "question_id": 7282, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007929", - "question_id": 7283, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005929", - "question_id": 7286, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008906", - "question_id": 7287, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008179", - "question_id": 7288, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002794", - "question_id": 7289, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008270", - "question_id": 7290, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008558", - "question_id": 7291, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000504", - "question_id": 7292, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007831", - "question_id": 7295, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001195", - "question_id": 7296, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001928", - "question_id": 7298, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003442", - "question_id": 7299, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001314", - "question_id": 7300, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005472", - "question_id": 7301, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006459", - "question_id": 7302, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006061", - "question_id": 7305, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002213", - "question_id": 7306, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006283", - "question_id": 7307, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004884", - "question_id": 7308, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007138", - "question_id": 7309, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006343", - "question_id": 7310, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007114", - "question_id": 7311, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00002709", - "question_id": 7312, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00005908", - "question_id": 7314, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001563", - "question_id": 7315, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006634", - "question_id": 7316, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002602", - "question_id": 7317, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00003985", - "question_id": 7318, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004583", - "question_id": 7319, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00001591", - "question_id": 7321, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008580", - "question_id": 7322, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002069", - "question_id": 7323, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001268", - "question_id": 7324, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007564", - "question_id": 7325, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006970", - "question_id": 7326, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006995", - "question_id": 7328, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006104", - "question_id": 7329, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002768", - "question_id": 7330, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001430", - "question_id": 7331, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000184", - "question_id": 7332, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001127", - "question_id": 7333, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000737", - "question_id": 7335, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002724", - "question_id": 7336, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00003893", - "question_id": 7337, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003782", - "question_id": 7338, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001703", - "question_id": 7339, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000430", - "question_id": 7340, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003651", - "question_id": 7344, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006607", - "question_id": 7345, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005257", - "question_id": 7346, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008886", - "question_id": 7348, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004859", - "question_id": 7351, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008468", - "question_id": 7355, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001999", - "question_id": 7359, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005704", - "question_id": 7360, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004860", - "question_id": 7361, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001933", - "question_id": 7363, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007181", - "question_id": 7364, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002644", - "question_id": 7365, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008944", - "question_id": 7366, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004817", - "question_id": 7371, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00004576", - "question_id": 7372, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007899", - "question_id": 7373, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007294", - "question_id": 7374, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005809", - "question_id": 7375, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004633", - "question_id": 7376, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00003384", - "question_id": 7377, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00001336", - "question_id": 7378, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002877", - "question_id": 7379, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008414", - "question_id": 7380, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006050", - "question_id": 7381, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00005150", - "question_id": 7385, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007708", - "question_id": 7388, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"drum\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001482", - "question_id": 7390, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000143", - "question_id": 7391, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007816", - "question_id": 7392, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000192", - "question_id": 7393, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004533", - "question_id": 7394, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003860", - "question_id": 7395, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007008", - "question_id": 7396, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006631", - "question_id": 7397, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002568", - "question_id": 7400, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000807", - "question_id": 7401, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005498", - "question_id": 7403, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005484", - "question_id": 7404, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00006035", - "question_id": 7406, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004605", - "question_id": 7409, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007271", - "question_id": 7410, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001038", - "question_id": 7411, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004423", - "question_id": 7413, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004842", - "question_id": 7414, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005571", - "question_id": 7416, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008061", - "question_id": 7417, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000946", - "question_id": 7418, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001788", - "question_id": 7423, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00002284", - "question_id": 7424, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003896", - "question_id": 7425, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006500", - "question_id": 7427, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001160", - "question_id": 7428, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004459", - "question_id": 7430, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005089", - "question_id": 7431, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003257", - "question_id": 7432, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001809", - "question_id": 7433, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004551", - "question_id": 7434, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005400", - "question_id": 7435, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005609", - "question_id": 7437, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"trumpet\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008863", - "question_id": 7439, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00000235", - "question_id": 7441, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005954", - "question_id": 7442, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005179", - "question_id": 7443, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00001611", - "question_id": 7444, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005570", - "question_id": 7445, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008379", - "question_id": 7446, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006255", - "question_id": 7449, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003221", - "question_id": 7450, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002250", - "question_id": 7451, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007626", - "question_id": 7455, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006148", - "question_id": 7459, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001003", - "question_id": 7460, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00001809", - "question_id": 7461, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002710", - "question_id": 7462, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00001941", - "question_id": 7463, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005218", - "question_id": 7465, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001621", - "question_id": 7466, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001727", - "question_id": 7467, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00001208", - "question_id": 7469, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001938", - "question_id": 7470, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002366", - "question_id": 7471, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003739", - "question_id": 7472, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008815", - "question_id": 7473, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006319", - "question_id": 7474, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004834", - "question_id": 7475, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004673", - "question_id": 7477, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005727", - "question_id": 7479, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00003149", - "question_id": 7480, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"drum\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007827", - "question_id": 7481, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001978", - "question_id": 7483, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00003024", - "question_id": 7484, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004720", - "question_id": 7485, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000379", - "question_id": 7486, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008212", - "question_id": 7488, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001172", - "question_id": 7489, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005706", - "question_id": 7491, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002760", - "question_id": 7492, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000931", - "question_id": 7493, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004426", - "question_id": 7495, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004344", - "question_id": 7497, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005065", - "question_id": 7498, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007685", - "question_id": 7499, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001698", - "question_id": 7501, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006638", - "question_id": 7502, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003925", - "question_id": 7504, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002231", - "question_id": 7505, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003571", - "question_id": 7507, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008923", - "question_id": 7508, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000671", - "question_id": 7510, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "eight" - }, - { - "video_id": "00003639", - "question_id": 7512, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002993", - "question_id": 7513, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000414", - "question_id": 7514, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00002027", - "question_id": 7515, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002580", - "question_id": 7519, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007011", - "question_id": 7522, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006727", - "question_id": 7523, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004291", - "question_id": 7524, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004599", - "question_id": 7525, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004938", - "question_id": 7527, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001603", - "question_id": 7529, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"tuba\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005251", - "question_id": 7530, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007682", - "question_id": 7531, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007207", - "question_id": 7534, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003391", - "question_id": 7536, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006441", - "question_id": 7538, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003066", - "question_id": 7539, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00004793", - "question_id": 7541, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003060", - "question_id": 7542, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00005789", - "question_id": 7543, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005650", - "question_id": 7544, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008077", - "question_id": 7545, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004792", - "question_id": 7548, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007979", - "question_id": 7549, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001733", - "question_id": 7550, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007877", - "question_id": 7551, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006544", - "question_id": 7552, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004463", - "question_id": 7553, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00005088", - "question_id": 7554, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005496", - "question_id": 7555, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00005657", - "question_id": 7556, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007679", - "question_id": 7557, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005185", - "question_id": 7558, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006923", - "question_id": 7559, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002231", - "question_id": 7560, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00000954", - "question_id": 7562, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004943", - "question_id": 7563, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003588", - "question_id": 7565, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001428", - "question_id": 7566, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006682", - "question_id": 7568, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00004392", - "question_id": 7569, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"right\", \"bassoon\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005460", - "question_id": 7570, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000597", - "question_id": 7571, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00000893", - "question_id": 7572, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004568", - "question_id": 7573, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007211", - "question_id": 7574, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002163", - "question_id": 7575, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00003182", - "question_id": 7576, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001281", - "question_id": 7578, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001612", - "question_id": 7579, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006486", - "question_id": 7580, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00008952", - "question_id": 7581, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008095", - "question_id": 7582, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003128", - "question_id": 7583, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008150", - "question_id": 7587, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00004535", - "question_id": 7588, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003620", - "question_id": 7589, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005503", - "question_id": 7590, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003728", - "question_id": 7591, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005773", - "question_id": 7592, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00007304", - "question_id": 7593, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007522", - "question_id": 7594, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006807", - "question_id": 7595, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003841", - "question_id": 7596, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004910", - "question_id": 7597, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008003", - "question_id": 7600, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007360", - "question_id": 7602, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001892", - "question_id": 7606, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000753", - "question_id": 7607, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002857", - "question_id": 7609, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00006179", - "question_id": 7610, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001889", - "question_id": 7611, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006596", - "question_id": 7612, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006693", - "question_id": 7613, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003997", - "question_id": 7614, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003940", - "question_id": 7615, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003263", - "question_id": 7617, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006790", - "question_id": 7618, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006121", - "question_id": 7619, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008262", - "question_id": 7623, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008953", - "question_id": 7625, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007072", - "question_id": 7626, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"middle\", \"drum\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008542", - "question_id": 7629, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008360", - "question_id": 7630, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00005920", - "question_id": 7632, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002998", - "question_id": 7633, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004867", - "question_id": 7634, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00005083", - "question_id": 7635, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00005402", - "question_id": 7636, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002865", - "question_id": 7637, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005674", - "question_id": 7638, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002102", - "question_id": 7639, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000960", - "question_id": 7640, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001757", - "question_id": 7642, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003208", - "question_id": 7643, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008144", - "question_id": 7644, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004924", - "question_id": 7645, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005331", - "question_id": 7647, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003889", - "question_id": 7650, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008076", - "question_id": 7651, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008392", - "question_id": 7653, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005096", - "question_id": 7654, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001094", - "question_id": 7655, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006999", - "question_id": 7657, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001059", - "question_id": 7658, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004813", - "question_id": 7659, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003888", - "question_id": 7660, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00004478", - "question_id": 7661, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00005244", - "question_id": 7663, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000155", - "question_id": 7664, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000376", - "question_id": 7665, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007552", - "question_id": 7666, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006109", - "question_id": 7667, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "more than ten" - }, - { - "video_id": "00005943", - "question_id": 7671, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00002231", - "question_id": 7672, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005324", - "question_id": 7673, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00004676", - "question_id": 7674, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007999", - "question_id": 7675, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00004741", - "question_id": 7676, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001036", - "question_id": 7678, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007071", - "question_id": 7679, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005219", - "question_id": 7680, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003071", - "question_id": 7682, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002840", - "question_id": 7683, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001111", - "question_id": 7685, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006986", - "question_id": 7686, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007617", - "question_id": 7687, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003246", - "question_id": 7689, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003377", - "question_id": 7690, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005826", - "question_id": 7692, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005469", - "question_id": 7693, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00006052", - "question_id": 7695, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005855", - "question_id": 7696, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002782", - "question_id": 7699, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008710", - "question_id": 7700, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00000969", - "question_id": 7701, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006445", - "question_id": 7705, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006287", - "question_id": 7708, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008531", - "question_id": 7709, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00006844", - "question_id": 7710, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003643", - "question_id": 7711, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008449", - "question_id": 7714, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000475", - "question_id": 7717, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007936", - "question_id": 7720, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002068", - "question_id": 7721, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008902", - "question_id": 7722, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001030", - "question_id": 7723, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004035", - "question_id": 7724, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005019", - "question_id": 7727, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003632", - "question_id": 7728, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005692", - "question_id": 7729, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003367", - "question_id": 7730, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000090", - "question_id": 7733, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003979", - "question_id": 7734, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00005604", - "question_id": 7735, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00004400", - "question_id": 7736, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000359", - "question_id": 7737, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001979", - "question_id": 7739, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008956", - "question_id": 7741, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006901", - "question_id": 7743, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000269", - "question_id": 7744, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008227", - "question_id": 7746, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008464", - "question_id": 7747, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007182", - "question_id": 7748, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001246", - "question_id": 7749, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00001614", - "question_id": 7751, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000049", - "question_id": 7752, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00008849", - "question_id": 7754, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003239", - "question_id": 7755, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005981", - "question_id": 7756, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008965", - "question_id": 7758, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007888", - "question_id": 7759, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000359", - "question_id": 7760, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000930", - "question_id": 7761, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002344", - "question_id": 7762, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007241", - "question_id": 7764, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007098", - "question_id": 7769, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00003427", - "question_id": 7770, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003035", - "question_id": 7771, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00002088", - "question_id": 7775, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002648", - "question_id": 7776, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006402", - "question_id": 7777, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000724", - "question_id": 7780, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005267", - "question_id": 7781, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003763", - "question_id": 7782, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005694", - "question_id": 7785, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000603", - "question_id": 7786, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007882", - "question_id": 7787, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008480", - "question_id": 7789, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006408", - "question_id": 7790, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003946", - "question_id": 7793, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002148", - "question_id": 7795, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00000014", - "question_id": 7796, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002034", - "question_id": 7797, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002620", - "question_id": 7800, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00008394", - "question_id": 7801, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005733", - "question_id": 7802, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005169", - "question_id": 7804, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004520", - "question_id": 7805, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001187", - "question_id": 7807, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006463", - "question_id": 7808, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003947", - "question_id": 7811, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002919", - "question_id": 7813, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004311", - "question_id": 7815, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008175", - "question_id": 7817, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003523", - "question_id": 7818, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00001755", - "question_id": 7819, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004505", - "question_id": 7820, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00001138", - "question_id": 7822, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004899", - "question_id": 7824, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007521", - "question_id": 7827, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000305", - "question_id": 7830, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006541", - "question_id": 7831, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004803", - "question_id": 7832, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000511", - "question_id": 7833, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004743", - "question_id": 7834, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006211", - "question_id": 7836, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008315", - "question_id": 7837, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001703", - "question_id": 7840, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001703", - "question_id": 7840, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005800", - "question_id": 7841, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003888", - "question_id": 7842, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004095", - "question_id": 7844, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001029", - "question_id": 7845, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00008077", - "question_id": 7846, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00004882", - "question_id": 7847, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004140", - "question_id": 7848, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002593", - "question_id": 7850, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00006008", - "question_id": 7851, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007228", - "question_id": 7852, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001422", - "question_id": 7853, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007153", - "question_id": 7856, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005450", - "question_id": 7857, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008029", - "question_id": 7860, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002721", - "question_id": 7861, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00000418", - "question_id": 7862, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00007861", - "question_id": 7863, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000821", - "question_id": 7868, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004308", - "question_id": 7869, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005322", - "question_id": 7870, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00001082", - "question_id": 7871, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002716", - "question_id": 7873, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008921", - "question_id": 7876, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00003577", - "question_id": 7877, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00004713", - "question_id": 7879, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002313", - "question_id": 7882, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006896", - "question_id": 7883, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000427", - "question_id": 7884, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008515", - "question_id": 7885, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008469", - "question_id": 7886, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008915", - "question_id": 7887, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005818", - "question_id": 7888, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"congas\", \"right\", \"piano\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001494", - "question_id": 7889, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006387", - "question_id": 7892, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004048", - "question_id": 7894, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006402", - "question_id": 7896, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00005626", - "question_id": 7899, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001799", - "question_id": 7900, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00000972", - "question_id": 7901, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006729", - "question_id": 7902, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005544", - "question_id": 7904, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008863", - "question_id": 7906, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007971", - "question_id": 7908, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002811", - "question_id": 7910, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00000165", - "question_id": 7911, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00007970", - "question_id": 7912, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"banjo\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004277", - "question_id": 7913, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bagpipe\", \"right\", \"electric_bass\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004273", - "question_id": 7914, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006186", - "question_id": 7915, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004972", - "question_id": 7916, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006715", - "question_id": 7918, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006038", - "question_id": 7919, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001582", - "question_id": 7920, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008147", - "question_id": 7921, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003412", - "question_id": 7922, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002023", - "question_id": 7923, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007624", - "question_id": 7924, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00000588", - "question_id": 7926, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004730", - "question_id": 7928, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004684", - "question_id": 7930, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008432", - "question_id": 7931, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004793", - "question_id": 7932, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002098", - "question_id": 7933, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003149", - "question_id": 7934, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00002390", - "question_id": 7937, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00004812", - "question_id": 7938, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008124", - "question_id": 7940, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000712", - "question_id": 7941, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005863", - "question_id": 7942, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00003265", - "question_id": 7943, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"tuba\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00005327", - "question_id": 7944, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002803", - "question_id": 7946, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007699", - "question_id": 7947, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001922", - "question_id": 7948, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006806", - "question_id": 7950, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003947", - "question_id": 7954, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005138", - "question_id": 7955, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005187", - "question_id": 7956, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006670", - "question_id": 7957, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00005617", - "question_id": 7959, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003317", - "question_id": 7962, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007122", - "question_id": 7963, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00000191", - "question_id": 7965, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "eight" - }, - { - "video_id": "00006163", - "question_id": 7967, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008306", - "question_id": 7968, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007340", - "question_id": 7969, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00008948", - "question_id": 7970, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00004913", - "question_id": 7971, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00008326", - "question_id": 7974, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007744", - "question_id": 7975, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008495", - "question_id": 7976, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003851", - "question_id": 7977, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002060", - "question_id": 7978, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001165", - "question_id": 7979, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007104", - "question_id": 7980, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00007672", - "question_id": 7981, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002718", - "question_id": 7982, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004994", - "question_id": 7984, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007479", - "question_id": 7986, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006115", - "question_id": 7987, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00004686", - "question_id": 7988, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000625", - "question_id": 7989, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000128", - "question_id": 7990, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000657", - "question_id": 7991, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001299", - "question_id": 7992, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00007165", - "question_id": 7994, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00004011", - "question_id": 7995, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00007163", - "question_id": 7997, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003417", - "question_id": 8000, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007436", - "question_id": 8002, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008972", - "question_id": 8005, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004354", - "question_id": 8006, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00005170", - "question_id": 8009, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005628", - "question_id": 8012, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007649", - "question_id": 8013, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008636", - "question_id": 8015, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008481", - "question_id": 8017, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006965", - "question_id": 8018, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007740", - "question_id": 8021, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007340", - "question_id": 8022, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008670", - "question_id": 8025, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00005161", - "question_id": 8027, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008895", - "question_id": 8028, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005793", - "question_id": 8029, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00002330", - "question_id": 8032, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004795", - "question_id": 8034, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006160", - "question_id": 8036, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005444", - "question_id": 8038, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000687", - "question_id": 8039, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00001360", - "question_id": 8040, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003104", - "question_id": 8041, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002819", - "question_id": 8042, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00002746", - "question_id": 8043, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001337", - "question_id": 8044, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003761", - "question_id": 8045, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00004316", - "question_id": 8047, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003828", - "question_id": 8048, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007723", - "question_id": 8049, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004846", - "question_id": 8050, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00003487", - "question_id": 8051, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00003388", - "question_id": 8052, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003567", - "question_id": 8055, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000934", - "question_id": 8056, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001491", - "question_id": 8057, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00005625", - "question_id": 8060, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008298", - "question_id": 8061, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008267", - "question_id": 8064, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008267", - "question_id": 8064, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000520", - "question_id": 8065, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004056", - "question_id": 8068, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00002843", - "question_id": 8069, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004343", - "question_id": 8070, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00003407", - "question_id": 8071, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006592", - "question_id": 8072, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004775", - "question_id": 8073, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008424", - "question_id": 8074, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001391", - "question_id": 8075, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001060", - "question_id": 8076, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004418", - "question_id": 8078, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005059", - "question_id": 8079, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00002229", - "question_id": 8080, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007830", - "question_id": 8081, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006290", - "question_id": 8082, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00007736", - "question_id": 8083, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004186", - "question_id": 8084, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003976", - "question_id": 8085, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006726", - "question_id": 8086, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001593", - "question_id": 8089, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000975", - "question_id": 8091, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000794", - "question_id": 8094, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003077", - "question_id": 8099, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008441", - "question_id": 8101, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000923", - "question_id": 8103, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005757", - "question_id": 8106, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008350", - "question_id": 8107, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007427", - "question_id": 8108, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008369", - "question_id": 8109, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000678", - "question_id": 8111, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004010", - "question_id": 8112, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003312", - "question_id": 8113, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006552", - "question_id": 8114, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003158", - "question_id": 8116, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007008", - "question_id": 8117, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006136", - "question_id": 8119, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00005932", - "question_id": 8121, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002305", - "question_id": 8123, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008581", - "question_id": 8124, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005023", - "question_id": 8125, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003143", - "question_id": 8127, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008007", - "question_id": 8128, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008478", - "question_id": 8129, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006245", - "question_id": 8130, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00003166", - "question_id": 8131, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000385", - "question_id": 8133, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007198", - "question_id": 8134, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00000586", - "question_id": 8135, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006149", - "question_id": 8136, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007303", - "question_id": 8140, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00001557", - "question_id": 8142, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00007590", - "question_id": 8143, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007050", - "question_id": 8144, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001858", - "question_id": 8145, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001528", - "question_id": 8146, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008032", - "question_id": 8147, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003438", - "question_id": 8148, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00003361", - "question_id": 8149, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007699", - "question_id": 8150, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000211", - "question_id": 8151, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00003924", - "question_id": 8152, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00004466", - "question_id": 8155, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008477", - "question_id": 8157, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001330", - "question_id": 8159, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004466", - "question_id": 8161, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008686", - "question_id": 8162, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002718", - "question_id": 8164, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00000416", - "question_id": 8165, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008966", - "question_id": 8167, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008966", - "question_id": 8167, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006933", - "question_id": 8168, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005465", - "question_id": 8170, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001334", - "question_id": 8171, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"tuba\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00003684", - "question_id": 8172, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00000543", - "question_id": 8173, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002958", - "question_id": 8174, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001064", - "question_id": 8177, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004121", - "question_id": 8178, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005748", - "question_id": 8179, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000552", - "question_id": 8181, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003995", - "question_id": 8183, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007712", - "question_id": 8185, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001950", - "question_id": 8186, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005007", - "question_id": 8187, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006333", - "question_id": 8188, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002377", - "question_id": 8190, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002631", - "question_id": 8191, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003923", - "question_id": 8193, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003671", - "question_id": 8194, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005838", - "question_id": 8196, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002530", - "question_id": 8199, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00006149", - "question_id": 8201, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007099", - "question_id": 8202, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000950", - "question_id": 8204, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006967", - "question_id": 8208, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000593", - "question_id": 8211, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008551", - "question_id": 8212, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000277", - "question_id": 8215, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007801", - "question_id": 8217, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003834", - "question_id": 8219, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008719", - "question_id": 8223, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003698", - "question_id": 8225, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002406", - "question_id": 8227, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001638", - "question_id": 8228, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002084", - "question_id": 8229, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003518", - "question_id": 8230, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003086", - "question_id": 8231, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000877", - "question_id": 8235, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006812", - "question_id": 8236, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006886", - "question_id": 8239, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00005811", - "question_id": 8240, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008631", - "question_id": 8241, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006538", - "question_id": 8243, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001351", - "question_id": 8244, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00004849", - "question_id": 8246, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000668", - "question_id": 8247, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00001394", - "question_id": 8248, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006307", - "question_id": 8249, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00001586", - "question_id": 8250, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008708", - "question_id": 8253, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004533", - "question_id": 8256, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001159", - "question_id": 8259, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00004919", - "question_id": 8261, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008444", - "question_id": 8262, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007849", - "question_id": 8263, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00000133", - "question_id": 8264, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00007508", - "question_id": 8265, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001173", - "question_id": 8267, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00007614", - "question_id": 8268, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007002", - "question_id": 8271, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"fourth\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00004127", - "question_id": 8272, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007818", - "question_id": 8273, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004318", - "question_id": 8274, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003953", - "question_id": 8275, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004192", - "question_id": 8276, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00000866", - "question_id": 8277, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00002042", - "question_id": 8278, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006206", - "question_id": 8280, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000235", - "question_id": 8281, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004942", - "question_id": 8286, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002704", - "question_id": 8287, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005152", - "question_id": 8288, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003730", - "question_id": 8289, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003755", - "question_id": 8290, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007430", - "question_id": 8291, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006939", - "question_id": 8293, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001718", - "question_id": 8295, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003438", - "question_id": 8296, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008100", - "question_id": 8297, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003110", - "question_id": 8298, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005156", - "question_id": 8300, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002664", - "question_id": 8301, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007763", - "question_id": 8302, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002671", - "question_id": 8303, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001844", - "question_id": 8305, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002963", - "question_id": 8306, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000750", - "question_id": 8308, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007325", - "question_id": 8309, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004081", - "question_id": 8311, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008831", - "question_id": 8312, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008356", - "question_id": 8313, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007764", - "question_id": 8314, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00002434", - "question_id": 8316, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007510", - "question_id": 8317, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008901", - "question_id": 8319, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004166", - "question_id": 8320, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007305", - "question_id": 8321, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00008825", - "question_id": 8322, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005606", - "question_id": 8323, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002470", - "question_id": 8324, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007824", - "question_id": 8325, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00002596", - "question_id": 8327, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00004442", - "question_id": 8328, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"drum\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003083", - "question_id": 8329, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007675", - "question_id": 8330, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00000437", - "question_id": 8332, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003193", - "question_id": 8333, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008399", - "question_id": 8336, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001684", - "question_id": 8337, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006862", - "question_id": 8338, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004014", - "question_id": 8339, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003389", - "question_id": 8340, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005237", - "question_id": 8341, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006397", - "question_id": 8342, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00007912", - "question_id": 8344, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001802", - "question_id": 8346, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00005176", - "question_id": 8349, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003540", - "question_id": 8350, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000275", - "question_id": 8351, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00005510", - "question_id": 8352, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008294", - "question_id": 8353, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008294", - "question_id": 8353, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008304", - "question_id": 8354, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001862", - "question_id": 8362, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006882", - "question_id": 8366, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007875", - "question_id": 8367, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008006", - "question_id": 8368, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004485", - "question_id": 8369, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001185", - "question_id": 8370, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001022", - "question_id": 8373, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004588", - "question_id": 8375, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00000781", - "question_id": 8377, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002302", - "question_id": 8379, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005696", - "question_id": 8380, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005129", - "question_id": 8382, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005932", - "question_id": 8383, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00007727", - "question_id": 8385, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002369", - "question_id": 8386, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"acoustic_guitar\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001701", - "question_id": 8387, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004750", - "question_id": 8388, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001596", - "question_id": 8389, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"middle\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006924", - "question_id": 8390, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005845", - "question_id": 8391, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003786", - "question_id": 8392, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002437", - "question_id": 8393, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003496", - "question_id": 8394, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006823", - "question_id": 8395, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006708", - "question_id": 8396, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001732", - "question_id": 8397, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005304", - "question_id": 8399, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006967", - "question_id": 8403, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004493", - "question_id": 8404, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003835", - "question_id": 8405, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001790", - "question_id": 8407, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000906", - "question_id": 8408, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006531", - "question_id": 8409, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007173", - "question_id": 8410, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00004494", - "question_id": 8411, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002406", - "question_id": 8412, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"left\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008205", - "question_id": 8413, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00008851", - "question_id": 8414, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002184", - "question_id": 8415, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002913", - "question_id": 8416, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005081", - "question_id": 8417, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00000436", - "question_id": 8418, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00002623", - "question_id": 8420, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000742", - "question_id": 8421, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002370", - "question_id": 8422, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"erhu\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008213", - "question_id": 8423, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"erhu\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000873", - "question_id": 8424, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00007238", - "question_id": 8426, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004729", - "question_id": 8427, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008919", - "question_id": 8429, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00003933", - "question_id": 8430, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008056", - "question_id": 8431, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008727", - "question_id": 8437, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001142", - "question_id": 8442, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00003508", - "question_id": 8443, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008865", - "question_id": 8444, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00007008", - "question_id": 8446, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007794", - "question_id": 8447, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00005610", - "question_id": 8449, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00008082", - "question_id": 8450, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002530", - "question_id": 8451, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000833", - "question_id": 8452, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007519", - "question_id": 8453, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001596", - "question_id": 8454, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008328", - "question_id": 8456, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002393", - "question_id": 8457, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002067", - "question_id": 8458, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008770", - "question_id": 8459, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008565", - "question_id": 8460, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005326", - "question_id": 8461, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005001", - "question_id": 8463, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004339", - "question_id": 8464, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001937", - "question_id": 8465, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00004221", - "question_id": 8469, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002184", - "question_id": 8472, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004093", - "question_id": 8473, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003710", - "question_id": 8475, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00007818", - "question_id": 8476, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007990", - "question_id": 8477, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00005996", - "question_id": 8480, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00005932", - "question_id": 8481, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000459", - "question_id": 8483, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00003935", - "question_id": 8485, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003390", - "question_id": 8486, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007619", - "question_id": 8488, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003855", - "question_id": 8491, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008381", - "question_id": 8494, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004252", - "question_id": 8495, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00001808", - "question_id": 8496, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"fifth\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00003326", - "question_id": 8497, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004685", - "question_id": 8503, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005592", - "question_id": 8506, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006125", - "question_id": 8507, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004463", - "question_id": 8509, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003634", - "question_id": 8510, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002808", - "question_id": 8511, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006259", - "question_id": 8512, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004120", - "question_id": 8513, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003652", - "question_id": 8515, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00002770", - "question_id": 8516, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003968", - "question_id": 8517, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003311", - "question_id": 8518, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001504", - "question_id": 8519, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00005022", - "question_id": 8520, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007554", - "question_id": 8521, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"electric_bass\", \"right\", \"drum\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002991", - "question_id": 8524, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000273", - "question_id": 8525, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001718", - "question_id": 8528, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00004768", - "question_id": 8529, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004780", - "question_id": 8530, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000648", - "question_id": 8532, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001775", - "question_id": 8533, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008019", - "question_id": 8536, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006124", - "question_id": 8537, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004981", - "question_id": 8538, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"electric_bass\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007654", - "question_id": 8540, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001629", - "question_id": 8542, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002771", - "question_id": 8544, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"bassoon\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005877", - "question_id": 8545, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007377", - "question_id": 8546, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005334", - "question_id": 8548, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005207", - "question_id": 8549, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007292", - "question_id": 8550, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001693", - "question_id": 8551, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007691", - "question_id": 8552, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008765", - "question_id": 8553, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008467", - "question_id": 8555, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005338", - "question_id": 8556, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005416", - "question_id": 8557, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004430", - "question_id": 8558, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005873", - "question_id": 8559, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008446", - "question_id": 8560, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008731", - "question_id": 8562, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008004", - "question_id": 8565, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001312", - "question_id": 8566, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006853", - "question_id": 8567, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002540", - "question_id": 8568, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00001422", - "question_id": 8569, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007044", - "question_id": 8570, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006517", - "question_id": 8573, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008289", - "question_id": 8574, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001392", - "question_id": 8575, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003784", - "question_id": 8576, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004021", - "question_id": 8577, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007232", - "question_id": 8579, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"congas\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008334", - "question_id": 8580, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004106", - "question_id": 8581, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008949", - "question_id": 8582, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00008233", - "question_id": 8583, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002111", - "question_id": 8584, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003762", - "question_id": 8588, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002478", - "question_id": 8589, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000374", - "question_id": 8590, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bagpipe\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002098", - "question_id": 8592, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006804", - "question_id": 8593, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008362", - "question_id": 8594, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007217", - "question_id": 8595, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001756", - "question_id": 8597, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00002263", - "question_id": 8599, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003620", - "question_id": 8600, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000707", - "question_id": 8602, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006900", - "question_id": 8603, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007369", - "question_id": 8605, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005549", - "question_id": 8606, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008515", - "question_id": 8608, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007636", - "question_id": 8609, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"pipa\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004277", - "question_id": 8610, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006250", - "question_id": 8611, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"drum\", \"middle\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000873", - "question_id": 8612, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002891", - "question_id": 8613, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003641", - "question_id": 8615, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005251", - "question_id": 8616, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008060", - "question_id": 8617, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"tuba\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000325", - "question_id": 8619, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007244", - "question_id": 8620, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003089", - "question_id": 8621, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"tuba\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005487", - "question_id": 8622, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001842", - "question_id": 8626, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007078", - "question_id": 8629, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002650", - "question_id": 8631, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004079", - "question_id": 8632, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00000977", - "question_id": 8633, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006264", - "question_id": 8634, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004126", - "question_id": 8635, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008547", - "question_id": 8636, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001959", - "question_id": 8638, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006710", - "question_id": 8640, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003481", - "question_id": 8641, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000725", - "question_id": 8643, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"middle\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008973", - "question_id": 8645, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00005559", - "question_id": 8646, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008373", - "question_id": 8647, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00002152", - "question_id": 8650, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004162", - "question_id": 8651, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008441", - "question_id": 8652, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001767", - "question_id": 8654, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006137", - "question_id": 8655, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005673", - "question_id": 8658, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006144", - "question_id": 8659, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003701", - "question_id": 8660, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000795", - "question_id": 8661, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008244", - "question_id": 8662, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005173", - "question_id": 8665, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006634", - "question_id": 8666, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008376", - "question_id": 8667, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00008045", - "question_id": 8668, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003413", - "question_id": 8670, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"congas\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006468", - "question_id": 8672, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002573", - "question_id": 8674, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001935", - "question_id": 8677, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002721", - "question_id": 8678, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002620", - "question_id": 8679, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003980", - "question_id": 8680, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002486", - "question_id": 8681, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006988", - "question_id": 8684, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004179", - "question_id": 8685, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000204", - "question_id": 8686, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001094", - "question_id": 8687, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007966", - "question_id": 8690, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00004564", - "question_id": 8691, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000495", - "question_id": 8692, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003243", - "question_id": 8693, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"drum\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002520", - "question_id": 8694, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000771", - "question_id": 8695, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00001101", - "question_id": 8696, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007019", - "question_id": 8697, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000618", - "question_id": 8700, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007133", - "question_id": 8701, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006595", - "question_id": 8703, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003504", - "question_id": 8704, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004018", - "question_id": 8705, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005141", - "question_id": 8706, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00004903", - "question_id": 8707, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006266", - "question_id": 8710, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003310", - "question_id": 8719, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001376", - "question_id": 8720, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00003375", - "question_id": 8721, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006507", - "question_id": 8722, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002151", - "question_id": 8723, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000279", - "question_id": 8724, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002165", - "question_id": 8725, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005980", - "question_id": 8727, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006584", - "question_id": 8728, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00000773", - "question_id": 8729, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005853", - "question_id": 8731, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007875", - "question_id": 8732, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004524", - "question_id": 8735, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008111", - "question_id": 8736, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002025", - "question_id": 8737, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007094", - "question_id": 8740, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003518", - "question_id": 8742, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006869", - "question_id": 8743, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000018", - "question_id": 8745, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003673", - "question_id": 8746, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004098", - "question_id": 8747, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006620", - "question_id": 8750, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004721", - "question_id": 8751, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "ten" - }, - { - "video_id": "00004722", - "question_id": 8752, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002849", - "question_id": 8753, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008390", - "question_id": 8755, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"acoustic_guitar\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003852", - "question_id": 8757, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00001637", - "question_id": 8758, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001692", - "question_id": 8759, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002937", - "question_id": 8760, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002578", - "question_id": 8761, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007400", - "question_id": 8763, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007619", - "question_id": 8764, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000739", - "question_id": 8766, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007616", - "question_id": 8767, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00008762", - "question_id": 8768, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008657", - "question_id": 8769, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001433", - "question_id": 8770, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008213", - "question_id": 8771, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00007569", - "question_id": 8773, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006352", - "question_id": 8774, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008860", - "question_id": 8775, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002860", - "question_id": 8776, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007990", - "question_id": 8777, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007436", - "question_id": 8778, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008843", - "question_id": 8779, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008257", - "question_id": 8780, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008150", - "question_id": 8781, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004457", - "question_id": 8782, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002686", - "question_id": 8783, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002408", - "question_id": 8784, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000733", - "question_id": 8786, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006152", - "question_id": 8787, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004686", - "question_id": 8788, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006968", - "question_id": 8789, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002636", - "question_id": 8790, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006231", - "question_id": 8795, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005369", - "question_id": 8797, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005570", - "question_id": 8798, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006860", - "question_id": 8800, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001903", - "question_id": 8803, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00007653", - "question_id": 8804, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006695", - "question_id": 8805, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000592", - "question_id": 8806, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00001490", - "question_id": 8807, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00001848", - "question_id": 8809, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008748", - "question_id": 8810, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006737", - "question_id": 8814, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004538", - "question_id": 8816, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008686", - "question_id": 8817, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000588", - "question_id": 8818, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006705", - "question_id": 8819, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005884", - "question_id": 8821, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005850", - "question_id": 8824, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00005465", - "question_id": 8825, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00003164", - "question_id": 8826, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00006552", - "question_id": 8827, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004787", - "question_id": 8828, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001516", - "question_id": 8830, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004885", - "question_id": 8832, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000156", - "question_id": 8834, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007722", - "question_id": 8835, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002032", - "question_id": 8837, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001215", - "question_id": 8840, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004820", - "question_id": 8841, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007122", - "question_id": 8843, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004075", - "question_id": 8844, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000675", - "question_id": 8845, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001083", - "question_id": 8847, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006916", - "question_id": 8848, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00008803", - "question_id": 8849, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001385", - "question_id": 8851, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004821", - "question_id": 8852, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000999", - "question_id": 8853, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000090", - "question_id": 8854, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000957", - "question_id": 8855, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004955", - "question_id": 8857, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000378", - "question_id": 8858, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003077", - "question_id": 8859, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007922", - "question_id": 8860, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002766", - "question_id": 8861, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004572", - "question_id": 8862, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000683", - "question_id": 8863, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008799", - "question_id": 8865, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005107", - "question_id": 8866, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008275", - "question_id": 8867, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00007629", - "question_id": 8868, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00002231", - "question_id": 8869, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008425", - "question_id": 8870, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001512", - "question_id": 8871, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006633", - "question_id": 8873, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000715", - "question_id": 8874, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007795", - "question_id": 8876, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007295", - "question_id": 8878, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001555", - "question_id": 8879, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002652", - "question_id": 8881, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001525", - "question_id": 8882, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004131", - "question_id": 8884, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003600", - "question_id": 8887, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003725", - "question_id": 8888, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005542", - "question_id": 8890, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007495", - "question_id": 8891, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000714", - "question_id": 8894, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00002756", - "question_id": 8895, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005510", - "question_id": 8896, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006718", - "question_id": 8897, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005216", - "question_id": 8898, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002379", - "question_id": 8899, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003288", - "question_id": 8901, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001240", - "question_id": 8902, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00006128", - "question_id": 8903, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007823", - "question_id": 8904, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005485", - "question_id": 8905, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003976", - "question_id": 8907, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003166", - "question_id": 8908, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008106", - "question_id": 8909, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005039", - "question_id": 8913, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003490", - "question_id": 8914, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004342", - "question_id": 8916, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006610", - "question_id": 8917, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001278", - "question_id": 8918, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005216", - "question_id": 8919, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003561", - "question_id": 8921, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002766", - "question_id": 8922, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001507", - "question_id": 8923, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005471", - "question_id": 8924, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003825", - "question_id": 8925, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005277", - "question_id": 8930, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006494", - "question_id": 8933, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00008956", - "question_id": 8936, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002259", - "question_id": 8938, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004908", - "question_id": 8939, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006223", - "question_id": 8941, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001527", - "question_id": 8942, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008550", - "question_id": 8944, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007293", - "question_id": 8945, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002372", - "question_id": 8946, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005443", - "question_id": 8948, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002205", - "question_id": 8949, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001787", - "question_id": 8950, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005076", - "question_id": 8951, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003912", - "question_id": 8952, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006086", - "question_id": 8953, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002535", - "question_id": 8954, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001511", - "question_id": 8956, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00000648", - "question_id": 8959, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00000806", - "question_id": 8960, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00006530", - "question_id": 8961, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002744", - "question_id": 8963, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00002433", - "question_id": 8965, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006581", - "question_id": 8966, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007422", - "question_id": 8968, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005834", - "question_id": 8970, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004109", - "question_id": 8971, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00003205", - "question_id": 8973, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003054", - "question_id": 8974, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000097", - "question_id": 8975, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00005010", - "question_id": 8976, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004895", - "question_id": 8980, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007986", - "question_id": 8981, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008790", - "question_id": 8982, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005063", - "question_id": 8984, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003680", - "question_id": 8987, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001412", - "question_id": 8990, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004482", - "question_id": 8991, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001672", - "question_id": 8992, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"right\", \"erhu\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002765", - "question_id": 8993, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00003233", - "question_id": 8994, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000150", - "question_id": 8996, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006948", - "question_id": 8999, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"right\", \"violin\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004183", - "question_id": 9000, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001538", - "question_id": 9002, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008067", - "question_id": 9003, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006205", - "question_id": 9006, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004199", - "question_id": 9007, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006987", - "question_id": 9008, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000563", - "question_id": 9010, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007539", - "question_id": 9012, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001136", - "question_id": 9014, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002468", - "question_id": 9015, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008018", - "question_id": 9017, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008711", - "question_id": 9019, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003374", - "question_id": 9020, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00001186", - "question_id": 9024, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000232", - "question_id": 9025, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00000591", - "question_id": 9026, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006272", - "question_id": 9027, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005784", - "question_id": 9030, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001975", - "question_id": 9033, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005312", - "question_id": 9036, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005125", - "question_id": 9038, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003509", - "question_id": 9039, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00004728", - "question_id": 9041, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004575", - "question_id": 9043, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002908", - "question_id": 9044, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000740", - "question_id": 9046, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005172", - "question_id": 9047, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004672", - "question_id": 9049, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004719", - "question_id": 9050, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001577", - "question_id": 9051, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003458", - "question_id": 9052, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003371", - "question_id": 9053, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003260", - "question_id": 9054, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008952", - "question_id": 9056, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002435", - "question_id": 9057, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003808", - "question_id": 9058, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007082", - "question_id": 9059, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006234", - "question_id": 9060, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002466", - "question_id": 9061, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008512", - "question_id": 9062, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00006225", - "question_id": 9063, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001002", - "question_id": 9064, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003486", - "question_id": 9066, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000059", - "question_id": 9067, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002465", - "question_id": 9068, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00005856", - "question_id": 9069, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005219", - "question_id": 9070, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007555", - "question_id": 9071, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00004409", - "question_id": 9074, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002634", - "question_id": 9077, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003720", - "question_id": 9078, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006877", - "question_id": 9079, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001166", - "question_id": 9080, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003889", - "question_id": 9082, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002991", - "question_id": 9083, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004089", - "question_id": 9084, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00002016", - "question_id": 9085, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001101", - "question_id": 9086, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008017", - "question_id": 9087, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001919", - "question_id": 9088, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00002515", - "question_id": 9090, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008205", - "question_id": 9092, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003067", - "question_id": 9093, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008288", - "question_id": 9094, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005599", - "question_id": 9096, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00002660", - "question_id": 9097, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000909", - "question_id": 9100, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001972", - "question_id": 9101, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008895", - "question_id": 9102, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000171", - "question_id": 9103, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003480", - "question_id": 9104, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002208", - "question_id": 9108, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003412", - "question_id": 9109, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001773", - "question_id": 9110, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002015", - "question_id": 9111, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000818", - "question_id": 9112, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00008473", - "question_id": 9113, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00005262", - "question_id": 9115, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006497", - "question_id": 9116, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006657", - "question_id": 9118, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001948", - "question_id": 9121, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00007919", - "question_id": 9124, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003534", - "question_id": 9125, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001684", - "question_id": 9127, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00008759", - "question_id": 9131, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00006021", - "question_id": 9132, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006021", - "question_id": 9132, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005920", - "question_id": 9133, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008948", - "question_id": 9134, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004189", - "question_id": 9136, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00007538", - "question_id": 9139, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006748", - "question_id": 9140, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007298", - "question_id": 9141, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000640", - "question_id": 9145, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001402", - "question_id": 9146, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004472", - "question_id": 9148, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00006886", - "question_id": 9150, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008040", - "question_id": 9151, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004177", - "question_id": 9153, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005498", - "question_id": 9154, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001752", - "question_id": 9156, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004535", - "question_id": 9159, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004214", - "question_id": 9160, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00006727", - "question_id": 9161, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006487", - "question_id": 9166, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00003559", - "question_id": 9168, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004778", - "question_id": 9171, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003628", - "question_id": 9172, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004389", - "question_id": 9177, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004953", - "question_id": 9178, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004811", - "question_id": 9179, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006732", - "question_id": 9180, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000222", - "question_id": 9182, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005132", - "question_id": 9183, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001206", - "question_id": 9184, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008132", - "question_id": 9185, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006375", - "question_id": 9187, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000565", - "question_id": 9190, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003024", - "question_id": 9191, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003175", - "question_id": 9194, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008766", - "question_id": 9195, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00000278", - "question_id": 9196, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001641", - "question_id": 9197, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003885", - "question_id": 9198, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002972", - "question_id": 9199, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008357", - "question_id": 9200, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008525", - "question_id": 9203, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"fourth\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00001963", - "question_id": 9205, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008288", - "question_id": 9206, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008280", - "question_id": 9207, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000494", - "question_id": 9209, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002741", - "question_id": 9210, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008528", - "question_id": 9211, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008107", - "question_id": 9214, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006697", - "question_id": 9215, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005489", - "question_id": 9216, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007006", - "question_id": 9221, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003411", - "question_id": 9224, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006040", - "question_id": 9225, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001177", - "question_id": 9226, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007830", - "question_id": 9227, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00008407", - "question_id": 9229, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005432", - "question_id": 9230, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003035", - "question_id": 9231, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005739", - "question_id": 9233, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003455", - "question_id": 9234, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003118", - "question_id": 9235, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003616", - "question_id": 9236, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001067", - "question_id": 9239, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001560", - "question_id": 9240, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003542", - "question_id": 9241, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004509", - "question_id": 9242, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008815", - "question_id": 9243, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001462", - "question_id": 9244, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000793", - "question_id": 9245, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007644", - "question_id": 9248, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000486", - "question_id": 9249, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001337", - "question_id": 9251, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000750", - "question_id": 9252, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005065", - "question_id": 9255, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00008521", - "question_id": 9256, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008439", - "question_id": 9258, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00002098", - "question_id": 9259, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004276", - "question_id": 9260, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003036", - "question_id": 9261, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004825", - "question_id": 9262, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002658", - "question_id": 9263, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007316", - "question_id": 9266, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001063", - "question_id": 9267, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004756", - "question_id": 9268, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006288", - "question_id": 9269, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00002338", - "question_id": 9270, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007574", - "question_id": 9271, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003342", - "question_id": 9276, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004638", - "question_id": 9277, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006280", - "question_id": 9278, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003637", - "question_id": 9279, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002129", - "question_id": 9280, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00000903", - "question_id": 9281, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003829", - "question_id": 9282, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00001778", - "question_id": 9285, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001063", - "question_id": 9286, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001981", - "question_id": 9288, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004118", - "question_id": 9290, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001444", - "question_id": 9291, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003651", - "question_id": 9292, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"ukulele\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00001299", - "question_id": 9295, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008426", - "question_id": 9297, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003802", - "question_id": 9299, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006919", - "question_id": 9300, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008891", - "question_id": 9301, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000486", - "question_id": 9302, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007374", - "question_id": 9303, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007915", - "question_id": 9305, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008268", - "question_id": 9306, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001051", - "question_id": 9307, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004179", - "question_id": 9308, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005288", - "question_id": 9309, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00005968", - "question_id": 9310, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007915", - "question_id": 9311, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003570", - "question_id": 9312, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001524", - "question_id": 9319, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000234", - "question_id": 9320, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008712", - "question_id": 9321, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006164", - "question_id": 9322, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006873", - "question_id": 9327, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001363", - "question_id": 9330, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008045", - "question_id": 9331, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004545", - "question_id": 9334, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005293", - "question_id": 9335, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000735", - "question_id": 9336, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004723", - "question_id": 9337, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001297", - "question_id": 9338, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001899", - "question_id": 9339, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004286", - "question_id": 9341, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00002195", - "question_id": 9343, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008921", - "question_id": 9344, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007604", - "question_id": 9347, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004353", - "question_id": 9348, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000206", - "question_id": 9349, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"acoustic_guitar\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005394", - "question_id": 9352, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002256", - "question_id": 9353, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000533", - "question_id": 9354, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005208", - "question_id": 9355, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007845", - "question_id": 9356, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008118", - "question_id": 9358, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008555", - "question_id": 9359, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004016", - "question_id": 9360, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005959", - "question_id": 9367, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008140", - "question_id": 9369, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006640", - "question_id": 9371, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000623", - "question_id": 9372, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001645", - "question_id": 9373, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004554", - "question_id": 9374, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004554", - "question_id": 9374, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007324", - "question_id": 9375, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"xylophone\", \"left\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007933", - "question_id": 9377, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004716", - "question_id": 9378, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006950", - "question_id": 9381, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00008409", - "question_id": 9383, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005828", - "question_id": 9385, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008616", - "question_id": 9387, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004353", - "question_id": 9388, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006585", - "question_id": 9389, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004206", - "question_id": 9390, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00007263", - "question_id": 9392, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001756", - "question_id": 9393, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003184", - "question_id": 9394, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006309", - "question_id": 9395, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000987", - "question_id": 9396, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002405", - "question_id": 9398, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005761", - "question_id": 9400, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00003490", - "question_id": 9401, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00001958", - "question_id": 9403, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00000547", - "question_id": 9404, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006464", - "question_id": 9405, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00001072", - "question_id": 9406, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008240", - "question_id": 9407, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004003", - "question_id": 9408, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000742", - "question_id": 9410, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"piano\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003127", - "question_id": 9411, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008135", - "question_id": 9413, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000753", - "question_id": 9414, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003523", - "question_id": 9415, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005359", - "question_id": 9416, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003634", - "question_id": 9417, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001687", - "question_id": 9418, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00007296", - "question_id": 9419, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008702", - "question_id": 9425, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005141", - "question_id": 9426, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004364", - "question_id": 9427, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002375", - "question_id": 9428, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"bassoon\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004268", - "question_id": 9429, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000176", - "question_id": 9430, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "seven" - }, - { - "video_id": "00008575", - "question_id": 9431, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007770", - "question_id": 9432, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007888", - "question_id": 9433, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000899", - "question_id": 9435, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002477", - "question_id": 9436, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003579", - "question_id": 9437, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006426", - "question_id": 9438, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000810", - "question_id": 9439, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005162", - "question_id": 9440, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00002277", - "question_id": 9442, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003463", - "question_id": 9444, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008001", - "question_id": 9447, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007938", - "question_id": 9448, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007632", - "question_id": 9449, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007924", - "question_id": 9450, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008753", - "question_id": 9451, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005917", - "question_id": 9452, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005290", - "question_id": 9453, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007590", - "question_id": 9454, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006383", - "question_id": 9455, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000152", - "question_id": 9456, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003540", - "question_id": 9457, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008253", - "question_id": 9458, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007267", - "question_id": 9460, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001150", - "question_id": 9461, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006640", - "question_id": 9462, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00007024", - "question_id": 9463, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000235", - "question_id": 9467, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"middle\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000612", - "question_id": 9469, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00004566", - "question_id": 9474, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008231", - "question_id": 9475, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003261", - "question_id": 9476, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007954", - "question_id": 9477, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003322", - "question_id": 9478, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006711", - "question_id": 9479, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006913", - "question_id": 9481, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005355", - "question_id": 9486, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001655", - "question_id": 9488, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001468", - "question_id": 9489, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007453", - "question_id": 9490, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008945", - "question_id": 9493, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005948", - "question_id": 9497, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000832", - "question_id": 9499, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008362", - "question_id": 9502, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001557", - "question_id": 9503, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001427", - "question_id": 9504, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"middle\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005228", - "question_id": 9507, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006265", - "question_id": 9510, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006654", - "question_id": 9511, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000165", - "question_id": 9512, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002808", - "question_id": 9515, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008803", - "question_id": 9516, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008085", - "question_id": 9517, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008675", - "question_id": 9518, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00002211", - "question_id": 9521, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005888", - "question_id": 9523, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000200", - "question_id": 9526, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003222", - "question_id": 9527, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005468", - "question_id": 9528, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002654", - "question_id": 9529, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003019", - "question_id": 9530, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006098", - "question_id": 9531, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"piano\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006555", - "question_id": 9534, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001795", - "question_id": 9535, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003879", - "question_id": 9537, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000726", - "question_id": 9538, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008606", - "question_id": 9540, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008589", - "question_id": 9541, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000466", - "question_id": 9542, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007780", - "question_id": 9544, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000707", - "question_id": 9546, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"bassoon\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008736", - "question_id": 9548, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000529", - "question_id": 9549, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000103", - "question_id": 9552, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000103", - "question_id": 9552, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003100", - "question_id": 9554, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000263", - "question_id": 9555, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00000847", - "question_id": 9556, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"saxophone\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000771", - "question_id": 9559, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004297", - "question_id": 9560, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003712", - "question_id": 9562, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003795", - "question_id": 9563, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005555", - "question_id": 9564, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001636", - "question_id": 9565, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000810", - "question_id": 9568, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00002354", - "question_id": 9570, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000155", - "question_id": 9571, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001596", - "question_id": 9573, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006789", - "question_id": 9575, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007825", - "question_id": 9577, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006243", - "question_id": 9578, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"last\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005397", - "question_id": 9580, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007583", - "question_id": 9581, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006100", - "question_id": 9584, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004175", - "question_id": 9585, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005918", - "question_id": 9586, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00002244", - "question_id": 9588, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007987", - "question_id": 9589, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007563", - "question_id": 9592, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000767", - "question_id": 9594, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00004001", - "question_id": 9595, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004642", - "question_id": 9597, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001071", - "question_id": 9599, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005956", - "question_id": 9601, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003403", - "question_id": 9602, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000482", - "question_id": 9604, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001137", - "question_id": 9605, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003106", - "question_id": 9606, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008195", - "question_id": 9607, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004807", - "question_id": 9610, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00002274", - "question_id": 9611, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"electric_bass\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006634", - "question_id": 9613, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008574", - "question_id": 9614, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006672", - "question_id": 9615, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006168", - "question_id": 9616, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002368", - "question_id": 9620, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003198", - "question_id": 9622, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007986", - "question_id": 9623, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002036", - "question_id": 9625, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008186", - "question_id": 9630, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00000832", - "question_id": 9632, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008360", - "question_id": 9634, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003917", - "question_id": 9635, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007787", - "question_id": 9636, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006443", - "question_id": 9638, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000359", - "question_id": 9640, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005846", - "question_id": 9641, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004071", - "question_id": 9642, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003583", - "question_id": 9646, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006040", - "question_id": 9647, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004389", - "question_id": 9651, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002961", - "question_id": 9652, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007845", - "question_id": 9653, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00000411", - "question_id": 9654, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"erhu\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002768", - "question_id": 9655, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004743", - "question_id": 9656, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001330", - "question_id": 9657, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004466", - "question_id": 9658, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006506", - "question_id": 9660, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002326", - "question_id": 9661, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006465", - "question_id": 9662, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003292", - "question_id": 9663, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001394", - "question_id": 9665, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001649", - "question_id": 9667, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006151", - "question_id": 9668, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001372", - "question_id": 9671, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000464", - "question_id": 9672, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004650", - "question_id": 9673, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008865", - "question_id": 9674, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007539", - "question_id": 9676, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004055", - "question_id": 9677, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007394", - "question_id": 9678, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003700", - "question_id": 9681, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000341", - "question_id": 9685, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003832", - "question_id": 9687, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005088", - "question_id": 9688, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bagpipe\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005475", - "question_id": 9689, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003912", - "question_id": 9691, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004434", - "question_id": 9692, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003790", - "question_id": 9693, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00003863", - "question_id": 9694, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001787", - "question_id": 9695, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003877", - "question_id": 9696, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004398", - "question_id": 9702, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006702", - "question_id": 9703, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000018", - "question_id": 9704, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008922", - "question_id": 9705, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001926", - "question_id": 9711, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001595", - "question_id": 9712, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008475", - "question_id": 9714, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006975", - "question_id": 9716, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005112", - "question_id": 9718, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002282", - "question_id": 9719, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004173", - "question_id": 9720, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007677", - "question_id": 9721, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004302", - "question_id": 9724, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008040", - "question_id": 9726, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006619", - "question_id": 9727, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002690", - "question_id": 9729, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005898", - "question_id": 9730, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005036", - "question_id": 9731, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006112", - "question_id": 9733, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008029", - "question_id": 9734, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008390", - "question_id": 9735, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008699", - "question_id": 9736, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008361", - "question_id": 9739, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"guzheng\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00008199", - "question_id": 9740, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008934", - "question_id": 9744, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000974", - "question_id": 9745, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000156", - "question_id": 9747, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002396", - "question_id": 9748, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003552", - "question_id": 9749, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00004031", - "question_id": 9750, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00008100", - "question_id": 9751, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003862", - "question_id": 9752, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00006628", - "question_id": 9753, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00007367", - "question_id": 9754, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001823", - "question_id": 9756, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00001445", - "question_id": 9757, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006618", - "question_id": 9760, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003223", - "question_id": 9761, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002302", - "question_id": 9763, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008364", - "question_id": 9764, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002176", - "question_id": 9766, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00003036", - "question_id": 9767, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00006587", - "question_id": 9768, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001227", - "question_id": 9769, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00008460", - "question_id": 9770, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005499", - "question_id": 9772, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000433", - "question_id": 9773, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006174", - "question_id": 9774, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00005131", - "question_id": 9777, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002114", - "question_id": 9778, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000162", - "question_id": 9781, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002950", - "question_id": 9782, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008858", - "question_id": 9784, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000425", - "question_id": 9785, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003263", - "question_id": 9791, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008918", - "question_id": 9793, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00001759", - "question_id": 9794, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001181", - "question_id": 9795, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005454", - "question_id": 9796, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00004085", - "question_id": 9797, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001728", - "question_id": 9798, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004204", - "question_id": 9799, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000779", - "question_id": 9801, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001839", - "question_id": 9802, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000736", - "question_id": 9804, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003242", - "question_id": 9805, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000792", - "question_id": 9806, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002804", - "question_id": 9808, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00007630", - "question_id": 9809, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005358", - "question_id": 9813, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005009", - "question_id": 9814, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008692", - "question_id": 9816, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004055", - "question_id": 9817, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006110", - "question_id": 9818, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00007204", - "question_id": 9819, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008907", - "question_id": 9820, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"saxophone\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006681", - "question_id": 9823, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003624", - "question_id": 9825, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004416", - "question_id": 9829, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007404", - "question_id": 9830, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00000962", - "question_id": 9831, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005033", - "question_id": 9832, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002292", - "question_id": 9835, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003180", - "question_id": 9836, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006229", - "question_id": 9837, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004007", - "question_id": 9841, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002695", - "question_id": 9842, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002273", - "question_id": 9844, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007295", - "question_id": 9845, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007013", - "question_id": 9846, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00003012", - "question_id": 9848, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005201", - "question_id": 9850, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006212", - "question_id": 9851, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001894", - "question_id": 9852, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003647", - "question_id": 9853, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000209", - "question_id": 9855, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000709", - "question_id": 9857, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004015", - "question_id": 9860, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"drum\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001572", - "question_id": 9863, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000454", - "question_id": 9864, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006748", - "question_id": 9865, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006711", - "question_id": 9870, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00008007", - "question_id": 9872, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006176", - "question_id": 9873, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00005598", - "question_id": 9874, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003039", - "question_id": 9875, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003575", - "question_id": 9876, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004555", - "question_id": 9877, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003470", - "question_id": 9883, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001830", - "question_id": 9884, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00004895", - "question_id": 9885, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000359", - "question_id": 9886, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002472", - "question_id": 9888, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00002108", - "question_id": 9889, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000463", - "question_id": 9890, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001845", - "question_id": 9891, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008447", - "question_id": 9893, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008832", - "question_id": 9894, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00000617", - "question_id": 9895, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001536", - "question_id": 9897, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000610", - "question_id": 9898, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006429", - "question_id": 9899, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005740", - "question_id": 9901, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000266", - "question_id": 9902, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003762", - "question_id": 9903, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000839", - "question_id": 9904, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003459", - "question_id": 9905, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002856", - "question_id": 9906, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003479", - "question_id": 9907, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003096", - "question_id": 9908, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004023", - "question_id": 9909, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00006259", - "question_id": 9910, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00001926", - "question_id": 9911, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003138", - "question_id": 9912, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000153", - "question_id": 9913, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00001970", - "question_id": 9915, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004325", - "question_id": 9916, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00000072", - "question_id": 9917, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004719", - "question_id": 9918, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001784", - "question_id": 9920, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00007382", - "question_id": 9921, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006718", - "question_id": 9923, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008956", - "question_id": 9924, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005358", - "question_id": 9925, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001869", - "question_id": 9927, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00005084", - "question_id": 9931, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008067", - "question_id": 9933, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007337", - "question_id": 9936, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007252", - "question_id": 9937, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001278", - "question_id": 9940, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003573", - "question_id": 9941, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000770", - "question_id": 9943, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003637", - "question_id": 9945, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003249", - "question_id": 9947, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005194", - "question_id": 9948, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006626", - "question_id": 9949, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002828", - "question_id": 9950, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004478", - "question_id": 9952, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007201", - "question_id": 9954, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00002003", - "question_id": 9955, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002220", - "question_id": 9956, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00000809", - "question_id": 9957, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002193", - "question_id": 9958, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"electric_bass\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000005", - "question_id": 9959, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003866", - "question_id": 9960, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000403", - "question_id": 9962, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008401", - "question_id": 9963, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00000816", - "question_id": 9965, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00003736", - "question_id": 9967, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003736", - "question_id": 9967, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005441", - "question_id": 9968, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003188", - "question_id": 9969, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005092", - "question_id": 9970, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003222", - "question_id": 9971, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005467", - "question_id": 9973, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003247", - "question_id": 9974, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006421", - "question_id": 9976, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007252", - "question_id": 9977, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001132", - "question_id": 9978, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002425", - "question_id": 9979, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000252", - "question_id": 9980, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000924", - "question_id": 9981, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00001007", - "question_id": 9982, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001588", - "question_id": 9983, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002784", - "question_id": 9984, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"middle\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007910", - "question_id": 9985, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007553", - "question_id": 9986, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004263", - "question_id": 9989, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001914", - "question_id": 9991, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00008423", - "question_id": 9993, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001624", - "question_id": 9994, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004311", - "question_id": 9995, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002923", - "question_id": 9996, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00002165", - "question_id": 9997, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002195", - "question_id": 9999, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000467", - "question_id": 10000, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003669", - "question_id": 10001, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004345", - "question_id": 10002, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005650", - "question_id": 10003, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00008837", - "question_id": 10005, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000814", - "question_id": 10006, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007249", - "question_id": 10007, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000948", - "question_id": 10008, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008674", - "question_id": 10010, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008872", - "question_id": 10011, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007522", - "question_id": 10012, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007515", - "question_id": 10013, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00002531", - "question_id": 10014, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002854", - "question_id": 10016, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"tuba\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00000115", - "question_id": 10017, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002131", - "question_id": 10020, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004003", - "question_id": 10021, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00002574", - "question_id": 10022, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"saxophone\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001909", - "question_id": 10025, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00002325", - "question_id": 10026, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008254", - "question_id": 10028, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003009", - "question_id": 10029, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000195", - "question_id": 10030, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003712", - "question_id": 10031, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00007835", - "question_id": 10032, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008959", - "question_id": 10036, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008554", - "question_id": 10037, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001201", - "question_id": 10038, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"bassoon\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004334", - "question_id": 10039, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007165", - "question_id": 10040, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"erhu\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003108", - "question_id": 10041, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003108", - "question_id": 10041, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005976", - "question_id": 10042, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007845", - "question_id": 10044, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00001650", - "question_id": 10045, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003514", - "question_id": 10046, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006793", - "question_id": 10047, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008824", - "question_id": 10048, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004053", - "question_id": 10052, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005685", - "question_id": 10053, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006253", - "question_id": 10054, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00005710", - "question_id": 10055, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008546", - "question_id": 10056, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000833", - "question_id": 10058, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"middle\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001634", - "question_id": 10059, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001521", - "question_id": 10060, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00002501", - "question_id": 10062, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005158", - "question_id": 10063, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000071", - "question_id": 10065, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005030", - "question_id": 10067, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000917", - "question_id": 10068, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"fourth\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00000917", - "question_id": 10068, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"fourth\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00007578", - "question_id": 10069, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002581", - "question_id": 10070, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001350", - "question_id": 10076, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004735", - "question_id": 10078, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004208", - "question_id": 10080, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004479", - "question_id": 10081, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008822", - "question_id": 10085, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000588", - "question_id": 10086, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001469", - "question_id": 10087, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002516", - "question_id": 10088, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002684", - "question_id": 10089, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004523", - "question_id": 10091, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005146", - "question_id": 10092, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006427", - "question_id": 10093, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005423", - "question_id": 10096, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002840", - "question_id": 10097, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00004552", - "question_id": 10098, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002116", - "question_id": 10099, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002230", - "question_id": 10100, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00002744", - "question_id": 10101, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000637", - "question_id": 10102, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004213", - "question_id": 10103, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006214", - "question_id": 10104, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008808", - "question_id": 10105, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008090", - "question_id": 10106, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003616", - "question_id": 10107, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003026", - "question_id": 10108, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007460", - "question_id": 10110, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007431", - "question_id": 10111, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005374", - "question_id": 10112, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006727", - "question_id": 10114, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007653", - "question_id": 10115, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001626", - "question_id": 10116, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000202", - "question_id": 10118, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00001275", - "question_id": 10119, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008701", - "question_id": 10120, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00000160", - "question_id": 10121, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003565", - "question_id": 10122, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002486", - "question_id": 10124, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006603", - "question_id": 10130, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007568", - "question_id": 10131, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000038", - "question_id": 10133, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00000450", - "question_id": 10135, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006084", - "question_id": 10136, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005229", - "question_id": 10137, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001299", - "question_id": 10138, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004565", - "question_id": 10139, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006112", - "question_id": 10144, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"clarinet\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001940", - "question_id": 10148, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008525", - "question_id": 10150, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002100", - "question_id": 10151, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002452", - "question_id": 10152, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007722", - "question_id": 10153, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00001116", - "question_id": 10154, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005886", - "question_id": 10155, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004951", - "question_id": 10156, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003136", - "question_id": 10157, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004852", - "question_id": 10159, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005275", - "question_id": 10160, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000117", - "question_id": 10161, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007180", - "question_id": 10164, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00008895", - "question_id": 10165, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002860", - "question_id": 10166, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007459", - "question_id": 10168, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002449", - "question_id": 10169, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008394", - "question_id": 10172, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007538", - "question_id": 10175, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005234", - "question_id": 10177, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008737", - "question_id": 10178, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"xylophone\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002082", - "question_id": 10179, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003676", - "question_id": 10182, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008740", - "question_id": 10184, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008342", - "question_id": 10185, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008234", - "question_id": 10186, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00008103", - "question_id": 10188, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006776", - "question_id": 10189, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00006473", - "question_id": 10190, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005707", - "question_id": 10191, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005799", - "question_id": 10193, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001790", - "question_id": 10194, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007977", - "question_id": 10195, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006862", - "question_id": 10196, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005563", - "question_id": 10197, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003449", - "question_id": 10200, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004883", - "question_id": 10202, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00006307", - "question_id": 10205, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004669", - "question_id": 10208, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001189", - "question_id": 10209, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000973", - "question_id": 10210, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008719", - "question_id": 10213, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004077", - "question_id": 10214, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001501", - "question_id": 10215, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001222", - "question_id": 10216, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002702", - "question_id": 10218, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004960", - "question_id": 10220, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000037", - "question_id": 10221, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008564", - "question_id": 10222, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00001536", - "question_id": 10223, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002431", - "question_id": 10224, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006766", - "question_id": 10225, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005908", - "question_id": 10227, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000743", - "question_id": 10228, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004750", - "question_id": 10230, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008428", - "question_id": 10232, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002898", - "question_id": 10233, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00008481", - "question_id": 10234, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003223", - "question_id": 10235, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002090", - "question_id": 10237, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001268", - "question_id": 10241, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005777", - "question_id": 10242, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001217", - "question_id": 10244, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001329", - "question_id": 10253, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006081", - "question_id": 10254, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006081", - "question_id": 10254, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005296", - "question_id": 10255, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008365", - "question_id": 10256, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002569", - "question_id": 10257, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000237", - "question_id": 10258, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003299", - "question_id": 10259, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007478", - "question_id": 10260, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007855", - "question_id": 10261, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007563", - "question_id": 10263, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003546", - "question_id": 10266, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002137", - "question_id": 10271, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004406", - "question_id": 10272, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"fourth\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007938", - "question_id": 10273, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"middle\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003928", - "question_id": 10276, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00004721", - "question_id": 10277, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008238", - "question_id": 10278, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007297", - "question_id": 10279, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00004607", - "question_id": 10281, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008831", - "question_id": 10282, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003893", - "question_id": 10283, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000106", - "question_id": 10284, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005671", - "question_id": 10287, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00007437", - "question_id": 10289, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002928", - "question_id": 10292, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001010", - "question_id": 10293, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00003067", - "question_id": 10295, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003721", - "question_id": 10296, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000593", - "question_id": 10300, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00007480", - "question_id": 10301, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007617", - "question_id": 10302, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006138", - "question_id": 10303, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001865", - "question_id": 10304, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004877", - "question_id": 10306, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004241", - "question_id": 10307, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001046", - "question_id": 10310, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002187", - "question_id": 10313, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007798", - "question_id": 10314, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008013", - "question_id": 10315, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008063", - "question_id": 10316, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008592", - "question_id": 10317, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008699", - "question_id": 10319, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002367", - "question_id": 10320, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008046", - "question_id": 10321, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00001714", - "question_id": 10323, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005318", - "question_id": 10324, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006359", - "question_id": 10325, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006309", - "question_id": 10326, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00001633", - "question_id": 10327, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006246", - "question_id": 10328, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00003942", - "question_id": 10330, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002450", - "question_id": 10332, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006872", - "question_id": 10333, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"electric_bass\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003365", - "question_id": 10334, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000209", - "question_id": 10335, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005367", - "question_id": 10338, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000669", - "question_id": 10339, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"fourth\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00007556", - "question_id": 10341, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002698", - "question_id": 10342, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006776", - "question_id": 10343, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001221", - "question_id": 10345, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000092", - "question_id": 10346, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003854", - "question_id": 10349, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00005256", - "question_id": 10350, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00006073", - "question_id": 10352, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00007339", - "question_id": 10353, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007162", - "question_id": 10354, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000012", - "question_id": 10356, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000678", - "question_id": 10357, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006387", - "question_id": 10358, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000711", - "question_id": 10359, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00002974", - "question_id": 10361, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002401", - "question_id": 10364, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001928", - "question_id": 10365, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008467", - "question_id": 10366, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001984", - "question_id": 10367, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005749", - "question_id": 10368, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001547", - "question_id": 10369, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"banjo\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007760", - "question_id": 10371, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003269", - "question_id": 10374, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002974", - "question_id": 10377, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002239", - "question_id": 10378, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003553", - "question_id": 10379, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002201", - "question_id": 10380, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005459", - "question_id": 10382, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00001073", - "question_id": 10383, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008357", - "question_id": 10386, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006376", - "question_id": 10389, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007606", - "question_id": 10392, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007387", - "question_id": 10394, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003711", - "question_id": 10396, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006242", - "question_id": 10397, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000399", - "question_id": 10398, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003019", - "question_id": 10399, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000214", - "question_id": 10400, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001583", - "question_id": 10401, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002202", - "question_id": 10402, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008705", - "question_id": 10403, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005670", - "question_id": 10405, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005614", - "question_id": 10407, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00001277", - "question_id": 10413, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003423", - "question_id": 10414, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004803", - "question_id": 10415, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002879", - "question_id": 10416, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001933", - "question_id": 10417, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006314", - "question_id": 10420, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008455", - "question_id": 10421, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001382", - "question_id": 10422, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001887", - "question_id": 10425, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00005644", - "question_id": 10427, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00006471", - "question_id": 10428, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007126", - "question_id": 10429, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004277", - "question_id": 10430, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000266", - "question_id": 10431, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005740", - "question_id": 10432, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004979", - "question_id": 10433, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001275", - "question_id": 10435, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003317", - "question_id": 10436, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002475", - "question_id": 10437, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007356", - "question_id": 10440, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003172", - "question_id": 10442, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002494", - "question_id": 10443, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005953", - "question_id": 10444, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002157", - "question_id": 10445, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00005054", - "question_id": 10447, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006322", - "question_id": 10448, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00002253", - "question_id": 10449, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002563", - "question_id": 10450, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00005487", - "question_id": 10451, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00003372", - "question_id": 10452, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005306", - "question_id": 10453, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002834", - "question_id": 10454, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00005499", - "question_id": 10455, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006347", - "question_id": 10456, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001846", - "question_id": 10458, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007285", - "question_id": 10460, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00007565", - "question_id": 10463, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000787", - "question_id": 10465, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007144", - "question_id": 10466, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00007982", - "question_id": 10467, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00006021", - "question_id": 10469, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00000349", - "question_id": 10470, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002321", - "question_id": 10472, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004385", - "question_id": 10473, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00003773", - "question_id": 10474, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00007948", - "question_id": 10476, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"bassoon\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008135", - "question_id": 10477, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000542", - "question_id": 10478, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006052", - "question_id": 10480, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008490", - "question_id": 10482, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003226", - "question_id": 10486, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005050", - "question_id": 10487, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001551", - "question_id": 10489, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004700", - "question_id": 10490, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000325", - "question_id": 10491, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001627", - "question_id": 10492, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"erhu\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001833", - "question_id": 10493, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005856", - "question_id": 10495, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004719", - "question_id": 10497, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007771", - "question_id": 10499, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002487", - "question_id": 10502, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004679", - "question_id": 10504, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000360", - "question_id": 10505, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"tuba\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006557", - "question_id": 10507, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001537", - "question_id": 10509, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00004586", - "question_id": 10514, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005048", - "question_id": 10515, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007541", - "question_id": 10516, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002608", - "question_id": 10517, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002960", - "question_id": 10519, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001937", - "question_id": 10520, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005747", - "question_id": 10521, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004601", - "question_id": 10522, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007647", - "question_id": 10523, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008907", - "question_id": 10524, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008621", - "question_id": 10525, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008273", - "question_id": 10526, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000012", - "question_id": 10527, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005868", - "question_id": 10528, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00000290", - "question_id": 10529, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000665", - "question_id": 10531, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005896", - "question_id": 10532, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007805", - "question_id": 10533, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008709", - "question_id": 10535, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003423", - "question_id": 10536, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002842", - "question_id": 10537, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007023", - "question_id": 10539, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002340", - "question_id": 10540, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003779", - "question_id": 10541, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002250", - "question_id": 10542, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"congas\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001909", - "question_id": 10547, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008598", - "question_id": 10549, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003723", - "question_id": 10550, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006555", - "question_id": 10551, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005704", - "question_id": 10552, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004937", - "question_id": 10553, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"xylophone\", \"middle\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001698", - "question_id": 10554, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"ukulele\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005524", - "question_id": 10555, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003722", - "question_id": 10557, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00004825", - "question_id": 10558, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008505", - "question_id": 10563, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003447", - "question_id": 10564, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000670", - "question_id": 10568, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005124", - "question_id": 10569, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004564", - "question_id": 10570, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00004880", - "question_id": 10571, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"xylophone\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001099", - "question_id": 10572, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00004833", - "question_id": 10573, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007698", - "question_id": 10575, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006391", - "question_id": 10576, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006846", - "question_id": 10577, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"drum\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006361", - "question_id": 10578, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008056", - "question_id": 10579, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008966", - "question_id": 10580, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008966", - "question_id": 10580, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008549", - "question_id": 10582, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00000667", - "question_id": 10583, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007192", - "question_id": 10585, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003842", - "question_id": 10588, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004396", - "question_id": 10589, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008172", - "question_id": 10590, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004944", - "question_id": 10591, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006761", - "question_id": 10592, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00002158", - "question_id": 10593, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001345", - "question_id": 10594, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006953", - "question_id": 10595, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007888", - "question_id": 10597, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006903", - "question_id": 10598, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004841", - "question_id": 10599, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003380", - "question_id": 10600, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004881", - "question_id": 10602, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007212", - "question_id": 10604, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000479", - "question_id": 10605, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005058", - "question_id": 10606, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004192", - "question_id": 10607, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001457", - "question_id": 10608, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002092", - "question_id": 10609, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003247", - "question_id": 10610, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007056", - "question_id": 10611, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003599", - "question_id": 10612, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006037", - "question_id": 10613, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004479", - "question_id": 10615, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005255", - "question_id": 10622, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004196", - "question_id": 10623, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000307", - "question_id": 10628, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008620", - "question_id": 10630, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000384", - "question_id": 10631, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004310", - "question_id": 10634, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001057", - "question_id": 10635, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000293", - "question_id": 10636, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00001648", - "question_id": 10637, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005207", - "question_id": 10639, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006641", - "question_id": 10640, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005918", - "question_id": 10641, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002432", - "question_id": 10642, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003724", - "question_id": 10645, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003110", - "question_id": 10647, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00002081", - "question_id": 10650, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008592", - "question_id": 10652, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000483", - "question_id": 10655, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006703", - "question_id": 10656, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003563", - "question_id": 10657, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008606", - "question_id": 10658, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00003861", - "question_id": 10661, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000022", - "question_id": 10663, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006760", - "question_id": 10664, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004904", - "question_id": 10665, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001963", - "question_id": 10671, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006108", - "question_id": 10674, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003232", - "question_id": 10675, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00002464", - "question_id": 10676, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00005210", - "question_id": 10678, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005968", - "question_id": 10679, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005968", - "question_id": 10679, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006120", - "question_id": 10680, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00001714", - "question_id": 10681, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000149", - "question_id": 10684, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000149", - "question_id": 10684, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003975", - "question_id": 10685, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007910", - "question_id": 10687, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00004839", - "question_id": 10688, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007481", - "question_id": 10691, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008882", - "question_id": 10692, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000950", - "question_id": 10694, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008025", - "question_id": 10695, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007722", - "question_id": 10697, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00008337", - "question_id": 10698, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005204", - "question_id": 10699, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005601", - "question_id": 10701, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008667", - "question_id": 10703, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006582", - "question_id": 10704, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007515", - "question_id": 10705, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007490", - "question_id": 10706, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006283", - "question_id": 10707, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"middle\", \"congas\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003493", - "question_id": 10708, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006708", - "question_id": 10709, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001787", - "question_id": 10711, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002122", - "question_id": 10714, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004400", - "question_id": 10715, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001021", - "question_id": 10716, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002371", - "question_id": 10717, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008792", - "question_id": 10718, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000225", - "question_id": 10720, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001968", - "question_id": 10721, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005714", - "question_id": 10723, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00008504", - "question_id": 10724, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000126", - "question_id": 10725, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000477", - "question_id": 10726, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008168", - "question_id": 10727, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002569", - "question_id": 10729, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008135", - "question_id": 10730, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002793", - "question_id": 10733, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006670", - "question_id": 10734, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008272", - "question_id": 10735, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001654", - "question_id": 10737, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007647", - "question_id": 10739, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005984", - "question_id": 10742, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004348", - "question_id": 10743, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000115", - "question_id": 10744, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007552", - "question_id": 10745, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005112", - "question_id": 10746, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007193", - "question_id": 10747, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000777", - "question_id": 10750, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006212", - "question_id": 10751, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006856", - "question_id": 10753, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007167", - "question_id": 10754, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008882", - "question_id": 10755, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008516", - "question_id": 10756, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001714", - "question_id": 10758, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007615", - "question_id": 10761, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006993", - "question_id": 10762, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005773", - "question_id": 10763, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005834", - "question_id": 10765, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"middle\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006214", - "question_id": 10766, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008705", - "question_id": 10767, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008459", - "question_id": 10770, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001316", - "question_id": 10772, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00007567", - "question_id": 10773, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001513", - "question_id": 10775, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000726", - "question_id": 10777, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004273", - "question_id": 10778, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003824", - "question_id": 10779, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008656", - "question_id": 10780, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007142", - "question_id": 10782, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008906", - "question_id": 10783, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008862", - "question_id": 10786, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00005605", - "question_id": 10790, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000271", - "question_id": 10791, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006313", - "question_id": 10792, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003074", - "question_id": 10793, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004143", - "question_id": 10794, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005124", - "question_id": 10795, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003747", - "question_id": 10796, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008319", - "question_id": 10797, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005898", - "question_id": 10798, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004497", - "question_id": 10799, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004271", - "question_id": 10800, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001845", - "question_id": 10802, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004391", - "question_id": 10806, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000900", - "question_id": 10807, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00000339", - "question_id": 10808, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000945", - "question_id": 10812, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003128", - "question_id": 10813, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005863", - "question_id": 10818, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003501", - "question_id": 10819, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004430", - "question_id": 10820, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005071", - "question_id": 10821, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000849", - "question_id": 10822, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001853", - "question_id": 10823, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007901", - "question_id": 10824, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005837", - "question_id": 10826, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007750", - "question_id": 10827, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008040", - "question_id": 10828, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008254", - "question_id": 10829, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008381", - "question_id": 10830, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001652", - "question_id": 10831, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002077", - "question_id": 10832, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007969", - "question_id": 10835, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000301", - "question_id": 10838, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007762", - "question_id": 10841, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00006843", - "question_id": 10843, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00007662", - "question_id": 10844, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008045", - "question_id": 10847, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"drum\", \"left\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003811", - "question_id": 10848, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006837", - "question_id": 10849, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003658", - "question_id": 10850, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008491", - "question_id": 10851, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004262", - "question_id": 10853, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005871", - "question_id": 10854, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005270", - "question_id": 10858, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003625", - "question_id": 10859, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007499", - "question_id": 10860, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007499", - "question_id": 10860, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000645", - "question_id": 10862, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"banjo\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006517", - "question_id": 10864, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005358", - "question_id": 10866, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000853", - "question_id": 10868, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004802", - "question_id": 10869, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00006400", - "question_id": 10870, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002433", - "question_id": 10872, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005455", - "question_id": 10876, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006289", - "question_id": 10877, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006771", - "question_id": 10879, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005431", - "question_id": 10881, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005861", - "question_id": 10883, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005170", - "question_id": 10884, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005474", - "question_id": 10885, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001189", - "question_id": 10886, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003493", - "question_id": 10888, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00004551", - "question_id": 10890, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001772", - "question_id": 10894, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007041", - "question_id": 10895, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007610", - "question_id": 10896, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"tuba\", \"right\", \"flute\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007770", - "question_id": 10898, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005326", - "question_id": 10899, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006894", - "question_id": 10900, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006894", - "question_id": 10900, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003695", - "question_id": 10901, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00002619", - "question_id": 10903, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001266", - "question_id": 10904, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00001910", - "question_id": 10905, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000712", - "question_id": 10906, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001113", - "question_id": 10908, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008910", - "question_id": 10909, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004983", - "question_id": 10910, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000490", - "question_id": 10913, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004487", - "question_id": 10914, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006773", - "question_id": 10915, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002331", - "question_id": 10916, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004302", - "question_id": 10917, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000042", - "question_id": 10918, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007185", - "question_id": 10921, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00000845", - "question_id": 10923, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003433", - "question_id": 10924, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003204", - "question_id": 10926, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003939", - "question_id": 10927, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007850", - "question_id": 10929, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003423", - "question_id": 10930, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"drum\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004169", - "question_id": 10931, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006841", - "question_id": 10933, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003201", - "question_id": 10934, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000652", - "question_id": 10937, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"drum\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003482", - "question_id": 10938, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008944", - "question_id": 10939, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006194", - "question_id": 10942, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006068", - "question_id": 10945, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004160", - "question_id": 10948, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002371", - "question_id": 10949, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"left\", \"trumpet\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002116", - "question_id": 10950, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000758", - "question_id": 10951, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000332", - "question_id": 10952, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003977", - "question_id": 10953, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008680", - "question_id": 10954, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00005114", - "question_id": 10955, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006228", - "question_id": 10956, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00003270", - "question_id": 10957, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003272", - "question_id": 10958, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007119", - "question_id": 10960, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008492", - "question_id": 10962, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008794", - "question_id": 10963, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005644", - "question_id": 10964, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003269", - "question_id": 10966, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004726", - "question_id": 10967, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003169", - "question_id": 10969, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00007841", - "question_id": 10971, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008369", - "question_id": 10973, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007253", - "question_id": 10975, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002664", - "question_id": 10979, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008265", - "question_id": 10982, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004097", - "question_id": 10983, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008923", - "question_id": 10985, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001095", - "question_id": 10987, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007231", - "question_id": 10988, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006022", - "question_id": 10989, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"clarinet\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00001188", - "question_id": 10990, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00007838", - "question_id": 10991, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007085", - "question_id": 10992, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00005237", - "question_id": 10993, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"electric_bass\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001238", - "question_id": 10994, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008290", - "question_id": 10996, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005898", - "question_id": 10998, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005280", - "question_id": 11000, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007101", - "question_id": 11001, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003019", - "question_id": 11002, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002980", - "question_id": 11003, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008870", - "question_id": 11004, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00005978", - "question_id": 11005, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000070", - "question_id": 11006, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006557", - "question_id": 11007, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002359", - "question_id": 11009, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000723", - "question_id": 11010, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003155", - "question_id": 11012, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001754", - "question_id": 11013, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001754", - "question_id": 11013, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001230", - "question_id": 11014, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"drum\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00006841", - "question_id": 11016, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005326", - "question_id": 11018, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007176", - "question_id": 11019, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008632", - "question_id": 11022, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004684", - "question_id": 11023, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00006065", - "question_id": 11024, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000454", - "question_id": 11026, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007174", - "question_id": 11027, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002936", - "question_id": 11028, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"violin\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000966", - "question_id": 11029, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"ukulele\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003335", - "question_id": 11032, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002018", - "question_id": 11033, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00007786", - "question_id": 11035, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001641", - "question_id": 11037, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"drum\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003431", - "question_id": 11039, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003801", - "question_id": 11041, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008519", - "question_id": 11043, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007875", - "question_id": 11044, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000174", - "question_id": 11046, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"saxophone\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002726", - "question_id": 11047, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003254", - "question_id": 11048, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002355", - "question_id": 11049, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001622", - "question_id": 11050, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00008461", - "question_id": 11051, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003136", - "question_id": 11052, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006225", - "question_id": 11054, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002074", - "question_id": 11055, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001736", - "question_id": 11059, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001587", - "question_id": 11060, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000234", - "question_id": 11061, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003626", - "question_id": 11062, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006080", - "question_id": 11063, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007516", - "question_id": 11064, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00006327", - "question_id": 11065, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002924", - "question_id": 11067, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000911", - "question_id": 11068, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001814", - "question_id": 11069, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003642", - "question_id": 11070, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006314", - "question_id": 11072, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001055", - "question_id": 11074, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007111", - "question_id": 11075, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"flute\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000946", - "question_id": 11076, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008335", - "question_id": 11078, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006765", - "question_id": 11081, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008341", - "question_id": 11082, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008027", - "question_id": 11083, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004903", - "question_id": 11084, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000591", - "question_id": 11085, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000224", - "question_id": 11086, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000837", - "question_id": 11087, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00006284", - "question_id": 11088, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005669", - "question_id": 11089, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006389", - "question_id": 11091, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004668", - "question_id": 11092, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007527", - "question_id": 11095, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004226", - "question_id": 11097, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00001829", - "question_id": 11098, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006963", - "question_id": 11099, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00008572", - "question_id": 11100, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"middle\", \"bassoon\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002983", - "question_id": 11101, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00001621", - "question_id": 11103, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003122", - "question_id": 11106, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006008", - "question_id": 11107, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006171", - "question_id": 11108, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007809", - "question_id": 11109, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006333", - "question_id": 11110, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000403", - "question_id": 11114, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000564", - "question_id": 11118, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00007530", - "question_id": 11119, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001895", - "question_id": 11120, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"middle\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008815", - "question_id": 11121, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003426", - "question_id": 11124, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005175", - "question_id": 11125, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00003543", - "question_id": 11126, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002869", - "question_id": 11127, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000757", - "question_id": 11128, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000318", - "question_id": 11131, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007661", - "question_id": 11133, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005731", - "question_id": 11134, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001347", - "question_id": 11138, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008177", - "question_id": 11140, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002361", - "question_id": 11141, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000189", - "question_id": 11146, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000428", - "question_id": 11147, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008880", - "question_id": 11149, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004044", - "question_id": 11150, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002139", - "question_id": 11151, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004883", - "question_id": 11152, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00007972", - "question_id": 11154, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004268", - "question_id": 11155, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008787", - "question_id": 11157, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001303", - "question_id": 11159, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005815", - "question_id": 11160, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00007388", - "question_id": 11161, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001388", - "question_id": 11172, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001301", - "question_id": 11174, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006523", - "question_id": 11175, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00006610", - "question_id": 11176, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008117", - "question_id": 11177, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001574", - "question_id": 11181, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006193", - "question_id": 11184, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004205", - "question_id": 11185, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002313", - "question_id": 11186, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00001634", - "question_id": 11189, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003910", - "question_id": 11190, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000094", - "question_id": 11191, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00008771", - "question_id": 11192, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"left\", \"tuba\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005502", - "question_id": 11193, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00004252", - "question_id": 11194, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006367", - "question_id": 11195, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001494", - "question_id": 11196, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007031", - "question_id": 11197, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000757", - "question_id": 11199, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007440", - "question_id": 11200, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007440", - "question_id": 11200, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000002", - "question_id": 11201, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007853", - "question_id": 11202, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"drum\", \"right\", \"electric_bass\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008816", - "question_id": 11203, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001484", - "question_id": 11204, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004769", - "question_id": 11205, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005666", - "question_id": 11207, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003538", - "question_id": 11208, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008672", - "question_id": 11209, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"acoustic_guitar\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007850", - "question_id": 11214, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007087", - "question_id": 11216, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002871", - "question_id": 11218, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002380", - "question_id": 11219, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003978", - "question_id": 11223, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005398", - "question_id": 11225, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006686", - "question_id": 11226, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007002", - "question_id": 11228, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007159", - "question_id": 11230, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004233", - "question_id": 11231, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007999", - "question_id": 11233, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001325", - "question_id": 11234, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001112", - "question_id": 11235, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005038", - "question_id": 11236, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001055", - "question_id": 11237, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001990", - "question_id": 11239, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001990", - "question_id": 11239, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008773", - "question_id": 11241, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006307", - "question_id": 11243, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000961", - "question_id": 11245, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001824", - "question_id": 11246, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00001218", - "question_id": 11247, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002080", - "question_id": 11249, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008594", - "question_id": 11251, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001383", - "question_id": 11253, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008489", - "question_id": 11254, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001631", - "question_id": 11255, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007190", - "question_id": 11257, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007877", - "question_id": 11258, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002569", - "question_id": 11259, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001023", - "question_id": 11260, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005467", - "question_id": 11261, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006213", - "question_id": 11263, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008272", - "question_id": 11265, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001212", - "question_id": 11267, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003628", - "question_id": 11268, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006486", - "question_id": 11269, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007428", - "question_id": 11272, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003792", - "question_id": 11275, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005911", - "question_id": 11276, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006580", - "question_id": 11277, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bagpipe\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002887", - "question_id": 11278, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00001059", - "question_id": 11279, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000856", - "question_id": 11284, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003042", - "question_id": 11286, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007947", - "question_id": 11288, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00002377", - "question_id": 11290, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00008010", - "question_id": 11292, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005541", - "question_id": 11294, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003252", - "question_id": 11295, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001814", - "question_id": 11296, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006514", - "question_id": 11298, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000590", - "question_id": 11303, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003930", - "question_id": 11304, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006096", - "question_id": 11305, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002883", - "question_id": 11306, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006272", - "question_id": 11307, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00006789", - "question_id": 11309, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006213", - "question_id": 11310, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00005679", - "question_id": 11313, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003178", - "question_id": 11314, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000688", - "question_id": 11315, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006068", - "question_id": 11316, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005008", - "question_id": 11318, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000906", - "question_id": 11319, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006563", - "question_id": 11320, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001017", - "question_id": 11322, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007526", - "question_id": 11323, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007465", - "question_id": 11324, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008958", - "question_id": 11325, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007228", - "question_id": 11331, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008475", - "question_id": 11335, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001982", - "question_id": 11336, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006607", - "question_id": 11337, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007040", - "question_id": 11340, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006745", - "question_id": 11341, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"last\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004145", - "question_id": 11343, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003341", - "question_id": 11346, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006903", - "question_id": 11348, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006669", - "question_id": 11350, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00007153", - "question_id": 11353, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000651", - "question_id": 11355, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003039", - "question_id": 11356, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007294", - "question_id": 11358, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00000354", - "question_id": 11359, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003630", - "question_id": 11360, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003314", - "question_id": 11361, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005705", - "question_id": 11362, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"drum\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001566", - "question_id": 11364, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000604", - "question_id": 11368, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000983", - "question_id": 11369, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006654", - "question_id": 11370, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002189", - "question_id": 11371, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00005821", - "question_id": 11372, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001375", - "question_id": 11373, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001084", - "question_id": 11374, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"right\", \"drum\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001792", - "question_id": 11375, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001828", - "question_id": 11376, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004756", - "question_id": 11378, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006798", - "question_id": 11379, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002019", - "question_id": 11381, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007510", - "question_id": 11382, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00003248", - "question_id": 11383, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005468", - "question_id": 11387, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000806", - "question_id": 11388, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008216", - "question_id": 11389, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003117", - "question_id": 11390, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004928", - "question_id": 11391, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006329", - "question_id": 11392, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000060", - "question_id": 11393, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008977", - "question_id": 11394, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001935", - "question_id": 11396, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004769", - "question_id": 11398, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006383", - "question_id": 11399, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006902", - "question_id": 11400, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000508", - "question_id": 11403, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000941", - "question_id": 11404, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006242", - "question_id": 11405, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001687", - "question_id": 11407, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008351", - "question_id": 11408, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000972", - "question_id": 11410, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004693", - "question_id": 11411, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006031", - "question_id": 11414, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005235", - "question_id": 11415, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005903", - "question_id": 11416, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002069", - "question_id": 11419, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004076", - "question_id": 11420, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002363", - "question_id": 11421, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002363", - "question_id": 11421, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007716", - "question_id": 11423, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00006286", - "question_id": 11425, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007731", - "question_id": 11426, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004713", - "question_id": 11428, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007744", - "question_id": 11429, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004179", - "question_id": 11430, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007736", - "question_id": 11431, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000294", - "question_id": 11433, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006320", - "question_id": 11434, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008537", - "question_id": 11435, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005440", - "question_id": 11437, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002069", - "question_id": 11439, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001567", - "question_id": 11440, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003107", - "question_id": 11441, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001717", - "question_id": 11442, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008560", - "question_id": 11443, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004743", - "question_id": 11445, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005886", - "question_id": 11446, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002408", - "question_id": 11449, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006524", - "question_id": 11450, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"pipa\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003831", - "question_id": 11451, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007291", - "question_id": 11453, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002838", - "question_id": 11454, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004668", - "question_id": 11456, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007790", - "question_id": 11457, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005234", - "question_id": 11458, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001331", - "question_id": 11461, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006664", - "question_id": 11462, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000247", - "question_id": 11463, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bagpipe\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006370", - "question_id": 11464, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004434", - "question_id": 11466, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00004692", - "question_id": 11467, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007133", - "question_id": 11468, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007143", - "question_id": 11469, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007246", - "question_id": 11471, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000596", - "question_id": 11472, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001933", - "question_id": 11473, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001925", - "question_id": 11474, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004874", - "question_id": 11477, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"xylophone\", \"right\", \"electric_bass\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004360", - "question_id": 11480, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006036", - "question_id": 11481, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001764", - "question_id": 11482, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00005990", - "question_id": 11483, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002517", - "question_id": 11484, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001946", - "question_id": 11485, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008671", - "question_id": 11486, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002242", - "question_id": 11487, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006911", - "question_id": 11488, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004464", - "question_id": 11490, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006631", - "question_id": 11491, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003000", - "question_id": 11494, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005535", - "question_id": 11495, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000238", - "question_id": 11496, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003213", - "question_id": 11497, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006924", - "question_id": 11499, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004039", - "question_id": 11500, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008932", - "question_id": 11501, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002773", - "question_id": 11503, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002228", - "question_id": 11504, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"piano\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007064", - "question_id": 11505, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008252", - "question_id": 11507, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00008739", - "question_id": 11508, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002428", - "question_id": 11509, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002536", - "question_id": 11510, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007593", - "question_id": 11511, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000980", - "question_id": 11512, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002371", - "question_id": 11513, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000314", - "question_id": 11514, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007459", - "question_id": 11515, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002286", - "question_id": 11516, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001833", - "question_id": 11519, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005768", - "question_id": 11520, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006893", - "question_id": 11521, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004935", - "question_id": 11522, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004900", - "question_id": 11525, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003964", - "question_id": 11529, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001548", - "question_id": 11530, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001108", - "question_id": 11531, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00007893", - "question_id": 11532, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001941", - "question_id": 11534, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00002549", - "question_id": 11535, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000761", - "question_id": 11536, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002023", - "question_id": 11539, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008574", - "question_id": 11540, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004371", - "question_id": 11541, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003814", - "question_id": 11542, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002865", - "question_id": 11543, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"right\", \"electric_bass\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003757", - "question_id": 11544, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000002", - "question_id": 11545, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002385", - "question_id": 11549, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003055", - "question_id": 11550, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006392", - "question_id": 11551, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008336", - "question_id": 11554, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006469", - "question_id": 11555, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006691", - "question_id": 11556, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004855", - "question_id": 11557, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000496", - "question_id": 11558, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006893", - "question_id": 11560, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004225", - "question_id": 11561, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bagpipe\", \"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005359", - "question_id": 11562, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002185", - "question_id": 11563, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003802", - "question_id": 11564, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002603", - "question_id": 11566, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003496", - "question_id": 11568, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000537", - "question_id": 11569, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001544", - "question_id": 11570, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001633", - "question_id": 11571, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008306", - "question_id": 11573, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008309", - "question_id": 11574, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00005591", - "question_id": 11576, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004410", - "question_id": 11577, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000557", - "question_id": 11578, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004832", - "question_id": 11579, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008195", - "question_id": 11580, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006525", - "question_id": 11581, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007631", - "question_id": 11582, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004551", - "question_id": 11584, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000083", - "question_id": 11585, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002231", - "question_id": 11587, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004135", - "question_id": 11589, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002680", - "question_id": 11591, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008814", - "question_id": 11593, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006841", - "question_id": 11594, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005954", - "question_id": 11595, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003451", - "question_id": 11596, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008910", - "question_id": 11597, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008290", - "question_id": 11598, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004709", - "question_id": 11599, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000390", - "question_id": 11600, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006398", - "question_id": 11602, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007548", - "question_id": 11604, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008285", - "question_id": 11605, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004415", - "question_id": 11606, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006790", - "question_id": 11607, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001835", - "question_id": 11608, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001679", - "question_id": 11609, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002651", - "question_id": 11610, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007036", - "question_id": 11611, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007034", - "question_id": 11614, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008471", - "question_id": 11616, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004124", - "question_id": 11619, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008753", - "question_id": 11620, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005899", - "question_id": 11621, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007282", - "question_id": 11623, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003548", - "question_id": 11625, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007420", - "question_id": 11626, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008486", - "question_id": 11627, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000105", - "question_id": 11628, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001795", - "question_id": 11629, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006828", - "question_id": 11630, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007316", - "question_id": 11631, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004506", - "question_id": 11632, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008339", - "question_id": 11633, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005925", - "question_id": 11634, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007239", - "question_id": 11636, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008258", - "question_id": 11638, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003974", - "question_id": 11641, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004970", - "question_id": 11642, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007219", - "question_id": 11643, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008728", - "question_id": 11644, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007566", - "question_id": 11645, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001148", - "question_id": 11647, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005278", - "question_id": 11648, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007240", - "question_id": 11650, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005339", - "question_id": 11652, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00002113", - "question_id": 11654, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00000944", - "question_id": 11659, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001753", - "question_id": 11662, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003505", - "question_id": 11663, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"last\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000445", - "question_id": 11664, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007739", - "question_id": 11665, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003964", - "question_id": 11666, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00008694", - "question_id": 11668, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002018", - "question_id": 11672, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002818", - "question_id": 11675, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004750", - "question_id": 11679, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008602", - "question_id": 11680, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00003874", - "question_id": 11682, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00000169", - "question_id": 11683, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007590", - "question_id": 11684, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001959", - "question_id": 11685, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003575", - "question_id": 11686, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002719", - "question_id": 11687, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003878", - "question_id": 11690, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002096", - "question_id": 11692, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00008359", - "question_id": 11693, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005185", - "question_id": 11695, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007119", - "question_id": 11697, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002050", - "question_id": 11698, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007907", - "question_id": 11699, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003259", - "question_id": 11700, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00007511", - "question_id": 11701, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006576", - "question_id": 11702, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007461", - "question_id": 11703, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001428", - "question_id": 11705, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000319", - "question_id": 11706, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003592", - "question_id": 11707, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00004934", - "question_id": 11708, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006743", - "question_id": 11711, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"tuba\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008720", - "question_id": 11713, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"xylophone\", \"left\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008107", - "question_id": 11715, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008107", - "question_id": 11715, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001933", - "question_id": 11716, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002578", - "question_id": 11717, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004398", - "question_id": 11718, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00007924", - "question_id": 11722, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002331", - "question_id": 11723, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002123", - "question_id": 11724, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00001429", - "question_id": 11725, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007454", - "question_id": 11727, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004641", - "question_id": 11728, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00002239", - "question_id": 11730, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001687", - "question_id": 11731, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002058", - "question_id": 11732, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008635", - "question_id": 11733, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007351", - "question_id": 11734, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006693", - "question_id": 11735, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006287", - "question_id": 11736, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004917", - "question_id": 11738, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007819", - "question_id": 11739, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003031", - "question_id": 11740, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002718", - "question_id": 11742, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007176", - "question_id": 11744, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006911", - "question_id": 11745, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007472", - "question_id": 11746, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001814", - "question_id": 11747, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008637", - "question_id": 11748, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001668", - "question_id": 11749, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008261", - "question_id": 11750, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002593", - "question_id": 11751, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008120", - "question_id": 11752, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001170", - "question_id": 11754, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000843", - "question_id": 11756, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000320", - "question_id": 11758, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002949", - "question_id": 11759, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001121", - "question_id": 11760, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003944", - "question_id": 11761, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000626", - "question_id": 11762, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002474", - "question_id": 11764, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00000181", - "question_id": 11765, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008527", - "question_id": 11766, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006594", - "question_id": 11767, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006931", - "question_id": 11768, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003187", - "question_id": 11769, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003713", - "question_id": 11770, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006782", - "question_id": 11771, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001957", - "question_id": 11773, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006862", - "question_id": 11777, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007131", - "question_id": 11779, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00008186", - "question_id": 11780, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004602", - "question_id": 11781, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00003111", - "question_id": 11782, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004493", - "question_id": 11785, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001153", - "question_id": 11786, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000965", - "question_id": 11788, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001143", - "question_id": 11792, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004247", - "question_id": 11794, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002991", - "question_id": 11796, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003599", - "question_id": 11798, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00004048", - "question_id": 11800, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001937", - "question_id": 11801, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000772", - "question_id": 11802, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006321", - "question_id": 11803, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000341", - "question_id": 11804, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002908", - "question_id": 11806, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005877", - "question_id": 11810, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000402", - "question_id": 11811, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00008464", - "question_id": 11814, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002422", - "question_id": 11816, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004363", - "question_id": 11817, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00007961", - "question_id": 11818, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004409", - "question_id": 11819, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007948", - "question_id": 11821, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002796", - "question_id": 11822, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002179", - "question_id": 11826, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007960", - "question_id": 11827, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00002981", - "question_id": 11828, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001976", - "question_id": 11832, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003896", - "question_id": 11833, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001152", - "question_id": 11834, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003316", - "question_id": 11835, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000882", - "question_id": 11836, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00007472", - "question_id": 11838, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001352", - "question_id": 11839, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005784", - "question_id": 11840, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006595", - "question_id": 11841, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006251", - "question_id": 11844, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002864", - "question_id": 11845, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007413", - "question_id": 11847, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004747", - "question_id": 11849, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008614", - "question_id": 11852, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006559", - "question_id": 11853, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004508", - "question_id": 11856, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006314", - "question_id": 11860, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004325", - "question_id": 11862, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00001219", - "question_id": 11866, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003548", - "question_id": 11868, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003794", - "question_id": 11869, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001538", - "question_id": 11870, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004227", - "question_id": 11872, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000018", - "question_id": 11873, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008290", - "question_id": 11874, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007053", - "question_id": 11875, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00001109", - "question_id": 11876, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00002046", - "question_id": 11877, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003872", - "question_id": 11878, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001481", - "question_id": 11880, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008058", - "question_id": 11881, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003348", - "question_id": 11883, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003009", - "question_id": 11884, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002862", - "question_id": 11885, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008822", - "question_id": 11886, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006166", - "question_id": 11887, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00000347", - "question_id": 11888, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008747", - "question_id": 11889, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003366", - "question_id": 11890, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006897", - "question_id": 11891, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006945", - "question_id": 11892, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000246", - "question_id": 11894, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00003717", - "question_id": 11895, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00000600", - "question_id": 11896, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000697", - "question_id": 11897, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008199", - "question_id": 11898, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001055", - "question_id": 11899, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00005576", - "question_id": 11900, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00004463", - "question_id": 11903, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004761", - "question_id": 11904, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001880", - "question_id": 11905, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00001744", - "question_id": 11907, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007946", - "question_id": 11908, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002285", - "question_id": 11911, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001760", - "question_id": 11915, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001124", - "question_id": 11917, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003604", - "question_id": 11918, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00000742", - "question_id": 11919, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006742", - "question_id": 11920, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00008710", - "question_id": 11921, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004415", - "question_id": 11922, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005217", - "question_id": 11925, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005214", - "question_id": 11926, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000181", - "question_id": 11927, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008938", - "question_id": 11928, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007767", - "question_id": 11929, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006656", - "question_id": 11934, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004210", - "question_id": 11935, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004234", - "question_id": 11937, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004457", - "question_id": 11941, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008121", - "question_id": 11942, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000662", - "question_id": 11944, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008341", - "question_id": 11945, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005979", - "question_id": 11946, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000002", - "question_id": 11947, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003285", - "question_id": 11948, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003285", - "question_id": 11948, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006825", - "question_id": 11950, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003856", - "question_id": 11951, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006749", - "question_id": 11952, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001216", - "question_id": 11953, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00008909", - "question_id": 11954, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005363", - "question_id": 11955, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007996", - "question_id": 11956, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001034", - "question_id": 11957, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00007550", - "question_id": 11959, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000509", - "question_id": 11960, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00004152", - "question_id": 11961, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008536", - "question_id": 11964, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006525", - "question_id": 11965, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003450", - "question_id": 11966, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002778", - "question_id": 11967, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002432", - "question_id": 11969, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007090", - "question_id": 11971, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006919", - "question_id": 11972, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005083", - "question_id": 11973, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008217", - "question_id": 11975, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000861", - "question_id": 11976, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00006155", - "question_id": 11980, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004314", - "question_id": 11982, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00004216", - "question_id": 11984, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008691", - "question_id": 11985, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002699", - "question_id": 11987, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003749", - "question_id": 11988, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00008878", - "question_id": 11989, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004715", - "question_id": 11990, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006570", - "question_id": 11991, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001457", - "question_id": 11992, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"middle\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001301", - "question_id": 11993, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008978", - "question_id": 11994, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005121", - "question_id": 11995, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000599", - "question_id": 11996, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008330", - "question_id": 11998, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007642", - "question_id": 12000, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004509", - "question_id": 12002, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006014", - "question_id": 12003, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007984", - "question_id": 12007, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007274", - "question_id": 12008, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006246", - "question_id": 12009, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00000835", - "question_id": 12011, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008714", - "question_id": 12012, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008783", - "question_id": 12014, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006448", - "question_id": 12015, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004796", - "question_id": 12018, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008942", - "question_id": 12019, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008034", - "question_id": 12020, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000902", - "question_id": 12022, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001467", - "question_id": 12024, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"saxophone\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005327", - "question_id": 12025, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004215", - "question_id": 12026, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004936", - "question_id": 12028, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"middle\", \"tuba\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008662", - "question_id": 12029, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003283", - "question_id": 12030, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000407", - "question_id": 12031, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002223", - "question_id": 12032, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00003447", - "question_id": 12034, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005993", - "question_id": 12035, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00002623", - "question_id": 12038, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007031", - "question_id": 12040, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008399", - "question_id": 12041, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002411", - "question_id": 12042, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003492", - "question_id": 12045, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008582", - "question_id": 12046, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007748", - "question_id": 12047, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000870", - "question_id": 12049, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003435", - "question_id": 12053, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005167", - "question_id": 12054, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001508", - "question_id": 12055, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000201", - "question_id": 12056, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00006008", - "question_id": 12057, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001482", - "question_id": 12058, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"middle\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007871", - "question_id": 12060, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002843", - "question_id": 12061, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00006453", - "question_id": 12062, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006899", - "question_id": 12063, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001556", - "question_id": 12064, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004590", - "question_id": 12065, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001798", - "question_id": 12066, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005808", - "question_id": 12067, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007205", - "question_id": 12070, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004092", - "question_id": 12071, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00002456", - "question_id": 12074, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008642", - "question_id": 12077, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003744", - "question_id": 12079, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006060", - "question_id": 12081, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004844", - "question_id": 12082, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007315", - "question_id": 12083, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007447", - "question_id": 12085, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00005454", - "question_id": 12086, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005410", - "question_id": 12088, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001566", - "question_id": 12091, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006805", - "question_id": 12092, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005561", - "question_id": 12093, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002476", - "question_id": 12094, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"electric_bass\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002766", - "question_id": 12096, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007623", - "question_id": 12098, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000097", - "question_id": 12099, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007490", - "question_id": 12102, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001052", - "question_id": 12103, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006657", - "question_id": 12104, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007637", - "question_id": 12106, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003755", - "question_id": 12107, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007889", - "question_id": 12109, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003417", - "question_id": 12110, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002870", - "question_id": 12111, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00007193", - "question_id": 12112, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00004976", - "question_id": 12113, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002579", - "question_id": 12114, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003738", - "question_id": 12115, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00007335", - "question_id": 12117, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007953", - "question_id": 12118, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00004893", - "question_id": 12119, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002492", - "question_id": 12120, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001153", - "question_id": 12122, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002078", - "question_id": 12124, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005181", - "question_id": 12125, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005380", - "question_id": 12126, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005324", - "question_id": 12127, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000120", - "question_id": 12128, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008656", - "question_id": 12129, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00002464", - "question_id": 12130, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001325", - "question_id": 12131, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"tuba\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004362", - "question_id": 12132, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"xylophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007347", - "question_id": 12133, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002029", - "question_id": 12134, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000813", - "question_id": 12135, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"bassoon\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002531", - "question_id": 12136, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002563", - "question_id": 12138, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004458", - "question_id": 12139, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006992", - "question_id": 12140, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001579", - "question_id": 12141, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004748", - "question_id": 12143, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00000763", - "question_id": 12144, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"middle\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000414", - "question_id": 12145, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008405", - "question_id": 12146, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004423", - "question_id": 12147, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004696", - "question_id": 12148, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003109", - "question_id": 12151, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"bagpipe\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007595", - "question_id": 12153, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001771", - "question_id": 12154, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00001136", - "question_id": 12157, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "eight" - }, - { - "video_id": "00008338", - "question_id": 12158, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002292", - "question_id": 12160, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004832", - "question_id": 12161, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005695", - "question_id": 12162, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000591", - "question_id": 12164, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00001474", - "question_id": 12165, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00008511", - "question_id": 12166, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00008710", - "question_id": 12167, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001909", - "question_id": 12168, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005655", - "question_id": 12169, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006766", - "question_id": 12170, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004244", - "question_id": 12174, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002197", - "question_id": 12175, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003834", - "question_id": 12176, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001638", - "question_id": 12178, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00001790", - "question_id": 12181, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005640", - "question_id": 12182, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00007738", - "question_id": 12183, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005100", - "question_id": 12184, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00000915", - "question_id": 12185, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "more than ten" - }, - { - "video_id": "00004573", - "question_id": 12186, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00000312", - "question_id": 12187, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00007556", - "question_id": 12188, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007497", - "question_id": 12189, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000020", - "question_id": 12192, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001791", - "question_id": 12193, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005936", - "question_id": 12194, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000479", - "question_id": 12195, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002057", - "question_id": 12196, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002339", - "question_id": 12197, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005907", - "question_id": 12198, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003165", - "question_id": 12199, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"congas\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000007", - "question_id": 12200, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004120", - "question_id": 12201, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003433", - "question_id": 12202, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000602", - "question_id": 12203, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003114", - "question_id": 12204, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00004393", - "question_id": 12206, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004831", - "question_id": 12207, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004186", - "question_id": 12208, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000039", - "question_id": 12209, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001519", - "question_id": 12210, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002400", - "question_id": 12211, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002318", - "question_id": 12212, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008244", - "question_id": 12213, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000263", - "question_id": 12215, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"drum\", \"right\", \"electric_bass\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002026", - "question_id": 12216, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"right\", \"bassoon\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007404", - "question_id": 12218, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001453", - "question_id": 12220, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"middle\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001359", - "question_id": 12222, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008780", - "question_id": 12225, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000207", - "question_id": 12227, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006527", - "question_id": 12228, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"bassoon\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001256", - "question_id": 12229, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000218", - "question_id": 12230, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002444", - "question_id": 12231, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004479", - "question_id": 12232, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003989", - "question_id": 12233, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002298", - "question_id": 12235, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005632", - "question_id": 12237, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005712", - "question_id": 12238, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007223", - "question_id": 12239, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "seven" - }, - { - "video_id": "00004407", - "question_id": 12240, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005633", - "question_id": 12242, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007007", - "question_id": 12244, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002927", - "question_id": 12245, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000431", - "question_id": 12246, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008112", - "question_id": 12248, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006481", - "question_id": 12250, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008547", - "question_id": 12251, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004564", - "question_id": 12252, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005132", - "question_id": 12255, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007227", - "question_id": 12257, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004713", - "question_id": 12260, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008453", - "question_id": 12261, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004810", - "question_id": 12262, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00008260", - "question_id": 12263, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00008438", - "question_id": 12264, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004734", - "question_id": 12267, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006057", - "question_id": 12268, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005251", - "question_id": 12269, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008074", - "question_id": 12271, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00003358", - "question_id": 12272, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004656", - "question_id": 12273, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"middle\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005271", - "question_id": 12275, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00002124", - "question_id": 12277, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003443", - "question_id": 12278, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002471", - "question_id": 12279, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"middle\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001216", - "question_id": 12280, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000719", - "question_id": 12281, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003928", - "question_id": 12282, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005400", - "question_id": 12283, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"banjo\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004689", - "question_id": 12284, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003602", - "question_id": 12285, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00007914", - "question_id": 12286, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002115", - "question_id": 12287, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008698", - "question_id": 12288, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"bassoon\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000318", - "question_id": 12289, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004058", - "question_id": 12291, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"middle\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004196", - "question_id": 12292, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008515", - "question_id": 12296, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002189", - "question_id": 12298, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005597", - "question_id": 12299, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007362", - "question_id": 12300, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007345", - "question_id": 12302, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005861", - "question_id": 12303, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005011", - "question_id": 12304, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006957", - "question_id": 12305, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008750", - "question_id": 12307, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002483", - "question_id": 12308, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000053", - "question_id": 12309, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003668", - "question_id": 12310, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "eight" - }, - { - "video_id": "00003873", - "question_id": 12311, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001433", - "question_id": 12312, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00007847", - "question_id": 12313, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00006710", - "question_id": 12314, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003004", - "question_id": 12318, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00001473", - "question_id": 12320, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000128", - "question_id": 12322, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007388", - "question_id": 12323, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002263", - "question_id": 12324, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001047", - "question_id": 12326, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008370", - "question_id": 12328, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007955", - "question_id": 12335, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003003", - "question_id": 12340, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001043", - "question_id": 12341, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001628", - "question_id": 12342, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000932", - "question_id": 12343, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007453", - "question_id": 12344, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008172", - "question_id": 12347, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005004", - "question_id": 12348, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00004719", - "question_id": 12349, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001506", - "question_id": 12350, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005866", - "question_id": 12352, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001565", - "question_id": 12353, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00005311", - "question_id": 12356, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000631", - "question_id": 12357, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004244", - "question_id": 12358, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000131", - "question_id": 12359, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001781", - "question_id": 12361, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001335", - "question_id": 12362, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000753", - "question_id": 12364, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002918", - "question_id": 12365, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004829", - "question_id": 12368, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008796", - "question_id": 12369, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00004201", - "question_id": 12372, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002941", - "question_id": 12374, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007720", - "question_id": 12375, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006688", - "question_id": 12376, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00001490", - "question_id": 12377, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001916", - "question_id": 12378, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002609", - "question_id": 12380, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000349", - "question_id": 12381, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007379", - "question_id": 12383, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003170", - "question_id": 12384, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001910", - "question_id": 12385, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004733", - "question_id": 12388, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008271", - "question_id": 12389, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008954", - "question_id": 12391, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002149", - "question_id": 12393, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006574", - "question_id": 12394, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005755", - "question_id": 12396, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000085", - "question_id": 12398, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008958", - "question_id": 12399, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003913", - "question_id": 12400, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00007039", - "question_id": 12403, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005825", - "question_id": 12404, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004930", - "question_id": 12405, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00007802", - "question_id": 12406, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008543", - "question_id": 12407, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008510", - "question_id": 12408, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001388", - "question_id": 12409, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00006325", - "question_id": 12412, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004291", - "question_id": 12414, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002715", - "question_id": 12416, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"bassoon\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007829", - "question_id": 12417, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003174", - "question_id": 12420, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00008358", - "question_id": 12421, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006276", - "question_id": 12422, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001491", - "question_id": 12423, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001165", - "question_id": 12424, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000167", - "question_id": 12426, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006333", - "question_id": 12427, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004147", - "question_id": 12428, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003797", - "question_id": 12429, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004891", - "question_id": 12430, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000724", - "question_id": 12431, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001949", - "question_id": 12432, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001489", - "question_id": 12433, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005360", - "question_id": 12434, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005078", - "question_id": 12436, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00000341", - "question_id": 12439, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006692", - "question_id": 12441, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00004624", - "question_id": 12442, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001975", - "question_id": 12445, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002354", - "question_id": 12446, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005670", - "question_id": 12447, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006958", - "question_id": 12449, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003392", - "question_id": 12450, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002709", - "question_id": 12451, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004387", - "question_id": 12452, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007201", - "question_id": 12454, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003410", - "question_id": 12455, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00003659", - "question_id": 12456, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00002530", - "question_id": 12457, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000429", - "question_id": 12458, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006332", - "question_id": 12460, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006536", - "question_id": 12463, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008898", - "question_id": 12471, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005081", - "question_id": 12472, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002961", - "question_id": 12475, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008295", - "question_id": 12477, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004237", - "question_id": 12478, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008594", - "question_id": 12481, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004086", - "question_id": 12482, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008366", - "question_id": 12484, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003728", - "question_id": 12485, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002187", - "question_id": 12486, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003625", - "question_id": 12487, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00000860", - "question_id": 12489, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bagpipe\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001083", - "question_id": 12490, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002721", - "question_id": 12492, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002965", - "question_id": 12493, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004537", - "question_id": 12494, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003953", - "question_id": 12495, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007564", - "question_id": 12496, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004638", - "question_id": 12497, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000355", - "question_id": 12499, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00001071", - "question_id": 12500, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002368", - "question_id": 12501, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001072", - "question_id": 12505, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003902", - "question_id": 12506, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001676", - "question_id": 12507, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007329", - "question_id": 12508, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000971", - "question_id": 12509, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00007252", - "question_id": 12510, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001184", - "question_id": 12512, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002625", - "question_id": 12516, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00001116", - "question_id": 12518, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007374", - "question_id": 12519, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003962", - "question_id": 12520, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004057", - "question_id": 12521, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"drum\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007701", - "question_id": 12523, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001580", - "question_id": 12524, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008483", - "question_id": 12526, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002332", - "question_id": 12527, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002746", - "question_id": 12528, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007637", - "question_id": 12529, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004784", - "question_id": 12530, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004599", - "question_id": 12531, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006580", - "question_id": 12533, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006009", - "question_id": 12534, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00007797", - "question_id": 12535, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006194", - "question_id": 12536, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005322", - "question_id": 12538, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001540", - "question_id": 12539, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001714", - "question_id": 12540, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003794", - "question_id": 12542, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002495", - "question_id": 12543, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003578", - "question_id": 12544, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002022", - "question_id": 12545, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00003274", - "question_id": 12546, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004267", - "question_id": 12548, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001185", - "question_id": 12551, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001922", - "question_id": 12552, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003443", - "question_id": 12553, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001202", - "question_id": 12556, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007246", - "question_id": 12557, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003633", - "question_id": 12558, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000670", - "question_id": 12559, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007767", - "question_id": 12560, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002451", - "question_id": 12561, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004867", - "question_id": 12562, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001140", - "question_id": 12565, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001319", - "question_id": 12566, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002660", - "question_id": 12571, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"xylophone\", \"left\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006354", - "question_id": 12573, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006483", - "question_id": 12575, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001834", - "question_id": 12577, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002033", - "question_id": 12579, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003072", - "question_id": 12580, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002834", - "question_id": 12582, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004607", - "question_id": 12583, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004779", - "question_id": 12584, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000594", - "question_id": 12589, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002400", - "question_id": 12590, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000703", - "question_id": 12592, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004986", - "question_id": 12593, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006889", - "question_id": 12595, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001895", - "question_id": 12597, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000429", - "question_id": 12598, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001965", - "question_id": 12599, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007148", - "question_id": 12600, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002114", - "question_id": 12602, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"tuba\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007636", - "question_id": 12604, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005977", - "question_id": 12605, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00008871", - "question_id": 12607, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005512", - "question_id": 12608, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00003716", - "question_id": 12609, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002052", - "question_id": 12611, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002326", - "question_id": 12612, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00005094", - "question_id": 12614, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006406", - "question_id": 12615, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00003163", - "question_id": 12618, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001817", - "question_id": 12619, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002351", - "question_id": 12620, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005312", - "question_id": 12621, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008796", - "question_id": 12624, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004503", - "question_id": 12626, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000869", - "question_id": 12628, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003995", - "question_id": 12629, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00003440", - "question_id": 12630, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002599", - "question_id": 12632, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00003664", - "question_id": 12634, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003876", - "question_id": 12636, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001161", - "question_id": 12637, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"erhu\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007477", - "question_id": 12641, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00003726", - "question_id": 12642, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007202", - "question_id": 12643, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00001515", - "question_id": 12644, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006068", - "question_id": 12646, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003596", - "question_id": 12647, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000355", - "question_id": 12648, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000101", - "question_id": 12649, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005785", - "question_id": 12653, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003977", - "question_id": 12654, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006846", - "question_id": 12655, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003724", - "question_id": 12657, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"middle\", \"trumpet\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001116", - "question_id": 12658, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004232", - "question_id": 12661, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00000213", - "question_id": 12663, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004166", - "question_id": 12664, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002498", - "question_id": 12666, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008968", - "question_id": 12667, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00007579", - "question_id": 12670, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003129", - "question_id": 12671, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000237", - "question_id": 12672, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006392", - "question_id": 12673, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00001317", - "question_id": 12674, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003066", - "question_id": 12675, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005589", - "question_id": 12678, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000695", - "question_id": 12679, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008503", - "question_id": 12680, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007566", - "question_id": 12681, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004869", - "question_id": 12683, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000213", - "question_id": 12685, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001642", - "question_id": 12686, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006265", - "question_id": 12687, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003958", - "question_id": 12689, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001017", - "question_id": 12690, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000274", - "question_id": 12692, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000541", - "question_id": 12694, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003608", - "question_id": 12697, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005910", - "question_id": 12698, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007486", - "question_id": 12699, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005276", - "question_id": 12700, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00006696", - "question_id": 12701, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005735", - "question_id": 12702, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005893", - "question_id": 12703, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004072", - "question_id": 12704, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002001", - "question_id": 12706, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005591", - "question_id": 12707, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000304", - "question_id": 12708, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004857", - "question_id": 12709, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006472", - "question_id": 12710, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002260", - "question_id": 12715, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003617", - "question_id": 12719, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00002038", - "question_id": 12722, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008954", - "question_id": 12723, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008856", - "question_id": 12725, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000616", - "question_id": 12726, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006799", - "question_id": 12729, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003687", - "question_id": 12730, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003626", - "question_id": 12733, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001896", - "question_id": 12734, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005411", - "question_id": 12736, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006030", - "question_id": 12737, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000717", - "question_id": 12738, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000732", - "question_id": 12739, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002615", - "question_id": 12741, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005836", - "question_id": 12742, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007051", - "question_id": 12743, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003364", - "question_id": 12744, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007857", - "question_id": 12745, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005025", - "question_id": 12746, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00000656", - "question_id": 12747, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"xylophone\", \"left\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006038", - "question_id": 12749, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008445", - "question_id": 12750, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007251", - "question_id": 12751, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003688", - "question_id": 12754, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001667", - "question_id": 12756, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003971", - "question_id": 12758, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004430", - "question_id": 12762, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001216", - "question_id": 12763, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005088", - "question_id": 12764, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004421", - "question_id": 12765, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005302", - "question_id": 12766, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"congas\", \"left\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006566", - "question_id": 12767, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"bassoon\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006058", - "question_id": 12768, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001634", - "question_id": 12769, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003342", - "question_id": 12770, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005229", - "question_id": 12772, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000970", - "question_id": 12773, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003521", - "question_id": 12774, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002723", - "question_id": 12775, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005202", - "question_id": 12776, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005866", - "question_id": 12779, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007473", - "question_id": 12780, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004033", - "question_id": 12781, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002112", - "question_id": 12782, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001441", - "question_id": 12783, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"congas\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000082", - "question_id": 12785, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00003210", - "question_id": 12789, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006813", - "question_id": 12790, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002273", - "question_id": 12791, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006075", - "question_id": 12792, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005919", - "question_id": 12795, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00007044", - "question_id": 12796, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004979", - "question_id": 12800, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000981", - "question_id": 12801, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004146", - "question_id": 12802, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002244", - "question_id": 12803, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"middle\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003606", - "question_id": 12804, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008673", - "question_id": 12806, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006869", - "question_id": 12807, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005255", - "question_id": 12808, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000789", - "question_id": 12809, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00001528", - "question_id": 12810, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005135", - "question_id": 12812, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007608", - "question_id": 12813, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007832", - "question_id": 12814, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003602", - "question_id": 12815, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003522", - "question_id": 12816, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00001463", - "question_id": 12817, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004425", - "question_id": 12818, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005717", - "question_id": 12819, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002242", - "question_id": 12821, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005353", - "question_id": 12822, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006188", - "question_id": 12823, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008424", - "question_id": 12824, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007269", - "question_id": 12825, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"middle\", \"trumpet\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008604", - "question_id": 12828, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005590", - "question_id": 12829, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000186", - "question_id": 12830, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000467", - "question_id": 12831, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000577", - "question_id": 12832, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002917", - "question_id": 12834, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000940", - "question_id": 12835, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002832", - "question_id": 12836, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000666", - "question_id": 12837, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004611", - "question_id": 12839, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004890", - "question_id": 12840, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003892", - "question_id": 12841, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00007119", - "question_id": 12842, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005703", - "question_id": 12843, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001799", - "question_id": 12845, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006378", - "question_id": 12850, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006874", - "question_id": 12851, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005569", - "question_id": 12853, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000728", - "question_id": 12855, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005409", - "question_id": 12859, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000104", - "question_id": 12861, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002003", - "question_id": 12862, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005538", - "question_id": 12864, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000433", - "question_id": 12865, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000865", - "question_id": 12866, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002415", - "question_id": 12867, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005873", - "question_id": 12868, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008680", - "question_id": 12869, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000489", - "question_id": 12870, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008141", - "question_id": 12872, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006709", - "question_id": 12873, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002378", - "question_id": 12876, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003289", - "question_id": 12877, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008565", - "question_id": 12881, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00001548", - "question_id": 12885, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008978", - "question_id": 12886, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00001766", - "question_id": 12887, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00000465", - "question_id": 12889, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007132", - "question_id": 12890, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008240", - "question_id": 12897, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003513", - "question_id": 12898, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006562", - "question_id": 12899, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008752", - "question_id": 12900, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007586", - "question_id": 12901, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003745", - "question_id": 12903, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000618", - "question_id": 12905, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003922", - "question_id": 12906, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003866", - "question_id": 12907, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007244", - "question_id": 12908, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006507", - "question_id": 12913, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003281", - "question_id": 12914, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002980", - "question_id": 12916, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00001645", - "question_id": 12917, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008193", - "question_id": 12918, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004411", - "question_id": 12919, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005207", - "question_id": 12921, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00005435", - "question_id": 12922, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00004426", - "question_id": 12925, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006485", - "question_id": 12926, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002468", - "question_id": 12927, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007471", - "question_id": 12928, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003321", - "question_id": 12929, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004891", - "question_id": 12930, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008512", - "question_id": 12931, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001915", - "question_id": 12932, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008728", - "question_id": 12933, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003309", - "question_id": 12934, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006688", - "question_id": 12935, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001007", - "question_id": 12936, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003877", - "question_id": 12937, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00008389", - "question_id": 12938, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00000357", - "question_id": 12939, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005239", - "question_id": 12940, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008012", - "question_id": 12941, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00003714", - "question_id": 12943, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007128", - "question_id": 12944, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005636", - "question_id": 12945, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002361", - "question_id": 12946, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005076", - "question_id": 12948, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003408", - "question_id": 12949, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00007665", - "question_id": 12950, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00005339", - "question_id": 12953, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002798", - "question_id": 12954, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002352", - "question_id": 12956, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00004532", - "question_id": 12957, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007133", - "question_id": 12958, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001059", - "question_id": 12961, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002580", - "question_id": 12963, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007493", - "question_id": 12967, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00000959", - "question_id": 12969, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008819", - "question_id": 12972, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000571", - "question_id": 12973, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000633", - "question_id": 12974, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001826", - "question_id": 12975, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00007980", - "question_id": 12976, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004500", - "question_id": 12978, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00005161", - "question_id": 12979, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008143", - "question_id": 12982, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000949", - "question_id": 12983, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005039", - "question_id": 12984, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001327", - "question_id": 12986, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000986", - "question_id": 12987, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006247", - "question_id": 12989, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007951", - "question_id": 12990, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003519", - "question_id": 12993, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004194", - "question_id": 12994, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002540", - "question_id": 12995, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003913", - "question_id": 12996, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001728", - "question_id": 12997, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005033", - "question_id": 12999, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004994", - "question_id": 13000, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005879", - "question_id": 13002, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000108", - "question_id": 13004, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000678", - "question_id": 13007, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008275", - "question_id": 13008, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"clarinet\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002318", - "question_id": 13009, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008583", - "question_id": 13010, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001464", - "question_id": 13012, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00008309", - "question_id": 13013, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000349", - "question_id": 13015, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003343", - "question_id": 13016, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004250", - "question_id": 13017, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000420", - "question_id": 13019, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001467", - "question_id": 13020, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007065", - "question_id": 13021, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001141", - "question_id": 13022, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004342", - "question_id": 13023, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004164", - "question_id": 13025, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000317", - "question_id": 13026, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007136", - "question_id": 13029, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007183", - "question_id": 13031, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000324", - "question_id": 13033, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008950", - "question_id": 13035, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008857", - "question_id": 13036, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "ten" - }, - { - "video_id": "00006363", - "question_id": 13037, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002022", - "question_id": 13038, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003687", - "question_id": 13039, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006230", - "question_id": 13041, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003995", - "question_id": 13042, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003237", - "question_id": 13044, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007114", - "question_id": 13046, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003189", - "question_id": 13047, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005398", - "question_id": 13048, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003956", - "question_id": 13049, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000516", - "question_id": 13050, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007568", - "question_id": 13052, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001978", - "question_id": 13054, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001087", - "question_id": 13057, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008428", - "question_id": 13058, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008144", - "question_id": 13059, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000280", - "question_id": 13061, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004468", - "question_id": 13062, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003963", - "question_id": 13063, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007344", - "question_id": 13064, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005688", - "question_id": 13066, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005621", - "question_id": 13067, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007142", - "question_id": 13069, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003916", - "question_id": 13071, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008268", - "question_id": 13072, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001394", - "question_id": 13073, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006406", - "question_id": 13075, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"right\", \"electric_bass\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001144", - "question_id": 13076, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00005121", - "question_id": 13077, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008857", - "question_id": 13080, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007081", - "question_id": 13081, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002856", - "question_id": 13084, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008595", - "question_id": 13086, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006990", - "question_id": 13088, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006082", - "question_id": 13091, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006051", - "question_id": 13092, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003349", - "question_id": 13094, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"middle\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000456", - "question_id": 13095, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008604", - "question_id": 13100, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006094", - "question_id": 13102, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005310", - "question_id": 13104, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006802", - "question_id": 13105, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008838", - "question_id": 13106, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008948", - "question_id": 13109, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00007935", - "question_id": 13111, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006563", - "question_id": 13112, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"tuba\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006468", - "question_id": 13114, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001830", - "question_id": 13115, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007281", - "question_id": 13116, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004542", - "question_id": 13117, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005074", - "question_id": 13118, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002501", - "question_id": 13119, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008436", - "question_id": 13120, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004095", - "question_id": 13121, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001757", - "question_id": 13122, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004604", - "question_id": 13123, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003971", - "question_id": 13124, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00005464", - "question_id": 13125, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00007587", - "question_id": 13127, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006539", - "question_id": 13128, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004800", - "question_id": 13130, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006869", - "question_id": 13131, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00003224", - "question_id": 13132, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003749", - "question_id": 13134, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00008684", - "question_id": 13135, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005647", - "question_id": 13136, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006066", - "question_id": 13137, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006765", - "question_id": 13139, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006150", - "question_id": 13140, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002612", - "question_id": 13141, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001864", - "question_id": 13146, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008078", - "question_id": 13147, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00007007", - "question_id": 13148, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000223", - "question_id": 13149, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002958", - "question_id": 13151, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002161", - "question_id": 13152, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004474", - "question_id": 13153, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00002652", - "question_id": 13155, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002228", - "question_id": 13156, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002811", - "question_id": 13157, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006960", - "question_id": 13161, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"middle\", \"clarinet\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003759", - "question_id": 13162, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00005593", - "question_id": 13164, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008537", - "question_id": 13165, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004303", - "question_id": 13166, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001079", - "question_id": 13171, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003697", - "question_id": 13172, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008968", - "question_id": 13173, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005247", - "question_id": 13174, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"middle\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001520", - "question_id": 13175, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005278", - "question_id": 13176, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"trumpet\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003918", - "question_id": 13178, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "nine" - }, - { - "video_id": "00007439", - "question_id": 13180, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004634", - "question_id": 13183, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002759", - "question_id": 13184, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001650", - "question_id": 13185, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005709", - "question_id": 13186, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001435", - "question_id": 13187, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006014", - "question_id": 13188, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00003847", - "question_id": 13189, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004502", - "question_id": 13190, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008296", - "question_id": 13191, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000124", - "question_id": 13193, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008824", - "question_id": 13196, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006471", - "question_id": 13197, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003640", - "question_id": 13200, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002315", - "question_id": 13201, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008216", - "question_id": 13202, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005944", - "question_id": 13203, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002300", - "question_id": 13204, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005562", - "question_id": 13205, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001202", - "question_id": 13207, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002830", - "question_id": 13208, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00005593", - "question_id": 13209, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004928", - "question_id": 13210, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005255", - "question_id": 13212, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00007100", - "question_id": 13213, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003048", - "question_id": 13214, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004759", - "question_id": 13215, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007483", - "question_id": 13217, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005031", - "question_id": 13219, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00005902", - "question_id": 13220, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007427", - "question_id": 13221, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005620", - "question_id": 13222, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001164", - "question_id": 13225, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005803", - "question_id": 13226, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008465", - "question_id": 13227, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003028", - "question_id": 13229, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bagpipe\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004867", - "question_id": 13230, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005917", - "question_id": 13231, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004168", - "question_id": 13232, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007645", - "question_id": 13234, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003876", - "question_id": 13236, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002513", - "question_id": 13237, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00002863", - "question_id": 13239, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007620", - "question_id": 13240, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008583", - "question_id": 13242, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003086", - "question_id": 13243, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006735", - "question_id": 13248, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004219", - "question_id": 13250, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008754", - "question_id": 13252, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00004670", - "question_id": 13253, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008798", - "question_id": 13254, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008554", - "question_id": 13255, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002092", - "question_id": 13259, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001735", - "question_id": 13261, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008004", - "question_id": 13262, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005673", - "question_id": 13263, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006799", - "question_id": 13264, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008567", - "question_id": 13265, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004172", - "question_id": 13266, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00007996", - "question_id": 13268, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001167", - "question_id": 13270, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006178", - "question_id": 13273, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003562", - "question_id": 13274, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00004590", - "question_id": 13275, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002073", - "question_id": 13276, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004739", - "question_id": 13278, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006837", - "question_id": 13281, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008521", - "question_id": 13282, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008096", - "question_id": 13284, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006100", - "question_id": 13285, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002677", - "question_id": 13286, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00001858", - "question_id": 13287, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003515", - "question_id": 13288, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004391", - "question_id": 13289, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007370", - "question_id": 13292, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007213", - "question_id": 13294, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006201", - "question_id": 13295, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001194", - "question_id": 13296, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003311", - "question_id": 13297, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000293", - "question_id": 13299, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007147", - "question_id": 13300, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008481", - "question_id": 13302, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001140", - "question_id": 13304, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003565", - "question_id": 13305, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002413", - "question_id": 13307, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002371", - "question_id": 13310, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00003274", - "question_id": 13311, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008354", - "question_id": 13315, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008169", - "question_id": 13316, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000588", - "question_id": 13317, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000133", - "question_id": 13318, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008831", - "question_id": 13319, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008573", - "question_id": 13320, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004950", - "question_id": 13325, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001466", - "question_id": 13326, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000633", - "question_id": 13327, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008396", - "question_id": 13328, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00008046", - "question_id": 13329, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008623", - "question_id": 13330, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008135", - "question_id": 13331, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000003", - "question_id": 13332, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00008468", - "question_id": 13334, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003327", - "question_id": 13335, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006132", - "question_id": 13338, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007235", - "question_id": 13339, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000040", - "question_id": 13341, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007141", - "question_id": 13343, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002552", - "question_id": 13344, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008729", - "question_id": 13345, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002015", - "question_id": 13346, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002733", - "question_id": 13348, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00003797", - "question_id": 13349, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002316", - "question_id": 13350, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00002277", - "question_id": 13352, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008346", - "question_id": 13353, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008346", - "question_id": 13353, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008943", - "question_id": 13354, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006955", - "question_id": 13356, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000701", - "question_id": 13357, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00006553", - "question_id": 13358, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000644", - "question_id": 13360, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008789", - "question_id": 13362, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006266", - "question_id": 13363, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006954", - "question_id": 13365, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001374", - "question_id": 13368, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006573", - "question_id": 13369, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003671", - "question_id": 13371, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001444", - "question_id": 13373, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006837", - "question_id": 13374, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003909", - "question_id": 13375, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00007915", - "question_id": 13376, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004520", - "question_id": 13377, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007088", - "question_id": 13379, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00005857", - "question_id": 13381, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002723", - "question_id": 13382, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003987", - "question_id": 13385, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002600", - "question_id": 13386, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000928", - "question_id": 13387, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007487", - "question_id": 13388, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000254", - "question_id": 13390, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00003395", - "question_id": 13391, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002773", - "question_id": 13393, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003018", - "question_id": 13394, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005265", - "question_id": 13395, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00003998", - "question_id": 13398, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003753", - "question_id": 13399, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003432", - "question_id": 13402, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007306", - "question_id": 13403, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006117", - "question_id": 13404, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006125", - "question_id": 13407, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000238", - "question_id": 13408, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008620", - "question_id": 13410, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005016", - "question_id": 13411, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007982", - "question_id": 13412, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"pipa\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00006439", - "question_id": 13414, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002592", - "question_id": 13416, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008844", - "question_id": 13419, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00007017", - "question_id": 13420, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001233", - "question_id": 13421, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"right\", \"guzheng\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005663", - "question_id": 13424, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002613", - "question_id": 13425, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004562", - "question_id": 13428, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001543", - "question_id": 13429, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00005527", - "question_id": 13430, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004411", - "question_id": 13431, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002945", - "question_id": 13432, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007511", - "question_id": 13433, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007654", - "question_id": 13434, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003782", - "question_id": 13435, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008642", - "question_id": 13436, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008017", - "question_id": 13437, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005253", - "question_id": 13438, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005530", - "question_id": 13439, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002474", - "question_id": 13442, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006123", - "question_id": 13444, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005669", - "question_id": 13446, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007916", - "question_id": 13449, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006686", - "question_id": 13450, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000773", - "question_id": 13452, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004812", - "question_id": 13453, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006672", - "question_id": 13454, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004953", - "question_id": 13455, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006803", - "question_id": 13457, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002390", - "question_id": 13458, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002594", - "question_id": 13459, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001894", - "question_id": 13460, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008201", - "question_id": 13462, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007658", - "question_id": 13463, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006498", - "question_id": 13465, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000543", - "question_id": 13466, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004668", - "question_id": 13467, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006591", - "question_id": 13468, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007957", - "question_id": 13469, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007229", - "question_id": 13472, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "eight" - }, - { - "video_id": "00001967", - "question_id": 13473, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001261", - "question_id": 13474, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005906", - "question_id": 13475, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000315", - "question_id": 13477, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006375", - "question_id": 13478, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005814", - "question_id": 13480, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003012", - "question_id": 13482, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007907", - "question_id": 13483, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003632", - "question_id": 13484, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004853", - "question_id": 13485, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00003448", - "question_id": 13486, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003604", - "question_id": 13488, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007045", - "question_id": 13490, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001741", - "question_id": 13491, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000743", - "question_id": 13492, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005726", - "question_id": 13493, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004116", - "question_id": 13494, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005550", - "question_id": 13496, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002802", - "question_id": 13497, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00003583", - "question_id": 13500, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002394", - "question_id": 13501, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005655", - "question_id": 13504, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008800", - "question_id": 13505, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006620", - "question_id": 13506, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001562", - "question_id": 13507, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004208", - "question_id": 13508, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002210", - "question_id": 13509, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003524", - "question_id": 13512, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001468", - "question_id": 13514, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005747", - "question_id": 13516, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006275", - "question_id": 13517, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006335", - "question_id": 13519, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006335", - "question_id": 13519, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001319", - "question_id": 13521, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00007348", - "question_id": 13522, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003971", - "question_id": 13523, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003842", - "question_id": 13524, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003682", - "question_id": 13528, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001732", - "question_id": 13529, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00003839", - "question_id": 13530, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007245", - "question_id": 13532, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00005858", - "question_id": 13533, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006651", - "question_id": 13534, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004308", - "question_id": 13537, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008195", - "question_id": 13538, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008480", - "question_id": 13540, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000700", - "question_id": 13541, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006612", - "question_id": 13542, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002670", - "question_id": 13543, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005698", - "question_id": 13544, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006726", - "question_id": 13546, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006546", - "question_id": 13547, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004752", - "question_id": 13548, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004323", - "question_id": 13552, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005290", - "question_id": 13553, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002892", - "question_id": 13554, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001960", - "question_id": 13555, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000671", - "question_id": 13556, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007551", - "question_id": 13557, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008251", - "question_id": 13558, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00000946", - "question_id": 13559, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007467", - "question_id": 13560, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003424", - "question_id": 13561, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004062", - "question_id": 13562, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004562", - "question_id": 13563, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000927", - "question_id": 13566, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00007359", - "question_id": 13567, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00005081", - "question_id": 13568, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001278", - "question_id": 13569, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001950", - "question_id": 13570, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007723", - "question_id": 13572, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003673", - "question_id": 13573, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006421", - "question_id": 13574, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007374", - "question_id": 13576, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000474", - "question_id": 13579, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000846", - "question_id": 13580, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004812", - "question_id": 13581, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006166", - "question_id": 13582, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001383", - "question_id": 13583, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004385", - "question_id": 13585, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000968", - "question_id": 13586, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003783", - "question_id": 13587, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001226", - "question_id": 13590, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00002822", - "question_id": 13591, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006754", - "question_id": 13594, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007263", - "question_id": 13595, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008960", - "question_id": 13597, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008565", - "question_id": 13599, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001210", - "question_id": 13600, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004106", - "question_id": 13601, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002848", - "question_id": 13602, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006383", - "question_id": 13605, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003348", - "question_id": 13606, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003922", - "question_id": 13607, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002590", - "question_id": 13608, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001844", - "question_id": 13611, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00008721", - "question_id": 13612, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007671", - "question_id": 13614, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005077", - "question_id": 13616, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004045", - "question_id": 13617, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00005287", - "question_id": 13621, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003861", - "question_id": 13622, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00007519", - "question_id": 13623, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007574", - "question_id": 13624, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000145", - "question_id": 13625, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001788", - "question_id": 13626, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001915", - "question_id": 13629, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002202", - "question_id": 13631, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006438", - "question_id": 13632, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004873", - "question_id": 13635, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004183", - "question_id": 13637, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003023", - "question_id": 13638, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00006289", - "question_id": 13640, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00002930", - "question_id": 13641, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00000933", - "question_id": 13642, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005358", - "question_id": 13643, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005454", - "question_id": 13644, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004784", - "question_id": 13645, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005903", - "question_id": 13646, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002278", - "question_id": 13647, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00006934", - "question_id": 13648, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00007222", - "question_id": 13649, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003968", - "question_id": 13651, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002516", - "question_id": 13652, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00002494", - "question_id": 13654, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006208", - "question_id": 13657, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007686", - "question_id": 13658, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00005114", - "question_id": 13660, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008125", - "question_id": 13663, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00003260", - "question_id": 13665, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006893", - "question_id": 13666, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007163", - "question_id": 13667, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001652", - "question_id": 13668, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007176", - "question_id": 13670, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006485", - "question_id": 13673, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001775", - "question_id": 13674, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001060", - "question_id": 13675, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "seven" - }, - { - "video_id": "00004296", - "question_id": 13676, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006425", - "question_id": 13677, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002051", - "question_id": 13680, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006297", - "question_id": 13681, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00007910", - "question_id": 13682, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"banjo\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00002537", - "question_id": 13683, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006463", - "question_id": 13686, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003667", - "question_id": 13687, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004664", - "question_id": 13688, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002963", - "question_id": 13690, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000113", - "question_id": 13693, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006217", - "question_id": 13694, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001553", - "question_id": 13697, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006989", - "question_id": 13698, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002532", - "question_id": 13699, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004204", - "question_id": 13700, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006132", - "question_id": 13701, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002567", - "question_id": 13703, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006681", - "question_id": 13704, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005676", - "question_id": 13705, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00008024", - "question_id": 13707, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005039", - "question_id": 13708, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002567", - "question_id": 13711, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000061", - "question_id": 13712, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007114", - "question_id": 13713, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002151", - "question_id": 13714, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004959", - "question_id": 13716, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002278", - "question_id": 13717, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006170", - "question_id": 13719, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002095", - "question_id": 13720, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003254", - "question_id": 13721, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001176", - "question_id": 13722, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008781", - "question_id": 13724, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003529", - "question_id": 13725, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00008980", - "question_id": 13728, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006848", - "question_id": 13729, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003618", - "question_id": 13732, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004744", - "question_id": 13733, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004815", - "question_id": 13734, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004593", - "question_id": 13736, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000658", - "question_id": 13737, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002818", - "question_id": 13743, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006592", - "question_id": 13744, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007820", - "question_id": 13745, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000055", - "question_id": 13746, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001560", - "question_id": 13747, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004836", - "question_id": 13750, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007120", - "question_id": 13751, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00001298", - "question_id": 13753, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003843", - "question_id": 13754, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006074", - "question_id": 13755, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"banjo\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006836", - "question_id": 13756, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006202", - "question_id": 13759, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002950", - "question_id": 13761, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005666", - "question_id": 13763, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007399", - "question_id": 13764, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007452", - "question_id": 13765, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005997", - "question_id": 13767, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002368", - "question_id": 13768, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007821", - "question_id": 13770, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001227", - "question_id": 13771, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000987", - "question_id": 13774, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008115", - "question_id": 13775, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006127", - "question_id": 13776, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007776", - "question_id": 13778, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003501", - "question_id": 13779, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004311", - "question_id": 13780, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002363", - "question_id": 13782, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006946", - "question_id": 13786, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003789", - "question_id": 13787, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001620", - "question_id": 13788, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005548", - "question_id": 13790, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002167", - "question_id": 13791, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004361", - "question_id": 13792, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001145", - "question_id": 13793, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00005525", - "question_id": 13794, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004919", - "question_id": 13795, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007595", - "question_id": 13796, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00004832", - "question_id": 13797, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00007995", - "question_id": 13798, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000020", - "question_id": 13800, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008677", - "question_id": 13801, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003521", - "question_id": 13802, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008833", - "question_id": 13803, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007791", - "question_id": 13804, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007287", - "question_id": 13805, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008803", - "question_id": 13806, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004963", - "question_id": 13807, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001287", - "question_id": 13808, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000644", - "question_id": 13809, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004289", - "question_id": 13810, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007798", - "question_id": 13811, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007513", - "question_id": 13812, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001454", - "question_id": 13813, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008121", - "question_id": 13814, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00008552", - "question_id": 13815, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007569", - "question_id": 13817, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006363", - "question_id": 13818, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008919", - "question_id": 13819, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003301", - "question_id": 13820, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007935", - "question_id": 13822, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006167", - "question_id": 13823, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00005384", - "question_id": 13824, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001132", - "question_id": 13825, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004358", - "question_id": 13826, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006607", - "question_id": 13827, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005036", - "question_id": 13828, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002694", - "question_id": 13829, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003644", - "question_id": 13830, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006090", - "question_id": 13831, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00003969", - "question_id": 13832, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00001087", - "question_id": 13833, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008557", - "question_id": 13835, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006291", - "question_id": 13837, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007086", - "question_id": 13839, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00005389", - "question_id": 13844, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00004742", - "question_id": 13845, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004648", - "question_id": 13846, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001153", - "question_id": 13849, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008796", - "question_id": 13850, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003859", - "question_id": 13851, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002403", - "question_id": 13852, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002381", - "question_id": 13853, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002770", - "question_id": 13854, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000042", - "question_id": 13855, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000305", - "question_id": 13856, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000300", - "question_id": 13857, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005699", - "question_id": 13860, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004331", - "question_id": 13861, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006354", - "question_id": 13862, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005218", - "question_id": 13865, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007226", - "question_id": 13866, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004213", - "question_id": 13868, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004118", - "question_id": 13869, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00005316", - "question_id": 13870, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003063", - "question_id": 13871, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001601", - "question_id": 13872, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000416", - "question_id": 13873, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006673", - "question_id": 13875, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006485", - "question_id": 13877, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000510", - "question_id": 13878, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004260", - "question_id": 13880, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003506", - "question_id": 13882, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002157", - "question_id": 13883, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007132", - "question_id": 13884, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004120", - "question_id": 13885, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006428", - "question_id": 13887, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00005954", - "question_id": 13888, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006839", - "question_id": 13889, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003112", - "question_id": 13890, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008419", - "question_id": 13891, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005810", - "question_id": 13893, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006205", - "question_id": 13896, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004831", - "question_id": 13897, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004053", - "question_id": 13898, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00004690", - "question_id": 13899, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007608", - "question_id": 13900, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002113", - "question_id": 13902, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008750", - "question_id": 13903, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000474", - "question_id": 13905, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004014", - "question_id": 13906, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00002570", - "question_id": 13908, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002853", - "question_id": 13909, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000694", - "question_id": 13910, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000866", - "question_id": 13911, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005538", - "question_id": 13914, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002794", - "question_id": 13916, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007187", - "question_id": 13917, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005344", - "question_id": 13918, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006358", - "question_id": 13920, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006626", - "question_id": 13921, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001705", - "question_id": 13923, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005549", - "question_id": 13924, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00003015", - "question_id": 13926, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002406", - "question_id": 13928, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003588", - "question_id": 13931, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"bassoon\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004763", - "question_id": 13932, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002370", - "question_id": 13933, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002370", - "question_id": 13933, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003204", - "question_id": 13934, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002366", - "question_id": 13935, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002076", - "question_id": 13936, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004422", - "question_id": 13938, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002809", - "question_id": 13939, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000163", - "question_id": 13940, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007949", - "question_id": 13941, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005598", - "question_id": 13942, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005198", - "question_id": 13943, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00003750", - "question_id": 13944, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004703", - "question_id": 13945, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005232", - "question_id": 13946, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002644", - "question_id": 13947, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004725", - "question_id": 13948, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001772", - "question_id": 13951, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008070", - "question_id": 13952, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001661", - "question_id": 13954, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007754", - "question_id": 13955, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001263", - "question_id": 13958, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006378", - "question_id": 13959, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00007240", - "question_id": 13960, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002815", - "question_id": 13961, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001382", - "question_id": 13962, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003877", - "question_id": 13963, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007386", - "question_id": 13965, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001264", - "question_id": 13966, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003170", - "question_id": 13968, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00007067", - "question_id": 13971, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003488", - "question_id": 13972, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00006552", - "question_id": 13973, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001102", - "question_id": 13978, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004112", - "question_id": 13980, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003563", - "question_id": 13982, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008151", - "question_id": 13983, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002316", - "question_id": 13984, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005311", - "question_id": 13985, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000264", - "question_id": 13987, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000296", - "question_id": 13989, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000545", - "question_id": 13991, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008530", - "question_id": 13993, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004343", - "question_id": 13995, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000686", - "question_id": 13997, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005800", - "question_id": 13998, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004723", - "question_id": 13999, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001154", - "question_id": 14000, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007010", - "question_id": 14001, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007059", - "question_id": 14005, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001719", - "question_id": 14007, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"accordion\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00007225", - "question_id": 14008, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001425", - "question_id": 14009, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002314", - "question_id": 14011, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000130", - "question_id": 14013, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006362", - "question_id": 14014, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003535", - "question_id": 14015, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008064", - "question_id": 14016, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008930", - "question_id": 14017, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000291", - "question_id": 14018, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008331", - "question_id": 14019, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007432", - "question_id": 14020, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005951", - "question_id": 14021, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007126", - "question_id": 14022, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007250", - "question_id": 14023, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006421", - "question_id": 14024, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002532", - "question_id": 14025, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007700", - "question_id": 14026, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00001208", - "question_id": 14027, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004754", - "question_id": 14030, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003304", - "question_id": 14031, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007653", - "question_id": 14034, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008477", - "question_id": 14035, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008311", - "question_id": 14036, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000027", - "question_id": 14037, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007569", - "question_id": 14038, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005855", - "question_id": 14039, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003028", - "question_id": 14040, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004502", - "question_id": 14041, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000434", - "question_id": 14043, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004556", - "question_id": 14044, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002598", - "question_id": 14045, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007556", - "question_id": 14047, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005197", - "question_id": 14050, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00007807", - "question_id": 14053, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003829", - "question_id": 14055, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007301", - "question_id": 14057, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00001124", - "question_id": 14058, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008977", - "question_id": 14059, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006530", - "question_id": 14060, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004251", - "question_id": 14063, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00003193", - "question_id": 14065, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008193", - "question_id": 14066, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000128", - "question_id": 14069, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002479", - "question_id": 14070, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007298", - "question_id": 14071, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006323", - "question_id": 14072, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006321", - "question_id": 14073, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007706", - "question_id": 14074, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005512", - "question_id": 14075, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000408", - "question_id": 14079, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005731", - "question_id": 14080, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002178", - "question_id": 14082, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00003133", - "question_id": 14085, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006012", - "question_id": 14086, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002613", - "question_id": 14087, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00001646", - "question_id": 14089, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001902", - "question_id": 14090, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005538", - "question_id": 14092, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000892", - "question_id": 14093, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008554", - "question_id": 14094, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002518", - "question_id": 14095, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00004392", - "question_id": 14096, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001400", - "question_id": 14097, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003710", - "question_id": 14098, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005774", - "question_id": 14099, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"right\", \"banjo\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006912", - "question_id": 14100, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005974", - "question_id": 14104, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001541", - "question_id": 14105, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003201", - "question_id": 14106, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007128", - "question_id": 14107, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003167", - "question_id": 14111, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000589", - "question_id": 14113, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000463", - "question_id": 14114, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008103", - "question_id": 14115, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008636", - "question_id": 14116, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00007021", - "question_id": 14117, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00004321", - "question_id": 14119, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007350", - "question_id": 14121, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007045", - "question_id": 14123, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007935", - "question_id": 14124, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004319", - "question_id": 14125, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007090", - "question_id": 14128, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000917", - "question_id": 14129, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"pipa\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00004661", - "question_id": 14130, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001523", - "question_id": 14132, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004723", - "question_id": 14133, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001051", - "question_id": 14135, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005382", - "question_id": 14139, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000795", - "question_id": 14141, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005251", - "question_id": 14142, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001117", - "question_id": 14143, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008120", - "question_id": 14145, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004344", - "question_id": 14146, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004624", - "question_id": 14148, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002922", - "question_id": 14150, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001197", - "question_id": 14153, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003557", - "question_id": 14155, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008045", - "question_id": 14159, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00004290", - "question_id": 14162, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00007209", - "question_id": 14163, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00005250", - "question_id": 14164, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007395", - "question_id": 14167, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008240", - "question_id": 14168, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008397", - "question_id": 14170, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007050", - "question_id": 14172, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003801", - "question_id": 14173, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007989", - "question_id": 14174, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000498", - "question_id": 14176, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002652", - "question_id": 14177, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002870", - "question_id": 14178, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004493", - "question_id": 14179, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000770", - "question_id": 14180, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000218", - "question_id": 14181, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007062", - "question_id": 14184, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003483", - "question_id": 14187, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002598", - "question_id": 14188, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007189", - "question_id": 14189, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004821", - "question_id": 14191, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005481", - "question_id": 14192, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003112", - "question_id": 14193, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005706", - "question_id": 14194, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003541", - "question_id": 14195, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006623", - "question_id": 14196, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003916", - "question_id": 14197, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006416", - "question_id": 14200, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005318", - "question_id": 14201, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005716", - "question_id": 14202, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008412", - "question_id": 14203, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007438", - "question_id": 14204, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007420", - "question_id": 14206, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004991", - "question_id": 14207, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001368", - "question_id": 14208, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005492", - "question_id": 14211, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002433", - "question_id": 14212, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000271", - "question_id": 14214, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00008637", - "question_id": 14218, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008894", - "question_id": 14219, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007477", - "question_id": 14221, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00003101", - "question_id": 14222, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008140", - "question_id": 14223, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00001748", - "question_id": 14224, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005182", - "question_id": 14225, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007673", - "question_id": 14226, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002140", - "question_id": 14227, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000684", - "question_id": 14229, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007520", - "question_id": 14230, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008789", - "question_id": 14231, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008355", - "question_id": 14232, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008486", - "question_id": 14234, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000360", - "question_id": 14235, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005808", - "question_id": 14236, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001212", - "question_id": 14237, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003802", - "question_id": 14238, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00004081", - "question_id": 14241, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007042", - "question_id": 14242, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006977", - "question_id": 14243, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005541", - "question_id": 14245, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004945", - "question_id": 14247, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004380", - "question_id": 14248, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003480", - "question_id": 14252, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005420", - "question_id": 14253, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"middle\", \"tuba\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002135", - "question_id": 14258, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000129", - "question_id": 14262, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004055", - "question_id": 14264, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000244", - "question_id": 14265, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003468", - "question_id": 14268, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002171", - "question_id": 14270, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00007653", - "question_id": 14271, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005319", - "question_id": 14274, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "seven" - }, - { - "video_id": "00006830", - "question_id": 14276, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000913", - "question_id": 14279, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004648", - "question_id": 14280, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007056", - "question_id": 14282, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007240", - "question_id": 14283, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005636", - "question_id": 14284, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008613", - "question_id": 14286, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00005367", - "question_id": 14287, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003671", - "question_id": 14288, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008303", - "question_id": 14290, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004577", - "question_id": 14291, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005819", - "question_id": 14292, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002493", - "question_id": 14293, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00003073", - "question_id": 14294, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007702", - "question_id": 14297, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000223", - "question_id": 14299, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002037", - "question_id": 14300, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005696", - "question_id": 14301, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004203", - "question_id": 14302, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007951", - "question_id": 14304, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005993", - "question_id": 14306, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006449", - "question_id": 14309, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006299", - "question_id": 14310, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"erhu\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008015", - "question_id": 14311, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001450", - "question_id": 14312, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006878", - "question_id": 14314, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00005615", - "question_id": 14315, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002092", - "question_id": 14317, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002358", - "question_id": 14321, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001761", - "question_id": 14322, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003054", - "question_id": 14323, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003467", - "question_id": 14324, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002770", - "question_id": 14325, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007946", - "question_id": 14328, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001362", - "question_id": 14329, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004289", - "question_id": 14330, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000426", - "question_id": 14332, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006386", - "question_id": 14333, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003909", - "question_id": 14334, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002147", - "question_id": 14335, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002280", - "question_id": 14336, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008125", - "question_id": 14340, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007347", - "question_id": 14342, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007720", - "question_id": 14344, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007855", - "question_id": 14345, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007698", - "question_id": 14348, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006067", - "question_id": 14349, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00002483", - "question_id": 14351, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008329", - "question_id": 14354, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000935", - "question_id": 14355, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "more than ten" - }, - { - "video_id": "00000748", - "question_id": 14356, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001867", - "question_id": 14358, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007191", - "question_id": 14359, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002716", - "question_id": 14360, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00008667", - "question_id": 14361, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001065", - "question_id": 14363, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001266", - "question_id": 14364, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002467", - "question_id": 14365, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008013", - "question_id": 14367, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003354", - "question_id": 14368, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007221", - "question_id": 14369, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000876", - "question_id": 14370, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00000561", - "question_id": 14371, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00007737", - "question_id": 14372, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008964", - "question_id": 14373, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000839", - "question_id": 14374, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001699", - "question_id": 14375, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001898", - "question_id": 14377, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00007164", - "question_id": 14378, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006176", - "question_id": 14379, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001323", - "question_id": 14382, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000441", - "question_id": 14384, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003443", - "question_id": 14386, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001601", - "question_id": 14387, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000432", - "question_id": 14388, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000926", - "question_id": 14390, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001246", - "question_id": 14391, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002204", - "question_id": 14392, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"bassoon\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001342", - "question_id": 14393, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00005569", - "question_id": 14394, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001693", - "question_id": 14395, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000798", - "question_id": 14397, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004363", - "question_id": 14401, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000377", - "question_id": 14402, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003433", - "question_id": 14404, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003071", - "question_id": 14406, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007271", - "question_id": 14407, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005212", - "question_id": 14409, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003063", - "question_id": 14410, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004681", - "question_id": 14411, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005547", - "question_id": 14412, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00003000", - "question_id": 14416, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00005789", - "question_id": 14417, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001523", - "question_id": 14419, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002181", - "question_id": 14420, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00006988", - "question_id": 14422, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000311", - "question_id": 14425, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008144", - "question_id": 14427, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001637", - "question_id": 14428, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003447", - "question_id": 14429, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003346", - "question_id": 14430, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001970", - "question_id": 14431, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006522", - "question_id": 14433, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004311", - "question_id": 14434, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006981", - "question_id": 14435, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000366", - "question_id": 14436, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003138", - "question_id": 14440, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005450", - "question_id": 14441, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004839", - "question_id": 14442, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001336", - "question_id": 14443, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001260", - "question_id": 14444, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005978", - "question_id": 14445, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008943", - "question_id": 14446, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006537", - "question_id": 14447, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007483", - "question_id": 14448, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002806", - "question_id": 14449, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000796", - "question_id": 14450, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008486", - "question_id": 14451, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007677", - "question_id": 14452, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004328", - "question_id": 14454, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008002", - "question_id": 14455, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007006", - "question_id": 14457, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003233", - "question_id": 14458, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006656", - "question_id": 14459, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003593", - "question_id": 14462, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006530", - "question_id": 14464, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001029", - "question_id": 14465, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002431", - "question_id": 14469, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007468", - "question_id": 14471, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004257", - "question_id": 14472, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000465", - "question_id": 14473, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000987", - "question_id": 14475, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007421", - "question_id": 14477, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003526", - "question_id": 14479, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001063", - "question_id": 14480, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008445", - "question_id": 14482, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00005793", - "question_id": 14483, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006895", - "question_id": 14484, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008223", - "question_id": 14486, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002564", - "question_id": 14487, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004973", - "question_id": 14488, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006754", - "question_id": 14489, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000915", - "question_id": 14490, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004029", - "question_id": 14491, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004075", - "question_id": 14492, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008012", - "question_id": 14495, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003897", - "question_id": 14499, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006908", - "question_id": 14500, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005708", - "question_id": 14501, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004616", - "question_id": 14502, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"middle\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005767", - "question_id": 14505, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003924", - "question_id": 14507, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00000636", - "question_id": 14509, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008416", - "question_id": 14511, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001135", - "question_id": 14513, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004246", - "question_id": 14516, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00005730", - "question_id": 14517, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003928", - "question_id": 14518, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002326", - "question_id": 14519, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007282", - "question_id": 14520, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007336", - "question_id": 14521, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"ukulele\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008980", - "question_id": 14523, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002032", - "question_id": 14524, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004376", - "question_id": 14525, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003869", - "question_id": 14526, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00001590", - "question_id": 14527, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002802", - "question_id": 14528, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006090", - "question_id": 14534, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006540", - "question_id": 14535, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000486", - "question_id": 14536, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000748", - "question_id": 14537, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006281", - "question_id": 14538, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004079", - "question_id": 14539, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004318", - "question_id": 14540, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000543", - "question_id": 14541, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00007595", - "question_id": 14543, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000470", - "question_id": 14544, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004352", - "question_id": 14546, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00001754", - "question_id": 14547, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003796", - "question_id": 14548, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002869", - "question_id": 14549, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004694", - "question_id": 14550, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002498", - "question_id": 14551, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004656", - "question_id": 14552, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001635", - "question_id": 14553, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005950", - "question_id": 14554, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004942", - "question_id": 14556, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007334", - "question_id": 14557, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003036", - "question_id": 14558, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008567", - "question_id": 14560, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001471", - "question_id": 14563, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00007249", - "question_id": 14564, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003824", - "question_id": 14565, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008684", - "question_id": 14566, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005343", - "question_id": 14568, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00000401", - "question_id": 14569, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001110", - "question_id": 14570, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003566", - "question_id": 14571, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"pipa\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00003544", - "question_id": 14573, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003365", - "question_id": 14574, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003226", - "question_id": 14576, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008651", - "question_id": 14577, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000833", - "question_id": 14579, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007022", - "question_id": 14581, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00003773", - "question_id": 14583, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00006832", - "question_id": 14584, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"guzheng\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004014", - "question_id": 14588, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008643", - "question_id": 14589, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003242", - "question_id": 14590, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"drum\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006697", - "question_id": 14591, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008966", - "question_id": 14594, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00006357", - "question_id": 14595, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005775", - "question_id": 14597, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00007773", - "question_id": 14598, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000693", - "question_id": 14599, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005452", - "question_id": 14604, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005132", - "question_id": 14605, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005541", - "question_id": 14607, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000901", - "question_id": 14608, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00007607", - "question_id": 14610, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007402", - "question_id": 14611, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006480", - "question_id": 14614, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001255", - "question_id": 14615, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000182", - "question_id": 14617, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001426", - "question_id": 14619, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008302", - "question_id": 14620, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005514", - "question_id": 14621, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00001812", - "question_id": 14624, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00005525", - "question_id": 14626, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006882", - "question_id": 14627, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002995", - "question_id": 14628, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007860", - "question_id": 14630, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002920", - "question_id": 14632, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006726", - "question_id": 14633, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005440", - "question_id": 14634, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002107", - "question_id": 14635, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004923", - "question_id": 14636, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007279", - "question_id": 14637, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008305", - "question_id": 14638, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008670", - "question_id": 14639, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001380", - "question_id": 14640, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006258", - "question_id": 14641, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006653", - "question_id": 14642, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000407", - "question_id": 14643, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008626", - "question_id": 14645, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008134", - "question_id": 14647, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008122", - "question_id": 14648, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005142", - "question_id": 14651, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003361", - "question_id": 14652, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005875", - "question_id": 14653, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006008", - "question_id": 14657, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008592", - "question_id": 14658, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004907", - "question_id": 14661, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004243", - "question_id": 14662, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004076", - "question_id": 14663, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00004109", - "question_id": 14664, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004874", - "question_id": 14666, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005247", - "question_id": 14667, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001334", - "question_id": 14668, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007816", - "question_id": 14669, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002950", - "question_id": 14671, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008133", - "question_id": 14672, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008740", - "question_id": 14673, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000863", - "question_id": 14674, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008919", - "question_id": 14675, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003796", - "question_id": 14676, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003249", - "question_id": 14679, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000454", - "question_id": 14680, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005971", - "question_id": 14682, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005708", - "question_id": 14683, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001551", - "question_id": 14687, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008930", - "question_id": 14688, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001193", - "question_id": 14689, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000355", - "question_id": 14691, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005270", - "question_id": 14692, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006748", - "question_id": 14693, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008980", - "question_id": 14694, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008808", - "question_id": 14698, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001173", - "question_id": 14700, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"electric_bass\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007664", - "question_id": 14701, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005216", - "question_id": 14702, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001956", - "question_id": 14703, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000626", - "question_id": 14705, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000039", - "question_id": 14706, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001364", - "question_id": 14709, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004175", - "question_id": 14710, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00000733", - "question_id": 14711, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001701", - "question_id": 14714, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001394", - "question_id": 14715, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004674", - "question_id": 14716, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002912", - "question_id": 14717, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003440", - "question_id": 14718, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00003358", - "question_id": 14720, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004083", - "question_id": 14721, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008556", - "question_id": 14722, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008430", - "question_id": 14723, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007951", - "question_id": 14724, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005976", - "question_id": 14725, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003233", - "question_id": 14726, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000737", - "question_id": 14728, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008190", - "question_id": 14729, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001828", - "question_id": 14731, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003022", - "question_id": 14732, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001716", - "question_id": 14734, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002255", - "question_id": 14736, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007078", - "question_id": 14738, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004847", - "question_id": 14741, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000583", - "question_id": 14742, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007658", - "question_id": 14744, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006964", - "question_id": 14745, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001010", - "question_id": 14746, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000589", - "question_id": 14747, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00003605", - "question_id": 14748, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007399", - "question_id": 14749, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001248", - "question_id": 14750, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00001292", - "question_id": 14753, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008434", - "question_id": 14754, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003913", - "question_id": 14756, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007177", - "question_id": 14759, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005924", - "question_id": 14763, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006841", - "question_id": 14768, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002542", - "question_id": 14769, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00004861", - "question_id": 14770, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004861", - "question_id": 14770, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006202", - "question_id": 14771, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002938", - "question_id": 14772, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002235", - "question_id": 14773, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003880", - "question_id": 14774, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000624", - "question_id": 14779, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003587", - "question_id": 14780, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003774", - "question_id": 14782, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001645", - "question_id": 14783, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003875", - "question_id": 14785, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003483", - "question_id": 14786, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006986", - "question_id": 14788, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002739", - "question_id": 14789, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004641", - "question_id": 14791, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006741", - "question_id": 14792, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003571", - "question_id": 14793, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005673", - "question_id": 14794, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000699", - "question_id": 14797, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008317", - "question_id": 14800, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006029", - "question_id": 14805, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007766", - "question_id": 14806, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00004778", - "question_id": 14808, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004963", - "question_id": 14809, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005618", - "question_id": 14810, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000260", - "question_id": 14811, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006008", - "question_id": 14813, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001785", - "question_id": 14814, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00001005", - "question_id": 14815, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001137", - "question_id": 14816, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002954", - "question_id": 14818, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001116", - "question_id": 14819, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006648", - "question_id": 14822, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004662", - "question_id": 14823, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001158", - "question_id": 14825, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00001077", - "question_id": 14827, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004930", - "question_id": 14829, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008622", - "question_id": 14830, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004385", - "question_id": 14831, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003576", - "question_id": 14833, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003576", - "question_id": 14833, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005467", - "question_id": 14835, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001331", - "question_id": 14836, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008114", - "question_id": 14837, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"drum\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006472", - "question_id": 14838, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00006981", - "question_id": 14840, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008300", - "question_id": 14842, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003491", - "question_id": 14843, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001962", - "question_id": 14844, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000553", - "question_id": 14845, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00002026", - "question_id": 14846, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005360", - "question_id": 14847, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001968", - "question_id": 14849, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000889", - "question_id": 14850, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002844", - "question_id": 14852, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004269", - "question_id": 14853, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001424", - "question_id": 14854, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001219", - "question_id": 14855, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002702", - "question_id": 14856, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008645", - "question_id": 14858, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008435", - "question_id": 14859, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008634", - "question_id": 14860, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005781", - "question_id": 14862, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007456", - "question_id": 14863, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006433", - "question_id": 14864, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006433", - "question_id": 14864, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000770", - "question_id": 14865, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005828", - "question_id": 14866, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007206", - "question_id": 14868, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005743", - "question_id": 14869, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007725", - "question_id": 14870, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005322", - "question_id": 14871, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000419", - "question_id": 14872, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004927", - "question_id": 14874, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000416", - "question_id": 14876, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005090", - "question_id": 14877, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001679", - "question_id": 14878, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002736", - "question_id": 14879, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001718", - "question_id": 14882, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003859", - "question_id": 14884, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002601", - "question_id": 14885, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005757", - "question_id": 14887, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005015", - "question_id": 14888, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002973", - "question_id": 14889, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000641", - "question_id": 14890, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004918", - "question_id": 14891, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002697", - "question_id": 14893, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005581", - "question_id": 14894, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001977", - "question_id": 14895, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007579", - "question_id": 14897, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003167", - "question_id": 14898, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00001600", - "question_id": 14902, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007172", - "question_id": 14903, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005908", - "question_id": 14904, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005755", - "question_id": 14905, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007098", - "question_id": 14906, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001604", - "question_id": 14907, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00007889", - "question_id": 14909, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00003583", - "question_id": 14910, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002905", - "question_id": 14911, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007443", - "question_id": 14912, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005807", - "question_id": 14913, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008083", - "question_id": 14914, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000840", - "question_id": 14915, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000552", - "question_id": 14916, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000871", - "question_id": 14917, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001445", - "question_id": 14918, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00007734", - "question_id": 14920, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002838", - "question_id": 14921, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003573", - "question_id": 14922, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"accordion\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006398", - "question_id": 14923, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007919", - "question_id": 14924, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002483", - "question_id": 14925, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003889", - "question_id": 14926, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003457", - "question_id": 14927, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000261", - "question_id": 14928, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001919", - "question_id": 14930, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004234", - "question_id": 14931, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00002317", - "question_id": 14932, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007557", - "question_id": 14933, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002103", - "question_id": 14934, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005524", - "question_id": 14935, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007063", - "question_id": 14936, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00000151", - "question_id": 14937, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008086", - "question_id": 14941, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008364", - "question_id": 14943, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006661", - "question_id": 14944, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000843", - "question_id": 14945, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007915", - "question_id": 14946, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002005", - "question_id": 14947, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00008698", - "question_id": 14951, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001711", - "question_id": 14952, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001316", - "question_id": 14953, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006612", - "question_id": 14954, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005045", - "question_id": 14955, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007981", - "question_id": 14956, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002859", - "question_id": 14957, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006427", - "question_id": 14958, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00004471", - "question_id": 14959, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000563", - "question_id": 14960, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004636", - "question_id": 14961, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000381", - "question_id": 14962, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000921", - "question_id": 14963, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00001328", - "question_id": 14965, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"xylophone\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000696", - "question_id": 14966, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00003340", - "question_id": 14968, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005676", - "question_id": 14969, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001263", - "question_id": 14972, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00008489", - "question_id": 14973, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00005422", - "question_id": 14974, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007401", - "question_id": 14975, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003480", - "question_id": 14976, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007862", - "question_id": 14977, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002346", - "question_id": 14978, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006801", - "question_id": 14979, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000483", - "question_id": 14980, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00000880", - "question_id": 14983, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002979", - "question_id": 14986, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003977", - "question_id": 14989, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008514", - "question_id": 14991, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001672", - "question_id": 14992, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005919", - "question_id": 14993, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005328", - "question_id": 14995, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008225", - "question_id": 14996, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004314", - "question_id": 15001, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008201", - "question_id": 15002, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002460", - "question_id": 15003, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001602", - "question_id": 15005, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004116", - "question_id": 15006, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005260", - "question_id": 15007, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001366", - "question_id": 15009, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002238", - "question_id": 15012, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00003235", - "question_id": 15013, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007365", - "question_id": 15014, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005989", - "question_id": 15017, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000830", - "question_id": 15018, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00000686", - "question_id": 15019, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000900", - "question_id": 15020, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005544", - "question_id": 15022, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002998", - "question_id": 15023, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002129", - "question_id": 15025, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004942", - "question_id": 15026, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002686", - "question_id": 15028, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003924", - "question_id": 15029, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00004643", - "question_id": 15030, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00004346", - "question_id": 15031, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008920", - "question_id": 15032, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006642", - "question_id": 15034, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002449", - "question_id": 15035, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008620", - "question_id": 15036, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004201", - "question_id": 15037, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008535", - "question_id": 15038, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008174", - "question_id": 15040, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008144", - "question_id": 15043, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008455", - "question_id": 15044, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008567", - "question_id": 15045, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004466", - "question_id": 15046, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000218", - "question_id": 15047, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"middle\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003124", - "question_id": 15048, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004884", - "question_id": 15049, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006782", - "question_id": 15050, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004792", - "question_id": 15052, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006390", - "question_id": 15056, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002745", - "question_id": 15057, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00005795", - "question_id": 15059, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00005646", - "question_id": 15061, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "more than ten" - }, - { - "video_id": "00006076", - "question_id": 15068, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00000426", - "question_id": 15069, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004020", - "question_id": 15070, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000877", - "question_id": 15072, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003796", - "question_id": 15073, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007749", - "question_id": 15077, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006270", - "question_id": 15078, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002003", - "question_id": 15080, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008539", - "question_id": 15081, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006143", - "question_id": 15082, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003269", - "question_id": 15084, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001304", - "question_id": 15085, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00008465", - "question_id": 15086, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008580", - "question_id": 15087, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003338", - "question_id": 15088, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008767", - "question_id": 15090, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003126", - "question_id": 15091, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002778", - "question_id": 15094, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00000509", - "question_id": 15095, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008220", - "question_id": 15097, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006788", - "question_id": 15098, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002970", - "question_id": 15099, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003923", - "question_id": 15100, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006677", - "question_id": 15101, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005935", - "question_id": 15102, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003805", - "question_id": 15103, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007341", - "question_id": 15104, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00005421", - "question_id": 15107, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007593", - "question_id": 15108, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001983", - "question_id": 15109, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002751", - "question_id": 15110, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007425", - "question_id": 15111, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00000642", - "question_id": 15112, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001755", - "question_id": 15113, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004792", - "question_id": 15114, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007978", - "question_id": 15117, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002832", - "question_id": 15118, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004572", - "question_id": 15120, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008600", - "question_id": 15122, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006828", - "question_id": 15125, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00008129", - "question_id": 15126, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00001962", - "question_id": 15127, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001556", - "question_id": 15128, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007682", - "question_id": 15129, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005065", - "question_id": 15130, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007439", - "question_id": 15131, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001573", - "question_id": 15132, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006997", - "question_id": 15134, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002515", - "question_id": 15135, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003504", - "question_id": 15136, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003509", - "question_id": 15137, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004053", - "question_id": 15140, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008907", - "question_id": 15141, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001977", - "question_id": 15142, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003223", - "question_id": 15143, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000784", - "question_id": 15144, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007458", - "question_id": 15146, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008385", - "question_id": 15147, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "seven" - }, - { - "video_id": "00005113", - "question_id": 15148, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00005523", - "question_id": 15149, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005335", - "question_id": 15150, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000382", - "question_id": 15151, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005658", - "question_id": 15153, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00003227", - "question_id": 15155, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007275", - "question_id": 15157, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003342", - "question_id": 15158, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006637", - "question_id": 15159, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002036", - "question_id": 15160, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003242", - "question_id": 15162, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"drum\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007061", - "question_id": 15163, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005452", - "question_id": 15164, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000067", - "question_id": 15165, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005369", - "question_id": 15166, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006443", - "question_id": 15167, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001230", - "question_id": 15170, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"drum\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001917", - "question_id": 15172, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000198", - "question_id": 15173, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005997", - "question_id": 15174, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008523", - "question_id": 15177, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004115", - "question_id": 15178, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007191", - "question_id": 15180, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004198", - "question_id": 15181, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003479", - "question_id": 15182, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000454", - "question_id": 15183, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002619", - "question_id": 15184, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002116", - "question_id": 15186, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005821", - "question_id": 15188, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002161", - "question_id": 15189, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002153", - "question_id": 15190, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003726", - "question_id": 15192, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003227", - "question_id": 15195, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003641", - "question_id": 15196, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005915", - "question_id": 15197, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002027", - "question_id": 15198, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001021", - "question_id": 15199, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008534", - "question_id": 15200, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005035", - "question_id": 15201, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005815", - "question_id": 15203, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003154", - "question_id": 15204, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008249", - "question_id": 15205, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007897", - "question_id": 15206, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003104", - "question_id": 15207, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002627", - "question_id": 15208, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000643", - "question_id": 15209, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000479", - "question_id": 15210, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002160", - "question_id": 15213, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006798", - "question_id": 15215, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004897", - "question_id": 15216, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008126", - "question_id": 15217, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005009", - "question_id": 15219, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004460", - "question_id": 15220, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000106", - "question_id": 15222, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002972", - "question_id": 15223, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008132", - "question_id": 15224, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001606", - "question_id": 15225, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003353", - "question_id": 15226, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000634", - "question_id": 15227, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006385", - "question_id": 15228, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002982", - "question_id": 15229, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007148", - "question_id": 15230, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006087", - "question_id": 15231, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007437", - "question_id": 15235, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004529", - "question_id": 15237, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001862", - "question_id": 15240, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000337", - "question_id": 15243, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007504", - "question_id": 15244, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008836", - "question_id": 15246, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008480", - "question_id": 15247, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004774", - "question_id": 15248, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007958", - "question_id": 15251, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000897", - "question_id": 15253, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007392", - "question_id": 15254, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007579", - "question_id": 15257, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00006971", - "question_id": 15258, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000698", - "question_id": 15259, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002039", - "question_id": 15260, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005029", - "question_id": 15261, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006248", - "question_id": 15263, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008183", - "question_id": 15270, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005033", - "question_id": 15271, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007426", - "question_id": 15272, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007504", - "question_id": 15274, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001040", - "question_id": 15275, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001420", - "question_id": 15276, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000655", - "question_id": 15277, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002228", - "question_id": 15278, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001698", - "question_id": 15280, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00003348", - "question_id": 15282, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008614", - "question_id": 15285, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008668", - "question_id": 15286, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002280", - "question_id": 15287, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000388", - "question_id": 15288, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005178", - "question_id": 15289, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008271", - "question_id": 15292, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005107", - "question_id": 15293, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002321", - "question_id": 15294, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004004", - "question_id": 15295, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001781", - "question_id": 15297, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003925", - "question_id": 15298, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004527", - "question_id": 15299, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003353", - "question_id": 15300, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007818", - "question_id": 15301, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001510", - "question_id": 15304, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007801", - "question_id": 15305, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004056", - "question_id": 15306, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007458", - "question_id": 15307, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006827", - "question_id": 15308, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000844", - "question_id": 15309, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00002815", - "question_id": 15310, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006815", - "question_id": 15311, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003462", - "question_id": 15313, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002241", - "question_id": 15315, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005934", - "question_id": 15316, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001742", - "question_id": 15317, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001742", - "question_id": 15317, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002023", - "question_id": 15318, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008717", - "question_id": 15319, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005485", - "question_id": 15321, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008261", - "question_id": 15322, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006418", - "question_id": 15323, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000146", - "question_id": 15325, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006264", - "question_id": 15326, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005417", - "question_id": 15327, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005802", - "question_id": 15328, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003552", - "question_id": 15329, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006778", - "question_id": 15332, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008277", - "question_id": 15333, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007232", - "question_id": 15334, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002243", - "question_id": 15335, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001462", - "question_id": 15336, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003726", - "question_id": 15337, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007198", - "question_id": 15340, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005926", - "question_id": 15342, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00008431", - "question_id": 15343, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003002", - "question_id": 15344, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00002573", - "question_id": 15345, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002461", - "question_id": 15346, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "more than ten" - }, - { - "video_id": "00001805", - "question_id": 15347, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006773", - "question_id": 15350, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00004836", - "question_id": 15351, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008315", - "question_id": 15352, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000721", - "question_id": 15354, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001746", - "question_id": 15355, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002968", - "question_id": 15356, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004964", - "question_id": 15357, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007111", - "question_id": 15358, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005398", - "question_id": 15359, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000539", - "question_id": 15360, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001036", - "question_id": 15361, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004027", - "question_id": 15363, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00000465", - "question_id": 15366, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002928", - "question_id": 15368, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004275", - "question_id": 15369, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005310", - "question_id": 15370, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002608", - "question_id": 15372, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008214", - "question_id": 15373, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005061", - "question_id": 15374, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00008800", - "question_id": 15375, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006695", - "question_id": 15376, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000372", - "question_id": 15377, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bagpipe\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006898", - "question_id": 15378, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"drum\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008858", - "question_id": 15379, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007153", - "question_id": 15380, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005774", - "question_id": 15381, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00005886", - "question_id": 15382, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001983", - "question_id": 15384, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000403", - "question_id": 15385, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005948", - "question_id": 15386, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003548", - "question_id": 15387, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005567", - "question_id": 15388, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002955", - "question_id": 15390, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00005372", - "question_id": 15391, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005675", - "question_id": 15392, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005386", - "question_id": 15394, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001911", - "question_id": 15395, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008847", - "question_id": 15396, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007917", - "question_id": 15397, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006055", - "question_id": 15398, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004202", - "question_id": 15400, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004061", - "question_id": 15401, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002758", - "question_id": 15402, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000859", - "question_id": 15403, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001580", - "question_id": 15405, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000169", - "question_id": 15407, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000785", - "question_id": 15409, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006977", - "question_id": 15411, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002824", - "question_id": 15413, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003487", - "question_id": 15414, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007503", - "question_id": 15415, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008802", - "question_id": 15417, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002876", - "question_id": 15418, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004186", - "question_id": 15419, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003266", - "question_id": 15420, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005168", - "question_id": 15421, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003895", - "question_id": 15425, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006612", - "question_id": 15426, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000947", - "question_id": 15428, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006410", - "question_id": 15429, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00003855", - "question_id": 15430, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000599", - "question_id": 15431, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001793", - "question_id": 15432, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005986", - "question_id": 15433, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"banjo\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00007306", - "question_id": 15438, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008957", - "question_id": 15440, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008432", - "question_id": 15442, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005290", - "question_id": 15444, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002486", - "question_id": 15447, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004821", - "question_id": 15448, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008658", - "question_id": 15449, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000543", - "question_id": 15450, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002363", - "question_id": 15451, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002363", - "question_id": 15451, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006759", - "question_id": 15453, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006068", - "question_id": 15454, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00005878", - "question_id": 15455, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000693", - "question_id": 15456, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007670", - "question_id": 15458, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005105", - "question_id": 15459, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005600", - "question_id": 15460, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003328", - "question_id": 15461, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003408", - "question_id": 15462, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004372", - "question_id": 15463, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007812", - "question_id": 15464, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000057", - "question_id": 15465, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00003608", - "question_id": 15466, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006536", - "question_id": 15467, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006266", - "question_id": 15468, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005369", - "question_id": 15469, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007175", - "question_id": 15471, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005474", - "question_id": 15472, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001949", - "question_id": 15473, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"electric_bass\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000659", - "question_id": 15474, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"bassoon\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004086", - "question_id": 15476, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008140", - "question_id": 15477, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007193", - "question_id": 15478, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004859", - "question_id": 15480, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004928", - "question_id": 15482, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001011", - "question_id": 15483, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005025", - "question_id": 15485, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008622", - "question_id": 15486, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007669", - "question_id": 15487, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003002", - "question_id": 15488, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003099", - "question_id": 15491, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00005000", - "question_id": 15492, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002102", - "question_id": 15494, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00002380", - "question_id": 15495, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bagpipe\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002146", - "question_id": 15496, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000787", - "question_id": 15498, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008105", - "question_id": 15500, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001753", - "question_id": 15501, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008977", - "question_id": 15502, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001202", - "question_id": 15503, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005377", - "question_id": 15504, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00003787", - "question_id": 15505, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004428", - "question_id": 15506, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"drum\", \"middle\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000360", - "question_id": 15508, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003928", - "question_id": 15509, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002868", - "question_id": 15511, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004804", - "question_id": 15513, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00007202", - "question_id": 15517, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005463", - "question_id": 15518, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00000968", - "question_id": 15519, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003761", - "question_id": 15521, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00004555", - "question_id": 15522, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007212", - "question_id": 15524, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002446", - "question_id": 15525, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000032", - "question_id": 15527, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003467", - "question_id": 15528, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006380", - "question_id": 15529, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006408", - "question_id": 15531, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006967", - "question_id": 15532, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000965", - "question_id": 15533, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006174", - "question_id": 15535, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005080", - "question_id": 15536, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000249", - "question_id": 15537, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003200", - "question_id": 15539, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006901", - "question_id": 15541, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003721", - "question_id": 15542, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002896", - "question_id": 15544, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003315", - "question_id": 15546, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002343", - "question_id": 15547, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007839", - "question_id": 15548, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001373", - "question_id": 15550, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00001616", - "question_id": 15553, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003389", - "question_id": 15554, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007606", - "question_id": 15557, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003948", - "question_id": 15559, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003907", - "question_id": 15561, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000840", - "question_id": 15562, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004632", - "question_id": 15563, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002035", - "question_id": 15564, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000279", - "question_id": 15567, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007392", - "question_id": 15569, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005475", - "question_id": 15571, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007957", - "question_id": 15572, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008737", - "question_id": 15573, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006276", - "question_id": 15576, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002809", - "question_id": 15577, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001052", - "question_id": 15578, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004646", - "question_id": 15579, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001963", - "question_id": 15580, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003202", - "question_id": 15581, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006234", - "question_id": 15583, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001197", - "question_id": 15585, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00005374", - "question_id": 15586, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004578", - "question_id": 15587, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00008722", - "question_id": 15588, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008580", - "question_id": 15589, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005121", - "question_id": 15590, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007856", - "question_id": 15591, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007250", - "question_id": 15592, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003445", - "question_id": 15593, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006612", - "question_id": 15594, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002026", - "question_id": 15596, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005811", - "question_id": 15599, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006723", - "question_id": 15600, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005160", - "question_id": 15601, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006555", - "question_id": 15602, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"tuba\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006540", - "question_id": 15603, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00004982", - "question_id": 15605, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"electric_bass\", \"left\", \"suona\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008597", - "question_id": 15607, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00001907", - "question_id": 15608, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000990", - "question_id": 15609, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000379", - "question_id": 15611, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005718", - "question_id": 15612, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00001126", - "question_id": 15614, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006819", - "question_id": 15617, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002974", - "question_id": 15618, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000516", - "question_id": 15622, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006509", - "question_id": 15624, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003638", - "question_id": 15625, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00007292", - "question_id": 15626, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001690", - "question_id": 15627, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006954", - "question_id": 15628, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004215", - "question_id": 15630, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000837", - "question_id": 15631, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002651", - "question_id": 15633, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006814", - "question_id": 15634, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008073", - "question_id": 15638, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005998", - "question_id": 15639, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005990", - "question_id": 15640, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008428", - "question_id": 15643, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001827", - "question_id": 15644, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000794", - "question_id": 15646, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002940", - "question_id": 15648, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003346", - "question_id": 15651, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006366", - "question_id": 15652, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001368", - "question_id": 15653, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003782", - "question_id": 15656, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007342", - "question_id": 15657, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "seven" - }, - { - "video_id": "00008660", - "question_id": 15662, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006581", - "question_id": 15665, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008216", - "question_id": 15667, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005549", - "question_id": 15669, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006202", - "question_id": 15673, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008033", - "question_id": 15676, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005777", - "question_id": 15677, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00002504", - "question_id": 15678, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003193", - "question_id": 15679, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002753", - "question_id": 15681, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000783", - "question_id": 15682, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008166", - "question_id": 15683, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002117", - "question_id": 15686, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000728", - "question_id": 15687, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000862", - "question_id": 15688, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008128", - "question_id": 15689, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002476", - "question_id": 15690, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"electric_bass\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000993", - "question_id": 15691, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004510", - "question_id": 15692, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004517", - "question_id": 15693, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00008189", - "question_id": 15694, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002613", - "question_id": 15695, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001070", - "question_id": 15696, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008093", - "question_id": 15697, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001025", - "question_id": 15698, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008931", - "question_id": 15699, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005330", - "question_id": 15701, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00008811", - "question_id": 15703, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003072", - "question_id": 15707, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001451", - "question_id": 15708, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001203", - "question_id": 15709, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000056", - "question_id": 15710, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008482", - "question_id": 15711, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004254", - "question_id": 15712, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005915", - "question_id": 15713, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002690", - "question_id": 15714, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00001795", - "question_id": 15715, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005316", - "question_id": 15716, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00008325", - "question_id": 15722, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002362", - "question_id": 15724, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006829", - "question_id": 15726, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008260", - "question_id": 15728, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007683", - "question_id": 15729, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000494", - "question_id": 15730, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00003587", - "question_id": 15731, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00001505", - "question_id": 15735, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00004685", - "question_id": 15736, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002981", - "question_id": 15739, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002531", - "question_id": 15741, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002414", - "question_id": 15742, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008394", - "question_id": 15743, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005903", - "question_id": 15744, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003693", - "question_id": 15745, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001771", - "question_id": 15748, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007625", - "question_id": 15749, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002593", - "question_id": 15751, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005191", - "question_id": 15753, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004161", - "question_id": 15754, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003303", - "question_id": 15755, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007930", - "question_id": 15757, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004706", - "question_id": 15759, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001758", - "question_id": 15760, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000115", - "question_id": 15761, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008472", - "question_id": 15762, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002613", - "question_id": 15763, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008170", - "question_id": 15764, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007428", - "question_id": 15765, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001820", - "question_id": 15766, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00002695", - "question_id": 15767, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006749", - "question_id": 15768, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003277", - "question_id": 15769, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004275", - "question_id": 15770, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001841", - "question_id": 15771, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002182", - "question_id": 15773, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00003806", - "question_id": 15777, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005104", - "question_id": 15778, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004290", - "question_id": 15779, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008512", - "question_id": 15782, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006663", - "question_id": 15783, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003013", - "question_id": 15785, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001820", - "question_id": 15787, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004551", - "question_id": 15791, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004011", - "question_id": 15793, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006582", - "question_id": 15795, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003167", - "question_id": 15796, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004228", - "question_id": 15797, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004143", - "question_id": 15798, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "nine" - }, - { - "video_id": "00007736", - "question_id": 15799, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000967", - "question_id": 15802, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00004923", - "question_id": 15803, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008355", - "question_id": 15804, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00006427", - "question_id": 15805, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006443", - "question_id": 15806, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005957", - "question_id": 15807, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007281", - "question_id": 15808, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008126", - "question_id": 15809, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007869", - "question_id": 15810, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005748", - "question_id": 15811, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001373", - "question_id": 15815, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004630", - "question_id": 15817, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000983", - "question_id": 15819, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000037", - "question_id": 15820, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00007302", - "question_id": 15823, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000633", - "question_id": 15825, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002981", - "question_id": 15826, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003857", - "question_id": 15827, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008159", - "question_id": 15828, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004877", - "question_id": 15831, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001295", - "question_id": 15832, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005140", - "question_id": 15834, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004035", - "question_id": 15835, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006395", - "question_id": 15838, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008736", - "question_id": 15839, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003114", - "question_id": 15841, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005951", - "question_id": 15842, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002111", - "question_id": 15843, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007031", - "question_id": 15845, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000654", - "question_id": 15846, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002980", - "question_id": 15849, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000380", - "question_id": 15850, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005446", - "question_id": 15852, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008361", - "question_id": 15853, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00008125", - "question_id": 15854, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008875", - "question_id": 15856, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005887", - "question_id": 15857, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005625", - "question_id": 15858, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008485", - "question_id": 15860, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"drum\", \"right\", \"electric_bass\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007177", - "question_id": 15862, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006993", - "question_id": 15864, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005145", - "question_id": 15867, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002840", - "question_id": 15868, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001515", - "question_id": 15869, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001090", - "question_id": 15870, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004910", - "question_id": 15871, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003377", - "question_id": 15872, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003911", - "question_id": 15873, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005612", - "question_id": 15874, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001512", - "question_id": 15875, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008585", - "question_id": 15876, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005724", - "question_id": 15877, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001891", - "question_id": 15880, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00001310", - "question_id": 15881, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003405", - "question_id": 15882, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007660", - "question_id": 15883, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005167", - "question_id": 15884, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003351", - "question_id": 15885, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004011", - "question_id": 15887, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001401", - "question_id": 15888, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004147", - "question_id": 15890, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008161", - "question_id": 15892, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004437", - "question_id": 15893, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002439", - "question_id": 15894, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008745", - "question_id": 15895, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000425", - "question_id": 15896, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005653", - "question_id": 15899, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003209", - "question_id": 15900, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002517", - "question_id": 15902, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003428", - "question_id": 15906, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006951", - "question_id": 15910, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008143", - "question_id": 15911, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00005178", - "question_id": 15915, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005459", - "question_id": 15916, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001392", - "question_id": 15917, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002917", - "question_id": 15918, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007278", - "question_id": 15919, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003537", - "question_id": 15920, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003703", - "question_id": 15922, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007672", - "question_id": 15923, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005878", - "question_id": 15924, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001204", - "question_id": 15925, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008318", - "question_id": 15927, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005313", - "question_id": 15929, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002056", - "question_id": 15930, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007071", - "question_id": 15931, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bassoon\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006654", - "question_id": 15932, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002112", - "question_id": 15934, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00001930", - "question_id": 15935, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002035", - "question_id": 15936, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004260", - "question_id": 15940, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006720", - "question_id": 15941, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007172", - "question_id": 15943, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00003547", - "question_id": 15944, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000496", - "question_id": 15949, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005405", - "question_id": 15950, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00003802", - "question_id": 15952, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000376", - "question_id": 15955, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007028", - "question_id": 15956, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000970", - "question_id": 15957, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003659", - "question_id": 15958, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001567", - "question_id": 15959, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002471", - "question_id": 15962, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008075", - "question_id": 15964, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007821", - "question_id": 15968, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002904", - "question_id": 15969, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000194", - "question_id": 15970, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005013", - "question_id": 15973, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007411", - "question_id": 15975, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000156", - "question_id": 15977, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001505", - "question_id": 15978, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00006280", - "question_id": 15980, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005665", - "question_id": 15981, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00004003", - "question_id": 15982, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002922", - "question_id": 15983, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005146", - "question_id": 15984, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003841", - "question_id": 15985, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008461", - "question_id": 15986, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005856", - "question_id": 15989, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006283", - "question_id": 15990, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007660", - "question_id": 15993, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00005856", - "question_id": 15994, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003127", - "question_id": 15996, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007914", - "question_id": 15998, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00004883", - "question_id": 16001, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002741", - "question_id": 16003, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001024", - "question_id": 16005, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006413", - "question_id": 16006, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002586", - "question_id": 16008, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003387", - "question_id": 16010, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008900", - "question_id": 16011, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00001290", - "question_id": 16012, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008921", - "question_id": 16014, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003257", - "question_id": 16015, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005629", - "question_id": 16016, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005741", - "question_id": 16017, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006065", - "question_id": 16019, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000063", - "question_id": 16021, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001623", - "question_id": 16022, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008633", - "question_id": 16026, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001124", - "question_id": 16027, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003079", - "question_id": 16029, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003438", - "question_id": 16030, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004784", - "question_id": 16031, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006713", - "question_id": 16032, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006713", - "question_id": 16032, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004458", - "question_id": 16034, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007891", - "question_id": 16035, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006874", - "question_id": 16036, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006580", - "question_id": 16037, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002813", - "question_id": 16038, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007644", - "question_id": 16039, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00001731", - "question_id": 16040, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003866", - "question_id": 16041, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002348", - "question_id": 16042, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001260", - "question_id": 16044, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001949", - "question_id": 16046, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006028", - "question_id": 16048, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000390", - "question_id": 16049, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008019", - "question_id": 16051, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00001609", - "question_id": 16053, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004197", - "question_id": 16055, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000811", - "question_id": 16056, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004022", - "question_id": 16057, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002272", - "question_id": 16059, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002407", - "question_id": 16060, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006238", - "question_id": 16061, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005034", - "question_id": 16062, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004340", - "question_id": 16065, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004248", - "question_id": 16069, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001952", - "question_id": 16071, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00007769", - "question_id": 16074, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006129", - "question_id": 16077, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005625", - "question_id": 16078, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004509", - "question_id": 16081, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005947", - "question_id": 16082, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00001969", - "question_id": 16083, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004577", - "question_id": 16084, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004538", - "question_id": 16086, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005223", - "question_id": 16089, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000574", - "question_id": 16090, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000489", - "question_id": 16091, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006759", - "question_id": 16092, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003452", - "question_id": 16093, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003656", - "question_id": 16095, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006886", - "question_id": 16096, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001776", - "question_id": 16098, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006319", - "question_id": 16100, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002229", - "question_id": 16103, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005595", - "question_id": 16104, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008065", - "question_id": 16105, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005804", - "question_id": 16106, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00005006", - "question_id": 16107, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003772", - "question_id": 16108, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007039", - "question_id": 16109, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007074", - "question_id": 16110, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006608", - "question_id": 16111, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004264", - "question_id": 16112, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006769", - "question_id": 16116, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005873", - "question_id": 16117, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000907", - "question_id": 16118, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006585", - "question_id": 16122, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006881", - "question_id": 16123, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001681", - "question_id": 16124, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003384", - "question_id": 16126, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00003910", - "question_id": 16127, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007901", - "question_id": 16128, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006511", - "question_id": 16130, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003826", - "question_id": 16131, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001877", - "question_id": 16132, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00003420", - "question_id": 16133, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003545", - "question_id": 16139, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001301", - "question_id": 16140, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003070", - "question_id": 16141, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008018", - "question_id": 16144, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000440", - "question_id": 16148, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007294", - "question_id": 16149, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004373", - "question_id": 16150, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008412", - "question_id": 16151, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003852", - "question_id": 16152, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007459", - "question_id": 16154, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003239", - "question_id": 16155, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001843", - "question_id": 16156, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006632", - "question_id": 16158, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007940", - "question_id": 16159, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007581", - "question_id": 16160, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000529", - "question_id": 16163, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006005", - "question_id": 16165, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000845", - "question_id": 16167, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007192", - "question_id": 16169, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00000430", - "question_id": 16170, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000055", - "question_id": 16172, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005097", - "question_id": 16175, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006401", - "question_id": 16176, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000601", - "question_id": 16177, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001034", - "question_id": 16181, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000910", - "question_id": 16182, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002067", - "question_id": 16185, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001452", - "question_id": 16188, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006704", - "question_id": 16189, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008832", - "question_id": 16191, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006876", - "question_id": 16194, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001016", - "question_id": 16197, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004270", - "question_id": 16198, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005829", - "question_id": 16199, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007503", - "question_id": 16200, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00004661", - "question_id": 16201, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004840", - "question_id": 16202, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006553", - "question_id": 16203, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006231", - "question_id": 16204, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000303", - "question_id": 16205, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00002172", - "question_id": 16206, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008295", - "question_id": 16207, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002631", - "question_id": 16208, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006163", - "question_id": 16209, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003079", - "question_id": 16211, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004848", - "question_id": 16213, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004649", - "question_id": 16215, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"fourth\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008590", - "question_id": 16216, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003144", - "question_id": 16218, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004553", - "question_id": 16219, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007458", - "question_id": 16221, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005265", - "question_id": 16222, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008745", - "question_id": 16223, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004821", - "question_id": 16226, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002664", - "question_id": 16228, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008713", - "question_id": 16229, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003194", - "question_id": 16231, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005071", - "question_id": 16232, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006517", - "question_id": 16234, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008440", - "question_id": 16235, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005448", - "question_id": 16236, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008414", - "question_id": 16238, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005424", - "question_id": 16242, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005338", - "question_id": 16243, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008318", - "question_id": 16244, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003089", - "question_id": 16245, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006236", - "question_id": 16246, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002645", - "question_id": 16247, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001170", - "question_id": 16248, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"cello\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008056", - "question_id": 16249, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006668", - "question_id": 16251, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00007642", - "question_id": 16252, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00005057", - "question_id": 16253, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000941", - "question_id": 16255, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007180", - "question_id": 16256, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005335", - "question_id": 16258, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000620", - "question_id": 16260, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002284", - "question_id": 16261, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003375", - "question_id": 16262, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001608", - "question_id": 16263, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008139", - "question_id": 16265, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001615", - "question_id": 16266, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004044", - "question_id": 16267, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003217", - "question_id": 16268, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001788", - "question_id": 16271, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002394", - "question_id": 16272, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004446", - "question_id": 16273, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001842", - "question_id": 16277, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001246", - "question_id": 16278, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005244", - "question_id": 16279, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005968", - "question_id": 16280, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003508", - "question_id": 16281, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002244", - "question_id": 16282, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000131", - "question_id": 16285, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00008501", - "question_id": 16286, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000413", - "question_id": 16290, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008864", - "question_id": 16291, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006693", - "question_id": 16292, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008506", - "question_id": 16294, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001358", - "question_id": 16295, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001358", - "question_id": 16295, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002372", - "question_id": 16296, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000907", - "question_id": 16297, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005376", - "question_id": 16298, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007757", - "question_id": 16299, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004198", - "question_id": 16302, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005296", - "question_id": 16303, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006593", - "question_id": 16305, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005437", - "question_id": 16307, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"fourth\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00002472", - "question_id": 16308, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001359", - "question_id": 16309, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000389", - "question_id": 16310, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007508", - "question_id": 16312, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002131", - "question_id": 16316, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008874", - "question_id": 16319, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007230", - "question_id": 16320, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000770", - "question_id": 16322, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002962", - "question_id": 16323, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006160", - "question_id": 16324, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000542", - "question_id": 16326, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006975", - "question_id": 16327, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000793", - "question_id": 16328, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004557", - "question_id": 16329, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003686", - "question_id": 16331, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000955", - "question_id": 16332, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004005", - "question_id": 16333, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002610", - "question_id": 16335, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008703", - "question_id": 16336, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001732", - "question_id": 16337, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007031", - "question_id": 16338, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001922", - "question_id": 16340, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007557", - "question_id": 16341, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004020", - "question_id": 16343, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004644", - "question_id": 16344, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008211", - "question_id": 16345, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006474", - "question_id": 16346, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006018", - "question_id": 16347, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003673", - "question_id": 16348, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004112", - "question_id": 16349, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003552", - "question_id": 16350, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001869", - "question_id": 16353, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007913", - "question_id": 16354, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004411", - "question_id": 16355, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007565", - "question_id": 16356, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000344", - "question_id": 16357, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004925", - "question_id": 16358, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008838", - "question_id": 16359, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004524", - "question_id": 16360, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008574", - "question_id": 16361, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007491", - "question_id": 16362, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00001547", - "question_id": 16363, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00008850", - "question_id": 16365, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000588", - "question_id": 16367, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"middle\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000698", - "question_id": 16368, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000168", - "question_id": 16369, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007382", - "question_id": 16371, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007947", - "question_id": 16372, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000724", - "question_id": 16373, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008732", - "question_id": 16374, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000586", - "question_id": 16375, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002614", - "question_id": 16376, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000827", - "question_id": 16377, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007100", - "question_id": 16378, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005330", - "question_id": 16379, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002773", - "question_id": 16380, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006572", - "question_id": 16381, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008809", - "question_id": 16382, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007049", - "question_id": 16383, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004302", - "question_id": 16385, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008403", - "question_id": 16386, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000619", - "question_id": 16387, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006596", - "question_id": 16388, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004622", - "question_id": 16389, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003004", - "question_id": 16390, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001018", - "question_id": 16392, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001493", - "question_id": 16393, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000101", - "question_id": 16394, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004693", - "question_id": 16395, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007548", - "question_id": 16396, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000249", - "question_id": 16398, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007740", - "question_id": 16399, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00008355", - "question_id": 16400, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001190", - "question_id": 16402, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005993", - "question_id": 16403, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007554", - "question_id": 16404, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008086", - "question_id": 16405, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00008573", - "question_id": 16407, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000164", - "question_id": 16408, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002916", - "question_id": 16409, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003491", - "question_id": 16410, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002171", - "question_id": 16412, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006840", - "question_id": 16413, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004167", - "question_id": 16414, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008073", - "question_id": 16418, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000043", - "question_id": 16420, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001884", - "question_id": 16421, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004552", - "question_id": 16422, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00002528", - "question_id": 16424, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004669", - "question_id": 16426, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007430", - "question_id": 16427, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00003411", - "question_id": 16430, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007984", - "question_id": 16431, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00003393", - "question_id": 16434, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003063", - "question_id": 16436, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008708", - "question_id": 16437, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001854", - "question_id": 16439, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001222", - "question_id": 16440, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002712", - "question_id": 16443, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006349", - "question_id": 16445, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006048", - "question_id": 16450, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007161", - "question_id": 16451, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003991", - "question_id": 16453, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002300", - "question_id": 16455, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001891", - "question_id": 16456, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004146", - "question_id": 16457, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006978", - "question_id": 16459, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005463", - "question_id": 16460, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003136", - "question_id": 16461, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005748", - "question_id": 16463, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003646", - "question_id": 16464, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00007607", - "question_id": 16465, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007960", - "question_id": 16466, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002110", - "question_id": 16467, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00003677", - "question_id": 16468, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001483", - "question_id": 16469, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006724", - "question_id": 16471, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00000483", - "question_id": 16472, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001252", - "question_id": 16473, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003059", - "question_id": 16474, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000218", - "question_id": 16479, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004330", - "question_id": 16480, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007713", - "question_id": 16481, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00001290", - "question_id": 16483, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002073", - "question_id": 16484, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001016", - "question_id": 16485, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00002434", - "question_id": 16486, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001201", - "question_id": 16487, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008832", - "question_id": 16488, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002554", - "question_id": 16489, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001755", - "question_id": 16490, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002680", - "question_id": 16493, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004874", - "question_id": 16494, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"xylophone\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001878", - "question_id": 16495, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008522", - "question_id": 16496, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000501", - "question_id": 16497, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002661", - "question_id": 16499, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00008298", - "question_id": 16500, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004424", - "question_id": 16501, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008402", - "question_id": 16503, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008518", - "question_id": 16504, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00000857", - "question_id": 16505, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004496", - "question_id": 16506, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007545", - "question_id": 16507, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003857", - "question_id": 16508, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006787", - "question_id": 16510, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00000442", - "question_id": 16512, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003321", - "question_id": 16514, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000527", - "question_id": 16515, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006218", - "question_id": 16516, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006144", - "question_id": 16517, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005825", - "question_id": 16518, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00002561", - "question_id": 16519, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005633", - "question_id": 16520, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005625", - "question_id": 16521, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001077", - "question_id": 16523, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000479", - "question_id": 16525, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00000669", - "question_id": 16527, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007454", - "question_id": 16528, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002045", - "question_id": 16530, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003023", - "question_id": 16531, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004693", - "question_id": 16532, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006882", - "question_id": 16534, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008501", - "question_id": 16536, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007522", - "question_id": 16542, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000415", - "question_id": 16543, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008955", - "question_id": 16545, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00008941", - "question_id": 16546, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000393", - "question_id": 16547, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008362", - "question_id": 16551, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000288", - "question_id": 16552, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004232", - "question_id": 16554, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006932", - "question_id": 16558, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004520", - "question_id": 16559, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002559", - "question_id": 16560, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003019", - "question_id": 16562, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002883", - "question_id": 16566, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006745", - "question_id": 16569, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003734", - "question_id": 16570, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00005822", - "question_id": 16571, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006021", - "question_id": 16572, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006021", - "question_id": 16572, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005950", - "question_id": 16575, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008669", - "question_id": 16577, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003232", - "question_id": 16578, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000737", - "question_id": 16580, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000045", - "question_id": 16582, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002188", - "question_id": 16586, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003353", - "question_id": 16587, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006748", - "question_id": 16589, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00004237", - "question_id": 16591, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003701", - "question_id": 16592, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001917", - "question_id": 16594, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004907", - "question_id": 16596, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000697", - "question_id": 16597, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006414", - "question_id": 16598, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007757", - "question_id": 16599, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000202", - "question_id": 16600, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006830", - "question_id": 16601, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006288", - "question_id": 16602, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00007073", - "question_id": 16603, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008540", - "question_id": 16604, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007724", - "question_id": 16605, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00003002", - "question_id": 16607, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00004787", - "question_id": 16608, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003965", - "question_id": 16610, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003003", - "question_id": 16611, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001345", - "question_id": 16613, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006282", - "question_id": 16615, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003226", - "question_id": 16616, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005938", - "question_id": 16618, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007163", - "question_id": 16620, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007971", - "question_id": 16621, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004622", - "question_id": 16622, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007683", - "question_id": 16624, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006303", - "question_id": 16625, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002452", - "question_id": 16627, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006982", - "question_id": 16628, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006481", - "question_id": 16629, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006319", - "question_id": 16632, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008722", - "question_id": 16636, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00000230", - "question_id": 16637, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008201", - "question_id": 16638, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007470", - "question_id": 16639, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00008625", - "question_id": 16640, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002542", - "question_id": 16642, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005563", - "question_id": 16643, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003011", - "question_id": 16644, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00000520", - "question_id": 16648, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006950", - "question_id": 16649, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007048", - "question_id": 16650, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007125", - "question_id": 16651, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006314", - "question_id": 16652, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005647", - "question_id": 16654, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007192", - "question_id": 16656, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006277", - "question_id": 16657, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004112", - "question_id": 16658, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006021", - "question_id": 16659, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001234", - "question_id": 16660, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007853", - "question_id": 16661, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00008642", - "question_id": 16662, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006549", - "question_id": 16663, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000697", - "question_id": 16664, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003360", - "question_id": 16665, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000097", - "question_id": 16666, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004570", - "question_id": 16667, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004681", - "question_id": 16669, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007232", - "question_id": 16670, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001628", - "question_id": 16673, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00005521", - "question_id": 16674, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00006804", - "question_id": 16675, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006650", - "question_id": 16676, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007741", - "question_id": 16677, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005292", - "question_id": 16678, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005917", - "question_id": 16679, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002596", - "question_id": 16681, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003940", - "question_id": 16682, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006714", - "question_id": 16683, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000740", - "question_id": 16684, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008550", - "question_id": 16685, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000859", - "question_id": 16686, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002947", - "question_id": 16689, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005312", - "question_id": 16690, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00008333", - "question_id": 16691, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"piano\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003074", - "question_id": 16692, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000796", - "question_id": 16693, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001331", - "question_id": 16694, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002310", - "question_id": 16695, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008088", - "question_id": 16697, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001599", - "question_id": 16698, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003447", - "question_id": 16699, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008916", - "question_id": 16700, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002775", - "question_id": 16701, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001543", - "question_id": 16703, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002213", - "question_id": 16704, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00005433", - "question_id": 16705, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002486", - "question_id": 16706, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001775", - "question_id": 16707, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005826", - "question_id": 16709, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002552", - "question_id": 16710, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002197", - "question_id": 16711, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000207", - "question_id": 16712, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001829", - "question_id": 16713, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008614", - "question_id": 16714, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006450", - "question_id": 16715, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00007106", - "question_id": 16716, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00007651", - "question_id": 16717, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004606", - "question_id": 16718, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006875", - "question_id": 16719, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00008726", - "question_id": 16721, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000743", - "question_id": 16723, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008058", - "question_id": 16724, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005422", - "question_id": 16725, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004352", - "question_id": 16727, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008183", - "question_id": 16728, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005731", - "question_id": 16729, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003611", - "question_id": 16730, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008722", - "question_id": 16732, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000609", - "question_id": 16733, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006099", - "question_id": 16735, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004564", - "question_id": 16737, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007453", - "question_id": 16738, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00000679", - "question_id": 16739, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003021", - "question_id": 16741, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006157", - "question_id": 16742, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002045", - "question_id": 16744, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004726", - "question_id": 16745, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00001697", - "question_id": 16746, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001766", - "question_id": 16747, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004859", - "question_id": 16748, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002529", - "question_id": 16751, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000205", - "question_id": 16753, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002256", - "question_id": 16754, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007929", - "question_id": 16756, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00002677", - "question_id": 16758, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003944", - "question_id": 16762, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002972", - "question_id": 16763, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005691", - "question_id": 16766, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00005962", - "question_id": 16767, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004120", - "question_id": 16768, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002737", - "question_id": 16770, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00004233", - "question_id": 16771, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008765", - "question_id": 16772, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001999", - "question_id": 16773, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001076", - "question_id": 16774, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004441", - "question_id": 16775, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bagpipe\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000426", - "question_id": 16778, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006938", - "question_id": 16779, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005657", - "question_id": 16781, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00006149", - "question_id": 16782, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00007522", - "question_id": 16783, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00000078", - "question_id": 16784, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004550", - "question_id": 16785, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000071", - "question_id": 16786, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007597", - "question_id": 16788, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001747", - "question_id": 16789, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004603", - "question_id": 16790, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003011", - "question_id": 16791, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000521", - "question_id": 16792, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008950", - "question_id": 16795, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00002166", - "question_id": 16796, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007923", - "question_id": 16798, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003485", - "question_id": 16799, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003297", - "question_id": 16800, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00000505", - "question_id": 16801, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000777", - "question_id": 16802, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007968", - "question_id": 16803, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005050", - "question_id": 16804, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003640", - "question_id": 16805, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00005355", - "question_id": 16809, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003735", - "question_id": 16810, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004439", - "question_id": 16811, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005967", - "question_id": 16813, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"saxophone\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00000615", - "question_id": 16814, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000289", - "question_id": 16817, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000382", - "question_id": 16819, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003303", - "question_id": 16820, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002357", - "question_id": 16822, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006888", - "question_id": 16823, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008950", - "question_id": 16824, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008202", - "question_id": 16827, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006805", - "question_id": 16829, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002387", - "question_id": 16830, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001841", - "question_id": 16832, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00008727", - "question_id": 16833, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002602", - "question_id": 16834, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005475", - "question_id": 16835, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005806", - "question_id": 16836, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00002919", - "question_id": 16837, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004980", - "question_id": 16838, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005927", - "question_id": 16839, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"left\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002174", - "question_id": 16840, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005389", - "question_id": 16841, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002619", - "question_id": 16842, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000058", - "question_id": 16846, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00000025", - "question_id": 16847, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008281", - "question_id": 16851, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002372", - "question_id": 16853, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002426", - "question_id": 16855, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00004153", - "question_id": 16856, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006966", - "question_id": 16857, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003948", - "question_id": 16858, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003752", - "question_id": 16860, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006466", - "question_id": 16861, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006536", - "question_id": 16864, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001507", - "question_id": 16865, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004595", - "question_id": 16867, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00007320", - "question_id": 16868, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001284", - "question_id": 16869, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002081", - "question_id": 16870, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003912", - "question_id": 16871, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007370", - "question_id": 16873, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002913", - "question_id": 16876, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004497", - "question_id": 16877, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000692", - "question_id": 16878, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007935", - "question_id": 16879, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007511", - "question_id": 16880, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004878", - "question_id": 16881, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003509", - "question_id": 16884, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003228", - "question_id": 16886, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002981", - "question_id": 16887, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007813", - "question_id": 16888, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004337", - "question_id": 16889, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001339", - "question_id": 16890, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00008227", - "question_id": 16891, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008961", - "question_id": 16892, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004101", - "question_id": 16893, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002634", - "question_id": 16894, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004903", - "question_id": 16895, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004751", - "question_id": 16899, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000994", - "question_id": 16901, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007106", - "question_id": 16902, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006188", - "question_id": 16904, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003043", - "question_id": 16905, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006737", - "question_id": 16908, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004953", - "question_id": 16910, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002756", - "question_id": 16911, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007343", - "question_id": 16912, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002422", - "question_id": 16913, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006950", - "question_id": 16914, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000461", - "question_id": 16915, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005546", - "question_id": 16916, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005688", - "question_id": 16917, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005039", - "question_id": 16918, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00004775", - "question_id": 16921, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00004662", - "question_id": 16923, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00007762", - "question_id": 16924, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007361", - "question_id": 16925, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001459", - "question_id": 16927, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002216", - "question_id": 16928, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000830", - "question_id": 16929, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007126", - "question_id": 16930, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004315", - "question_id": 16931, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000626", - "question_id": 16932, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000051", - "question_id": 16933, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00004081", - "question_id": 16935, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002509", - "question_id": 16936, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001044", - "question_id": 16938, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005173", - "question_id": 16940, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008246", - "question_id": 16941, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004646", - "question_id": 16942, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001102", - "question_id": 16945, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003431", - "question_id": 16946, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006752", - "question_id": 16948, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008614", - "question_id": 16953, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004918", - "question_id": 16954, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008968", - "question_id": 16955, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00004181", - "question_id": 16956, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005690", - "question_id": 16957, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004435", - "question_id": 16958, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005021", - "question_id": 16959, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003018", - "question_id": 16962, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004944", - "question_id": 16963, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00001118", - "question_id": 16965, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007856", - "question_id": 16966, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003307", - "question_id": 16967, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005338", - "question_id": 16968, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005081", - "question_id": 16972, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001193", - "question_id": 16973, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00002884", - "question_id": 16974, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00003131", - "question_id": 16975, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006013", - "question_id": 16978, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00000527", - "question_id": 16980, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003016", - "question_id": 16985, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"congas\", \"right\", \"congas\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005471", - "question_id": 16986, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004274", - "question_id": 16987, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004507", - "question_id": 16988, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00000297", - "question_id": 16989, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001842", - "question_id": 16990, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002168", - "question_id": 16993, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002832", - "question_id": 16994, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008926", - "question_id": 16995, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007135", - "question_id": 16996, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007115", - "question_id": 16997, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001455", - "question_id": 16998, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002538", - "question_id": 16999, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00003625", - "question_id": 17000, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006484", - "question_id": 17001, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006324", - "question_id": 17002, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001486", - "question_id": 17003, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001487", - "question_id": 17004, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007669", - "question_id": 17006, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004296", - "question_id": 17007, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003629", - "question_id": 17008, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005015", - "question_id": 17009, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002366", - "question_id": 17010, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003117", - "question_id": 17011, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008528", - "question_id": 17012, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000362", - "question_id": 17013, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004908", - "question_id": 17014, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00005690", - "question_id": 17015, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005109", - "question_id": 17017, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006719", - "question_id": 17018, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001312", - "question_id": 17019, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007135", - "question_id": 17021, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005388", - "question_id": 17023, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"electric_bass\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004583", - "question_id": 17024, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005405", - "question_id": 17027, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00008826", - "question_id": 17029, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006774", - "question_id": 17031, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004106", - "question_id": 17037, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"pipa\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005637", - "question_id": 17039, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002893", - "question_id": 17040, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002342", - "question_id": 17042, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006126", - "question_id": 17043, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007428", - "question_id": 17044, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007396", - "question_id": 17045, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003885", - "question_id": 17046, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008175", - "question_id": 17050, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008380", - "question_id": 17052, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007866", - "question_id": 17055, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006860", - "question_id": 17057, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000310", - "question_id": 17060, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003466", - "question_id": 17062, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006287", - "question_id": 17063, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003243", - "question_id": 17064, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008789", - "question_id": 17065, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006030", - "question_id": 17066, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007661", - "question_id": 17067, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00003366", - "question_id": 17071, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004796", - "question_id": 17072, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006222", - "question_id": 17075, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001543", - "question_id": 17076, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000783", - "question_id": 17078, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002540", - "question_id": 17079, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004013", - "question_id": 17080, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007632", - "question_id": 17082, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003784", - "question_id": 17083, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001337", - "question_id": 17084, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002682", - "question_id": 17086, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003858", - "question_id": 17087, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005246", - "question_id": 17088, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00008234", - "question_id": 17089, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006391", - "question_id": 17090, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006234", - "question_id": 17092, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001418", - "question_id": 17093, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006025", - "question_id": 17094, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000162", - "question_id": 17095, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003002", - "question_id": 17096, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002966", - "question_id": 17097, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00002882", - "question_id": 17098, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001084", - "question_id": 17100, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007520", - "question_id": 17101, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000711", - "question_id": 17103, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002325", - "question_id": 17106, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000889", - "question_id": 17107, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005794", - "question_id": 17109, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003686", - "question_id": 17110, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005581", - "question_id": 17111, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002662", - "question_id": 17113, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006865", - "question_id": 17114, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008902", - "question_id": 17116, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003398", - "question_id": 17117, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008482", - "question_id": 17119, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004645", - "question_id": 17120, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005100", - "question_id": 17121, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004560", - "question_id": 17123, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006579", - "question_id": 17125, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002576", - "question_id": 17126, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007202", - "question_id": 17127, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008407", - "question_id": 17128, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002725", - "question_id": 17130, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00004566", - "question_id": 17134, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008174", - "question_id": 17135, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006791", - "question_id": 17136, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004357", - "question_id": 17138, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00006281", - "question_id": 17140, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000914", - "question_id": 17142, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008830", - "question_id": 17143, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003805", - "question_id": 17144, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007419", - "question_id": 17145, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008230", - "question_id": 17146, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000801", - "question_id": 17147, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000885", - "question_id": 17149, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002001", - "question_id": 17150, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002439", - "question_id": 17151, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005641", - "question_id": 17152, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006491", - "question_id": 17153, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000357", - "question_id": 17154, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000018", - "question_id": 17156, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002066", - "question_id": 17157, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003807", - "question_id": 17160, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00004422", - "question_id": 17161, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000697", - "question_id": 17163, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005697", - "question_id": 17164, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001927", - "question_id": 17165, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001733", - "question_id": 17166, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004837", - "question_id": 17167, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003740", - "question_id": 17169, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005531", - "question_id": 17170, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007350", - "question_id": 17171, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006516", - "question_id": 17172, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006622", - "question_id": 17174, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007084", - "question_id": 17175, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006453", - "question_id": 17177, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000536", - "question_id": 17178, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005950", - "question_id": 17179, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000972", - "question_id": 17180, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007444", - "question_id": 17182, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006998", - "question_id": 17183, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006310", - "question_id": 17185, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005355", - "question_id": 17186, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000958", - "question_id": 17188, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000274", - "question_id": 17191, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004960", - "question_id": 17192, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008477", - "question_id": 17195, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005582", - "question_id": 17197, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004332", - "question_id": 17203, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003995", - "question_id": 17204, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007802", - "question_id": 17206, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003344", - "question_id": 17208, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008642", - "question_id": 17209, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007339", - "question_id": 17216, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002077", - "question_id": 17219, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00007907", - "question_id": 17220, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008440", - "question_id": 17221, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001405", - "question_id": 17222, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004806", - "question_id": 17223, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000749", - "question_id": 17226, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001643", - "question_id": 17227, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005566", - "question_id": 17229, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000211", - "question_id": 17230, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002503", - "question_id": 17232, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005159", - "question_id": 17233, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002459", - "question_id": 17234, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003071", - "question_id": 17236, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006030", - "question_id": 17237, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002502", - "question_id": 17238, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00003128", - "question_id": 17239, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002939", - "question_id": 17241, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005516", - "question_id": 17242, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002946", - "question_id": 17243, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00002184", - "question_id": 17245, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000471", - "question_id": 17246, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007860", - "question_id": 17247, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004414", - "question_id": 17248, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001611", - "question_id": 17250, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004203", - "question_id": 17251, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003873", - "question_id": 17253, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005782", - "question_id": 17256, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007288", - "question_id": 17258, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005139", - "question_id": 17259, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005287", - "question_id": 17260, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002628", - "question_id": 17261, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003762", - "question_id": 17262, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008412", - "question_id": 17265, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00007015", - "question_id": 17266, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003787", - "question_id": 17267, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008268", - "question_id": 17268, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"drum\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001908", - "question_id": 17269, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001908", - "question_id": 17269, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001907", - "question_id": 17271, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00005443", - "question_id": 17272, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006074", - "question_id": 17273, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005092", - "question_id": 17276, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008181", - "question_id": 17277, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004936", - "question_id": 17278, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001484", - "question_id": 17279, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005793", - "question_id": 17280, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008894", - "question_id": 17282, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002192", - "question_id": 17283, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00007603", - "question_id": 17286, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008498", - "question_id": 17287, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003909", - "question_id": 17289, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008747", - "question_id": 17291, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"middle\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005242", - "question_id": 17292, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00000192", - "question_id": 17293, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00002227", - "question_id": 17294, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005965", - "question_id": 17295, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005318", - "question_id": 17297, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001141", - "question_id": 17298, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00000981", - "question_id": 17302, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002710", - "question_id": 17303, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004621", - "question_id": 17305, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00007129", - "question_id": 17306, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005221", - "question_id": 17309, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005852", - "question_id": 17310, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002334", - "question_id": 17311, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006948", - "question_id": 17314, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003755", - "question_id": 17315, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003009", - "question_id": 17316, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004670", - "question_id": 17318, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00006012", - "question_id": 17319, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007599", - "question_id": 17321, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007527", - "question_id": 17322, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00002427", - "question_id": 17324, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005244", - "question_id": 17325, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003366", - "question_id": 17327, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005244", - "question_id": 17328, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006676", - "question_id": 17329, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005361", - "question_id": 17330, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005359", - "question_id": 17331, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001497", - "question_id": 17334, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007116", - "question_id": 17336, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003375", - "question_id": 17337, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000358", - "question_id": 17340, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005127", - "question_id": 17341, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003198", - "question_id": 17342, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005010", - "question_id": 17343, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00004243", - "question_id": 17344, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002474", - "question_id": 17346, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002945", - "question_id": 17348, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00002348", - "question_id": 17349, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00002601", - "question_id": 17350, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005440", - "question_id": 17351, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00008686", - "question_id": 17352, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002614", - "question_id": 17354, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005686", - "question_id": 17355, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00007682", - "question_id": 17356, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005083", - "question_id": 17357, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004273", - "question_id": 17359, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005197", - "question_id": 17360, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008873", - "question_id": 17362, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005721", - "question_id": 17364, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006623", - "question_id": 17365, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003008", - "question_id": 17367, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006993", - "question_id": 17370, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000109", - "question_id": 17371, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004085", - "question_id": 17372, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001422", - "question_id": 17374, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008098", - "question_id": 17375, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003783", - "question_id": 17377, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00001426", - "question_id": 17379, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003804", - "question_id": 17380, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006736", - "question_id": 17381, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000390", - "question_id": 17382, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002736", - "question_id": 17383, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005647", - "question_id": 17385, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007944", - "question_id": 17386, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001136", - "question_id": 17387, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000481", - "question_id": 17389, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008249", - "question_id": 17393, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001109", - "question_id": 17394, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001277", - "question_id": 17396, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004683", - "question_id": 17397, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000083", - "question_id": 17399, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006069", - "question_id": 17400, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005717", - "question_id": 17401, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003279", - "question_id": 17402, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001230", - "question_id": 17403, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00008305", - "question_id": 17404, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004139", - "question_id": 17406, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002883", - "question_id": 17408, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007287", - "question_id": 17409, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001172", - "question_id": 17411, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003908", - "question_id": 17412, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002296", - "question_id": 17415, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000178", - "question_id": 17416, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006920", - "question_id": 17419, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007529", - "question_id": 17420, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006692", - "question_id": 17425, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002185", - "question_id": 17426, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008274", - "question_id": 17427, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000751", - "question_id": 17428, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001778", - "question_id": 17429, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002050", - "question_id": 17432, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000966", - "question_id": 17435, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000737", - "question_id": 17436, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005281", - "question_id": 17437, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001032", - "question_id": 17439, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005114", - "question_id": 17440, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005622", - "question_id": 17441, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007161", - "question_id": 17442, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006357", - "question_id": 17444, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008502", - "question_id": 17445, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001031", - "question_id": 17446, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004568", - "question_id": 17447, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00002976", - "question_id": 17452, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007413", - "question_id": 17453, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"xylophone\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008167", - "question_id": 17456, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002685", - "question_id": 17460, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000377", - "question_id": 17462, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00005298", - "question_id": 17464, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006648", - "question_id": 17465, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"guzheng\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00001715", - "question_id": 17466, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004205", - "question_id": 17467, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008379", - "question_id": 17468, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007506", - "question_id": 17469, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002323", - "question_id": 17471, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003264", - "question_id": 17473, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006953", - "question_id": 17474, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003112", - "question_id": 17476, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007600", - "question_id": 17478, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008556", - "question_id": 17480, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001630", - "question_id": 17481, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007502", - "question_id": 17482, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008317", - "question_id": 17483, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001300", - "question_id": 17484, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003114", - "question_id": 17486, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003138", - "question_id": 17487, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001703", - "question_id": 17489, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00003163", - "question_id": 17490, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003214", - "question_id": 17491, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006629", - "question_id": 17492, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001956", - "question_id": 17494, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007367", - "question_id": 17496, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00005438", - "question_id": 17497, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00000440", - "question_id": 17499, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000868", - "question_id": 17500, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008913", - "question_id": 17501, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004584", - "question_id": 17502, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007704", - "question_id": 17503, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004733", - "question_id": 17504, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00001469", - "question_id": 17506, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004870", - "question_id": 17507, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008579", - "question_id": 17509, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000553", - "question_id": 17510, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005513", - "question_id": 17511, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004070", - "question_id": 17514, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007898", - "question_id": 17515, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003735", - "question_id": 17516, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005571", - "question_id": 17517, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00003689", - "question_id": 17518, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003790", - "question_id": 17522, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007748", - "question_id": 17523, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004737", - "question_id": 17525, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005639", - "question_id": 17527, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006663", - "question_id": 17528, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000367", - "question_id": 17530, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004737", - "question_id": 17531, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"drum\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006413", - "question_id": 17533, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006350", - "question_id": 17534, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007532", - "question_id": 17535, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000689", - "question_id": 17536, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008044", - "question_id": 17537, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006264", - "question_id": 17538, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00008155", - "question_id": 17539, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005194", - "question_id": 17540, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00006789", - "question_id": 17541, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008031", - "question_id": 17542, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000258", - "question_id": 17544, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003354", - "question_id": 17545, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008446", - "question_id": 17546, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002655", - "question_id": 17547, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00007169", - "question_id": 17548, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006724", - "question_id": 17550, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005943", - "question_id": 17551, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"congas\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00002252", - "question_id": 17553, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007681", - "question_id": 17554, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004952", - "question_id": 17555, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005048", - "question_id": 17557, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002718", - "question_id": 17559, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008032", - "question_id": 17561, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004873", - "question_id": 17563, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000440", - "question_id": 17564, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005280", - "question_id": 17567, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002627", - "question_id": 17571, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00007933", - "question_id": 17573, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004641", - "question_id": 17576, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002087", - "question_id": 17578, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000094", - "question_id": 17582, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007713", - "question_id": 17583, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003043", - "question_id": 17584, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008100", - "question_id": 17585, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000133", - "question_id": 17587, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"pipa\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000917", - "question_id": 17589, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008685", - "question_id": 17592, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000714", - "question_id": 17594, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00002116", - "question_id": 17596, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005489", - "question_id": 17597, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002148", - "question_id": 17598, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006678", - "question_id": 17600, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001622", - "question_id": 17601, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008885", - "question_id": 17602, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003426", - "question_id": 17603, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003546", - "question_id": 17608, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001673", - "question_id": 17609, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005497", - "question_id": 17610, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00006014", - "question_id": 17612, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005263", - "question_id": 17614, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00001915", - "question_id": 17615, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008439", - "question_id": 17616, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00006946", - "question_id": 17617, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005321", - "question_id": 17619, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001782", - "question_id": 17622, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008867", - "question_id": 17623, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001654", - "question_id": 17626, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006403", - "question_id": 17628, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006722", - "question_id": 17629, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00008267", - "question_id": 17630, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004101", - "question_id": 17631, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003468", - "question_id": 17632, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00004742", - "question_id": 17633, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005621", - "question_id": 17634, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000710", - "question_id": 17636, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002384", - "question_id": 17638, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004532", - "question_id": 17639, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004156", - "question_id": 17640, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002446", - "question_id": 17641, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001473", - "question_id": 17643, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007277", - "question_id": 17645, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00004698", - "question_id": 17646, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000435", - "question_id": 17647, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008651", - "question_id": 17648, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000718", - "question_id": 17651, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007183", - "question_id": 17656, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003830", - "question_id": 17657, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006932", - "question_id": 17658, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007464", - "question_id": 17659, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008078", - "question_id": 17660, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00005514", - "question_id": 17663, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004656", - "question_id": 17664, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004820", - "question_id": 17666, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003557", - "question_id": 17669, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004428", - "question_id": 17672, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005298", - "question_id": 17673, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006445", - "question_id": 17674, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002563", - "question_id": 17675, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00005486", - "question_id": 17677, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002587", - "question_id": 17680, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004848", - "question_id": 17681, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00007447", - "question_id": 17682, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00002382", - "question_id": 17683, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005285", - "question_id": 17685, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002641", - "question_id": 17686, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008412", - "question_id": 17687, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005321", - "question_id": 17688, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005696", - "question_id": 17689, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005555", - "question_id": 17690, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000622", - "question_id": 17691, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004139", - "question_id": 17692, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008946", - "question_id": 17694, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007912", - "question_id": 17696, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008504", - "question_id": 17698, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000867", - "question_id": 17700, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001077", - "question_id": 17702, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001441", - "question_id": 17703, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008614", - "question_id": 17706, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002237", - "question_id": 17707, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000578", - "question_id": 17708, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00006179", - "question_id": 17711, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"ukulele\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00000999", - "question_id": 17712, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006081", - "question_id": 17713, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005120", - "question_id": 17715, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001098", - "question_id": 17716, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007269", - "question_id": 17717, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004492", - "question_id": 17718, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001887", - "question_id": 17719, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008115", - "question_id": 17720, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007542", - "question_id": 17721, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002366", - "question_id": 17722, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00000599", - "question_id": 17723, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006339", - "question_id": 17725, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001544", - "question_id": 17726, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006526", - "question_id": 17727, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008688", - "question_id": 17728, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003809", - "question_id": 17730, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002168", - "question_id": 17731, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007431", - "question_id": 17732, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005869", - "question_id": 17736, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00002924", - "question_id": 17737, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000544", - "question_id": 17740, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005410", - "question_id": 17741, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008381", - "question_id": 17745, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002959", - "question_id": 17746, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001529", - "question_id": 17747, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000570", - "question_id": 17749, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004806", - "question_id": 17750, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001632", - "question_id": 17752, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006300", - "question_id": 17757, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000009", - "question_id": 17758, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001025", - "question_id": 17762, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00002368", - "question_id": 17763, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003712", - "question_id": 17764, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000332", - "question_id": 17765, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002940", - "question_id": 17766, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007807", - "question_id": 17769, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001070", - "question_id": 17770, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006469", - "question_id": 17772, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002506", - "question_id": 17773, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007606", - "question_id": 17774, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00005719", - "question_id": 17775, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "seven" - }, - { - "video_id": "00004548", - "question_id": 17776, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008766", - "question_id": 17777, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004445", - "question_id": 17778, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005580", - "question_id": 17779, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006096", - "question_id": 17780, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007966", - "question_id": 17781, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000241", - "question_id": 17783, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005581", - "question_id": 17785, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000869", - "question_id": 17789, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004606", - "question_id": 17790, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005741", - "question_id": 17791, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005442", - "question_id": 17793, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007471", - "question_id": 17794, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004317", - "question_id": 17796, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007046", - "question_id": 17797, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004486", - "question_id": 17800, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005282", - "question_id": 17801, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008178", - "question_id": 17804, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002179", - "question_id": 17805, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008724", - "question_id": 17806, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007745", - "question_id": 17808, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007840", - "question_id": 17809, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005057", - "question_id": 17810, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000831", - "question_id": 17811, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007243", - "question_id": 17812, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003502", - "question_id": 17814, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"tuba\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002876", - "question_id": 17815, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000317", - "question_id": 17817, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008797", - "question_id": 17818, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001185", - "question_id": 17819, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008964", - "question_id": 17822, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005287", - "question_id": 17823, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008017", - "question_id": 17824, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008118", - "question_id": 17825, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007105", - "question_id": 17826, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003279", - "question_id": 17827, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007899", - "question_id": 17828, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005452", - "question_id": 17829, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000025", - "question_id": 17830, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002298", - "question_id": 17831, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002543", - "question_id": 17834, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008894", - "question_id": 17835, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001242", - "question_id": 17836, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008521", - "question_id": 17837, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003761", - "question_id": 17838, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008720", - "question_id": 17839, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003803", - "question_id": 17840, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000462", - "question_id": 17844, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000527", - "question_id": 17845, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003309", - "question_id": 17847, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001970", - "question_id": 17848, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00000135", - "question_id": 17851, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007214", - "question_id": 17852, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001876", - "question_id": 17853, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001114", - "question_id": 17854, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002723", - "question_id": 17855, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001526", - "question_id": 17856, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001381", - "question_id": 17858, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002352", - "question_id": 17859, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008698", - "question_id": 17860, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007615", - "question_id": 17862, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"banjo\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00005335", - "question_id": 17863, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"bassoon\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003973", - "question_id": 17865, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000517", - "question_id": 17866, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001545", - "question_id": 17870, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005191", - "question_id": 17871, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004425", - "question_id": 17872, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007951", - "question_id": 17873, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000314", - "question_id": 17874, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00007121", - "question_id": 17875, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007977", - "question_id": 17876, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003535", - "question_id": 17877, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002819", - "question_id": 17878, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008036", - "question_id": 17881, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004572", - "question_id": 17882, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005635", - "question_id": 17883, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008844", - "question_id": 17884, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007992", - "question_id": 17887, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007708", - "question_id": 17888, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001080", - "question_id": 17889, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008888", - "question_id": 17890, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004768", - "question_id": 17891, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003617", - "question_id": 17892, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004778", - "question_id": 17894, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004440", - "question_id": 17895, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003750", - "question_id": 17896, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001764", - "question_id": 17897, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007964", - "question_id": 17898, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003607", - "question_id": 17899, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003497", - "question_id": 17901, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000300", - "question_id": 17902, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006837", - "question_id": 17903, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004840", - "question_id": 17904, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007456", - "question_id": 17905, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008731", - "question_id": 17908, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003317", - "question_id": 17912, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005633", - "question_id": 17913, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006852", - "question_id": 17915, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008176", - "question_id": 17916, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002264", - "question_id": 17920, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004248", - "question_id": 17921, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007212", - "question_id": 17923, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002021", - "question_id": 17927, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008564", - "question_id": 17929, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002997", - "question_id": 17930, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00003490", - "question_id": 17931, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003490", - "question_id": 17932, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00006180", - "question_id": 17933, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000655", - "question_id": 17934, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000773", - "question_id": 17935, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003940", - "question_id": 17936, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003596", - "question_id": 17937, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004308", - "question_id": 17938, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000705", - "question_id": 17939, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002176", - "question_id": 17940, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007364", - "question_id": 17942, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000688", - "question_id": 17944, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004347", - "question_id": 17945, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002990", - "question_id": 17948, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00001268", - "question_id": 17954, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002751", - "question_id": 17955, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00002957", - "question_id": 17956, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004845", - "question_id": 17957, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002634", - "question_id": 17958, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004858", - "question_id": 17959, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004209", - "question_id": 17960, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001201", - "question_id": 17961, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008048", - "question_id": 17962, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000519", - "question_id": 17963, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003452", - "question_id": 17964, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000815", - "question_id": 17965, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003693", - "question_id": 17966, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001834", - "question_id": 17968, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006072", - "question_id": 17969, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005563", - "question_id": 17971, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007532", - "question_id": 17973, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007305", - "question_id": 17974, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008124", - "question_id": 17975, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007229", - "question_id": 17980, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008076", - "question_id": 17982, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006648", - "question_id": 17984, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000264", - "question_id": 17985, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007867", - "question_id": 17986, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000367", - "question_id": 17987, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008555", - "question_id": 17989, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002155", - "question_id": 17990, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001615", - "question_id": 17991, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003297", - "question_id": 17992, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00008862", - "question_id": 17994, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000520", - "question_id": 17995, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007066", - "question_id": 17996, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"cello\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004975", - "question_id": 17998, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006907", - "question_id": 18000, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008705", - "question_id": 18002, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007444", - "question_id": 18004, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008276", - "question_id": 18005, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002855", - "question_id": 18006, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004646", - "question_id": 18008, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000197", - "question_id": 18009, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001471", - "question_id": 18010, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000366", - "question_id": 18011, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008466", - "question_id": 18014, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001375", - "question_id": 18015, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00002892", - "question_id": 18016, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008549", - "question_id": 18017, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003664", - "question_id": 18020, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"electric_bass\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002424", - "question_id": 18021, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008105", - "question_id": 18022, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008759", - "question_id": 18023, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007999", - "question_id": 18025, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007893", - "question_id": 18026, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007966", - "question_id": 18029, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002897", - "question_id": 18030, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001022", - "question_id": 18032, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004433", - "question_id": 18035, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004571", - "question_id": 18036, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004278", - "question_id": 18037, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00006714", - "question_id": 18039, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007007", - "question_id": 18040, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006488", - "question_id": 18041, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004740", - "question_id": 18044, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003032", - "question_id": 18045, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007345", - "question_id": 18046, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005846", - "question_id": 18048, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00005824", - "question_id": 18049, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004829", - "question_id": 18051, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "more than ten" - }, - { - "video_id": "00006825", - "question_id": 18052, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000334", - "question_id": 18053, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001383", - "question_id": 18055, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005281", - "question_id": 18056, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000506", - "question_id": 18057, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00002159", - "question_id": 18058, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000003", - "question_id": 18062, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003532", - "question_id": 18064, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007227", - "question_id": 18065, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007651", - "question_id": 18066, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001123", - "question_id": 18067, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006441", - "question_id": 18068, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005761", - "question_id": 18069, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008021", - "question_id": 18071, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002503", - "question_id": 18073, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006532", - "question_id": 18077, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003591", - "question_id": 18078, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000805", - "question_id": 18081, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002478", - "question_id": 18082, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005270", - "question_id": 18084, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005671", - "question_id": 18085, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006004", - "question_id": 18086, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005867", - "question_id": 18087, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002780", - "question_id": 18089, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001385", - "question_id": 18092, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005832", - "question_id": 18094, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001722", - "question_id": 18095, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008615", - "question_id": 18098, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007138", - "question_id": 18099, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001237", - "question_id": 18100, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008737", - "question_id": 18102, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001029", - "question_id": 18103, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005230", - "question_id": 18104, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001820", - "question_id": 18109, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007101", - "question_id": 18111, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008627", - "question_id": 18112, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006593", - "question_id": 18114, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006346", - "question_id": 18117, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002178", - "question_id": 18118, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"flute\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00007140", - "question_id": 18119, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003778", - "question_id": 18120, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000826", - "question_id": 18121, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002927", - "question_id": 18122, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00004778", - "question_id": 18124, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006888", - "question_id": 18125, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00006668", - "question_id": 18126, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00008483", - "question_id": 18127, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005932", - "question_id": 18129, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007127", - "question_id": 18130, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001246", - "question_id": 18131, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002204", - "question_id": 18132, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005336", - "question_id": 18134, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007989", - "question_id": 18135, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006367", - "question_id": 18136, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005197", - "question_id": 18138, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004016", - "question_id": 18139, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00003329", - "question_id": 18140, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005234", - "question_id": 18142, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005219", - "question_id": 18143, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003160", - "question_id": 18144, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003314", - "question_id": 18146, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00006105", - "question_id": 18147, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000060", - "question_id": 18149, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007506", - "question_id": 18150, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004664", - "question_id": 18151, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001655", - "question_id": 18152, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001217", - "question_id": 18153, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005692", - "question_id": 18154, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005369", - "question_id": 18156, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004674", - "question_id": 18157, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002741", - "question_id": 18162, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002940", - "question_id": 18163, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007960", - "question_id": 18164, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000155", - "question_id": 18165, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005102", - "question_id": 18166, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002209", - "question_id": 18168, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000040", - "question_id": 18169, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008786", - "question_id": 18171, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001758", - "question_id": 18172, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002671", - "question_id": 18173, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008975", - "question_id": 18174, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008401", - "question_id": 18175, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000777", - "question_id": 18177, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00005437", - "question_id": 18178, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001688", - "question_id": 18180, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00001600", - "question_id": 18181, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003857", - "question_id": 18182, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008717", - "question_id": 18183, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005183", - "question_id": 18186, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006819", - "question_id": 18188, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000746", - "question_id": 18189, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003445", - "question_id": 18191, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006051", - "question_id": 18192, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004094", - "question_id": 18193, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008168", - "question_id": 18194, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002811", - "question_id": 18195, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005664", - "question_id": 18196, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002996", - "question_id": 18197, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00005331", - "question_id": 18200, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000779", - "question_id": 18201, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004664", - "question_id": 18202, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001175", - "question_id": 18203, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00004606", - "question_id": 18204, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006803", - "question_id": 18208, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001500", - "question_id": 18209, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003566", - "question_id": 18210, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006400", - "question_id": 18211, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008325", - "question_id": 18212, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000517", - "question_id": 18213, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007741", - "question_id": 18214, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008082", - "question_id": 18215, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005074", - "question_id": 18217, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002550", - "question_id": 18218, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001924", - "question_id": 18219, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008643", - "question_id": 18221, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002635", - "question_id": 18225, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006842", - "question_id": 18226, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002052", - "question_id": 18227, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007688", - "question_id": 18229, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002167", - "question_id": 18230, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003543", - "question_id": 18231, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004709", - "question_id": 18232, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000532", - "question_id": 18233, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006616", - "question_id": 18235, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003034", - "question_id": 18237, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002480", - "question_id": 18238, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006388", - "question_id": 18239, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005143", - "question_id": 18240, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001737", - "question_id": 18241, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006368", - "question_id": 18242, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007861", - "question_id": 18243, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00002739", - "question_id": 18244, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007599", - "question_id": 18245, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007606", - "question_id": 18246, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001298", - "question_id": 18247, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000319", - "question_id": 18248, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004695", - "question_id": 18249, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006793", - "question_id": 18250, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004226", - "question_id": 18254, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001389", - "question_id": 18255, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007847", - "question_id": 18256, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004129", - "question_id": 18257, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000772", - "question_id": 18258, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006327", - "question_id": 18259, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005328", - "question_id": 18260, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002513", - "question_id": 18261, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005952", - "question_id": 18262, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001399", - "question_id": 18263, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002573", - "question_id": 18264, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005733", - "question_id": 18265, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006279", - "question_id": 18266, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008404", - "question_id": 18267, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003056", - "question_id": 18268, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005362", - "question_id": 18269, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005083", - "question_id": 18271, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00000695", - "question_id": 18274, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001978", - "question_id": 18275, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003257", - "question_id": 18276, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002951", - "question_id": 18277, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007760", - "question_id": 18278, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000414", - "question_id": 18279, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001243", - "question_id": 18280, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"middle\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007844", - "question_id": 18281, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000398", - "question_id": 18282, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001884", - "question_id": 18284, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001422", - "question_id": 18286, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000878", - "question_id": 18287, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005359", - "question_id": 18288, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000054", - "question_id": 18289, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001736", - "question_id": 18290, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001016", - "question_id": 18292, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005049", - "question_id": 18293, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001393", - "question_id": 18294, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005842", - "question_id": 18295, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00004171", - "question_id": 18296, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005417", - "question_id": 18297, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001607", - "question_id": 18298, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001837", - "question_id": 18299, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006518", - "question_id": 18301, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"xylophone\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003753", - "question_id": 18302, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001626", - "question_id": 18304, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000830", - "question_id": 18305, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006896", - "question_id": 18306, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005510", - "question_id": 18307, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001958", - "question_id": 18308, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001535", - "question_id": 18309, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003969", - "question_id": 18313, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00002668", - "question_id": 18314, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003721", - "question_id": 18315, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006181", - "question_id": 18317, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008200", - "question_id": 18318, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005530", - "question_id": 18319, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002069", - "question_id": 18320, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008742", - "question_id": 18321, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005803", - "question_id": 18322, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003291", - "question_id": 18324, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000539", - "question_id": 18328, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00000319", - "question_id": 18330, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002832", - "question_id": 18331, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006152", - "question_id": 18332, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002672", - "question_id": 18333, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003092", - "question_id": 18334, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003361", - "question_id": 18336, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002534", - "question_id": 18337, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008308", - "question_id": 18338, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005838", - "question_id": 18339, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003057", - "question_id": 18340, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"middle\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000535", - "question_id": 18342, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003341", - "question_id": 18343, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008864", - "question_id": 18344, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00008275", - "question_id": 18345, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003391", - "question_id": 18348, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007010", - "question_id": 18350, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003958", - "question_id": 18351, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007913", - "question_id": 18352, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00002278", - "question_id": 18353, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00000843", - "question_id": 18354, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008009", - "question_id": 18357, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001262", - "question_id": 18358, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005705", - "question_id": 18359, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007343", - "question_id": 18360, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006355", - "question_id": 18362, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00001861", - "question_id": 18363, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003653", - "question_id": 18364, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003572", - "question_id": 18367, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00003390", - "question_id": 18369, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002056", - "question_id": 18370, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005278", - "question_id": 18372, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002853", - "question_id": 18375, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004482", - "question_id": 18376, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001606", - "question_id": 18377, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003799", - "question_id": 18379, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006126", - "question_id": 18381, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000806", - "question_id": 18382, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004862", - "question_id": 18385, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003225", - "question_id": 18386, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008486", - "question_id": 18387, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008730", - "question_id": 18388, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000438", - "question_id": 18389, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003164", - "question_id": 18390, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008966", - "question_id": 18391, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000477", - "question_id": 18393, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006413", - "question_id": 18394, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006877", - "question_id": 18395, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007273", - "question_id": 18396, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003746", - "question_id": 18398, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000498", - "question_id": 18399, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000441", - "question_id": 18400, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005196", - "question_id": 18401, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002001", - "question_id": 18402, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005953", - "question_id": 18404, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004856", - "question_id": 18406, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005605", - "question_id": 18407, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005705", - "question_id": 18411, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004352", - "question_id": 18412, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002138", - "question_id": 18413, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001195", - "question_id": 18414, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004050", - "question_id": 18415, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002468", - "question_id": 18416, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004610", - "question_id": 18417, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00008044", - "question_id": 18418, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000424", - "question_id": 18419, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001634", - "question_id": 18421, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00002459", - "question_id": 18423, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004344", - "question_id": 18424, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001812", - "question_id": 18425, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005302", - "question_id": 18426, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003384", - "question_id": 18427, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005846", - "question_id": 18429, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003897", - "question_id": 18430, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004870", - "question_id": 18431, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000809", - "question_id": 18432, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004645", - "question_id": 18435, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006236", - "question_id": 18437, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00004146", - "question_id": 18438, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000278", - "question_id": 18439, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008921", - "question_id": 18440, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000976", - "question_id": 18442, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006791", - "question_id": 18443, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"banjo\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004588", - "question_id": 18444, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"electric_bass\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001589", - "question_id": 18445, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00004703", - "question_id": 18448, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007005", - "question_id": 18451, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006573", - "question_id": 18452, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002793", - "question_id": 18454, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001744", - "question_id": 18455, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005609", - "question_id": 18457, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000751", - "question_id": 18458, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006670", - "question_id": 18459, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001863", - "question_id": 18461, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003260", - "question_id": 18462, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008934", - "question_id": 18464, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005962", - "question_id": 18468, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000971", - "question_id": 18469, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004638", - "question_id": 18471, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005179", - "question_id": 18472, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007380", - "question_id": 18473, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002753", - "question_id": 18474, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007658", - "question_id": 18476, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008734", - "question_id": 18478, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007334", - "question_id": 18481, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000416", - "question_id": 18482, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00000571", - "question_id": 18483, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005059", - "question_id": 18485, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008842", - "question_id": 18487, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007017", - "question_id": 18488, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008619", - "question_id": 18489, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000522", - "question_id": 18490, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000975", - "question_id": 18491, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000659", - "question_id": 18493, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001983", - "question_id": 18494, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006600", - "question_id": 18495, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00005711", - "question_id": 18497, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"xylophone\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001537", - "question_id": 18499, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003538", - "question_id": 18501, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001762", - "question_id": 18502, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006696", - "question_id": 18504, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002472", - "question_id": 18505, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004893", - "question_id": 18507, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000541", - "question_id": 18508, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005168", - "question_id": 18511, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000442", - "question_id": 18512, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004850", - "question_id": 18513, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001865", - "question_id": 18515, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002766", - "question_id": 18516, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003560", - "question_id": 18520, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008143", - "question_id": 18521, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008830", - "question_id": 18523, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008797", - "question_id": 18527, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005704", - "question_id": 18528, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003117", - "question_id": 18529, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005512", - "question_id": 18532, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001172", - "question_id": 18533, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000585", - "question_id": 18534, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004263", - "question_id": 18535, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000741", - "question_id": 18538, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000057", - "question_id": 18539, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008503", - "question_id": 18542, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003014", - "question_id": 18543, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001503", - "question_id": 18544, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008894", - "question_id": 18545, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008249", - "question_id": 18546, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002558", - "question_id": 18547, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"congas\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00002971", - "question_id": 18549, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004588", - "question_id": 18550, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007906", - "question_id": 18551, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001669", - "question_id": 18553, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005966", - "question_id": 18554, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005325", - "question_id": 18556, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006802", - "question_id": 18558, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007516", - "question_id": 18559, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005936", - "question_id": 18560, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007587", - "question_id": 18561, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007895", - "question_id": 18562, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003638", - "question_id": 18563, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004446", - "question_id": 18565, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008014", - "question_id": 18566, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00003773", - "question_id": 18567, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00007800", - "question_id": 18570, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006943", - "question_id": 18572, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006256", - "question_id": 18573, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008369", - "question_id": 18574, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"electric_bass\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002137", - "question_id": 18575, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003082", - "question_id": 18577, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005612", - "question_id": 18578, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004169", - "question_id": 18579, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003472", - "question_id": 18581, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006145", - "question_id": 18583, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000364", - "question_id": 18584, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007367", - "question_id": 18585, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008677", - "question_id": 18586, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003881", - "question_id": 18587, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000188", - "question_id": 18588, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008939", - "question_id": 18589, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "seven" - }, - { - "video_id": "00006479", - "question_id": 18591, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006379", - "question_id": 18592, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008490", - "question_id": 18593, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008960", - "question_id": 18594, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006053", - "question_id": 18595, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003280", - "question_id": 18597, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003693", - "question_id": 18599, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004143", - "question_id": 18600, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005300", - "question_id": 18601, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007339", - "question_id": 18603, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007100", - "question_id": 18604, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005029", - "question_id": 18606, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000397", - "question_id": 18607, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004190", - "question_id": 18609, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007283", - "question_id": 18610, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008797", - "question_id": 18612, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003647", - "question_id": 18615, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008450", - "question_id": 18616, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005526", - "question_id": 18620, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006695", - "question_id": 18621, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007201", - "question_id": 18623, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008435", - "question_id": 18624, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001601", - "question_id": 18625, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006271", - "question_id": 18626, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002977", - "question_id": 18627, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002897", - "question_id": 18630, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008057", - "question_id": 18631, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000747", - "question_id": 18632, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004878", - "question_id": 18634, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000816", - "question_id": 18636, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006153", - "question_id": 18637, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002433", - "question_id": 18640, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003691", - "question_id": 18641, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00007763", - "question_id": 18642, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000773", - "question_id": 18643, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005465", - "question_id": 18648, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008276", - "question_id": 18649, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004280", - "question_id": 18650, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008811", - "question_id": 18651, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008386", - "question_id": 18653, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001450", - "question_id": 18654, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005270", - "question_id": 18655, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002291", - "question_id": 18657, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002532", - "question_id": 18659, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002469", - "question_id": 18660, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004354", - "question_id": 18661, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003419", - "question_id": 18663, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008968", - "question_id": 18664, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005311", - "question_id": 18667, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004521", - "question_id": 18669, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003617", - "question_id": 18671, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003653", - "question_id": 18672, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"xylophone\", \"left\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005747", - "question_id": 18673, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004192", - "question_id": 18674, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001522", - "question_id": 18675, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000621", - "question_id": 18676, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008801", - "question_id": 18677, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008209", - "question_id": 18678, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006845", - "question_id": 18680, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004312", - "question_id": 18681, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008647", - "question_id": 18682, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000060", - "question_id": 18683, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006988", - "question_id": 18685, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00002459", - "question_id": 18686, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003217", - "question_id": 18687, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004925", - "question_id": 18688, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008137", - "question_id": 18689, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004289", - "question_id": 18691, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007450", - "question_id": 18693, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002247", - "question_id": 18694, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006395", - "question_id": 18695, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000618", - "question_id": 18696, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006474", - "question_id": 18697, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008667", - "question_id": 18698, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004439", - "question_id": 18701, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006675", - "question_id": 18703, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00002564", - "question_id": 18704, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000913", - "question_id": 18705, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005841", - "question_id": 18709, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005144", - "question_id": 18711, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007808", - "question_id": 18713, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006703", - "question_id": 18715, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002420", - "question_id": 18716, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000599", - "question_id": 18717, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001731", - "question_id": 18720, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00002982", - "question_id": 18721, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008644", - "question_id": 18726, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002820", - "question_id": 18727, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002640", - "question_id": 18728, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002966", - "question_id": 18730, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002887", - "question_id": 18731, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000408", - "question_id": 18733, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001020", - "question_id": 18736, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00002628", - "question_id": 18737, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008027", - "question_id": 18738, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003393", - "question_id": 18739, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00005000", - "question_id": 18741, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006073", - "question_id": 18742, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008668", - "question_id": 18743, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003679", - "question_id": 18744, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002100", - "question_id": 18746, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004400", - "question_id": 18747, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004058", - "question_id": 18749, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006512", - "question_id": 18750, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005036", - "question_id": 18751, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008949", - "question_id": 18752, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008440", - "question_id": 18753, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008232", - "question_id": 18754, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001747", - "question_id": 18755, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004310", - "question_id": 18757, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007093", - "question_id": 18761, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000475", - "question_id": 18762, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005840", - "question_id": 18763, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008217", - "question_id": 18764, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000596", - "question_id": 18766, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000974", - "question_id": 18767, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005821", - "question_id": 18768, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000667", - "question_id": 18769, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00004802", - "question_id": 18771, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006190", - "question_id": 18772, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007505", - "question_id": 18773, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003508", - "question_id": 18774, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004023", - "question_id": 18775, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002207", - "question_id": 18776, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001165", - "question_id": 18777, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00002498", - "question_id": 18778, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007172", - "question_id": 18779, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005833", - "question_id": 18781, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002261", - "question_id": 18782, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002558", - "question_id": 18785, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003809", - "question_id": 18786, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008832", - "question_id": 18787, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002967", - "question_id": 18788, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001142", - "question_id": 18789, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005097", - "question_id": 18790, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001725", - "question_id": 18791, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004854", - "question_id": 18792, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004988", - "question_id": 18793, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001706", - "question_id": 18794, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003975", - "question_id": 18795, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003570", - "question_id": 18796, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002695", - "question_id": 18797, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007706", - "question_id": 18798, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005877", - "question_id": 18800, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000722", - "question_id": 18802, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007629", - "question_id": 18804, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007492", - "question_id": 18805, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005547", - "question_id": 18806, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000835", - "question_id": 18808, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002184", - "question_id": 18810, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004007", - "question_id": 18811, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001879", - "question_id": 18812, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002662", - "question_id": 18813, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00005955", - "question_id": 18814, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000603", - "question_id": 18815, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004545", - "question_id": 18818, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004218", - "question_id": 18819, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00000582", - "question_id": 18821, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000898", - "question_id": 18822, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006489", - "question_id": 18824, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001137", - "question_id": 18829, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003981", - "question_id": 18830, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"congas\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005622", - "question_id": 18833, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005143", - "question_id": 18834, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001148", - "question_id": 18836, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008569", - "question_id": 18839, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005457", - "question_id": 18841, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008597", - "question_id": 18842, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002209", - "question_id": 18843, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000086", - "question_id": 18844, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004205", - "question_id": 18845, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006128", - "question_id": 18847, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007404", - "question_id": 18848, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005392", - "question_id": 18849, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003504", - "question_id": 18850, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000697", - "question_id": 18852, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005646", - "question_id": 18853, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000171", - "question_id": 18854, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001308", - "question_id": 18855, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001839", - "question_id": 18856, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001296", - "question_id": 18857, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007907", - "question_id": 18859, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008038", - "question_id": 18860, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007274", - "question_id": 18861, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005163", - "question_id": 18862, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005221", - "question_id": 18863, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008619", - "question_id": 18864, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005126", - "question_id": 18865, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000917", - "question_id": 18866, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001109", - "question_id": 18867, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007824", - "question_id": 18868, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003619", - "question_id": 18869, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00000913", - "question_id": 18870, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008882", - "question_id": 18871, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007440", - "question_id": 18872, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00000943", - "question_id": 18873, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004155", - "question_id": 18874, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003128", - "question_id": 18875, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001483", - "question_id": 18876, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004555", - "question_id": 18878, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001258", - "question_id": 18880, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00005800", - "question_id": 18882, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006759", - "question_id": 18884, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000940", - "question_id": 18885, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004715", - "question_id": 18886, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000671", - "question_id": 18887, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004081", - "question_id": 18888, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008038", - "question_id": 18889, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006647", - "question_id": 18890, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007305", - "question_id": 18891, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005941", - "question_id": 18894, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000624", - "question_id": 18895, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006918", - "question_id": 18897, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007655", - "question_id": 18898, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006478", - "question_id": 18899, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006522", - "question_id": 18900, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000849", - "question_id": 18901, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003421", - "question_id": 18902, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001363", - "question_id": 18904, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006404", - "question_id": 18905, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006061", - "question_id": 18906, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005733", - "question_id": 18907, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005777", - "question_id": 18908, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000371", - "question_id": 18910, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007879", - "question_id": 18911, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"tuba\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006032", - "question_id": 18913, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003505", - "question_id": 18914, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004449", - "question_id": 18915, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006255", - "question_id": 18916, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004191", - "question_id": 18917, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00008745", - "question_id": 18918, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007147", - "question_id": 18920, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007849", - "question_id": 18921, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001880", - "question_id": 18922, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006293", - "question_id": 18923, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008855", - "question_id": 18924, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004907", - "question_id": 18926, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004460", - "question_id": 18927, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002215", - "question_id": 18929, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001114", - "question_id": 18931, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007136", - "question_id": 18932, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000890", - "question_id": 18933, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007478", - "question_id": 18934, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001553", - "question_id": 18935, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003472", - "question_id": 18936, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007268", - "question_id": 18937, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002260", - "question_id": 18940, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004162", - "question_id": 18941, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004432", - "question_id": 18947, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006737", - "question_id": 18948, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007779", - "question_id": 18949, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005233", - "question_id": 18953, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001631", - "question_id": 18954, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005498", - "question_id": 18955, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001381", - "question_id": 18957, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008149", - "question_id": 18958, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003133", - "question_id": 18960, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002324", - "question_id": 18961, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002168", - "question_id": 18962, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008169", - "question_id": 18963, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007833", - "question_id": 18964, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001370", - "question_id": 18965, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002609", - "question_id": 18967, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008247", - "question_id": 18968, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004536", - "question_id": 18971, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000335", - "question_id": 18972, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004846", - "question_id": 18973, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006840", - "question_id": 18974, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004266", - "question_id": 18975, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008898", - "question_id": 18976, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001238", - "question_id": 18977, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000512", - "question_id": 18978, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007802", - "question_id": 18979, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002919", - "question_id": 18980, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008559", - "question_id": 18981, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003542", - "question_id": 18982, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005407", - "question_id": 18983, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003192", - "question_id": 18984, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001090", - "question_id": 18988, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001123", - "question_id": 18990, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008796", - "question_id": 18991, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000798", - "question_id": 18992, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006190", - "question_id": 18993, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006632", - "question_id": 18996, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006754", - "question_id": 18998, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008527", - "question_id": 18999, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006070", - "question_id": 19000, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003437", - "question_id": 19001, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00003732", - "question_id": 19002, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005080", - "question_id": 19003, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000579", - "question_id": 19005, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001381", - "question_id": 19006, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000841", - "question_id": 19008, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004666", - "question_id": 19009, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003119", - "question_id": 19011, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001300", - "question_id": 19012, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007554", - "question_id": 19014, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00008687", - "question_id": 19015, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000747", - "question_id": 19016, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008259", - "question_id": 19018, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000999", - "question_id": 19019, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00005350", - "question_id": 19020, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008451", - "question_id": 19023, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003958", - "question_id": 19024, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007878", - "question_id": 19025, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00007232", - "question_id": 19027, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001601", - "question_id": 19028, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006809", - "question_id": 19029, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001767", - "question_id": 19030, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000615", - "question_id": 19031, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005670", - "question_id": 19032, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005567", - "question_id": 19033, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004219", - "question_id": 19034, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007922", - "question_id": 19036, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002558", - "question_id": 19037, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00008423", - "question_id": 19040, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001947", - "question_id": 19041, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002194", - "question_id": 19042, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006572", - "question_id": 19043, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002837", - "question_id": 19044, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002626", - "question_id": 19045, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007265", - "question_id": 19046, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"xylophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005033", - "question_id": 19047, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008830", - "question_id": 19048, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006474", - "question_id": 19050, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005566", - "question_id": 19051, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008205", - "question_id": 19052, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00001024", - "question_id": 19053, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004633", - "question_id": 19054, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002395", - "question_id": 19056, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00005250", - "question_id": 19057, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00006668", - "question_id": 19058, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002503", - "question_id": 19059, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007224", - "question_id": 19060, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008704", - "question_id": 19061, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00001182", - "question_id": 19062, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008292", - "question_id": 19063, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003508", - "question_id": 19064, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004173", - "question_id": 19065, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"middle\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008805", - "question_id": 19066, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002615", - "question_id": 19068, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000744", - "question_id": 19069, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004336", - "question_id": 19070, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000888", - "question_id": 19071, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006817", - "question_id": 19074, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003613", - "question_id": 19075, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004421", - "question_id": 19076, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000472", - "question_id": 19078, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bagpipe\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000189", - "question_id": 19079, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003161", - "question_id": 19081, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00007288", - "question_id": 19082, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005837", - "question_id": 19083, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002908", - "question_id": 19087, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006169", - "question_id": 19089, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"piano\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002576", - "question_id": 19090, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003849", - "question_id": 19091, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004642", - "question_id": 19092, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000596", - "question_id": 19093, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008006", - "question_id": 19095, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000924", - "question_id": 19096, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005319", - "question_id": 19099, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001407", - "question_id": 19100, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003141", - "question_id": 19104, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000604", - "question_id": 19108, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00006055", - "question_id": 19110, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003097", - "question_id": 19112, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002775", - "question_id": 19114, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003608", - "question_id": 19116, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002390", - "question_id": 19117, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001183", - "question_id": 19118, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007411", - "question_id": 19120, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007699", - "question_id": 19121, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003570", - "question_id": 19122, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001350", - "question_id": 19123, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003691", - "question_id": 19124, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000967", - "question_id": 19126, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006245", - "question_id": 19127, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001534", - "question_id": 19128, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00003444", - "question_id": 19129, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007900", - "question_id": 19130, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004872", - "question_id": 19131, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001065", - "question_id": 19132, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007959", - "question_id": 19133, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002856", - "question_id": 19134, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00001772", - "question_id": 19135, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00004071", - "question_id": 19137, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005833", - "question_id": 19140, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005305", - "question_id": 19144, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007916", - "question_id": 19145, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002686", - "question_id": 19146, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004138", - "question_id": 19147, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004705", - "question_id": 19148, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001635", - "question_id": 19149, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005233", - "question_id": 19151, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002262", - "question_id": 19153, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003315", - "question_id": 19154, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003619", - "question_id": 19156, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002312", - "question_id": 19157, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002905", - "question_id": 19158, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00004174", - "question_id": 19159, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003989", - "question_id": 19160, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007366", - "question_id": 19163, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004705", - "question_id": 19164, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002789", - "question_id": 19165, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001116", - "question_id": 19166, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005957", - "question_id": 19167, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008067", - "question_id": 19169, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002263", - "question_id": 19170, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004903", - "question_id": 19171, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006060", - "question_id": 19172, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008964", - "question_id": 19173, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002074", - "question_id": 19174, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008674", - "question_id": 19176, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00007545", - "question_id": 19177, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003008", - "question_id": 19178, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007991", - "question_id": 19179, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004764", - "question_id": 19181, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002232", - "question_id": 19183, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007863", - "question_id": 19185, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000664", - "question_id": 19186, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002202", - "question_id": 19187, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "seven" - }, - { - "video_id": "00006576", - "question_id": 19188, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006778", - "question_id": 19190, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007173", - "question_id": 19191, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003849", - "question_id": 19192, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002213", - "question_id": 19193, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001176", - "question_id": 19194, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000527", - "question_id": 19195, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00006886", - "question_id": 19196, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001424", - "question_id": 19198, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"fourth\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006957", - "question_id": 19199, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002192", - "question_id": 19201, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008216", - "question_id": 19202, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000054", - "question_id": 19204, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005268", - "question_id": 19205, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003553", - "question_id": 19206, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001502", - "question_id": 19207, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006709", - "question_id": 19208, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008551", - "question_id": 19209, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003147", - "question_id": 19210, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004996", - "question_id": 19211, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002364", - "question_id": 19213, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006138", - "question_id": 19215, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006751", - "question_id": 19216, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004776", - "question_id": 19218, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008721", - "question_id": 19221, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007284", - "question_id": 19223, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003966", - "question_id": 19224, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001895", - "question_id": 19226, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003275", - "question_id": 19230, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007358", - "question_id": 19231, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004386", - "question_id": 19236, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004054", - "question_id": 19238, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001335", - "question_id": 19239, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002885", - "question_id": 19240, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003629", - "question_id": 19241, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001676", - "question_id": 19242, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003766", - "question_id": 19243, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008331", - "question_id": 19245, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008517", - "question_id": 19246, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008428", - "question_id": 19247, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003570", - "question_id": 19248, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000608", - "question_id": 19249, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002202", - "question_id": 19250, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006330", - "question_id": 19251, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008945", - "question_id": 19252, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007049", - "question_id": 19254, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005129", - "question_id": 19256, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004496", - "question_id": 19257, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001616", - "question_id": 19258, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003392", - "question_id": 19259, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002817", - "question_id": 19262, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008533", - "question_id": 19263, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006883", - "question_id": 19264, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001414", - "question_id": 19266, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001100", - "question_id": 19267, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006075", - "question_id": 19269, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004482", - "question_id": 19270, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005752", - "question_id": 19272, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001109", - "question_id": 19273, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003127", - "question_id": 19274, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006632", - "question_id": 19278, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007894", - "question_id": 19279, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002239", - "question_id": 19280, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005779", - "question_id": 19282, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007277", - "question_id": 19283, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008190", - "question_id": 19286, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000563", - "question_id": 19289, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006659", - "question_id": 19290, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008188", - "question_id": 19291, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000024", - "question_id": 19294, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001427", - "question_id": 19296, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000285", - "question_id": 19297, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006218", - "question_id": 19298, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005613", - "question_id": 19299, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002337", - "question_id": 19300, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003384", - "question_id": 19301, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002820", - "question_id": 19302, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003106", - "question_id": 19303, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005790", - "question_id": 19305, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001930", - "question_id": 19306, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001154", - "question_id": 19308, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003235", - "question_id": 19309, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002744", - "question_id": 19310, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005187", - "question_id": 19311, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007339", - "question_id": 19312, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000800", - "question_id": 19313, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006565", - "question_id": 19314, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003802", - "question_id": 19315, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003591", - "question_id": 19316, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006699", - "question_id": 19318, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001314", - "question_id": 19320, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008635", - "question_id": 19321, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00006577", - "question_id": 19322, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005906", - "question_id": 19323, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004303", - "question_id": 19324, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006995", - "question_id": 19325, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003667", - "question_id": 19326, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000643", - "question_id": 19328, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001837", - "question_id": 19329, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007475", - "question_id": 19330, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005913", - "question_id": 19331, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000822", - "question_id": 19332, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003380", - "question_id": 19333, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007672", - "question_id": 19334, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002265", - "question_id": 19336, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002238", - "question_id": 19338, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005618", - "question_id": 19339, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004260", - "question_id": 19341, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007284", - "question_id": 19342, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001840", - "question_id": 19343, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005837", - "question_id": 19344, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006733", - "question_id": 19345, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003087", - "question_id": 19346, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003079", - "question_id": 19347, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005059", - "question_id": 19349, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005484", - "question_id": 19354, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005901", - "question_id": 19355, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008199", - "question_id": 19356, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004333", - "question_id": 19357, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007442", - "question_id": 19359, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001185", - "question_id": 19360, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004017", - "question_id": 19361, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000138", - "question_id": 19362, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002861", - "question_id": 19363, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003322", - "question_id": 19365, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000036", - "question_id": 19366, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004602", - "question_id": 19367, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008141", - "question_id": 19368, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008461", - "question_id": 19370, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003288", - "question_id": 19372, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005562", - "question_id": 19373, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003655", - "question_id": 19377, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004658", - "question_id": 19379, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008382", - "question_id": 19380, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00004220", - "question_id": 19381, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001099", - "question_id": 19382, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005077", - "question_id": 19383, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005948", - "question_id": 19385, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002881", - "question_id": 19386, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006960", - "question_id": 19387, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00004037", - "question_id": 19389, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006135", - "question_id": 19390, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008677", - "question_id": 19391, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002562", - "question_id": 19392, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006031", - "question_id": 19393, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008130", - "question_id": 19394, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00008556", - "question_id": 19395, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001102", - "question_id": 19397, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008105", - "question_id": 19400, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003576", - "question_id": 19401, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000945", - "question_id": 19403, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006325", - "question_id": 19404, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007241", - "question_id": 19405, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007241", - "question_id": 19405, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002661", - "question_id": 19406, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003213", - "question_id": 19407, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000281", - "question_id": 19408, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"tuba\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001023", - "question_id": 19409, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008583", - "question_id": 19410, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00007152", - "question_id": 19411, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003520", - "question_id": 19412, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005865", - "question_id": 19413, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003529", - "question_id": 19414, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008096", - "question_id": 19415, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003886", - "question_id": 19416, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007329", - "question_id": 19417, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008806", - "question_id": 19419, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002545", - "question_id": 19421, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000750", - "question_id": 19422, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002360", - "question_id": 19423, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004977", - "question_id": 19425, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008967", - "question_id": 19426, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008310", - "question_id": 19427, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001241", - "question_id": 19428, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008402", - "question_id": 19429, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001678", - "question_id": 19430, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003227", - "question_id": 19431, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001313", - "question_id": 19433, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "more than ten" - }, - { - "video_id": "00006817", - "question_id": 19435, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003610", - "question_id": 19436, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000512", - "question_id": 19439, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00003749", - "question_id": 19440, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004117", - "question_id": 19441, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003438", - "question_id": 19442, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006844", - "question_id": 19443, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000122", - "question_id": 19444, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003406", - "question_id": 19445, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000231", - "question_id": 19446, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003512", - "question_id": 19449, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007132", - "question_id": 19451, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005926", - "question_id": 19452, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008926", - "question_id": 19453, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000781", - "question_id": 19455, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004536", - "question_id": 19456, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003870", - "question_id": 19460, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000142", - "question_id": 19464, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"drum\", \"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000715", - "question_id": 19465, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004276", - "question_id": 19466, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000714", - "question_id": 19467, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000737", - "question_id": 19468, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005871", - "question_id": 19469, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008196", - "question_id": 19470, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006531", - "question_id": 19472, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008173", - "question_id": 19475, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005223", - "question_id": 19476, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006732", - "question_id": 19477, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003190", - "question_id": 19478, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008297", - "question_id": 19480, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002494", - "question_id": 19481, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000066", - "question_id": 19482, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00006848", - "question_id": 19483, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008956", - "question_id": 19484, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000333", - "question_id": 19485, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002799", - "question_id": 19489, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000974", - "question_id": 19491, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003272", - "question_id": 19492, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005901", - "question_id": 19493, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005739", - "question_id": 19494, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008629", - "question_id": 19496, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004195", - "question_id": 19497, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007696", - "question_id": 19498, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004021", - "question_id": 19500, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004021", - "question_id": 19500, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008831", - "question_id": 19501, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004391", - "question_id": 19503, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004263", - "question_id": 19505, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008342", - "question_id": 19506, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007642", - "question_id": 19507, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007663", - "question_id": 19508, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008353", - "question_id": 19509, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001314", - "question_id": 19511, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000979", - "question_id": 19513, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003527", - "question_id": 19515, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002471", - "question_id": 19516, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007147", - "question_id": 19517, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003055", - "question_id": 19518, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008706", - "question_id": 19519, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000602", - "question_id": 19522, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003714", - "question_id": 19525, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005735", - "question_id": 19527, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008475", - "question_id": 19528, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006506", - "question_id": 19529, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005003", - "question_id": 19530, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006947", - "question_id": 19531, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00002670", - "question_id": 19532, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002537", - "question_id": 19534, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004483", - "question_id": 19535, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007482", - "question_id": 19536, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00001540", - "question_id": 19537, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002491", - "question_id": 19538, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005249", - "question_id": 19540, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001397", - "question_id": 19541, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004977", - "question_id": 19543, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00004566", - "question_id": 19544, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000451", - "question_id": 19547, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006414", - "question_id": 19548, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005513", - "question_id": 19550, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006440", - "question_id": 19551, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005969", - "question_id": 19552, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005464", - "question_id": 19554, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001374", - "question_id": 19555, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004818", - "question_id": 19556, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006931", - "question_id": 19557, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006931", - "question_id": 19557, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006498", - "question_id": 19558, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000224", - "question_id": 19559, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002213", - "question_id": 19560, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003136", - "question_id": 19562, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001861", - "question_id": 19564, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000459", - "question_id": 19565, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007690", - "question_id": 19566, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005071", - "question_id": 19567, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004631", - "question_id": 19568, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008419", - "question_id": 19569, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007624", - "question_id": 19570, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006373", - "question_id": 19573, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002649", - "question_id": 19578, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006079", - "question_id": 19579, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003901", - "question_id": 19581, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002960", - "question_id": 19583, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004056", - "question_id": 19585, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008485", - "question_id": 19588, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005797", - "question_id": 19590, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005718", - "question_id": 19591, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005768", - "question_id": 19592, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005588", - "question_id": 19593, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003962", - "question_id": 19594, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000427", - "question_id": 19595, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002312", - "question_id": 19596, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002771", - "question_id": 19597, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007195", - "question_id": 19598, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005102", - "question_id": 19599, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002227", - "question_id": 19600, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008815", - "question_id": 19601, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00003399", - "question_id": 19602, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003419", - "question_id": 19603, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002611", - "question_id": 19606, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002611", - "question_id": 19606, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008767", - "question_id": 19607, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004082", - "question_id": 19608, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007087", - "question_id": 19611, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000201", - "question_id": 19614, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002586", - "question_id": 19615, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006599", - "question_id": 19616, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008058", - "question_id": 19617, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001088", - "question_id": 19619, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001372", - "question_id": 19620, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004252", - "question_id": 19621, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007846", - "question_id": 19622, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002809", - "question_id": 19623, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00006191", - "question_id": 19624, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000724", - "question_id": 19625, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004065", - "question_id": 19626, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005687", - "question_id": 19627, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004828", - "question_id": 19628, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000209", - "question_id": 19629, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001960", - "question_id": 19630, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006356", - "question_id": 19631, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007866", - "question_id": 19632, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002628", - "question_id": 19634, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008726", - "question_id": 19635, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006970", - "question_id": 19636, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000856", - "question_id": 19638, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002609", - "question_id": 19640, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00001880", - "question_id": 19642, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004938", - "question_id": 19643, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005162", - "question_id": 19644, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003161", - "question_id": 19645, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005228", - "question_id": 19646, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003635", - "question_id": 19648, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007136", - "question_id": 19649, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002284", - "question_id": 19651, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006549", - "question_id": 19656, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002287", - "question_id": 19657, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007214", - "question_id": 19658, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003925", - "question_id": 19659, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008516", - "question_id": 19663, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001989", - "question_id": 19664, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002435", - "question_id": 19665, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002389", - "question_id": 19666, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006845", - "question_id": 19667, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004232", - "question_id": 19670, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001688", - "question_id": 19671, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005160", - "question_id": 19672, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003297", - "question_id": 19673, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00002073", - "question_id": 19674, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008301", - "question_id": 19675, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006225", - "question_id": 19676, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00008202", - "question_id": 19680, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006687", - "question_id": 19681, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008423", - "question_id": 19682, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007727", - "question_id": 19684, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "seven" - }, - { - "video_id": "00006885", - "question_id": 19685, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000739", - "question_id": 19687, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006045", - "question_id": 19688, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00005632", - "question_id": 19690, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00000458", - "question_id": 19696, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00006388", - "question_id": 19697, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001979", - "question_id": 19698, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007685", - "question_id": 19703, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006999", - "question_id": 19705, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00007865", - "question_id": 19706, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000310", - "question_id": 19707, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007065", - "question_id": 19708, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003302", - "question_id": 19709, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008485", - "question_id": 19710, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00007879", - "question_id": 19711, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003110", - "question_id": 19712, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000964", - "question_id": 19714, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003259", - "question_id": 19715, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005405", - "question_id": 19716, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001766", - "question_id": 19717, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005738", - "question_id": 19718, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00003971", - "question_id": 19719, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007038", - "question_id": 19720, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001647", - "question_id": 19721, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00005908", - "question_id": 19722, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004084", - "question_id": 19724, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000903", - "question_id": 19725, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004018", - "question_id": 19726, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005606", - "question_id": 19727, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008093", - "question_id": 19728, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008491", - "question_id": 19729, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001843", - "question_id": 19730, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007240", - "question_id": 19732, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003073", - "question_id": 19734, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000631", - "question_id": 19737, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000530", - "question_id": 19738, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003037", - "question_id": 19739, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002946", - "question_id": 19740, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"electric_bass\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001464", - "question_id": 19741, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00007126", - "question_id": 19742, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005264", - "question_id": 19743, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004272", - "question_id": 19744, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000796", - "question_id": 19745, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00000648", - "question_id": 19746, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002891", - "question_id": 19749, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004190", - "question_id": 19750, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004912", - "question_id": 19751, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003100", - "question_id": 19752, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005804", - "question_id": 19754, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005938", - "question_id": 19756, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002039", - "question_id": 19757, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004472", - "question_id": 19758, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006047", - "question_id": 19759, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000147", - "question_id": 19760, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00007327", - "question_id": 19761, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003220", - "question_id": 19762, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004660", - "question_id": 19765, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001329", - "question_id": 19767, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00005673", - "question_id": 19768, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003326", - "question_id": 19769, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003397", - "question_id": 19771, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00001589", - "question_id": 19772, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000587", - "question_id": 19773, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000047", - "question_id": 19774, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007758", - "question_id": 19775, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005590", - "question_id": 19776, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007511", - "question_id": 19778, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005561", - "question_id": 19779, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007477", - "question_id": 19780, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008253", - "question_id": 19782, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008253", - "question_id": 19782, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001241", - "question_id": 19783, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006996", - "question_id": 19784, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004804", - "question_id": 19785, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008209", - "question_id": 19786, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006697", - "question_id": 19787, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000983", - "question_id": 19788, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008859", - "question_id": 19789, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003272", - "question_id": 19791, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003174", - "question_id": 19792, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000040", - "question_id": 19793, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005357", - "question_id": 19796, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006795", - "question_id": 19797, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003830", - "question_id": 19799, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000818", - "question_id": 19800, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005782", - "question_id": 19801, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007936", - "question_id": 19802, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008685", - "question_id": 19803, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001687", - "question_id": 19805, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001227", - "question_id": 19806, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001467", - "question_id": 19807, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001803", - "question_id": 19808, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004775", - "question_id": 19810, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007671", - "question_id": 19811, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005895", - "question_id": 19812, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00005169", - "question_id": 19813, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007523", - "question_id": 19815, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002339", - "question_id": 19817, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006084", - "question_id": 19818, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008562", - "question_id": 19819, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003468", - "question_id": 19822, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000930", - "question_id": 19823, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004753", - "question_id": 19824, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003732", - "question_id": 19825, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00001546", - "question_id": 19827, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002351", - "question_id": 19829, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005370", - "question_id": 19831, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001589", - "question_id": 19833, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005193", - "question_id": 19835, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000146", - "question_id": 19836, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003941", - "question_id": 19837, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00002074", - "question_id": 19839, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004825", - "question_id": 19840, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003724", - "question_id": 19841, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005147", - "question_id": 19843, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004274", - "question_id": 19845, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007952", - "question_id": 19846, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008971", - "question_id": 19849, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006446", - "question_id": 19850, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008262", - "question_id": 19851, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000087", - "question_id": 19852, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000174", - "question_id": 19853, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007743", - "question_id": 19854, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002790", - "question_id": 19855, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007564", - "question_id": 19856, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00001590", - "question_id": 19859, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006167", - "question_id": 19860, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008906", - "question_id": 19861, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007442", - "question_id": 19863, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002653", - "question_id": 19864, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008584", - "question_id": 19865, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004517", - "question_id": 19868, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005074", - "question_id": 19870, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006229", - "question_id": 19871, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001180", - "question_id": 19872, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007414", - "question_id": 19874, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00004356", - "question_id": 19875, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00005380", - "question_id": 19876, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000731", - "question_id": 19877, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002256", - "question_id": 19878, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007631", - "question_id": 19879, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003828", - "question_id": 19881, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002584", - "question_id": 19882, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004056", - "question_id": 19884, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004314", - "question_id": 19885, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"tuba\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004334", - "question_id": 19886, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000570", - "question_id": 19888, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002763", - "question_id": 19890, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005464", - "question_id": 19891, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001917", - "question_id": 19893, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003653", - "question_id": 19894, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004871", - "question_id": 19895, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00000485", - "question_id": 19896, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00006463", - "question_id": 19897, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002802", - "question_id": 19898, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004426", - "question_id": 19900, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002096", - "question_id": 19901, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007953", - "question_id": 19902, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001590", - "question_id": 19904, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002302", - "question_id": 19905, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007206", - "question_id": 19906, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005328", - "question_id": 19907, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003573", - "question_id": 19908, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006852", - "question_id": 19909, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00001112", - "question_id": 19910, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"right\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005397", - "question_id": 19911, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006228", - "question_id": 19912, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007420", - "question_id": 19913, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007207", - "question_id": 19914, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00001290", - "question_id": 19915, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005324", - "question_id": 19918, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002636", - "question_id": 19925, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001043", - "question_id": 19926, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003281", - "question_id": 19927, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008178", - "question_id": 19929, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006134", - "question_id": 19931, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002702", - "question_id": 19932, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001799", - "question_id": 19933, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004987", - "question_id": 19934, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000918", - "question_id": 19935, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00006774", - "question_id": 19938, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000410", - "question_id": 19939, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006554", - "question_id": 19941, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000446", - "question_id": 19942, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000032", - "question_id": 19943, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003381", - "question_id": 19944, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005325", - "question_id": 19945, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004700", - "question_id": 19947, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003331", - "question_id": 19949, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007700", - "question_id": 19950, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000608", - "question_id": 19951, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002810", - "question_id": 19952, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00004330", - "question_id": 19953, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00007470", - "question_id": 19954, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007470", - "question_id": 19954, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005741", - "question_id": 19955, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000077", - "question_id": 19956, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00008540", - "question_id": 19958, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000935", - "question_id": 19959, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003206", - "question_id": 19960, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008027", - "question_id": 19962, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000859", - "question_id": 19963, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004634", - "question_id": 19964, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008282", - "question_id": 19965, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001387", - "question_id": 19966, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005921", - "question_id": 19968, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003529", - "question_id": 19969, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007376", - "question_id": 19970, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007123", - "question_id": 19971, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005333", - "question_id": 19972, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004100", - "question_id": 19973, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008170", - "question_id": 19975, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003342", - "question_id": 19978, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008295", - "question_id": 19979, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006290", - "question_id": 19982, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003547", - "question_id": 19983, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004354", - "question_id": 19984, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004666", - "question_id": 19986, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007011", - "question_id": 19987, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00007808", - "question_id": 19989, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007498", - "question_id": 19990, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006521", - "question_id": 19991, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001454", - "question_id": 19992, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000263", - "question_id": 19993, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00006861", - "question_id": 19994, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004398", - "question_id": 19995, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003952", - "question_id": 19996, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004514", - "question_id": 19997, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006232", - "question_id": 19998, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005482", - "question_id": 19999, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007418", - "question_id": 20000, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"bassoon\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006353", - "question_id": 20001, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005740", - "question_id": 20003, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006185", - "question_id": 20004, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008074", - "question_id": 20005, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00008628", - "question_id": 20007, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000456", - "question_id": 20008, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000076", - "question_id": 20009, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00000165", - "question_id": 20011, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002915", - "question_id": 20013, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005064", - "question_id": 20014, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005561", - "question_id": 20015, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002773", - "question_id": 20017, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007221", - "question_id": 20018, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003606", - "question_id": 20019, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00005662", - "question_id": 20021, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001812", - "question_id": 20022, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001175", - "question_id": 20023, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004533", - "question_id": 20024, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00003352", - "question_id": 20025, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006302", - "question_id": 20026, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001551", - "question_id": 20027, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003850", - "question_id": 20028, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001864", - "question_id": 20030, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005743", - "question_id": 20031, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003638", - "question_id": 20032, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001155", - "question_id": 20035, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004432", - "question_id": 20037, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001476", - "question_id": 20038, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007546", - "question_id": 20039, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004088", - "question_id": 20040, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003344", - "question_id": 20042, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008964", - "question_id": 20044, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004641", - "question_id": 20045, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001393", - "question_id": 20047, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004068", - "question_id": 20048, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003232", - "question_id": 20050, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003232", - "question_id": 20050, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001214", - "question_id": 20051, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003549", - "question_id": 20052, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003561", - "question_id": 20053, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007619", - "question_id": 20054, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003977", - "question_id": 20055, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000596", - "question_id": 20056, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002740", - "question_id": 20058, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003421", - "question_id": 20061, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001624", - "question_id": 20062, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001619", - "question_id": 20063, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002225", - "question_id": 20065, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005534", - "question_id": 20066, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006176", - "question_id": 20067, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002415", - "question_id": 20068, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002339", - "question_id": 20069, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006955", - "question_id": 20070, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005543", - "question_id": 20072, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005707", - "question_id": 20073, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007081", - "question_id": 20075, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002593", - "question_id": 20077, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001619", - "question_id": 20078, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003709", - "question_id": 20080, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000241", - "question_id": 20082, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00004718", - "question_id": 20083, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000304", - "question_id": 20085, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002426", - "question_id": 20087, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006254", - "question_id": 20088, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008666", - "question_id": 20089, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005929", - "question_id": 20090, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001734", - "question_id": 20091, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005749", - "question_id": 20092, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004667", - "question_id": 20093, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004520", - "question_id": 20094, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00002602", - "question_id": 20095, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002582", - "question_id": 20096, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003058", - "question_id": 20097, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000616", - "question_id": 20098, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005407", - "question_id": 20100, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007630", - "question_id": 20101, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004444", - "question_id": 20103, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006736", - "question_id": 20105, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007578", - "question_id": 20106, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006453", - "question_id": 20109, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008065", - "question_id": 20110, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006502", - "question_id": 20111, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006284", - "question_id": 20112, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002313", - "question_id": 20113, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000320", - "question_id": 20115, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003008", - "question_id": 20117, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00001898", - "question_id": 20118, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008892", - "question_id": 20119, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00006716", - "question_id": 20121, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001383", - "question_id": 20122, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000387", - "question_id": 20124, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004579", - "question_id": 20125, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001370", - "question_id": 20127, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001350", - "question_id": 20128, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00004321", - "question_id": 20129, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003560", - "question_id": 20130, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008605", - "question_id": 20132, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002178", - "question_id": 20135, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002393", - "question_id": 20136, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006717", - "question_id": 20137, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007394", - "question_id": 20140, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008455", - "question_id": 20141, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001448", - "question_id": 20142, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002292", - "question_id": 20143, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004619", - "question_id": 20144, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004230", - "question_id": 20145, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002335", - "question_id": 20146, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000853", - "question_id": 20147, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007552", - "question_id": 20148, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004976", - "question_id": 20152, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002359", - "question_id": 20153, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007224", - "question_id": 20154, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000326", - "question_id": 20155, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000269", - "question_id": 20156, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005785", - "question_id": 20157, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"suona\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007265", - "question_id": 20158, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001927", - "question_id": 20159, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003048", - "question_id": 20160, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008052", - "question_id": 20161, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007440", - "question_id": 20165, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002381", - "question_id": 20167, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007979", - "question_id": 20168, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001414", - "question_id": 20169, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003191", - "question_id": 20170, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006589", - "question_id": 20171, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002139", - "question_id": 20172, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00000047", - "question_id": 20173, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00001465", - "question_id": 20174, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001012", - "question_id": 20176, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001012", - "question_id": 20176, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006792", - "question_id": 20177, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007903", - "question_id": 20178, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004271", - "question_id": 20179, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008657", - "question_id": 20180, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007292", - "question_id": 20182, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001260", - "question_id": 20183, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00001069", - "question_id": 20184, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006585", - "question_id": 20185, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002128", - "question_id": 20186, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006767", - "question_id": 20188, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004661", - "question_id": 20192, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001017", - "question_id": 20194, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001926", - "question_id": 20195, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002999", - "question_id": 20196, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007468", - "question_id": 20197, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00007145", - "question_id": 20199, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006274", - "question_id": 20200, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007025", - "question_id": 20201, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004342", - "question_id": 20203, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008615", - "question_id": 20204, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003840", - "question_id": 20205, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003237", - "question_id": 20206, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006457", - "question_id": 20207, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00004724", - "question_id": 20209, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005202", - "question_id": 20211, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007187", - "question_id": 20212, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002840", - "question_id": 20213, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003658", - "question_id": 20215, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00004245", - "question_id": 20218, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008361", - "question_id": 20219, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006647", - "question_id": 20220, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006711", - "question_id": 20223, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004950", - "question_id": 20225, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004759", - "question_id": 20226, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001515", - "question_id": 20227, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000288", - "question_id": 20229, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005431", - "question_id": 20230, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004803", - "question_id": 20233, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004790", - "question_id": 20235, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008548", - "question_id": 20236, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000285", - "question_id": 20237, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003223", - "question_id": 20238, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004127", - "question_id": 20239, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00004344", - "question_id": 20240, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006474", - "question_id": 20244, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007313", - "question_id": 20245, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006499", - "question_id": 20247, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001925", - "question_id": 20248, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000852", - "question_id": 20250, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002390", - "question_id": 20251, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000666", - "question_id": 20252, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00007914", - "question_id": 20253, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004285", - "question_id": 20255, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00005489", - "question_id": 20257, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006386", - "question_id": 20258, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008178", - "question_id": 20259, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008069", - "question_id": 20260, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006754", - "question_id": 20263, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003664", - "question_id": 20264, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00007473", - "question_id": 20267, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000204", - "question_id": 20268, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00002454", - "question_id": 20269, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002395", - "question_id": 20270, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001839", - "question_id": 20272, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00001622", - "question_id": 20274, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001127", - "question_id": 20275, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004121", - "question_id": 20276, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007388", - "question_id": 20277, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006902", - "question_id": 20278, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003553", - "question_id": 20280, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006875", - "question_id": 20281, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00002864", - "question_id": 20282, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000022", - "question_id": 20283, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001109", - "question_id": 20284, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008252", - "question_id": 20285, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005544", - "question_id": 20286, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008228", - "question_id": 20287, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00000139", - "question_id": 20288, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000581", - "question_id": 20289, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001971", - "question_id": 20290, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004588", - "question_id": 20291, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003450", - "question_id": 20292, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003676", - "question_id": 20293, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001741", - "question_id": 20295, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00002880", - "question_id": 20296, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005223", - "question_id": 20298, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002336", - "question_id": 20300, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004171", - "question_id": 20304, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002831", - "question_id": 20305, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001830", - "question_id": 20306, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004495", - "question_id": 20309, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00004981", - "question_id": 20310, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002827", - "question_id": 20311, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000615", - "question_id": 20313, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001906", - "question_id": 20316, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008204", - "question_id": 20318, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001465", - "question_id": 20319, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "seven" - }, - { - "video_id": "00000291", - "question_id": 20320, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007413", - "question_id": 20322, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001534", - "question_id": 20323, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007470", - "question_id": 20324, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003455", - "question_id": 20327, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004571", - "question_id": 20329, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000132", - "question_id": 20332, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003074", - "question_id": 20334, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006069", - "question_id": 20336, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004838", - "question_id": 20337, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008406", - "question_id": 20338, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004166", - "question_id": 20339, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005212", - "question_id": 20341, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001126", - "question_id": 20342, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004145", - "question_id": 20343, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000869", - "question_id": 20345, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002382", - "question_id": 20347, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006853", - "question_id": 20348, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004615", - "question_id": 20350, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00002601", - "question_id": 20352, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000779", - "question_id": 20353, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00008378", - "question_id": 20354, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003948", - "question_id": 20355, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000287", - "question_id": 20356, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002301", - "question_id": 20358, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001769", - "question_id": 20359, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004807", - "question_id": 20360, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003178", - "question_id": 20362, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005592", - "question_id": 20363, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003960", - "question_id": 20364, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002542", - "question_id": 20367, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00004659", - "question_id": 20369, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004689", - "question_id": 20370, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005248", - "question_id": 20371, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003462", - "question_id": 20372, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007135", - "question_id": 20373, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006033", - "question_id": 20374, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000333", - "question_id": 20377, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000485", - "question_id": 20378, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001504", - "question_id": 20380, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007056", - "question_id": 20381, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005181", - "question_id": 20383, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007482", - "question_id": 20385, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00008765", - "question_id": 20386, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002634", - "question_id": 20387, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005223", - "question_id": 20390, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002051", - "question_id": 20392, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004501", - "question_id": 20393, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006968", - "question_id": 20394, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005346", - "question_id": 20395, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001944", - "question_id": 20398, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007862", - "question_id": 20399, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007599", - "question_id": 20400, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001975", - "question_id": 20401, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00003684", - "question_id": 20403, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000685", - "question_id": 20406, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008878", - "question_id": 20408, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005920", - "question_id": 20409, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001107", - "question_id": 20410, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000528", - "question_id": 20412, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007468", - "question_id": 20413, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002925", - "question_id": 20415, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003294", - "question_id": 20416, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004123", - "question_id": 20417, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000652", - "question_id": 20418, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00001020", - "question_id": 20419, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003669", - "question_id": 20420, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00003811", - "question_id": 20421, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"electric_bass\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001830", - "question_id": 20423, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00001538", - "question_id": 20425, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006098", - "question_id": 20426, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001632", - "question_id": 20429, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005355", - "question_id": 20430, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00004095", - "question_id": 20432, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005357", - "question_id": 20433, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004974", - "question_id": 20434, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00007197", - "question_id": 20436, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001651", - "question_id": 20437, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006284", - "question_id": 20438, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002490", - "question_id": 20439, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006651", - "question_id": 20441, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007889", - "question_id": 20442, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004576", - "question_id": 20443, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008681", - "question_id": 20444, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001090", - "question_id": 20445, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003635", - "question_id": 20446, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008365", - "question_id": 20447, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000419", - "question_id": 20448, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006693", - "question_id": 20449, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005733", - "question_id": 20451, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002258", - "question_id": 20452, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002504", - "question_id": 20454, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008148", - "question_id": 20456, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004523", - "question_id": 20459, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007137", - "question_id": 20462, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006864", - "question_id": 20463, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006068", - "question_id": 20464, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007497", - "question_id": 20465, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004217", - "question_id": 20466, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006577", - "question_id": 20467, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008459", - "question_id": 20469, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001613", - "question_id": 20470, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003357", - "question_id": 20472, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001579", - "question_id": 20473, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003554", - "question_id": 20475, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006517", - "question_id": 20476, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004010", - "question_id": 20478, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004987", - "question_id": 20479, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00004300", - "question_id": 20480, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007106", - "question_id": 20481, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006806", - "question_id": 20482, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007231", - "question_id": 20483, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007491", - "question_id": 20484, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006384", - "question_id": 20486, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003954", - "question_id": 20488, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000036", - "question_id": 20489, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002649", - "question_id": 20491, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006640", - "question_id": 20492, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002587", - "question_id": 20493, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002819", - "question_id": 20494, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000223", - "question_id": 20495, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006259", - "question_id": 20496, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00003489", - "question_id": 20497, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003806", - "question_id": 20498, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002088", - "question_id": 20502, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008576", - "question_id": 20505, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00007772", - "question_id": 20506, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004922", - "question_id": 20507, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004825", - "question_id": 20508, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008192", - "question_id": 20509, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000480", - "question_id": 20510, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001569", - "question_id": 20511, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002879", - "question_id": 20512, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002879", - "question_id": 20512, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007250", - "question_id": 20514, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005050", - "question_id": 20515, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006597", - "question_id": 20516, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008197", - "question_id": 20518, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006400", - "question_id": 20520, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005793", - "question_id": 20526, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003352", - "question_id": 20527, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004234", - "question_id": 20528, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006109", - "question_id": 20531, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002450", - "question_id": 20532, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000318", - "question_id": 20533, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00003285", - "question_id": 20535, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008681", - "question_id": 20536, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003206", - "question_id": 20537, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002760", - "question_id": 20540, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007425", - "question_id": 20541, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001204", - "question_id": 20544, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00001795", - "question_id": 20545, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001366", - "question_id": 20546, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004088", - "question_id": 20550, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002637", - "question_id": 20551, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001644", - "question_id": 20552, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002701", - "question_id": 20553, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006379", - "question_id": 20554, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000055", - "question_id": 20556, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003089", - "question_id": 20557, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007356", - "question_id": 20562, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005978", - "question_id": 20563, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00007958", - "question_id": 20564, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004417", - "question_id": 20566, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007125", - "question_id": 20568, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005183", - "question_id": 20569, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00000533", - "question_id": 20570, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007355", - "question_id": 20571, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007355", - "question_id": 20571, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008464", - "question_id": 20572, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00000883", - "question_id": 20573, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006523", - "question_id": 20576, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002657", - "question_id": 20577, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006366", - "question_id": 20578, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002528", - "question_id": 20579, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008767", - "question_id": 20583, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001817", - "question_id": 20584, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00001633", - "question_id": 20585, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002499", - "question_id": 20586, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003632", - "question_id": 20587, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000985", - "question_id": 20592, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007267", - "question_id": 20594, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002321", - "question_id": 20597, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001677", - "question_id": 20600, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000371", - "question_id": 20601, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002236", - "question_id": 20603, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003402", - "question_id": 20604, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005382", - "question_id": 20605, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006360", - "question_id": 20607, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001056", - "question_id": 20608, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008319", - "question_id": 20609, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001587", - "question_id": 20610, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008673", - "question_id": 20611, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008703", - "question_id": 20614, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002203", - "question_id": 20615, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002612", - "question_id": 20616, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002725", - "question_id": 20617, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002500", - "question_id": 20618, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007403", - "question_id": 20619, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008790", - "question_id": 20620, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002990", - "question_id": 20621, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007953", - "question_id": 20622, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004367", - "question_id": 20623, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003030", - "question_id": 20625, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00008080", - "question_id": 20626, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003555", - "question_id": 20627, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004438", - "question_id": 20629, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000930", - "question_id": 20630, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005309", - "question_id": 20632, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003792", - "question_id": 20633, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007361", - "question_id": 20635, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004131", - "question_id": 20636, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004590", - "question_id": 20637, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000947", - "question_id": 20638, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003443", - "question_id": 20639, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000072", - "question_id": 20640, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001655", - "question_id": 20641, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007614", - "question_id": 20643, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00003098", - "question_id": 20644, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001224", - "question_id": 20645, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005712", - "question_id": 20646, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001506", - "question_id": 20647, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00008360", - "question_id": 20648, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007403", - "question_id": 20650, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006160", - "question_id": 20651, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007146", - "question_id": 20653, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002812", - "question_id": 20654, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002433", - "question_id": 20655, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008057", - "question_id": 20661, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003056", - "question_id": 20662, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003534", - "question_id": 20663, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002263", - "question_id": 20664, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008067", - "question_id": 20666, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006617", - "question_id": 20667, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007881", - "question_id": 20669, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007411", - "question_id": 20671, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007217", - "question_id": 20672, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006918", - "question_id": 20674, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001457", - "question_id": 20675, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008057", - "question_id": 20677, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002499", - "question_id": 20679, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004122", - "question_id": 20680, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003712", - "question_id": 20686, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001005", - "question_id": 20687, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002174", - "question_id": 20689, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000267", - "question_id": 20690, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001637", - "question_id": 20691, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000066", - "question_id": 20692, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003045", - "question_id": 20693, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002473", - "question_id": 20695, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007725", - "question_id": 20696, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003188", - "question_id": 20697, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006391", - "question_id": 20699, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006131", - "question_id": 20700, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006510", - "question_id": 20701, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005690", - "question_id": 20702, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001463", - "question_id": 20703, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004521", - "question_id": 20705, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008017", - "question_id": 20709, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007893", - "question_id": 20711, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005992", - "question_id": 20712, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00004281", - "question_id": 20713, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005569", - "question_id": 20715, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003965", - "question_id": 20716, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008087", - "question_id": 20717, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003532", - "question_id": 20721, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005845", - "question_id": 20723, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002160", - "question_id": 20724, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003637", - "question_id": 20725, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008054", - "question_id": 20726, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001194", - "question_id": 20727, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008559", - "question_id": 20731, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00005813", - "question_id": 20732, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00004008", - "question_id": 20734, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006989", - "question_id": 20735, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001363", - "question_id": 20739, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002648", - "question_id": 20741, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001894", - "question_id": 20742, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006932", - "question_id": 20743, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007738", - "question_id": 20744, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007898", - "question_id": 20745, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008162", - "question_id": 20746, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006647", - "question_id": 20747, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001620", - "question_id": 20749, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000064", - "question_id": 20751, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002977", - "question_id": 20752, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004037", - "question_id": 20753, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007482", - "question_id": 20754, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003833", - "question_id": 20759, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008844", - "question_id": 20760, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004475", - "question_id": 20761, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003635", - "question_id": 20763, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002510", - "question_id": 20765, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003029", - "question_id": 20767, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003167", - "question_id": 20768, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006440", - "question_id": 20771, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002876", - "question_id": 20773, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004043", - "question_id": 20775, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004875", - "question_id": 20777, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001903", - "question_id": 20780, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00000138", - "question_id": 20781, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003862", - "question_id": 20782, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000610", - "question_id": 20788, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000826", - "question_id": 20790, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003635", - "question_id": 20792, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002135", - "question_id": 20793, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003986", - "question_id": 20794, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002324", - "question_id": 20797, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002387", - "question_id": 20798, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004576", - "question_id": 20799, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000445", - "question_id": 20801, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007042", - "question_id": 20802, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006920", - "question_id": 20805, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001822", - "question_id": 20806, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008548", - "question_id": 20807, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008298", - "question_id": 20808, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002807", - "question_id": 20809, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006827", - "question_id": 20810, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003827", - "question_id": 20811, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005836", - "question_id": 20812, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00005848", - "question_id": 20813, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004936", - "question_id": 20815, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00005097", - "question_id": 20817, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00008167", - "question_id": 20819, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006429", - "question_id": 20820, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"saxophone\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006147", - "question_id": 20822, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005838", - "question_id": 20823, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007642", - "question_id": 20826, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008634", - "question_id": 20827, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001730", - "question_id": 20829, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00002158", - "question_id": 20830, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008289", - "question_id": 20833, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002216", - "question_id": 20834, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008416", - "question_id": 20836, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004204", - "question_id": 20840, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"xylophone\", \"left\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004204", - "question_id": 20840, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"xylophone\", \"left\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008848", - "question_id": 20842, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00007871", - "question_id": 20843, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001445", - "question_id": 20844, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007491", - "question_id": 20845, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005899", - "question_id": 20846, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000695", - "question_id": 20847, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003433", - "question_id": 20848, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004323", - "question_id": 20849, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003927", - "question_id": 20850, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004836", - "question_id": 20852, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003690", - "question_id": 20857, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006080", - "question_id": 20858, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000029", - "question_id": 20859, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00005150", - "question_id": 20860, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006346", - "question_id": 20861, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002068", - "question_id": 20863, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007214", - "question_id": 20866, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000078", - "question_id": 20867, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004973", - "question_id": 20869, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004097", - "question_id": 20870, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006360", - "question_id": 20872, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007887", - "question_id": 20874, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000540", - "question_id": 20876, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004924", - "question_id": 20877, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000458", - "question_id": 20879, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006588", - "question_id": 20880, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"congas\", \"left\", \"congas\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000655", - "question_id": 20881, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006797", - "question_id": 20882, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005928", - "question_id": 20884, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004833", - "question_id": 20885, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003365", - "question_id": 20886, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003578", - "question_id": 20887, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000651", - "question_id": 20888, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004246", - "question_id": 20889, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006817", - "question_id": 20890, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002955", - "question_id": 20891, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003863", - "question_id": 20892, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008360", - "question_id": 20894, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007037", - "question_id": 20895, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001673", - "question_id": 20896, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006952", - "question_id": 20898, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008558", - "question_id": 20899, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00008409", - "question_id": 20900, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00004554", - "question_id": 20901, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00004554", - "question_id": 20901, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00007357", - "question_id": 20903, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003733", - "question_id": 20904, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006722", - "question_id": 20905, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006430", - "question_id": 20907, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003592", - "question_id": 20909, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007209", - "question_id": 20910, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007922", - "question_id": 20914, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005229", - "question_id": 20916, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002456", - "question_id": 20917, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007465", - "question_id": 20918, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000729", - "question_id": 20919, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007115", - "question_id": 20920, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002499", - "question_id": 20921, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008235", - "question_id": 20925, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005020", - "question_id": 20926, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006822", - "question_id": 20931, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007970", - "question_id": 20932, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00000945", - "question_id": 20933, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001320", - "question_id": 20935, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001404", - "question_id": 20936, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00003221", - "question_id": 20937, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005051", - "question_id": 20938, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000042", - "question_id": 20939, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004393", - "question_id": 20941, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006396", - "question_id": 20942, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00004084", - "question_id": 20943, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00002241", - "question_id": 20944, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005173", - "question_id": 20945, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008633", - "question_id": 20947, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004375", - "question_id": 20949, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007888", - "question_id": 20950, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003716", - "question_id": 20951, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002932", - "question_id": 20953, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008577", - "question_id": 20954, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002777", - "question_id": 20955, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008702", - "question_id": 20956, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006601", - "question_id": 20957, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00002514", - "question_id": 20958, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005795", - "question_id": 20959, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007772", - "question_id": 20960, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002584", - "question_id": 20961, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00001953", - "question_id": 20962, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007220", - "question_id": 20963, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000693", - "question_id": 20964, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008521", - "question_id": 20966, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002620", - "question_id": 20967, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"middle\", \"clarinet\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002932", - "question_id": 20968, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007957", - "question_id": 20969, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00001073", - "question_id": 20970, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007689", - "question_id": 20973, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002629", - "question_id": 20974, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002492", - "question_id": 20975, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00003281", - "question_id": 20976, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006302", - "question_id": 20979, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006938", - "question_id": 20980, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002458", - "question_id": 20982, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00006461", - "question_id": 20983, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003628", - "question_id": 20984, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008901", - "question_id": 20985, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001680", - "question_id": 20987, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00006881", - "question_id": 20989, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00008569", - "question_id": 20990, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007183", - "question_id": 20991, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008503", - "question_id": 20992, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002768", - "question_id": 20993, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00008247", - "question_id": 20994, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000541", - "question_id": 20997, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001755", - "question_id": 20998, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000242", - "question_id": 21000, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001769", - "question_id": 21001, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007250", - "question_id": 21002, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007798", - "question_id": 21004, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001876", - "question_id": 21005, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000440", - "question_id": 21006, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001961", - "question_id": 21007, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001252", - "question_id": 21008, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002600", - "question_id": 21009, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006450", - "question_id": 21010, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008722", - "question_id": 21011, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006104", - "question_id": 21014, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000729", - "question_id": 21016, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003640", - "question_id": 21018, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000578", - "question_id": 21019, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002109", - "question_id": 21021, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001222", - "question_id": 21022, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001753", - "question_id": 21023, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00001511", - "question_id": 21024, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"saxophone\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00004402", - "question_id": 21025, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008597", - "question_id": 21027, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000996", - "question_id": 21029, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002603", - "question_id": 21030, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004456", - "question_id": 21032, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008447", - "question_id": 21033, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005896", - "question_id": 21034, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00005915", - "question_id": 21035, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003586", - "question_id": 21038, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001905", - "question_id": 21039, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007629", - "question_id": 21040, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008948", - "question_id": 21041, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005322", - "question_id": 21044, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002521", - "question_id": 21045, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001450", - "question_id": 21046, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004288", - "question_id": 21047, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000720", - "question_id": 21048, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007995", - "question_id": 21049, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003700", - "question_id": 21050, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001947", - "question_id": 21051, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005534", - "question_id": 21052, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007517", - "question_id": 21056, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004356", - "question_id": 21059, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004998", - "question_id": 21060, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004998", - "question_id": 21060, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004003", - "question_id": 21061, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008381", - "question_id": 21063, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001105", - "question_id": 21064, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000251", - "question_id": 21065, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004026", - "question_id": 21067, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003146", - "question_id": 21068, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006589", - "question_id": 21069, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007809", - "question_id": 21071, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006704", - "question_id": 21072, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000025", - "question_id": 21073, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008924", - "question_id": 21074, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000306", - "question_id": 21076, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008765", - "question_id": 21077, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001382", - "question_id": 21078, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002209", - "question_id": 21079, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00002479", - "question_id": 21080, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003560", - "question_id": 21082, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00002269", - "question_id": 21084, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004077", - "question_id": 21085, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001774", - "question_id": 21086, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00007505", - "question_id": 21088, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004550", - "question_id": 21089, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008810", - "question_id": 21090, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006167", - "question_id": 21091, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007197", - "question_id": 21093, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00001520", - "question_id": 21094, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007678", - "question_id": 21095, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002570", - "question_id": 21096, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004297", - "question_id": 21097, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007600", - "question_id": 21099, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008202", - "question_id": 21102, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003431", - "question_id": 21104, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002680", - "question_id": 21105, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001150", - "question_id": 21106, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001676", - "question_id": 21108, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005979", - "question_id": 21109, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001176", - "question_id": 21111, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001904", - "question_id": 21112, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005489", - "question_id": 21113, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001554", - "question_id": 21114, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000839", - "question_id": 21115, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004643", - "question_id": 21117, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006870", - "question_id": 21119, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00002670", - "question_id": 21120, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007031", - "question_id": 21121, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008685", - "question_id": 21123, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001752", - "question_id": 21124, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001916", - "question_id": 21126, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00001712", - "question_id": 21127, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000124", - "question_id": 21129, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001172", - "question_id": 21131, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006549", - "question_id": 21133, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006045", - "question_id": 21134, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003286", - "question_id": 21136, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000129", - "question_id": 21137, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003320", - "question_id": 21139, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003896", - "question_id": 21140, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005106", - "question_id": 21141, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005554", - "question_id": 21142, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008415", - "question_id": 21143, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003034", - "question_id": 21144, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001154", - "question_id": 21145, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00005408", - "question_id": 21146, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002261", - "question_id": 21147, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000630", - "question_id": 21148, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003623", - "question_id": 21150, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008489", - "question_id": 21152, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007399", - "question_id": 21153, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005952", - "question_id": 21155, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006150", - "question_id": 21156, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003830", - "question_id": 21157, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000019", - "question_id": 21160, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006398", - "question_id": 21161, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000070", - "question_id": 21162, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008678", - "question_id": 21163, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002676", - "question_id": 21165, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008299", - "question_id": 21167, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007855", - "question_id": 21168, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008083", - "question_id": 21172, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00001623", - "question_id": 21175, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002059", - "question_id": 21176, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001399", - "question_id": 21178, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"drum\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002899", - "question_id": 21180, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001452", - "question_id": 21181, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005281", - "question_id": 21182, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002385", - "question_id": 21183, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005141", - "question_id": 21185, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001025", - "question_id": 21186, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008635", - "question_id": 21187, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007984", - "question_id": 21188, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001535", - "question_id": 21189, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002688", - "question_id": 21190, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008758", - "question_id": 21191, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001403", - "question_id": 21193, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003803", - "question_id": 21194, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006176", - "question_id": 21195, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003377", - "question_id": 21196, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001560", - "question_id": 21197, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000674", - "question_id": 21198, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003228", - "question_id": 21199, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003118", - "question_id": 21200, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001885", - "question_id": 21201, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00008924", - "question_id": 21202, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003783", - "question_id": 21203, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001560", - "question_id": 21204, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006230", - "question_id": 21206, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006691", - "question_id": 21208, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00007222", - "question_id": 21209, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006509", - "question_id": 21210, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002857", - "question_id": 21211, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000370", - "question_id": 21212, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00007526", - "question_id": 21213, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001086", - "question_id": 21216, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00005424", - "question_id": 21218, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002367", - "question_id": 21219, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005993", - "question_id": 21220, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000928", - "question_id": 21222, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00007896", - "question_id": 21223, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003308", - "question_id": 21225, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001579", - "question_id": 21226, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00008099", - "question_id": 21227, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008698", - "question_id": 21229, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00007187", - "question_id": 21231, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006338", - "question_id": 21232, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00004613", - "question_id": 21234, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00007122", - "question_id": 21235, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004429", - "question_id": 21236, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003536", - "question_id": 21237, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004755", - "question_id": 21238, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006527", - "question_id": 21240, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00003277", - "question_id": 21242, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001375", - "question_id": 21243, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002372", - "question_id": 21244, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007014", - "question_id": 21245, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005603", - "question_id": 21246, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005410", - "question_id": 21247, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004577", - "question_id": 21248, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006561", - "question_id": 21249, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008940", - "question_id": 21250, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005489", - "question_id": 21251, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008122", - "question_id": 21252, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00008932", - "question_id": 21254, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006430", - "question_id": 21255, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005768", - "question_id": 21258, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001998", - "question_id": 21259, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007300", - "question_id": 21260, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008856", - "question_id": 21261, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"middle\", \"pipa\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005066", - "question_id": 21262, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001854", - "question_id": 21263, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005847", - "question_id": 21264, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005645", - "question_id": 21265, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006347", - "question_id": 21266, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00002175", - "question_id": 21269, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00007480", - "question_id": 21270, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007902", - "question_id": 21272, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007743", - "question_id": 21273, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002497", - "question_id": 21275, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007837", - "question_id": 21278, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000591", - "question_id": 21279, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008803", - "question_id": 21281, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00002402", - "question_id": 21282, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006075", - "question_id": 21283, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002654", - "question_id": 21284, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003317", - "question_id": 21285, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005963", - "question_id": 21287, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007757", - "question_id": 21290, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002903", - "question_id": 21291, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008145", - "question_id": 21292, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006365", - "question_id": 21293, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005689", - "question_id": 21295, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003242", - "question_id": 21297, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000919", - "question_id": 21298, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00004859", - "question_id": 21299, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000470", - "question_id": 21300, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006267", - "question_id": 21302, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000449", - "question_id": 21303, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00002541", - "question_id": 21304, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00005362", - "question_id": 21305, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005592", - "question_id": 21306, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00004062", - "question_id": 21307, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006897", - "question_id": 21308, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006641", - "question_id": 21312, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005185", - "question_id": 21313, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003097", - "question_id": 21314, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006275", - "question_id": 21315, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00002069", - "question_id": 21316, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00003414", - "question_id": 21317, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008687", - "question_id": 21318, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004527", - "question_id": 21319, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008465", - "question_id": 21323, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000626", - "question_id": 21324, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007111", - "question_id": 21326, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006413", - "question_id": 21327, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00008629", - "question_id": 21328, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00004093", - "question_id": 21330, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008615", - "question_id": 21331, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005443", - "question_id": 21332, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00004094", - "question_id": 21333, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00001114", - "question_id": 21334, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004650", - "question_id": 21335, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002211", - "question_id": 21337, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004189", - "question_id": 21341, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002586", - "question_id": 21343, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004935", - "question_id": 21344, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004152", - "question_id": 21346, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004115", - "question_id": 21347, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001741", - "question_id": 21348, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006037", - "question_id": 21349, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007399", - "question_id": 21350, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005977", - "question_id": 21351, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006514", - "question_id": 21352, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000709", - "question_id": 21353, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003038", - "question_id": 21356, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005874", - "question_id": 21357, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003991", - "question_id": 21361, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000686", - "question_id": 21362, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000778", - "question_id": 21363, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007038", - "question_id": 21364, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00008823", - "question_id": 21366, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006463", - "question_id": 21367, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00002636", - "question_id": 21368, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007415", - "question_id": 21369, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003294", - "question_id": 21370, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008337", - "question_id": 21371, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002604", - "question_id": 21373, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004379", - "question_id": 21376, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000126", - "question_id": 21378, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002816", - "question_id": 21380, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001547", - "question_id": 21381, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002899", - "question_id": 21385, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000961", - "question_id": 21387, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003111", - "question_id": 21389, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005128", - "question_id": 21390, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002905", - "question_id": 21392, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006807", - "question_id": 21393, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008339", - "question_id": 21394, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000692", - "question_id": 21395, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00002354", - "question_id": 21396, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004202", - "question_id": 21399, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005216", - "question_id": 21400, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000672", - "question_id": 21401, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00002714", - "question_id": 21402, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00000797", - "question_id": 21405, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003287", - "question_id": 21406, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008932", - "question_id": 21407, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004752", - "question_id": 21408, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002744", - "question_id": 21410, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"right\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002623", - "question_id": 21411, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003355", - "question_id": 21413, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003318", - "question_id": 21414, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003879", - "question_id": 21415, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00004483", - "question_id": 21416, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008923", - "question_id": 21418, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002367", - "question_id": 21422, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008172", - "question_id": 21423, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000859", - "question_id": 21424, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003426", - "question_id": 21425, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006616", - "question_id": 21427, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003809", - "question_id": 21428, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007437", - "question_id": 21430, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003399", - "question_id": 21431, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003238", - "question_id": 21432, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008463", - "question_id": 21433, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004917", - "question_id": 21434, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007197", - "question_id": 21435, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004234", - "question_id": 21438, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005282", - "question_id": 21439, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006806", - "question_id": 21440, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000070", - "question_id": 21441, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00008283", - "question_id": 21442, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003231", - "question_id": 21443, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005903", - "question_id": 21444, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008939", - "question_id": 21445, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006855", - "question_id": 21446, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00000325", - "question_id": 21447, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001402", - "question_id": 21449, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003199", - "question_id": 21452, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"accordion\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006579", - "question_id": 21454, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001429", - "question_id": 21455, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001668", - "question_id": 21456, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002013", - "question_id": 21457, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003261", - "question_id": 21459, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00005474", - "question_id": 21460, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004375", - "question_id": 21461, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006504", - "question_id": 21462, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006939", - "question_id": 21463, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005841", - "question_id": 21465, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"xylophone\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004661", - "question_id": 21466, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"pipa\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000744", - "question_id": 21467, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007818", - "question_id": 21468, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003572", - "question_id": 21469, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005600", - "question_id": 21470, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000135", - "question_id": 21472, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006674", - "question_id": 21473, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002056", - "question_id": 21474, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008891", - "question_id": 21477, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001132", - "question_id": 21479, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001233", - "question_id": 21484, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004444", - "question_id": 21488, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004270", - "question_id": 21489, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00001829", - "question_id": 21490, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007520", - "question_id": 21491, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006174", - "question_id": 21492, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005864", - "question_id": 21493, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006362", - "question_id": 21494, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001111", - "question_id": 21495, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004397", - "question_id": 21496, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001345", - "question_id": 21497, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006320", - "question_id": 21502, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001129", - "question_id": 21504, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004662", - "question_id": 21506, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005217", - "question_id": 21508, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001982", - "question_id": 21511, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002142", - "question_id": 21512, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008304", - "question_id": 21513, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003124", - "question_id": 21514, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000746", - "question_id": 21515, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007393", - "question_id": 21516, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004323", - "question_id": 21517, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003571", - "question_id": 21518, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002516", - "question_id": 21519, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000783", - "question_id": 21524, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006702", - "question_id": 21528, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002491", - "question_id": 21529, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008095", - "question_id": 21530, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000870", - "question_id": 21532, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001364", - "question_id": 21533, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002029", - "question_id": 21536, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005431", - "question_id": 21537, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005593", - "question_id": 21539, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002005", - "question_id": 21540, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005168", - "question_id": 21543, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008742", - "question_id": 21544, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004685", - "question_id": 21545, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000534", - "question_id": 21547, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007381", - "question_id": 21548, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001344", - "question_id": 21551, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004278", - "question_id": 21552, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003848", - "question_id": 21553, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000865", - "question_id": 21554, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005422", - "question_id": 21557, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004885", - "question_id": 21558, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008414", - "question_id": 21559, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002590", - "question_id": 21560, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008172", - "question_id": 21561, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000069", - "question_id": 21563, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005799", - "question_id": 21564, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005799", - "question_id": 21564, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006501", - "question_id": 21565, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007252", - "question_id": 21569, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003210", - "question_id": 21570, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007808", - "question_id": 21572, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001699", - "question_id": 21573, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00007871", - "question_id": 21575, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007905", - "question_id": 21576, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008862", - "question_id": 21577, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001009", - "question_id": 21578, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001009", - "question_id": 21578, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005672", - "question_id": 21582, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002230", - "question_id": 21583, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"xylophone\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00003463", - "question_id": 21584, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003097", - "question_id": 21585, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008890", - "question_id": 21588, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006750", - "question_id": 21589, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001083", - "question_id": 21592, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001250", - "question_id": 21593, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005924", - "question_id": 21594, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008166", - "question_id": 21595, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000108", - "question_id": 21596, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001884", - "question_id": 21597, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006414", - "question_id": 21600, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002554", - "question_id": 21601, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00007259", - "question_id": 21602, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002180", - "question_id": 21603, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00008977", - "question_id": 21604, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005051", - "question_id": 21607, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006974", - "question_id": 21609, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000246", - "question_id": 21610, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002065", - "question_id": 21611, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003146", - "question_id": 21613, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008801", - "question_id": 21615, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003557", - "question_id": 21616, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000244", - "question_id": 21623, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004500", - "question_id": 21624, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007541", - "question_id": 21626, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001974", - "question_id": 21627, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00006938", - "question_id": 21628, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001537", - "question_id": 21630, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008148", - "question_id": 21631, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008592", - "question_id": 21632, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000814", - "question_id": 21634, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002823", - "question_id": 21636, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008604", - "question_id": 21637, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00002403", - "question_id": 21638, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00004347", - "question_id": 21642, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002715", - "question_id": 21643, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003880", - "question_id": 21644, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003485", - "question_id": 21646, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002575", - "question_id": 21647, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008709", - "question_id": 21648, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007372", - "question_id": 21650, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000510", - "question_id": 21652, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00006664", - "question_id": 21653, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003048", - "question_id": 21655, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005543", - "question_id": 21656, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003941", - "question_id": 21658, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008239", - "question_id": 21659, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006733", - "question_id": 21660, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006181", - "question_id": 21661, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001625", - "question_id": 21662, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004323", - "question_id": 21663, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002501", - "question_id": 21665, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007957", - "question_id": 21666, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005245", - "question_id": 21667, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00000182", - "question_id": 21668, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001822", - "question_id": 21669, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005285", - "question_id": 21670, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004471", - "question_id": 21671, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004884", - "question_id": 21672, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008962", - "question_id": 21673, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004446", - "question_id": 21674, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007306", - "question_id": 21675, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005300", - "question_id": 21676, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003086", - "question_id": 21678, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007041", - "question_id": 21679, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000763", - "question_id": 21680, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008507", - "question_id": 21681, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004179", - "question_id": 21683, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001405", - "question_id": 21685, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007362", - "question_id": 21686, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002984", - "question_id": 21687, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"trumpet\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003024", - "question_id": 21688, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00006991", - "question_id": 21689, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000691", - "question_id": 21690, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001817", - "question_id": 21691, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001774", - "question_id": 21692, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00006487", - "question_id": 21693, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002582", - "question_id": 21694, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007899", - "question_id": 21695, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00004537", - "question_id": 21696, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005439", - "question_id": 21697, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003990", - "question_id": 21698, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00008214", - "question_id": 21699, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005139", - "question_id": 21700, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003560", - "question_id": 21701, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005445", - "question_id": 21702, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003801", - "question_id": 21703, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005710", - "question_id": 21704, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002831", - "question_id": 21706, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000594", - "question_id": 21707, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007996", - "question_id": 21708, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007546", - "question_id": 21709, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00008669", - "question_id": 21711, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006118", - "question_id": 21714, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00004754", - "question_id": 21715, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006562", - "question_id": 21716, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001729", - "question_id": 21718, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008702", - "question_id": 21719, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006151", - "question_id": 21720, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00004973", - "question_id": 21721, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005990", - "question_id": 21722, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006963", - "question_id": 21723, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001930", - "question_id": 21724, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004755", - "question_id": 21725, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002028", - "question_id": 21726, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003238", - "question_id": 21728, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008476", - "question_id": 21729, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00000067", - "question_id": 21731, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000493", - "question_id": 21732, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000847", - "question_id": 21733, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000631", - "question_id": 21734, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006433", - "question_id": 21735, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00008782", - "question_id": 21736, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005116", - "question_id": 21737, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00007239", - "question_id": 21739, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008384", - "question_id": 21740, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001975", - "question_id": 21741, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007961", - "question_id": 21742, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003177", - "question_id": 21743, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00005658", - "question_id": 21745, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001718", - "question_id": 21746, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005319", - "question_id": 21747, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007859", - "question_id": 21749, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005815", - "question_id": 21750, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006397", - "question_id": 21751, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003233", - "question_id": 21752, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002521", - "question_id": 21754, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005947", - "question_id": 21759, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005101", - "question_id": 21760, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007862", - "question_id": 21761, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006969", - "question_id": 21762, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006662", - "question_id": 21763, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000727", - "question_id": 21765, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007160", - "question_id": 21767, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001588", - "question_id": 21768, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005976", - "question_id": 21769, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000562", - "question_id": 21770, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007524", - "question_id": 21772, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"fourth\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00002685", - "question_id": 21773, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003358", - "question_id": 21774, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006034", - "question_id": 21775, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002394", - "question_id": 21777, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002481", - "question_id": 21781, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005452", - "question_id": 21784, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006895", - "question_id": 21785, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000734", - "question_id": 21786, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005118", - "question_id": 21788, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005762", - "question_id": 21790, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005814", - "question_id": 21791, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006425", - "question_id": 21792, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003407", - "question_id": 21793, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00001158", - "question_id": 21794, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005327", - "question_id": 21795, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007295", - "question_id": 21796, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"acoustic_guitar\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000993", - "question_id": 21797, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003370", - "question_id": 21798, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001413", - "question_id": 21799, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001413", - "question_id": 21799, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002566", - "question_id": 21801, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00002409", - "question_id": 21803, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003787", - "question_id": 21804, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006448", - "question_id": 21806, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008534", - "question_id": 21807, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003176", - "question_id": 21809, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00005951", - "question_id": 21814, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002485", - "question_id": 21815, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002485", - "question_id": 21815, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006351", - "question_id": 21817, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000007", - "question_id": 21818, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000910", - "question_id": 21820, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00002160", - "question_id": 21822, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002902", - "question_id": 21823, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000616", - "question_id": 21824, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001864", - "question_id": 21825, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001504", - "question_id": 21826, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006183", - "question_id": 21827, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003194", - "question_id": 21828, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00007249", - "question_id": 21829, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004292", - "question_id": 21831, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006401", - "question_id": 21833, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003783", - "question_id": 21835, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004776", - "question_id": 21837, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00007018", - "question_id": 21839, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000560", - "question_id": 21841, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002551", - "question_id": 21842, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004991", - "question_id": 21843, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002925", - "question_id": 21844, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00001791", - "question_id": 21846, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001538", - "question_id": 21848, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007797", - "question_id": 21849, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002600", - "question_id": 21850, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007129", - "question_id": 21851, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004181", - "question_id": 21852, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006765", - "question_id": 21854, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004560", - "question_id": 21856, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004314", - "question_id": 21858, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004006", - "question_id": 21862, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00007767", - "question_id": 21863, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001233", - "question_id": 21866, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003911", - "question_id": 21867, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006945", - "question_id": 21868, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001647", - "question_id": 21869, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005032", - "question_id": 21870, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001420", - "question_id": 21871, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005555", - "question_id": 21872, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001602", - "question_id": 21873, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004372", - "question_id": 21874, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00003901", - "question_id": 21875, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006535", - "question_id": 21876, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000315", - "question_id": 21877, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006499", - "question_id": 21878, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003697", - "question_id": 21879, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007645", - "question_id": 21880, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007400", - "question_id": 21881, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "ten" - }, - { - "video_id": "00004510", - "question_id": 21883, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005388", - "question_id": 21886, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000928", - "question_id": 21887, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008681", - "question_id": 21888, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006701", - "question_id": 21889, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005412", - "question_id": 21891, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006217", - "question_id": 21892, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00000632", - "question_id": 21893, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007017", - "question_id": 21895, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007878", - "question_id": 21896, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001502", - "question_id": 21897, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00006245", - "question_id": 21898, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003192", - "question_id": 21899, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003096", - "question_id": 21901, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008663", - "question_id": 21902, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008018", - "question_id": 21903, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004540", - "question_id": 21904, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005136", - "question_id": 21905, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000458", - "question_id": 21906, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002617", - "question_id": 21908, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002419", - "question_id": 21912, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004090", - "question_id": 21913, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003854", - "question_id": 21914, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001973", - "question_id": 21916, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00006117", - "question_id": 21917, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00000982", - "question_id": 21918, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001440", - "question_id": 21920, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006726", - "question_id": 21922, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005546", - "question_id": 21923, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003956", - "question_id": 21924, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005619", - "question_id": 21927, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00004348", - "question_id": 21929, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002970", - "question_id": 21931, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00006636", - "question_id": 21932, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005954", - "question_id": 21934, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008873", - "question_id": 21935, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002783", - "question_id": 21936, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007074", - "question_id": 21938, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001827", - "question_id": 21940, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004613", - "question_id": 21941, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000526", - "question_id": 21942, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001829", - "question_id": 21943, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006389", - "question_id": 21944, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000841", - "question_id": 21945, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004734", - "question_id": 21946, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001671", - "question_id": 21947, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00003483", - "question_id": 21950, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006768", - "question_id": 21951, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008239", - "question_id": 21952, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00001663", - "question_id": 21953, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001862", - "question_id": 21954, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000726", - "question_id": 21955, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00001965", - "question_id": 21957, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001577", - "question_id": 21958, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004471", - "question_id": 21959, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004872", - "question_id": 21963, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002108", - "question_id": 21965, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003436", - "question_id": 21966, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005546", - "question_id": 21967, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001430", - "question_id": 21969, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002346", - "question_id": 21970, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004445", - "question_id": 21971, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001001", - "question_id": 21972, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00002177", - "question_id": 21974, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005832", - "question_id": 21976, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002381", - "question_id": 21977, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005803", - "question_id": 21978, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003954", - "question_id": 21979, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001406", - "question_id": 21980, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001700", - "question_id": 21981, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002843", - "question_id": 21982, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000464", - "question_id": 21983, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004658", - "question_id": 21985, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003593", - "question_id": 21986, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00003666", - "question_id": 21987, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00000517", - "question_id": 21989, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000949", - "question_id": 21990, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005868", - "question_id": 21993, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007443", - "question_id": 21994, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004919", - "question_id": 21996, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003978", - "question_id": 21997, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008816", - "question_id": 21998, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008448", - "question_id": 22002, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000889", - "question_id": 22003, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000955", - "question_id": 22004, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006196", - "question_id": 22005, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00004816", - "question_id": 22006, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003818", - "question_id": 22007, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004680", - "question_id": 22008, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000251", - "question_id": 22009, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000129", - "question_id": 22010, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002535", - "question_id": 22011, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003980", - "question_id": 22013, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002321", - "question_id": 22015, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006152", - "question_id": 22016, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001366", - "question_id": 22017, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006035", - "question_id": 22018, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002706", - "question_id": 22020, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003218", - "question_id": 22021, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005803", - "question_id": 22022, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007013", - "question_id": 22023, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007034", - "question_id": 22024, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00007174", - "question_id": 22025, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008509", - "question_id": 22028, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001624", - "question_id": 22029, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001853", - "question_id": 22030, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003709", - "question_id": 22031, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002795", - "question_id": 22032, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001961", - "question_id": 22033, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00007625", - "question_id": 22034, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004124", - "question_id": 22039, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001040", - "question_id": 22040, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004964", - "question_id": 22041, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005752", - "question_id": 22042, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006433", - "question_id": 22043, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008078", - "question_id": 22045, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005087", - "question_id": 22046, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00008655", - "question_id": 22047, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006279", - "question_id": 22048, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007550", - "question_id": 22049, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00000601", - "question_id": 22051, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003525", - "question_id": 22052, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00005021", - "question_id": 22054, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00006106", - "question_id": 22055, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00002247", - "question_id": 22056, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003600", - "question_id": 22057, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000076", - "question_id": 22059, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004607", - "question_id": 22060, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007791", - "question_id": 22063, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008504", - "question_id": 22064, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006892", - "question_id": 22065, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004022", - "question_id": 22066, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002842", - "question_id": 22067, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002595", - "question_id": 22068, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006327", - "question_id": 22069, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004044", - "question_id": 22070, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002609", - "question_id": 22072, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002364", - "question_id": 22074, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008453", - "question_id": 22075, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002148", - "question_id": 22076, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000344", - "question_id": 22077, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001205", - "question_id": 22079, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005127", - "question_id": 22082, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008227", - "question_id": 22083, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008354", - "question_id": 22084, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004348", - "question_id": 22085, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002113", - "question_id": 22086, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00004849", - "question_id": 22088, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000176", - "question_id": 22090, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008531", - "question_id": 22091, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00002835", - "question_id": 22092, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00000075", - "question_id": 22095, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001302", - "question_id": 22097, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003402", - "question_id": 22099, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007100", - "question_id": 22102, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004651", - "question_id": 22103, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00008945", - "question_id": 22104, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"pipa\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003630", - "question_id": 22105, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001488", - "question_id": 22107, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003266", - "question_id": 22109, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00001577", - "question_id": 22111, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007527", - "question_id": 22112, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000334", - "question_id": 22113, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008346", - "question_id": 22115, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007941", - "question_id": 22117, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008820", - "question_id": 22118, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001051", - "question_id": 22119, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000999", - "question_id": 22122, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004861", - "question_id": 22124, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000496", - "question_id": 22126, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008892", - "question_id": 22129, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001835", - "question_id": 22130, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006992", - "question_id": 22133, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00005585", - "question_id": 22134, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002836", - "question_id": 22135, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006319", - "question_id": 22136, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008335", - "question_id": 22137, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006887", - "question_id": 22138, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006902", - "question_id": 22141, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001408", - "question_id": 22142, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000316", - "question_id": 22143, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008126", - "question_id": 22145, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003215", - "question_id": 22146, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000972", - "question_id": 22147, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005381", - "question_id": 22148, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008792", - "question_id": 22149, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008561", - "question_id": 22150, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006982", - "question_id": 22151, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001955", - "question_id": 22152, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004115", - "question_id": 22153, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00000727", - "question_id": 22154, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004262", - "question_id": 22155, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00000964", - "question_id": 22156, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003371", - "question_id": 22157, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001009", - "question_id": 22158, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002108", - "question_id": 22159, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008938", - "question_id": 22160, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005155", - "question_id": 22161, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007597", - "question_id": 22162, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008770", - "question_id": 22164, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003729", - "question_id": 22165, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00004388", - "question_id": 22167, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005179", - "question_id": 22169, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003528", - "question_id": 22171, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001566", - "question_id": 22172, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00003723", - "question_id": 22173, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001418", - "question_id": 22175, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007691", - "question_id": 22176, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006502", - "question_id": 22177, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004382", - "question_id": 22179, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003875", - "question_id": 22181, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001616", - "question_id": 22182, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001160", - "question_id": 22183, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004191", - "question_id": 22184, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003069", - "question_id": 22185, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006504", - "question_id": 22186, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004245", - "question_id": 22187, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007367", - "question_id": 22188, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002185", - "question_id": 22189, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00008675", - "question_id": 22190, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002519", - "question_id": 22191, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007939", - "question_id": 22192, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008896", - "question_id": 22193, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006044", - "question_id": 22194, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004757", - "question_id": 22195, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007797", - "question_id": 22196, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007431", - "question_id": 22197, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007838", - "question_id": 22198, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001139", - "question_id": 22199, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001670", - "question_id": 22200, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"xylophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002287", - "question_id": 22201, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007168", - "question_id": 22203, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003794", - "question_id": 22205, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000629", - "question_id": 22206, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00001007", - "question_id": 22207, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"xylophone\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006166", - "question_id": 22208, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008325", - "question_id": 22210, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004783", - "question_id": 22213, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006246", - "question_id": 22215, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00004447", - "question_id": 22216, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004026", - "question_id": 22217, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004026", - "question_id": 22217, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005095", - "question_id": 22218, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001246", - "question_id": 22219, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006915", - "question_id": 22223, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002477", - "question_id": 22225, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003560", - "question_id": 22227, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002412", - "question_id": 22228, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007950", - "question_id": 22230, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00000534", - "question_id": 22232, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002310", - "question_id": 22233, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003850", - "question_id": 22234, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003039", - "question_id": 22235, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000952", - "question_id": 22237, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005614", - "question_id": 22238, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008084", - "question_id": 22240, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004221", - "question_id": 22241, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004256", - "question_id": 22243, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004185", - "question_id": 22244, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008168", - "question_id": 22245, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001296", - "question_id": 22246, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004244", - "question_id": 22247, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002600", - "question_id": 22248, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006339", - "question_id": 22249, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006273", - "question_id": 22250, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001199", - "question_id": 22251, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007123", - "question_id": 22252, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008880", - "question_id": 22253, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007133", - "question_id": 22254, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004098", - "question_id": 22255, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000818", - "question_id": 22257, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001727", - "question_id": 22258, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007567", - "question_id": 22259, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000288", - "question_id": 22261, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003338", - "question_id": 22262, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000763", - "question_id": 22265, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003331", - "question_id": 22266, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003610", - "question_id": 22269, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000259", - "question_id": 22270, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001834", - "question_id": 22272, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000689", - "question_id": 22274, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001729", - "question_id": 22275, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00003596", - "question_id": 22276, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004347", - "question_id": 22277, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006821", - "question_id": 22279, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007571", - "question_id": 22280, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008179", - "question_id": 22281, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006624", - "question_id": 22284, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003994", - "question_id": 22286, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008962", - "question_id": 22288, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008531", - "question_id": 22289, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007372", - "question_id": 22290, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007728", - "question_id": 22291, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005357", - "question_id": 22293, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002481", - "question_id": 22294, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008929", - "question_id": 22295, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005123", - "question_id": 22297, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000678", - "question_id": 22298, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003905", - "question_id": 22300, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004961", - "question_id": 22301, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008282", - "question_id": 22302, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003375", - "question_id": 22303, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004372", - "question_id": 22304, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004091", - "question_id": 22306, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005516", - "question_id": 22309, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008460", - "question_id": 22310, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00007892", - "question_id": 22312, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008598", - "question_id": 22313, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "eight" - }, - { - "video_id": "00008711", - "question_id": 22315, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007277", - "question_id": 22316, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000253", - "question_id": 22317, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00000962", - "question_id": 22319, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002249", - "question_id": 22320, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006440", - "question_id": 22321, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008453", - "question_id": 22322, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000149", - "question_id": 22323, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002606", - "question_id": 22324, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003469", - "question_id": 22325, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007940", - "question_id": 22328, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006852", - "question_id": 22329, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008562", - "question_id": 22330, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00008850", - "question_id": 22332, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003321", - "question_id": 22333, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00000464", - "question_id": 22334, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007616", - "question_id": 22338, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005934", - "question_id": 22339, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001323", - "question_id": 22340, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002575", - "question_id": 22342, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007604", - "question_id": 22343, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00001812", - "question_id": 22344, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001115", - "question_id": 22345, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007253", - "question_id": 22346, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002723", - "question_id": 22347, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007969", - "question_id": 22350, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008303", - "question_id": 22351, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005815", - "question_id": 22352, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005252", - "question_id": 22354, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004456", - "question_id": 22356, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004065", - "question_id": 22357, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001818", - "question_id": 22358, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004467", - "question_id": 22359, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000264", - "question_id": 22360, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00002269", - "question_id": 22362, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004890", - "question_id": 22364, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002765", - "question_id": 22365, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002400", - "question_id": 22366, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000951", - "question_id": 22367, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003706", - "question_id": 22371, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00007620", - "question_id": 22373, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003395", - "question_id": 22374, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00008271", - "question_id": 22376, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005745", - "question_id": 22379, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008474", - "question_id": 22385, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008585", - "question_id": 22386, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007097", - "question_id": 22387, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007628", - "question_id": 22388, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005702", - "question_id": 22389, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008925", - "question_id": 22390, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008085", - "question_id": 22391, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005435", - "question_id": 22392, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002819", - "question_id": 22393, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00000481", - "question_id": 22394, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006702", - "question_id": 22395, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002687", - "question_id": 22397, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007014", - "question_id": 22399, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008399", - "question_id": 22400, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00006048", - "question_id": 22401, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007039", - "question_id": 22403, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008046", - "question_id": 22404, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007980", - "question_id": 22406, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003373", - "question_id": 22407, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006234", - "question_id": 22408, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007493", - "question_id": 22411, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002646", - "question_id": 22412, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002631", - "question_id": 22413, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003519", - "question_id": 22414, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004749", - "question_id": 22415, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000372", - "question_id": 22416, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007150", - "question_id": 22417, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005869", - "question_id": 22418, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00001309", - "question_id": 22419, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008266", - "question_id": 22420, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005006", - "question_id": 22422, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000561", - "question_id": 22423, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008459", - "question_id": 22425, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "seven" - }, - { - "video_id": "00002891", - "question_id": 22427, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001315", - "question_id": 22428, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002857", - "question_id": 22429, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006637", - "question_id": 22431, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000985", - "question_id": 22432, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008024", - "question_id": 22435, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00003143", - "question_id": 22436, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000098", - "question_id": 22438, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008536", - "question_id": 22439, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006053", - "question_id": 22441, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000167", - "question_id": 22444, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008624", - "question_id": 22445, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002473", - "question_id": 22446, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001179", - "question_id": 22447, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001088", - "question_id": 22450, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001988", - "question_id": 22452, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007682", - "question_id": 22453, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008271", - "question_id": 22454, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00000408", - "question_id": 22455, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004264", - "question_id": 22456, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007128", - "question_id": 22457, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00005629", - "question_id": 22458, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005496", - "question_id": 22461, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005739", - "question_id": 22464, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00003391", - "question_id": 22465, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003218", - "question_id": 22466, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006744", - "question_id": 22468, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006418", - "question_id": 22469, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004915", - "question_id": 22470, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007343", - "question_id": 22471, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003395", - "question_id": 22473, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007046", - "question_id": 22475, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005781", - "question_id": 22476, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008633", - "question_id": 22478, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004685", - "question_id": 22479, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005959", - "question_id": 22480, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006699", - "question_id": 22481, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000915", - "question_id": 22482, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003778", - "question_id": 22484, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008801", - "question_id": 22485, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003787", - "question_id": 22487, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00001525", - "question_id": 22488, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004850", - "question_id": 22490, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008519", - "question_id": 22494, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00005122", - "question_id": 22497, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007422", - "question_id": 22498, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004398", - "question_id": 22500, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004828", - "question_id": 22502, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007162", - "question_id": 22505, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005841", - "question_id": 22506, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001914", - "question_id": 22508, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001944", - "question_id": 22511, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007592", - "question_id": 22512, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008767", - "question_id": 22513, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006809", - "question_id": 22516, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00006469", - "question_id": 22517, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006100", - "question_id": 22518, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007441", - "question_id": 22519, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"electric_bass\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008073", - "question_id": 22520, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007226", - "question_id": 22522, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000071", - "question_id": 22526, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001094", - "question_id": 22528, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003316", - "question_id": 22529, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007241", - "question_id": 22530, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006788", - "question_id": 22531, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002876", - "question_id": 22532, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00007906", - "question_id": 22533, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004139", - "question_id": 22535, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001899", - "question_id": 22536, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000819", - "question_id": 22539, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002163", - "question_id": 22541, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00003323", - "question_id": 22544, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003406", - "question_id": 22545, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007485", - "question_id": 22546, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003835", - "question_id": 22547, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004904", - "question_id": 22549, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002265", - "question_id": 22550, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007816", - "question_id": 22551, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00005202", - "question_id": 22553, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003432", - "question_id": 22554, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001169", - "question_id": 22555, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006732", - "question_id": 22556, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006742", - "question_id": 22557, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002079", - "question_id": 22560, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003537", - "question_id": 22561, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005366", - "question_id": 22562, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001911", - "question_id": 22563, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004691", - "question_id": 22564, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000429", - "question_id": 22565, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006188", - "question_id": 22566, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000985", - "question_id": 22567, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008714", - "question_id": 22568, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006704", - "question_id": 22569, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008550", - "question_id": 22570, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005464", - "question_id": 22572, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008381", - "question_id": 22573, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006353", - "question_id": 22575, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007773", - "question_id": 22576, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006323", - "question_id": 22577, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003868", - "question_id": 22578, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000424", - "question_id": 22580, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006630", - "question_id": 22581, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004739", - "question_id": 22582, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007304", - "question_id": 22583, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008262", - "question_id": 22584, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003149", - "question_id": 22587, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000890", - "question_id": 22588, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007786", - "question_id": 22591, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004064", - "question_id": 22593, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003863", - "question_id": 22595, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008502", - "question_id": 22596, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007986", - "question_id": 22599, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002132", - "question_id": 22600, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003695", - "question_id": 22601, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000986", - "question_id": 22602, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006700", - "question_id": 22603, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00001508", - "question_id": 22604, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002062", - "question_id": 22605, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005776", - "question_id": 22606, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004472", - "question_id": 22607, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007260", - "question_id": 22610, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00003832", - "question_id": 22611, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007013", - "question_id": 22612, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00000573", - "question_id": 22616, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002235", - "question_id": 22617, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006674", - "question_id": 22619, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00006259", - "question_id": 22620, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006473", - "question_id": 22621, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007945", - "question_id": 22624, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001541", - "question_id": 22625, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00008147", - "question_id": 22626, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002816", - "question_id": 22628, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00005608", - "question_id": 22629, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003864", - "question_id": 22630, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006334", - "question_id": 22632, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007092", - "question_id": 22634, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008441", - "question_id": 22635, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008112", - "question_id": 22637, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008731", - "question_id": 22639, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003720", - "question_id": 22642, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00003189", - "question_id": 22644, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00003656", - "question_id": 22646, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006760", - "question_id": 22647, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002945", - "question_id": 22649, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008084", - "question_id": 22650, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00002417", - "question_id": 22652, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005852", - "question_id": 22653, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008031", - "question_id": 22655, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000305", - "question_id": 22656, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00003655", - "question_id": 22658, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008727", - "question_id": 22662, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002034", - "question_id": 22664, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008455", - "question_id": 22665, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00004460", - "question_id": 22667, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006788", - "question_id": 22668, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000546", - "question_id": 22669, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003953", - "question_id": 22670, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006917", - "question_id": 22671, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006275", - "question_id": 22673, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001562", - "question_id": 22674, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004356", - "question_id": 22675, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006192", - "question_id": 22676, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001323", - "question_id": 22677, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003067", - "question_id": 22679, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00002557", - "question_id": 22680, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000742", - "question_id": 22681, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007892", - "question_id": 22682, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004763", - "question_id": 22683, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008890", - "question_id": 22685, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001269", - "question_id": 22686, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000789", - "question_id": 22687, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001391", - "question_id": 22688, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002999", - "question_id": 22689, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005239", - "question_id": 22690, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008502", - "question_id": 22693, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006104", - "question_id": 22694, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005036", - "question_id": 22697, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000861", - "question_id": 22698, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000718", - "question_id": 22700, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005558", - "question_id": 22703, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006729", - "question_id": 22704, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006011", - "question_id": 22705, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008953", - "question_id": 22706, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002530", - "question_id": 22707, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007289", - "question_id": 22709, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007309", - "question_id": 22710, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006418", - "question_id": 22711, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005003", - "question_id": 22712, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007723", - "question_id": 22713, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005695", - "question_id": 22714, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008600", - "question_id": 22715, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001846", - "question_id": 22716, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006877", - "question_id": 22717, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006056", - "question_id": 22718, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008804", - "question_id": 22719, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001604", - "question_id": 22720, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002625", - "question_id": 22721, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005448", - "question_id": 22722, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00005189", - "question_id": 22723, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002427", - "question_id": 22724, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001648", - "question_id": 22725, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001719", - "question_id": 22726, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00001746", - "question_id": 22727, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005318", - "question_id": 22729, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004662", - "question_id": 22730, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000387", - "question_id": 22732, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003176", - "question_id": 22733, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00000337", - "question_id": 22735, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001634", - "question_id": 22736, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005016", - "question_id": 22738, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008217", - "question_id": 22739, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00007891", - "question_id": 22741, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"congas\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000674", - "question_id": 22742, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006377", - "question_id": 22744, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002717", - "question_id": 22745, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002252", - "question_id": 22746, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005396", - "question_id": 22748, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007100", - "question_id": 22753, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00002317", - "question_id": 22757, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007681", - "question_id": 22758, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008737", - "question_id": 22760, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000004", - "question_id": 22761, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006293", - "question_id": 22762, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006553", - "question_id": 22763, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002926", - "question_id": 22764, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003387", - "question_id": 22765, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007190", - "question_id": 22766, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002706", - "question_id": 22768, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002182", - "question_id": 22769, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004673", - "question_id": 22770, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003134", - "question_id": 22772, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006086", - "question_id": 22773, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004567", - "question_id": 22774, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003646", - "question_id": 22775, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000895", - "question_id": 22776, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000674", - "question_id": 22778, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002250", - "question_id": 22779, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002735", - "question_id": 22780, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005850", - "question_id": 22782, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007764", - "question_id": 22783, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000035", - "question_id": 22784, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004096", - "question_id": 22786, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004334", - "question_id": 22787, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008087", - "question_id": 22789, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"tuba\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004123", - "question_id": 22791, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008725", - "question_id": 22793, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000918", - "question_id": 22794, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00003917", - "question_id": 22795, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001051", - "question_id": 22796, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000014", - "question_id": 22797, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"tuba\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003748", - "question_id": 22799, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00004750", - "question_id": 22801, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006689", - "question_id": 22805, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004455", - "question_id": 22806, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00008886", - "question_id": 22807, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006711", - "question_id": 22808, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003180", - "question_id": 22811, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008935", - "question_id": 22812, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"tuba\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005261", - "question_id": 22813, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004307", - "question_id": 22817, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00005269", - "question_id": 22818, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006660", - "question_id": 22819, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008300", - "question_id": 22821, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00000400", - "question_id": 22822, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000247", - "question_id": 22824, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "seven" - }, - { - "video_id": "00001473", - "question_id": 22826, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008537", - "question_id": 22829, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00002500", - "question_id": 22830, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000701", - "question_id": 22832, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007430", - "question_id": 22833, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005484", - "question_id": 22834, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007702", - "question_id": 22837, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000651", - "question_id": 22842, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003625", - "question_id": 22843, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004545", - "question_id": 22847, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001015", - "question_id": 22848, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005557", - "question_id": 22849, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003744", - "question_id": 22850, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002715", - "question_id": 22851, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003021", - "question_id": 22852, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008468", - "question_id": 22853, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004310", - "question_id": 22854, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005417", - "question_id": 22857, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005855", - "question_id": 22858, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00004447", - "question_id": 22859, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00008025", - "question_id": 22861, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002067", - "question_id": 22863, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004235", - "question_id": 22866, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004039", - "question_id": 22869, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001064", - "question_id": 22870, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000281", - "question_id": 22871, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00008560", - "question_id": 22873, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008232", - "question_id": 22874, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004316", - "question_id": 22875, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001347", - "question_id": 22876, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001037", - "question_id": 22877, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000571", - "question_id": 22878, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007793", - "question_id": 22880, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000339", - "question_id": 22883, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006301", - "question_id": 22884, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00007391", - "question_id": 22889, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005254", - "question_id": 22890, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001776", - "question_id": 22891, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006029", - "question_id": 22892, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004915", - "question_id": 22893, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008888", - "question_id": 22894, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003916", - "question_id": 22895, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002581", - "question_id": 22899, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003035", - "question_id": 22900, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007121", - "question_id": 22901, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006196", - "question_id": 22906, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "seven" - }, - { - "video_id": "00001962", - "question_id": 22907, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006412", - "question_id": 22909, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002924", - "question_id": 22911, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004621", - "question_id": 22912, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007889", - "question_id": 22913, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001297", - "question_id": 22914, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002295", - "question_id": 22916, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002707", - "question_id": 22917, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007765", - "question_id": 22919, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00001981", - "question_id": 22920, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002850", - "question_id": 22921, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000885", - "question_id": 22922, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008238", - "question_id": 22923, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003411", - "question_id": 22924, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001911", - "question_id": 22925, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004487", - "question_id": 22926, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006310", - "question_id": 22927, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001420", - "question_id": 22928, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001292", - "question_id": 22930, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006893", - "question_id": 22931, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004307", - "question_id": 22932, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008592", - "question_id": 22933, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002480", - "question_id": 22934, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006834", - "question_id": 22935, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008309", - "question_id": 22937, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006828", - "question_id": 22940, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001599", - "question_id": 22941, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001602", - "question_id": 22942, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006723", - "question_id": 22944, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006469", - "question_id": 22948, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002424", - "question_id": 22949, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00003354", - "question_id": 22953, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004129", - "question_id": 22954, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002494", - "question_id": 22955, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004381", - "question_id": 22956, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00006624", - "question_id": 22957, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006294", - "question_id": 22959, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00001028", - "question_id": 22962, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00000457", - "question_id": 22963, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004100", - "question_id": 22964, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00005997", - "question_id": 22965, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006626", - "question_id": 22966, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005442", - "question_id": 22967, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000111", - "question_id": 22969, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000918", - "question_id": 22972, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001562", - "question_id": 22973, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002078", - "question_id": 22974, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00000955", - "question_id": 22975, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000780", - "question_id": 22976, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00008192", - "question_id": 22977, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001904", - "question_id": 22978, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000384", - "question_id": 22979, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003643", - "question_id": 22980, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008849", - "question_id": 22983, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005404", - "question_id": 22988, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003142", - "question_id": 22989, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000393", - "question_id": 22990, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001549", - "question_id": 22992, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00003895", - "question_id": 22993, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00004151", - "question_id": 22994, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002345", - "question_id": 22996, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005305", - "question_id": 22997, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001681", - "question_id": 22998, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008258", - "question_id": 22999, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007718", - "question_id": 23000, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003979", - "question_id": 23001, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004312", - "question_id": 23002, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007617", - "question_id": 23003, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000652", - "question_id": 23009, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003008", - "question_id": 23010, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006125", - "question_id": 23011, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007791", - "question_id": 23013, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"guzheng\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00006292", - "question_id": 23015, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002726", - "question_id": 23017, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004738", - "question_id": 23018, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003716", - "question_id": 23019, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004636", - "question_id": 23020, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004461", - "question_id": 23023, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007740", - "question_id": 23024, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006335", - "question_id": 23026, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002187", - "question_id": 23027, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006299", - "question_id": 23028, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00000722", - "question_id": 23031, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00007162", - "question_id": 23035, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00003637", - "question_id": 23037, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002343", - "question_id": 23038, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005829", - "question_id": 23039, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001749", - "question_id": 23040, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001123", - "question_id": 23043, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005484", - "question_id": 23045, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003323", - "question_id": 23047, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00002681", - "question_id": 23049, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005895", - "question_id": 23050, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"xylophone\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007879", - "question_id": 23051, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"congas\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004180", - "question_id": 23053, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002310", - "question_id": 23055, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003200", - "question_id": 23056, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003238", - "question_id": 23057, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000475", - "question_id": 23058, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006254", - "question_id": 23059, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001023", - "question_id": 23060, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001424", - "question_id": 23061, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001609", - "question_id": 23062, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001465", - "question_id": 23063, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005844", - "question_id": 23065, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001206", - "question_id": 23066, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00000398", - "question_id": 23068, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005141", - "question_id": 23069, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001715", - "question_id": 23070, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006482", - "question_id": 23071, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00004785", - "question_id": 23072, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001366", - "question_id": 23073, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"flute\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00001396", - "question_id": 23075, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00000008", - "question_id": 23076, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008026", - "question_id": 23077, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004871", - "question_id": 23079, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008483", - "question_id": 23081, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001798", - "question_id": 23083, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006437", - "question_id": 23084, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000488", - "question_id": 23085, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00007109", - "question_id": 23087, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001032", - "question_id": 23090, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005539", - "question_id": 23091, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001215", - "question_id": 23092, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007538", - "question_id": 23096, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00006864", - "question_id": 23097, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008458", - "question_id": 23098, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007321", - "question_id": 23100, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00008656", - "question_id": 23102, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006411", - "question_id": 23103, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00000331", - "question_id": 23104, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008377", - "question_id": 23106, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003357", - "question_id": 23107, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00007075", - "question_id": 23108, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00008909", - "question_id": 23109, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00000855", - "question_id": 23110, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00005893", - "question_id": 23112, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00008810", - "question_id": 23113, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001364", - "question_id": 23114, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000683", - "question_id": 23115, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000241", - "question_id": 23116, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00002261", - "question_id": 23119, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004995", - "question_id": 23120, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00007548", - "question_id": 23121, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004894", - "question_id": 23122, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001152", - "question_id": 23123, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005883", - "question_id": 23124, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003299", - "question_id": 23125, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008947", - "question_id": 23126, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008734", - "question_id": 23128, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001181", - "question_id": 23129, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00007673", - "question_id": 23133, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008542", - "question_id": 23135, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003587", - "question_id": 23137, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005695", - "question_id": 23138, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00000495", - "question_id": 23139, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005937", - "question_id": 23141, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000660", - "question_id": 23142, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004368", - "question_id": 23143, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000397", - "question_id": 23144, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004704", - "question_id": 23147, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007979", - "question_id": 23149, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006132", - "question_id": 23150, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004974", - "question_id": 23151, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001393", - "question_id": 23152, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001668", - "question_id": 23155, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006574", - "question_id": 23156, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00007494", - "question_id": 23157, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002675", - "question_id": 23158, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004719", - "question_id": 23159, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002957", - "question_id": 23160, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003209", - "question_id": 23162, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008583", - "question_id": 23163, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001441", - "question_id": 23164, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000448", - "question_id": 23165, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003136", - "question_id": 23169, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007179", - "question_id": 23170, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004879", - "question_id": 23173, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008246", - "question_id": 23175, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001277", - "question_id": 23176, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005961", - "question_id": 23178, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008685", - "question_id": 23179, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002181", - "question_id": 23180, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00008964", - "question_id": 23181, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003011", - "question_id": 23182, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00006677", - "question_id": 23183, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001126", - "question_id": 23184, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000784", - "question_id": 23185, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00007908", - "question_id": 23186, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00007887", - "question_id": 23187, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008725", - "question_id": 23188, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005956", - "question_id": 23189, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004769", - "question_id": 23190, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001351", - "question_id": 23192, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00008064", - "question_id": 23193, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00003428", - "question_id": 23195, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00001926", - "question_id": 23196, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004167", - "question_id": 23197, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00004747", - "question_id": 23198, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005767", - "question_id": 23200, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006831", - "question_id": 23201, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006239", - "question_id": 23204, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00000139", - "question_id": 23205, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003766", - "question_id": 23207, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008507", - "question_id": 23209, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00006855", - "question_id": 23210, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003606", - "question_id": 23212, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004203", - "question_id": 23215, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000632", - "question_id": 23216, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004757", - "question_id": 23217, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002543", - "question_id": 23218, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00000309", - "question_id": 23219, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001469", - "question_id": 23220, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000672", - "question_id": 23221, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002970", - "question_id": 23222, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"suona\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002825", - "question_id": 23223, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001854", - "question_id": 23224, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002288", - "question_id": 23225, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000994", - "question_id": 23227, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007933", - "question_id": 23228, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005845", - "question_id": 23229, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007255", - "question_id": 23231, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002576", - "question_id": 23232, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000899", - "question_id": 23233, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003602", - "question_id": 23234, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00005254", - "question_id": 23236, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007575", - "question_id": 23237, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002995", - "question_id": 23238, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004029", - "question_id": 23240, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003036", - "question_id": 23241, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002312", - "question_id": 23244, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004952", - "question_id": 23245, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000632", - "question_id": 23247, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003501", - "question_id": 23248, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000080", - "question_id": 23250, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001670", - "question_id": 23251, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"xylophone\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00004669", - "question_id": 23252, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001616", - "question_id": 23253, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005978", - "question_id": 23255, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004136", - "question_id": 23256, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007058", - "question_id": 23257, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000790", - "question_id": 23258, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002743", - "question_id": 23259, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007717", - "question_id": 23260, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"ukulele\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00001084", - "question_id": 23262, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002525", - "question_id": 23263, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006742", - "question_id": 23264, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004219", - "question_id": 23265, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000947", - "question_id": 23266, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000248", - "question_id": 23267, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"right\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004425", - "question_id": 23268, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00007821", - "question_id": 23270, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003289", - "question_id": 23273, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001083", - "question_id": 23277, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008142", - "question_id": 23279, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00000339", - "question_id": 23282, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004442", - "question_id": 23284, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008519", - "question_id": 23285, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004107", - "question_id": 23286, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006044", - "question_id": 23288, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003469", - "question_id": 23289, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00005641", - "question_id": 23290, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004336", - "question_id": 23294, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001746", - "question_id": 23295, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008335", - "question_id": 23296, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002450", - "question_id": 23299, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00005372", - "question_id": 23300, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004170", - "question_id": 23304, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005575", - "question_id": 23305, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006263", - "question_id": 23306, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003351", - "question_id": 23308, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000864", - "question_id": 23310, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006044", - "question_id": 23312, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002891", - "question_id": 23314, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003251", - "question_id": 23315, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007235", - "question_id": 23318, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005937", - "question_id": 23319, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00008496", - "question_id": 23320, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006929", - "question_id": 23321, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008771", - "question_id": 23322, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002295", - "question_id": 23323, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000197", - "question_id": 23324, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001068", - "question_id": 23325, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006297", - "question_id": 23326, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003387", - "question_id": 23327, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006349", - "question_id": 23330, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000211", - "question_id": 23332, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00002854", - "question_id": 23333, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"tuba\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007213", - "question_id": 23335, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00005840", - "question_id": 23338, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002320", - "question_id": 23339, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006769", - "question_id": 23341, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000288", - "question_id": 23342, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007094", - "question_id": 23343, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00003812", - "question_id": 23345, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004908", - "question_id": 23346, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004099", - "question_id": 23347, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004272", - "question_id": 23350, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002653", - "question_id": 23351, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003978", - "question_id": 23353, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002047", - "question_id": 23354, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004548", - "question_id": 23356, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007688", - "question_id": 23357, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"right\", \"violin\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004468", - "question_id": 23358, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002151", - "question_id": 23359, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004090", - "question_id": 23360, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004667", - "question_id": 23361, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00001956", - "question_id": 23362, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003544", - "question_id": 23363, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"ukulele\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002529", - "question_id": 23365, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00002414", - "question_id": 23367, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007138", - "question_id": 23368, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004589", - "question_id": 23369, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004764", - "question_id": 23371, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006546", - "question_id": 23372, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004337", - "question_id": 23373, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001367", - "question_id": 23376, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007048", - "question_id": 23378, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002164", - "question_id": 23379, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000717", - "question_id": 23381, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001397", - "question_id": 23383, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002506", - "question_id": 23384, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004026", - "question_id": 23385, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004844", - "question_id": 23386, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005063", - "question_id": 23387, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007650", - "question_id": 23388, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00007213", - "question_id": 23389, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000981", - "question_id": 23391, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007996", - "question_id": 23392, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004090", - "question_id": 23393, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007563", - "question_id": 23400, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"drum\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005444", - "question_id": 23402, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007578", - "question_id": 23404, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005974", - "question_id": 23406, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005069", - "question_id": 23407, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006028", - "question_id": 23410, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006993", - "question_id": 23411, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000131", - "question_id": 23412, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004780", - "question_id": 23413, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001481", - "question_id": 23414, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002171", - "question_id": 23417, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00003881", - "question_id": 23419, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001591", - "question_id": 23420, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000413", - "question_id": 23421, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002100", - "question_id": 23422, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00001736", - "question_id": 23423, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"trumpet\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002454", - "question_id": 23425, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001524", - "question_id": 23426, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006800", - "question_id": 23427, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001455", - "question_id": 23428, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000805", - "question_id": 23429, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001255", - "question_id": 23430, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005602", - "question_id": 23432, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006330", - "question_id": 23433, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000597", - "question_id": 23435, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005145", - "question_id": 23437, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002598", - "question_id": 23438, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005402", - "question_id": 23439, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00000911", - "question_id": 23440, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007852", - "question_id": 23441, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003864", - "question_id": 23443, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004042", - "question_id": 23444, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004463", - "question_id": 23448, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"xylophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001408", - "question_id": 23449, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007185", - "question_id": 23450, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004895", - "question_id": 23451, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006256", - "question_id": 23452, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002771", - "question_id": 23454, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00008853", - "question_id": 23455, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001816", - "question_id": 23456, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000534", - "question_id": 23457, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00000237", - "question_id": 23459, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000026", - "question_id": 23460, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000626", - "question_id": 23461, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001065", - "question_id": 23462, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001272", - "question_id": 23463, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003010", - "question_id": 23464, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006212", - "question_id": 23465, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001250", - "question_id": 23470, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002156", - "question_id": 23472, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004653", - "question_id": 23474, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003324", - "question_id": 23475, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003963", - "question_id": 23478, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001289", - "question_id": 23479, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002983", - "question_id": 23481, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001678", - "question_id": 23485, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005705", - "question_id": 23486, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005048", - "question_id": 23487, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003451", - "question_id": 23488, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008435", - "question_id": 23489, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"saxophone\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00003003", - "question_id": 23490, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007172", - "question_id": 23491, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00001143", - "question_id": 23492, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003062", - "question_id": 23493, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001904", - "question_id": 23494, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008576", - "question_id": 23495, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007852", - "question_id": 23498, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004113", - "question_id": 23499, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003648", - "question_id": 23501, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001653", - "question_id": 23502, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003014", - "question_id": 23503, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007949", - "question_id": 23505, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008151", - "question_id": 23506, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005459", - "question_id": 23507, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003720", - "question_id": 23510, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001273", - "question_id": 23511, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"tuba\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005176", - "question_id": 23512, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004171", - "question_id": 23513, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00001702", - "question_id": 23514, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005357", - "question_id": 23515, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005116", - "question_id": 23516, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003351", - "question_id": 23517, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006644", - "question_id": 23518, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002672", - "question_id": 23520, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"tuba\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007485", - "question_id": 23521, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002789", - "question_id": 23522, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008137", - "question_id": 23523, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001717", - "question_id": 23524, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003981", - "question_id": 23525, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"congas\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008149", - "question_id": 23526, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001347", - "question_id": 23527, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001742", - "question_id": 23528, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000333", - "question_id": 23529, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005283", - "question_id": 23530, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001289", - "question_id": 23538, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001945", - "question_id": 23539, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004840", - "question_id": 23540, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005777", - "question_id": 23541, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001105", - "question_id": 23543, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008093", - "question_id": 23545, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006512", - "question_id": 23548, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007936", - "question_id": 23549, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003163", - "question_id": 23550, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001495", - "question_id": 23551, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006239", - "question_id": 23553, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004483", - "question_id": 23554, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007427", - "question_id": 23557, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000380", - "question_id": 23558, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000320", - "question_id": 23559, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001964", - "question_id": 23562, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002185", - "question_id": 23563, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007535", - "question_id": 23564, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002985", - "question_id": 23565, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001395", - "question_id": 23568, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003567", - "question_id": 23569, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005231", - "question_id": 23570, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004849", - "question_id": 23571, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002199", - "question_id": 23572, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00002006", - "question_id": 23573, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004959", - "question_id": 23574, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001917", - "question_id": 23575, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005550", - "question_id": 23576, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001935", - "question_id": 23577, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007972", - "question_id": 23578, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002301", - "question_id": 23581, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008421", - "question_id": 23582, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001572", - "question_id": 23584, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"banjo\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001550", - "question_id": 23585, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004644", - "question_id": 23586, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002213", - "question_id": 23590, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00007025", - "question_id": 23592, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004104", - "question_id": 23593, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004409", - "question_id": 23594, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000362", - "question_id": 23596, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008409", - "question_id": 23598, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005366", - "question_id": 23599, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00007596", - "question_id": 23600, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006964", - "question_id": 23601, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007132", - "question_id": 23603, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001218", - "question_id": 23604, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004584", - "question_id": 23605, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007101", - "question_id": 23606, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004696", - "question_id": 23607, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007793", - "question_id": 23608, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007061", - "question_id": 23610, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"trumpet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002471", - "question_id": 23611, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004283", - "question_id": 23612, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003931", - "question_id": 23613, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002361", - "question_id": 23615, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000244", - "question_id": 23616, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00002399", - "question_id": 23619, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003218", - "question_id": 23620, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"banjo\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002398", - "question_id": 23621, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007803", - "question_id": 23622, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002587", - "question_id": 23623, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00000825", - "question_id": 23624, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006035", - "question_id": 23625, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005514", - "question_id": 23626, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002932", - "question_id": 23628, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007087", - "question_id": 23629, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007683", - "question_id": 23630, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005654", - "question_id": 23631, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00005106", - "question_id": 23632, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006898", - "question_id": 23633, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003729", - "question_id": 23634, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004650", - "question_id": 23639, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006576", - "question_id": 23640, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00001210", - "question_id": 23641, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002301", - "question_id": 23642, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002450", - "question_id": 23643, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006394", - "question_id": 23644, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001970", - "question_id": 23645, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006524", - "question_id": 23646, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00007951", - "question_id": 23650, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005058", - "question_id": 23652, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003302", - "question_id": 23655, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006245", - "question_id": 23661, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000573", - "question_id": 23662, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003233", - "question_id": 23663, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006825", - "question_id": 23664, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000212", - "question_id": 23667, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002029", - "question_id": 23672, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007130", - "question_id": 23674, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008971", - "question_id": 23675, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007666", - "question_id": 23677, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001665", - "question_id": 23679, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000032", - "question_id": 23680, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004161", - "question_id": 23681, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004386", - "question_id": 23682, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005210", - "question_id": 23683, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002279", - "question_id": 23684, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002279", - "question_id": 23684, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004402", - "question_id": 23685, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008128", - "question_id": 23687, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005430", - "question_id": 23689, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004811", - "question_id": 23691, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001352", - "question_id": 23692, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000051", - "question_id": 23693, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"guzheng\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00003821", - "question_id": 23694, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"banjo\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008974", - "question_id": 23695, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005892", - "question_id": 23696, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008349", - "question_id": 23699, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001156", - "question_id": 23701, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000064", - "question_id": 23703, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001609", - "question_id": 23704, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00003848", - "question_id": 23705, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002303", - "question_id": 23706, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00001261", - "question_id": 23707, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008280", - "question_id": 23708, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001542", - "question_id": 23710, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00006313", - "question_id": 23712, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00001730", - "question_id": 23713, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001844", - "question_id": 23717, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007519", - "question_id": 23718, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002306", - "question_id": 23719, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000400", - "question_id": 23720, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008073", - "question_id": 23721, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004720", - "question_id": 23722, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006691", - "question_id": 23723, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00000458", - "question_id": 23724, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003501", - "question_id": 23726, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007936", - "question_id": 23728, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002015", - "question_id": 23729, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005673", - "question_id": 23730, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007255", - "question_id": 23732, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008337", - "question_id": 23733, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008365", - "question_id": 23735, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007835", - "question_id": 23736, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008784", - "question_id": 23737, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003631", - "question_id": 23738, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"violin\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003631", - "question_id": 23738, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"violin\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002264", - "question_id": 23739, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001054", - "question_id": 23741, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005153", - "question_id": 23742, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005638", - "question_id": 23743, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008342", - "question_id": 23744, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004079", - "question_id": 23745, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007477", - "question_id": 23746, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006813", - "question_id": 23749, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001269", - "question_id": 23750, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008247", - "question_id": 23751, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006403", - "question_id": 23752, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007516", - "question_id": 23753, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006270", - "question_id": 23754, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00006489", - "question_id": 23757, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00007281", - "question_id": 23758, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002996", - "question_id": 23760, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004699", - "question_id": 23761, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002605", - "question_id": 23762, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001905", - "question_id": 23763, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00008821", - "question_id": 23764, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007653", - "question_id": 23765, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000087", - "question_id": 23768, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001009", - "question_id": 23769, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003938", - "question_id": 23770, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002910", - "question_id": 23771, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008840", - "question_id": 23773, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003722", - "question_id": 23775, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003745", - "question_id": 23776, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005011", - "question_id": 23779, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004438", - "question_id": 23780, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00007124", - "question_id": 23781, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00002164", - "question_id": 23782, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003518", - "question_id": 23784, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003981", - "question_id": 23785, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"congas\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004420", - "question_id": 23786, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006127", - "question_id": 23787, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00000990", - "question_id": 23791, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003154", - "question_id": 23792, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003407", - "question_id": 23793, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007085", - "question_id": 23794, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004673", - "question_id": 23795, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004732", - "question_id": 23796, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"erhu\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00003336", - "question_id": 23797, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002185", - "question_id": 23800, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001758", - "question_id": 23801, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004119", - "question_id": 23802, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007954", - "question_id": 23804, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008111", - "question_id": 23805, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003322", - "question_id": 23808, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005855", - "question_id": 23809, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006900", - "question_id": 23810, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003058", - "question_id": 23811, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008815", - "question_id": 23812, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007038", - "question_id": 23813, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001530", - "question_id": 23815, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000136", - "question_id": 23816, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002871", - "question_id": 23817, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00007320", - "question_id": 23819, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007312", - "question_id": 23821, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000439", - "question_id": 23822, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000713", - "question_id": 23823, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000380", - "question_id": 23824, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004651", - "question_id": 23825, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005375", - "question_id": 23826, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006766", - "question_id": 23827, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003903", - "question_id": 23830, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00000320", - "question_id": 23831, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001086", - "question_id": 23832, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008760", - "question_id": 23835, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001200", - "question_id": 23836, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003319", - "question_id": 23839, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001685", - "question_id": 23840, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006286", - "question_id": 23841, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003600", - "question_id": 23842, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001961", - "question_id": 23843, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00008773", - "question_id": 23844, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00000704", - "question_id": 23845, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004597", - "question_id": 23846, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"banjo\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002840", - "question_id": 23847, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007578", - "question_id": 23848, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000807", - "question_id": 23851, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00005058", - "question_id": 23852, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006629", - "question_id": 23853, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005864", - "question_id": 23855, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00000254", - "question_id": 23857, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007971", - "question_id": 23858, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000817", - "question_id": 23859, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"middle\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001440", - "question_id": 23860, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003889", - "question_id": 23861, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"tuba\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004031", - "question_id": 23862, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003318", - "question_id": 23863, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006178", - "question_id": 23866, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00007877", - "question_id": 23868, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000466", - "question_id": 23871, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003098", - "question_id": 23872, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"drum\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001479", - "question_id": 23873, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000093", - "question_id": 23875, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005136", - "question_id": 23876, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00008351", - "question_id": 23877, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008851", - "question_id": 23878, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003931", - "question_id": 23879, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008012", - "question_id": 23880, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003965", - "question_id": 23882, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008853", - "question_id": 23885, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005404", - "question_id": 23886, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00001477", - "question_id": 23889, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000934", - "question_id": 23890, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00005387", - "question_id": 23891, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008502", - "question_id": 23893, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005096", - "question_id": 23894, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007963", - "question_id": 23895, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008861", - "question_id": 23896, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006969", - "question_id": 23897, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002812", - "question_id": 23901, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00000072", - "question_id": 23902, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008450", - "question_id": 23903, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005193", - "question_id": 23904, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005381", - "question_id": 23907, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004566", - "question_id": 23908, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002192", - "question_id": 23909, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008777", - "question_id": 23913, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006116", - "question_id": 23916, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00004718", - "question_id": 23917, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003172", - "question_id": 23919, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000192", - "question_id": 23920, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007394", - "question_id": 23922, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002154", - "question_id": 23923, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000590", - "question_id": 23925, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00007292", - "question_id": 23927, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"congas\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006067", - "question_id": 23928, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007018", - "question_id": 23929, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005448", - "question_id": 23932, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"drum\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003537", - "question_id": 23933, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008123", - "question_id": 23934, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001488", - "question_id": 23935, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00000774", - "question_id": 23936, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00001433", - "question_id": 23937, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008169", - "question_id": 23938, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003234", - "question_id": 23941, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004181", - "question_id": 23943, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004480", - "question_id": 23944, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008446", - "question_id": 23946, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00007396", - "question_id": 23948, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008211", - "question_id": 23949, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001995", - "question_id": 23950, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00004658", - "question_id": 23952, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008026", - "question_id": 23953, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004728", - "question_id": 23954, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00003520", - "question_id": 23955, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006541", - "question_id": 23957, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00004138", - "question_id": 23959, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001967", - "question_id": 23960, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008595", - "question_id": 23962, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00001627", - "question_id": 23963, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000027", - "question_id": 23964, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003275", - "question_id": 23967, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00001650", - "question_id": 23970, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001219", - "question_id": 23972, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002761", - "question_id": 23973, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006242", - "question_id": 23975, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003863", - "question_id": 23976, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000980", - "question_id": 23977, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007380", - "question_id": 23978, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000242", - "question_id": 23980, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001038", - "question_id": 23981, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003739", - "question_id": 23985, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008262", - "question_id": 23989, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006360", - "question_id": 23990, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00008403", - "question_id": 23991, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00005335", - "question_id": 23992, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008239", - "question_id": 23993, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004530", - "question_id": 23994, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006109", - "question_id": 23995, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000825", - "question_id": 23996, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002025", - "question_id": 24001, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005730", - "question_id": 24004, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001773", - "question_id": 24006, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003486", - "question_id": 24008, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003942", - "question_id": 24009, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008922", - "question_id": 24010, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"flute\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000763", - "question_id": 24011, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007988", - "question_id": 24012, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007223", - "question_id": 24013, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00007125", - "question_id": 24014, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005818", - "question_id": 24015, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"electric_bass\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004485", - "question_id": 24016, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006000", - "question_id": 24019, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00007758", - "question_id": 24020, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004845", - "question_id": 24021, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000343", - "question_id": 24022, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00006126", - "question_id": 24023, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002190", - "question_id": 24024, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004711", - "question_id": 24027, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002551", - "question_id": 24028, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000238", - "question_id": 24029, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007776", - "question_id": 24031, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005306", - "question_id": 24033, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00006878", - "question_id": 24036, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004922", - "question_id": 24037, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006773", - "question_id": 24038, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005540", - "question_id": 24042, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001836", - "question_id": 24043, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007772", - "question_id": 24044, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004790", - "question_id": 24046, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000619", - "question_id": 24048, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008306", - "question_id": 24049, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"middle\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007282", - "question_id": 24051, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007592", - "question_id": 24052, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003680", - "question_id": 24054, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000577", - "question_id": 24055, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006628", - "question_id": 24056, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006628", - "question_id": 24056, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00007626", - "question_id": 24057, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000443", - "question_id": 24058, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002520", - "question_id": 24059, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000795", - "question_id": 24060, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007591", - "question_id": 24062, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002457", - "question_id": 24063, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006445", - "question_id": 24064, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005120", - "question_id": 24069, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002443", - "question_id": 24071, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004360", - "question_id": 24072, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008649", - "question_id": 24074, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005029", - "question_id": 24076, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008147", - "question_id": 24077, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008266", - "question_id": 24078, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005207", - "question_id": 24080, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00005069", - "question_id": 24081, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00003795", - "question_id": 24082, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008587", - "question_id": 24083, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002092", - "question_id": 24084, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005441", - "question_id": 24085, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002907", - "question_id": 24086, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00005439", - "question_id": 24088, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007981", - "question_id": 24089, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007012", - "question_id": 24090, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008624", - "question_id": 24091, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004607", - "question_id": 24093, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001213", - "question_id": 24096, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004837", - "question_id": 24097, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001582", - "question_id": 24098, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002990", - "question_id": 24099, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004590", - "question_id": 24100, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000446", - "question_id": 24101, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008575", - "question_id": 24102, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006531", - "question_id": 24105, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00007365", - "question_id": 24107, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006636", - "question_id": 24108, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006929", - "question_id": 24109, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008380", - "question_id": 24111, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006389", - "question_id": 24112, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006428", - "question_id": 24113, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003340", - "question_id": 24114, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00005204", - "question_id": 24115, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006259", - "question_id": 24116, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003589", - "question_id": 24117, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008211", - "question_id": 24118, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006504", - "question_id": 24119, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000292", - "question_id": 24120, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005523", - "question_id": 24123, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005384", - "question_id": 24124, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001755", - "question_id": 24125, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000645", - "question_id": 24126, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005344", - "question_id": 24127, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005617", - "question_id": 24128, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007718", - "question_id": 24129, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008302", - "question_id": 24130, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005460", - "question_id": 24133, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000727", - "question_id": 24134, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00004171", - "question_id": 24136, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001433", - "question_id": 24139, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007487", - "question_id": 24140, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00003850", - "question_id": 24141, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004105", - "question_id": 24142, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002497", - "question_id": 24144, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008406", - "question_id": 24147, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008783", - "question_id": 24148, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008862", - "question_id": 24150, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007677", - "question_id": 24152, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007409", - "question_id": 24154, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003983", - "question_id": 24155, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004907", - "question_id": 24159, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000805", - "question_id": 24160, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001168", - "question_id": 24161, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002727", - "question_id": 24163, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002822", - "question_id": 24164, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006138", - "question_id": 24165, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002232", - "question_id": 24166, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007374", - "question_id": 24167, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007347", - "question_id": 24168, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004072", - "question_id": 24170, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005316", - "question_id": 24171, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008435", - "question_id": 24172, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007547", - "question_id": 24173, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003099", - "question_id": 24174, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005647", - "question_id": 24175, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008033", - "question_id": 24176, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004751", - "question_id": 24177, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00008671", - "question_id": 24178, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005813", - "question_id": 24179, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000273", - "question_id": 24180, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008438", - "question_id": 24181, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004363", - "question_id": 24183, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006090", - "question_id": 24184, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008704", - "question_id": 24185, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003311", - "question_id": 24186, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00007307", - "question_id": 24187, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002352", - "question_id": 24189, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001947", - "question_id": 24190, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007288", - "question_id": 24191, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003307", - "question_id": 24192, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003660", - "question_id": 24193, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"tuba\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000019", - "question_id": 24195, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006150", - "question_id": 24196, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001684", - "question_id": 24198, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007534", - "question_id": 24201, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005294", - "question_id": 24207, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008933", - "question_id": 24208, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00005684", - "question_id": 24209, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"electric_bass\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003139", - "question_id": 24210, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005217", - "question_id": 24211, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008131", - "question_id": 24214, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002450", - "question_id": 24215, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006250", - "question_id": 24216, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006107", - "question_id": 24217, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005530", - "question_id": 24218, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00005311", - "question_id": 24219, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000504", - "question_id": 24220, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004083", - "question_id": 24225, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00005502", - "question_id": 24226, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003224", - "question_id": 24228, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001931", - "question_id": 24229, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005532", - "question_id": 24230, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00008539", - "question_id": 24231, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001113", - "question_id": 24234, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004093", - "question_id": 24235, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002604", - "question_id": 24236, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001374", - "question_id": 24237, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004179", - "question_id": 24238, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001902", - "question_id": 24239, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007341", - "question_id": 24241, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00000822", - "question_id": 24242, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003615", - "question_id": 24243, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004245", - "question_id": 24244, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"middle\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006448", - "question_id": 24248, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00000949", - "question_id": 24249, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002512", - "question_id": 24250, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008203", - "question_id": 24251, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00001704", - "question_id": 24252, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001749", - "question_id": 24253, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006835", - "question_id": 24254, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002357", - "question_id": 24257, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000636", - "question_id": 24258, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000283", - "question_id": 24260, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00005046", - "question_id": 24261, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008556", - "question_id": 24262, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005641", - "question_id": 24265, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000299", - "question_id": 24266, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"middle\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005399", - "question_id": 24268, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005278", - "question_id": 24269, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005613", - "question_id": 24270, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00008595", - "question_id": 24272, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008595", - "question_id": 24272, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002038", - "question_id": 24275, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000231", - "question_id": 24279, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00000861", - "question_id": 24280, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00008812", - "question_id": 24281, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008920", - "question_id": 24283, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000438", - "question_id": 24285, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007896", - "question_id": 24286, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001138", - "question_id": 24287, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004599", - "question_id": 24290, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004625", - "question_id": 24291, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006741", - "question_id": 24292, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00001692", - "question_id": 24293, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007183", - "question_id": 24294, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007551", - "question_id": 24295, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007309", - "question_id": 24297, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008504", - "question_id": 24299, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004673", - "question_id": 24302, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003588", - "question_id": 24304, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008546", - "question_id": 24306, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000423", - "question_id": 24309, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005141", - "question_id": 24311, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00000755", - "question_id": 24313, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002042", - "question_id": 24314, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00003097", - "question_id": 24315, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005693", - "question_id": 24316, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00004251", - "question_id": 24317, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006939", - "question_id": 24318, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008853", - "question_id": 24319, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00004791", - "question_id": 24320, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008752", - "question_id": 24322, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000679", - "question_id": 24323, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000500", - "question_id": 24325, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006751", - "question_id": 24326, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003305", - "question_id": 24329, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008304", - "question_id": 24330, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003690", - "question_id": 24332, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008458", - "question_id": 24333, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003544", - "question_id": 24334, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003665", - "question_id": 24337, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008476", - "question_id": 24338, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005421", - "question_id": 24339, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006902", - "question_id": 24340, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007418", - "question_id": 24341, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005706", - "question_id": 24342, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002188", - "question_id": 24343, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008064", - "question_id": 24344, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004428", - "question_id": 24348, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003172", - "question_id": 24349, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006108", - "question_id": 24350, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001652", - "question_id": 24352, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00007346", - "question_id": 24353, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004104", - "question_id": 24354, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000765", - "question_id": 24355, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002090", - "question_id": 24357, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001528", - "question_id": 24358, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003676", - "question_id": 24359, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001850", - "question_id": 24360, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001567", - "question_id": 24364, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007970", - "question_id": 24367, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006223", - "question_id": 24368, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007776", - "question_id": 24370, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001771", - "question_id": 24371, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008546", - "question_id": 24373, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008134", - "question_id": 24375, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007156", - "question_id": 24377, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001339", - "question_id": 24378, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005736", - "question_id": 24379, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006281", - "question_id": 24380, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006040", - "question_id": 24382, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000896", - "question_id": 24385, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003903", - "question_id": 24386, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006868", - "question_id": 24387, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006272", - "question_id": 24388, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000772", - "question_id": 24390, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008805", - "question_id": 24391, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007835", - "question_id": 24394, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008892", - "question_id": 24395, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"tuba\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003681", - "question_id": 24396, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006890", - "question_id": 24397, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006087", - "question_id": 24399, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008649", - "question_id": 24400, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003428", - "question_id": 24401, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001380", - "question_id": 24403, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000376", - "question_id": 24404, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00000892", - "question_id": 24406, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000252", - "question_id": 24407, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002107", - "question_id": 24409, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bagpipe\", \"left\", \"bagpipe\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006914", - "question_id": 24410, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004867", - "question_id": 24411, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006297", - "question_id": 24412, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"electric_bass\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006661", - "question_id": 24417, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000833", - "question_id": 24418, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004290", - "question_id": 24419, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004181", - "question_id": 24420, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00007808", - "question_id": 24422, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003814", - "question_id": 24423, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008762", - "question_id": 24424, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003996", - "question_id": 24425, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000921", - "question_id": 24426, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008210", - "question_id": 24430, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007812", - "question_id": 24433, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008895", - "question_id": 24435, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000498", - "question_id": 24438, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008010", - "question_id": 24439, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001500", - "question_id": 24440, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007596", - "question_id": 24442, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001713", - "question_id": 24443, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00008839", - "question_id": 24444, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00000862", - "question_id": 24445, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000200", - "question_id": 24447, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007912", - "question_id": 24449, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008405", - "question_id": 24450, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006277", - "question_id": 24451, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008458", - "question_id": 24452, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004848", - "question_id": 24453, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006987", - "question_id": 24454, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008311", - "question_id": 24457, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00008311", - "question_id": 24457, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00003357", - "question_id": 24458, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006527", - "question_id": 24459, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00007086", - "question_id": 24462, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001539", - "question_id": 24463, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007081", - "question_id": 24464, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006025", - "question_id": 24465, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005064", - "question_id": 24466, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004979", - "question_id": 24467, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001415", - "question_id": 24468, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007486", - "question_id": 24471, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004842", - "question_id": 24472, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001780", - "question_id": 24474, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004118", - "question_id": 24475, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004037", - "question_id": 24476, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004180", - "question_id": 24478, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006945", - "question_id": 24481, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000463", - "question_id": 24484, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001548", - "question_id": 24485, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002606", - "question_id": 24488, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006598", - "question_id": 24489, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008310", - "question_id": 24490, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001283", - "question_id": 24491, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000672", - "question_id": 24492, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004798", - "question_id": 24493, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"congas\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002270", - "question_id": 24497, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003375", - "question_id": 24501, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"electric_bass\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008238", - "question_id": 24504, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005762", - "question_id": 24505, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002734", - "question_id": 24506, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001325", - "question_id": 24507, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002561", - "question_id": 24508, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002559", - "question_id": 24509, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005360", - "question_id": 24510, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00007994", - "question_id": 24511, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00000029", - "question_id": 24512, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002248", - "question_id": 24513, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003547", - "question_id": 24514, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"suona\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007375", - "question_id": 24516, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003189", - "question_id": 24517, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00007384", - "question_id": 24519, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004246", - "question_id": 24520, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007324", - "question_id": 24521, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004376", - "question_id": 24523, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006939", - "question_id": 24524, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"congas\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007636", - "question_id": 24527, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006155", - "question_id": 24528, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00008046", - "question_id": 24530, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00008920", - "question_id": 24531, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000117", - "question_id": 24532, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004538", - "question_id": 24537, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001265", - "question_id": 24538, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00006553", - "question_id": 24544, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001270", - "question_id": 24549, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001682", - "question_id": 24551, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006471", - "question_id": 24553, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006415", - "question_id": 24554, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"drum\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004539", - "question_id": 24555, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001593", - "question_id": 24556, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004695", - "question_id": 24557, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000254", - "question_id": 24558, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007704", - "question_id": 24559, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006560", - "question_id": 24560, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000581", - "question_id": 24562, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004573", - "question_id": 24563, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008041", - "question_id": 24564, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000331", - "question_id": 24565, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006887", - "question_id": 24566, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004177", - "question_id": 24569, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004772", - "question_id": 24572, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00002904", - "question_id": 24573, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002424", - "question_id": 24575, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007065", - "question_id": 24577, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003467", - "question_id": 24579, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006769", - "question_id": 24580, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006223", - "question_id": 24582, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005523", - "question_id": 24585, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007290", - "question_id": 24586, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00003344", - "question_id": 24587, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"suona\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007005", - "question_id": 24589, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008562", - "question_id": 24590, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007851", - "question_id": 24592, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000164", - "question_id": 24593, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002912", - "question_id": 24595, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008197", - "question_id": 24597, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001213", - "question_id": 24598, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008249", - "question_id": 24599, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003335", - "question_id": 24602, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004816", - "question_id": 24603, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008602", - "question_id": 24605, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001105", - "question_id": 24607, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007447", - "question_id": 24610, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"congas\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008310", - "question_id": 24611, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002733", - "question_id": 24612, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004738", - "question_id": 24613, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007801", - "question_id": 24615, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000124", - "question_id": 24616, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002977", - "question_id": 24618, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007592", - "question_id": 24620, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007335", - "question_id": 24621, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007676", - "question_id": 24622, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004950", - "question_id": 24623, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002018", - "question_id": 24625, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007057", - "question_id": 24627, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000319", - "question_id": 24628, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001586", - "question_id": 24631, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002402", - "question_id": 24634, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008909", - "question_id": 24635, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004949", - "question_id": 24636, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004913", - "question_id": 24637, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001711", - "question_id": 24639, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000736", - "question_id": 24640, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001956", - "question_id": 24641, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001274", - "question_id": 24642, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008552", - "question_id": 24644, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004759", - "question_id": 24645, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001775", - "question_id": 24647, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007777", - "question_id": 24649, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001393", - "question_id": 24652, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003458", - "question_id": 24653, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002445", - "question_id": 24654, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007739", - "question_id": 24655, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005257", - "question_id": 24656, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000832", - "question_id": 24657, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004241", - "question_id": 24658, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008537", - "question_id": 24659, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002847", - "question_id": 24660, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006739", - "question_id": 24663, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002154", - "question_id": 24664, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002331", - "question_id": 24665, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002584", - "question_id": 24666, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"xylophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007346", - "question_id": 24668, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00003258", - "question_id": 24669, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002380", - "question_id": 24670, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00008025", - "question_id": 24672, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005634", - "question_id": 24675, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001635", - "question_id": 24676, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001779", - "question_id": 24678, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006447", - "question_id": 24679, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008273", - "question_id": 24680, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006056", - "question_id": 24682, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004885", - "question_id": 24683, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005481", - "question_id": 24684, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004810", - "question_id": 24685, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003422", - "question_id": 24686, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001597", - "question_id": 24687, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001800", - "question_id": 24692, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003513", - "question_id": 24693, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"guzheng\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00008412", - "question_id": 24695, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003642", - "question_id": 24696, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005606", - "question_id": 24701, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004615", - "question_id": 24706, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002137", - "question_id": 24707, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003811", - "question_id": 24708, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008850", - "question_id": 24710, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001466", - "question_id": 24711, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000021", - "question_id": 24712, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007391", - "question_id": 24714, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008917", - "question_id": 24715, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008597", - "question_id": 24716, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001656", - "question_id": 24717, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007073", - "question_id": 24719, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002560", - "question_id": 24720, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008626", - "question_id": 24721, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005340", - "question_id": 24723, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002543", - "question_id": 24727, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001309", - "question_id": 24729, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003116", - "question_id": 24730, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003158", - "question_id": 24731, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00006367", - "question_id": 24732, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"flute\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00004178", - "question_id": 24733, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007812", - "question_id": 24734, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001472", - "question_id": 24735, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00002860", - "question_id": 24737, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003373", - "question_id": 24739, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000290", - "question_id": 24740, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"suona\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004191", - "question_id": 24742, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004038", - "question_id": 24744, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002770", - "question_id": 24746, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004410", - "question_id": 24747, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001041", - "question_id": 24748, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005134", - "question_id": 24749, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005432", - "question_id": 24750, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007883", - "question_id": 24752, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000695", - "question_id": 24753, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00008666", - "question_id": 24755, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001418", - "question_id": 24756, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002177", - "question_id": 24757, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001769", - "question_id": 24758, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000185", - "question_id": 24759, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003374", - "question_id": 24761, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003331", - "question_id": 24762, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008001", - "question_id": 24763, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001186", - "question_id": 24765, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006453", - "question_id": 24767, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002260", - "question_id": 24769, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008733", - "question_id": 24774, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006919", - "question_id": 24775, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005209", - "question_id": 24776, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003612", - "question_id": 24779, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007636", - "question_id": 24780, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003165", - "question_id": 24782, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007514", - "question_id": 24784, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000564", - "question_id": 24786, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000108", - "question_id": 24787, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001862", - "question_id": 24789, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007248", - "question_id": 24790, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006439", - "question_id": 24792, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006928", - "question_id": 24794, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006437", - "question_id": 24795, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001609", - "question_id": 24798, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000569", - "question_id": 24799, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006943", - "question_id": 24800, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007059", - "question_id": 24801, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000642", - "question_id": 24802, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006203", - "question_id": 24803, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000428", - "question_id": 24804, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003825", - "question_id": 24805, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007575", - "question_id": 24806, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000016", - "question_id": 24809, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000432", - "question_id": 24810, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004448", - "question_id": 24811, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006666", - "question_id": 24812, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008233", - "question_id": 24814, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003563", - "question_id": 24816, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001169", - "question_id": 24818, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002293", - "question_id": 24820, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005666", - "question_id": 24823, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002123", - "question_id": 24824, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007787", - "question_id": 24825, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002683", - "question_id": 24826, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006623", - "question_id": 24827, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004162", - "question_id": 24828, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007288", - "question_id": 24829, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006186", - "question_id": 24833, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005190", - "question_id": 24836, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007009", - "question_id": 24837, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003775", - "question_id": 24838, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004667", - "question_id": 24841, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00005509", - "question_id": 24842, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006438", - "question_id": 24845, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"banjo\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003198", - "question_id": 24847, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004087", - "question_id": 24849, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004894", - "question_id": 24851, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003404", - "question_id": 24852, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004629", - "question_id": 24853, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006442", - "question_id": 24854, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002443", - "question_id": 24855, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000931", - "question_id": 24860, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005436", - "question_id": 24862, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007860", - "question_id": 24863, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000569", - "question_id": 24864, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004477", - "question_id": 24865, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006883", - "question_id": 24867, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004998", - "question_id": 24870, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002342", - "question_id": 24871, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007429", - "question_id": 24872, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006152", - "question_id": 24875, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001300", - "question_id": 24876, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003963", - "question_id": 24878, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001472", - "question_id": 24880, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00007236", - "question_id": 24881, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006839", - "question_id": 24882, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000587", - "question_id": 24884, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002369", - "question_id": 24885, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004346", - "question_id": 24886, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001555", - "question_id": 24887, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007702", - "question_id": 24888, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001845", - "question_id": 24889, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006831", - "question_id": 24890, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000633", - "question_id": 24892, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000364", - "question_id": 24893, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003689", - "question_id": 24894, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003637", - "question_id": 24895, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007295", - "question_id": 24897, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003719", - "question_id": 24898, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007763", - "question_id": 24899, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007140", - "question_id": 24902, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00000077", - "question_id": 24905, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002874", - "question_id": 24907, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000769", - "question_id": 24910, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004221", - "question_id": 24912, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00003746", - "question_id": 24913, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002818", - "question_id": 24915, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002331", - "question_id": 24919, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005892", - "question_id": 24920, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006250", - "question_id": 24923, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003437", - "question_id": 24924, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00001316", - "question_id": 24925, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004980", - "question_id": 24927, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006483", - "question_id": 24928, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004043", - "question_id": 24929, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005640", - "question_id": 24931, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00000674", - "question_id": 24932, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001073", - "question_id": 24933, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002041", - "question_id": 24934, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001737", - "question_id": 24936, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00000445", - "question_id": 24938, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007806", - "question_id": 24939, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005610", - "question_id": 24941, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00005920", - "question_id": 24942, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00001621", - "question_id": 24944, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002783", - "question_id": 24945, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005756", - "question_id": 24946, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004950", - "question_id": 24947, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003302", - "question_id": 24949, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004910", - "question_id": 24950, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007090", - "question_id": 24952, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001147", - "question_id": 24953, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006003", - "question_id": 24954, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"ukulele\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006112", - "question_id": 24955, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00008168", - "question_id": 24956, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000157", - "question_id": 24957, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001155", - "question_id": 24959, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007912", - "question_id": 24960, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006209", - "question_id": 24962, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003766", - "question_id": 24963, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007933", - "question_id": 24964, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004171", - "question_id": 24965, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001651", - "question_id": 24967, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005490", - "question_id": 24968, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00007959", - "question_id": 24971, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004601", - "question_id": 24973, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002392", - "question_id": 24975, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00000381", - "question_id": 24976, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00000430", - "question_id": 24977, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008487", - "question_id": 24980, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007229", - "question_id": 24981, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005336", - "question_id": 24982, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00007786", - "question_id": 24983, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00008421", - "question_id": 24984, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00003239", - "question_id": 24985, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002986", - "question_id": 24988, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008941", - "question_id": 24989, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003038", - "question_id": 24991, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003949", - "question_id": 24992, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000113", - "question_id": 24994, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00000852", - "question_id": 24995, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008762", - "question_id": 24997, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"drum\", \"middle\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003647", - "question_id": 24998, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005976", - "question_id": 25001, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000768", - "question_id": 25003, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005925", - "question_id": 25006, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003048", - "question_id": 25007, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001344", - "question_id": 25009, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006993", - "question_id": 25011, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006113", - "question_id": 25013, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002153", - "question_id": 25014, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00006750", - "question_id": 25020, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001544", - "question_id": 25021, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008396", - "question_id": 25022, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005233", - "question_id": 25024, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002110", - "question_id": 25026, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004744", - "question_id": 25031, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004595", - "question_id": 25033, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001308", - "question_id": 25034, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007448", - "question_id": 25035, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"congas\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005421", - "question_id": 25036, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000899", - "question_id": 25037, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006758", - "question_id": 25039, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00002375", - "question_id": 25040, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004088", - "question_id": 25041, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006990", - "question_id": 25044, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004893", - "question_id": 25045, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00002100", - "question_id": 25047, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008019", - "question_id": 25048, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001731", - "question_id": 25049, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002034", - "question_id": 25050, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001118", - "question_id": 25051, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002763", - "question_id": 25052, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001344", - "question_id": 25053, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006025", - "question_id": 25056, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006653", - "question_id": 25057, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007637", - "question_id": 25058, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00002804", - "question_id": 25060, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004794", - "question_id": 25061, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008345", - "question_id": 25062, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006830", - "question_id": 25063, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007296", - "question_id": 25064, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002904", - "question_id": 25065, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006746", - "question_id": 25068, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00004790", - "question_id": 25071, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007684", - "question_id": 25072, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006094", - "question_id": 25073, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002412", - "question_id": 25074, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004974", - "question_id": 25075, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007868", - "question_id": 25077, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001874", - "question_id": 25081, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005046", - "question_id": 25082, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002708", - "question_id": 25085, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007351", - "question_id": 25086, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003778", - "question_id": 25087, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003990", - "question_id": 25088, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006947", - "question_id": 25091, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000843", - "question_id": 25093, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008580", - "question_id": 25095, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001885", - "question_id": 25096, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006498", - "question_id": 25097, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002877", - "question_id": 25098, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005785", - "question_id": 25099, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005231", - "question_id": 25100, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004758", - "question_id": 25101, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001695", - "question_id": 25103, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00007513", - "question_id": 25104, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006065", - "question_id": 25106, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001432", - "question_id": 25107, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002587", - "question_id": 25109, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005680", - "question_id": 25110, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008246", - "question_id": 25111, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008574", - "question_id": 25113, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001086", - "question_id": 25115, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00000526", - "question_id": 25116, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005822", - "question_id": 25117, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004113", - "question_id": 25120, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003336", - "question_id": 25121, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005401", - "question_id": 25122, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000579", - "question_id": 25124, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008545", - "question_id": 25125, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00000303", - "question_id": 25126, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007884", - "question_id": 25129, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005949", - "question_id": 25130, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001570", - "question_id": 25131, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003535", - "question_id": 25132, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008096", - "question_id": 25133, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000551", - "question_id": 25134, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008975", - "question_id": 25135, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001934", - "question_id": 25136, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004078", - "question_id": 25137, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005825", - "question_id": 25138, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005456", - "question_id": 25139, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002877", - "question_id": 25141, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001444", - "question_id": 25142, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007939", - "question_id": 25144, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007542", - "question_id": 25145, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006057", - "question_id": 25149, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003197", - "question_id": 25150, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007051", - "question_id": 25151, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001934", - "question_id": 25152, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006370", - "question_id": 25153, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000212", - "question_id": 25155, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000281", - "question_id": 25156, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007121", - "question_id": 25157, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003336", - "question_id": 25158, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008911", - "question_id": 25159, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"piano\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005054", - "question_id": 25161, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005352", - "question_id": 25162, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003872", - "question_id": 25163, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006543", - "question_id": 25164, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00003038", - "question_id": 25165, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003335", - "question_id": 25166, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00003195", - "question_id": 25167, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002311", - "question_id": 25168, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003701", - "question_id": 25169, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004610", - "question_id": 25170, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00005263", - "question_id": 25173, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00002055", - "question_id": 25175, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004260", - "question_id": 25176, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002582", - "question_id": 25177, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005741", - "question_id": 25179, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00004766", - "question_id": 25180, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003144", - "question_id": 25182, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000552", - "question_id": 25183, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00006466", - "question_id": 25184, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002629", - "question_id": 25185, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00006307", - "question_id": 25186, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003985", - "question_id": 25187, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004001", - "question_id": 25188, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002448", - "question_id": 25189, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003077", - "question_id": 25190, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001640", - "question_id": 25191, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007456", - "question_id": 25192, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000779", - "question_id": 25193, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006118", - "question_id": 25194, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006254", - "question_id": 25196, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008558", - "question_id": 25197, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003931", - "question_id": 25198, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005522", - "question_id": 25200, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006986", - "question_id": 25201, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003659", - "question_id": 25202, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002080", - "question_id": 25203, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007242", - "question_id": 25205, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000187", - "question_id": 25206, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003669", - "question_id": 25207, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000427", - "question_id": 25208, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007978", - "question_id": 25209, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007761", - "question_id": 25211, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006601", - "question_id": 25215, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008010", - "question_id": 25216, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00007534", - "question_id": 25217, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004977", - "question_id": 25219, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008348", - "question_id": 25220, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002848", - "question_id": 25222, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005939", - "question_id": 25223, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003780", - "question_id": 25224, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004165", - "question_id": 25225, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003852", - "question_id": 25227, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006952", - "question_id": 25228, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002734", - "question_id": 25232, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001594", - "question_id": 25233, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006281", - "question_id": 25234, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002698", - "question_id": 25237, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002604", - "question_id": 25238, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005510", - "question_id": 25239, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003028", - "question_id": 25241, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002977", - "question_id": 25242, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006457", - "question_id": 25243, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00000810", - "question_id": 25248, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004550", - "question_id": 25249, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004167", - "question_id": 25250, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008658", - "question_id": 25251, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004426", - "question_id": 25254, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008704", - "question_id": 25255, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002396", - "question_id": 25258, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00006851", - "question_id": 25259, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005888", - "question_id": 25261, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006577", - "question_id": 25262, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002078", - "question_id": 25264, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005043", - "question_id": 25265, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004476", - "question_id": 25267, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007692", - "question_id": 25269, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007841", - "question_id": 25270, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006744", - "question_id": 25271, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001047", - "question_id": 25272, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006714", - "question_id": 25274, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008098", - "question_id": 25275, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004150", - "question_id": 25276, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000073", - "question_id": 25277, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00000144", - "question_id": 25278, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008860", - "question_id": 25280, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003540", - "question_id": 25283, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001139", - "question_id": 25284, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00007515", - "question_id": 25288, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004573", - "question_id": 25289, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002445", - "question_id": 25290, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001723", - "question_id": 25291, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00006594", - "question_id": 25294, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00001255", - "question_id": 25295, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000713", - "question_id": 25296, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001587", - "question_id": 25297, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001409", - "question_id": 25298, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008571", - "question_id": 25299, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006017", - "question_id": 25300, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005396", - "question_id": 25301, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000749", - "question_id": 25302, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007994", - "question_id": 25303, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005539", - "question_id": 25304, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00002109", - "question_id": 25305, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007393", - "question_id": 25306, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002997", - "question_id": 25307, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002346", - "question_id": 25308, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002403", - "question_id": 25311, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00001448", - "question_id": 25312, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002525", - "question_id": 25315, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005915", - "question_id": 25317, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006439", - "question_id": 25320, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000480", - "question_id": 25321, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00003243", - "question_id": 25322, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"drum\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000590", - "question_id": 25323, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005989", - "question_id": 25324, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004654", - "question_id": 25325, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008173", - "question_id": 25328, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007801", - "question_id": 25329, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008325", - "question_id": 25330, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006067", - "question_id": 25331, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00008098", - "question_id": 25334, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001281", - "question_id": 25336, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006557", - "question_id": 25338, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002203", - "question_id": 25340, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005268", - "question_id": 25341, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001638", - "question_id": 25342, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007063", - "question_id": 25343, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00006056", - "question_id": 25344, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004798", - "question_id": 25346, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002759", - "question_id": 25351, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00003444", - "question_id": 25352, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003966", - "question_id": 25355, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004343", - "question_id": 25356, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002427", - "question_id": 25357, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001160", - "question_id": 25359, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008811", - "question_id": 25360, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006644", - "question_id": 25361, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006419", - "question_id": 25364, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000707", - "question_id": 25366, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001805", - "question_id": 25367, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003662", - "question_id": 25369, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002801", - "question_id": 25370, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004391", - "question_id": 25372, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006218", - "question_id": 25374, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00005433", - "question_id": 25378, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000146", - "question_id": 25379, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008610", - "question_id": 25380, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002982", - "question_id": 25381, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007482", - "question_id": 25382, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006483", - "question_id": 25383, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002592", - "question_id": 25384, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00004392", - "question_id": 25386, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00001740", - "question_id": 25387, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005123", - "question_id": 25388, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00003411", - "question_id": 25390, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002324", - "question_id": 25392, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003427", - "question_id": 25393, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007786", - "question_id": 25395, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008445", - "question_id": 25397, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006153", - "question_id": 25400, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00003826", - "question_id": 25401, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002142", - "question_id": 25402, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006039", - "question_id": 25404, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002651", - "question_id": 25405, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005232", - "question_id": 25406, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003316", - "question_id": 25408, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001658", - "question_id": 25409, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000017", - "question_id": 25410, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000609", - "question_id": 25411, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007210", - "question_id": 25412, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002074", - "question_id": 25414, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00002722", - "question_id": 25416, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003548", - "question_id": 25419, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004142", - "question_id": 25420, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004933", - "question_id": 25421, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002220", - "question_id": 25422, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006814", - "question_id": 25424, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006673", - "question_id": 25425, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003771", - "question_id": 25426, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004873", - "question_id": 25427, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006036", - "question_id": 25429, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000654", - "question_id": 25431, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00002212", - "question_id": 25432, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005128", - "question_id": 25435, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008133", - "question_id": 25438, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008759", - "question_id": 25439, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004408", - "question_id": 25440, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00001858", - "question_id": 25442, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003322", - "question_id": 25443, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007351", - "question_id": 25444, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006646", - "question_id": 25448, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006302", - "question_id": 25450, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001946", - "question_id": 25455, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007476", - "question_id": 25458, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003660", - "question_id": 25460, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005195", - "question_id": 25461, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00003282", - "question_id": 25464, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000431", - "question_id": 25466, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005521", - "question_id": 25467, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00000521", - "question_id": 25468, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00008121", - "question_id": 25469, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003514", - "question_id": 25470, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003083", - "question_id": 25474, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007343", - "question_id": 25476, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008559", - "question_id": 25478, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00003424", - "question_id": 25479, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004156", - "question_id": 25480, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000246", - "question_id": 25481, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000866", - "question_id": 25483, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006786", - "question_id": 25484, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004956", - "question_id": 25485, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005558", - "question_id": 25486, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004652", - "question_id": 25488, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003605", - "question_id": 25490, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006628", - "question_id": 25491, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008325", - "question_id": 25493, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001802", - "question_id": 25495, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006490", - "question_id": 25496, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007493", - "question_id": 25497, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003588", - "question_id": 25498, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008756", - "question_id": 25499, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004177", - "question_id": 25500, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002169", - "question_id": 25501, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006415", - "question_id": 25502, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007545", - "question_id": 25504, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007222", - "question_id": 25506, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004980", - "question_id": 25507, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00001022", - "question_id": 25508, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005717", - "question_id": 25510, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006446", - "question_id": 25511, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004407", - "question_id": 25512, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004199", - "question_id": 25516, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007414", - "question_id": 25517, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005239", - "question_id": 25518, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007896", - "question_id": 25520, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006904", - "question_id": 25521, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001465", - "question_id": 25523, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005767", - "question_id": 25524, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001919", - "question_id": 25526, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00006707", - "question_id": 25528, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006377", - "question_id": 25530, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003689", - "question_id": 25532, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006407", - "question_id": 25533, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005698", - "question_id": 25534, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000654", - "question_id": 25535, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00001330", - "question_id": 25537, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006553", - "question_id": 25538, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002885", - "question_id": 25540, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004885", - "question_id": 25541, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008837", - "question_id": 25543, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003981", - "question_id": 25545, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00003920", - "question_id": 25546, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00003761", - "question_id": 25547, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008859", - "question_id": 25548, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008289", - "question_id": 25549, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004647", - "question_id": 25550, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007965", - "question_id": 25551, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000534", - "question_id": 25552, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008316", - "question_id": 25553, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004796", - "question_id": 25555, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005479", - "question_id": 25556, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005543", - "question_id": 25557, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002336", - "question_id": 25558, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004295", - "question_id": 25559, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002519", - "question_id": 25563, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008013", - "question_id": 25564, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007702", - "question_id": 25565, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008643", - "question_id": 25566, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005080", - "question_id": 25567, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007470", - "question_id": 25568, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001480", - "question_id": 25570, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00000139", - "question_id": 25571, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003974", - "question_id": 25572, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002712", - "question_id": 25575, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000924", - "question_id": 25577, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002515", - "question_id": 25579, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006356", - "question_id": 25581, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006844", - "question_id": 25583, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006511", - "question_id": 25584, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00002384", - "question_id": 25585, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00001161", - "question_id": 25586, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00001735", - "question_id": 25588, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003154", - "question_id": 25589, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00007753", - "question_id": 25590, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000544", - "question_id": 25591, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000725", - "question_id": 25592, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004088", - "question_id": 25594, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001641", - "question_id": 25599, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003744", - "question_id": 25603, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004376", - "question_id": 25604, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004197", - "question_id": 25605, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006045", - "question_id": 25608, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004680", - "question_id": 25610, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00004039", - "question_id": 25611, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002729", - "question_id": 25612, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008384", - "question_id": 25614, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008188", - "question_id": 25615, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008947", - "question_id": 25616, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005366", - "question_id": 25617, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007745", - "question_id": 25618, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00005338", - "question_id": 25619, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003005", - "question_id": 25620, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006734", - "question_id": 25621, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004517", - "question_id": 25622, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001135", - "question_id": 25623, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004286", - "question_id": 25624, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004748", - "question_id": 25625, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005637", - "question_id": 25627, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002757", - "question_id": 25628, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000786", - "question_id": 25629, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003792", - "question_id": 25630, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004937", - "question_id": 25631, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004364", - "question_id": 25632, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005094", - "question_id": 25634, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001038", - "question_id": 25635, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005447", - "question_id": 25636, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008939", - "question_id": 25637, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004195", - "question_id": 25638, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001298", - "question_id": 25639, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004755", - "question_id": 25640, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000954", - "question_id": 25642, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004654", - "question_id": 25643, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007092", - "question_id": 25644, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007000", - "question_id": 25646, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00004406", - "question_id": 25647, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001268", - "question_id": 25648, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007104", - "question_id": 25649, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005883", - "question_id": 25650, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004336", - "question_id": 25651, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005057", - "question_id": 25652, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004260", - "question_id": 25653, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002680", - "question_id": 25655, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006777", - "question_id": 25657, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003171", - "question_id": 25658, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002454", - "question_id": 25659, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000053", - "question_id": 25660, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002124", - "question_id": 25661, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004209", - "question_id": 25663, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007478", - "question_id": 25664, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000622", - "question_id": 25665, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008790", - "question_id": 25667, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003142", - "question_id": 25668, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005071", - "question_id": 25669, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007401", - "question_id": 25671, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006394", - "question_id": 25672, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00002410", - "question_id": 25674, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004235", - "question_id": 25675, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004235", - "question_id": 25677, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002706", - "question_id": 25678, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002957", - "question_id": 25679, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004853", - "question_id": 25680, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00005844", - "question_id": 25681, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002538", - "question_id": 25683, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00002836", - "question_id": 25685, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002210", - "question_id": 25686, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006839", - "question_id": 25687, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00007707", - "question_id": 25688, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00008555", - "question_id": 25689, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006165", - "question_id": 25690, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00002562", - "question_id": 25691, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006634", - "question_id": 25692, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004253", - "question_id": 25693, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007532", - "question_id": 25694, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000276", - "question_id": 25696, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006434", - "question_id": 25698, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003179", - "question_id": 25699, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003826", - "question_id": 25701, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005133", - "question_id": 25703, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001709", - "question_id": 25705, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000160", - "question_id": 25707, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004383", - "question_id": 25708, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000316", - "question_id": 25709, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005063", - "question_id": 25710, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003578", - "question_id": 25712, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007342", - "question_id": 25713, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005761", - "question_id": 25714, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005930", - "question_id": 25715, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000111", - "question_id": 25717, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001079", - "question_id": 25718, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00006969", - "question_id": 25719, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003180", - "question_id": 25720, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002022", - "question_id": 25721, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00005069", - "question_id": 25723, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007911", - "question_id": 25724, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000080", - "question_id": 25726, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007489", - "question_id": 25727, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003619", - "question_id": 25728, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004522", - "question_id": 25730, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002758", - "question_id": 25731, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00007372", - "question_id": 25732, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000899", - "question_id": 25733, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008819", - "question_id": 25734, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006347", - "question_id": 25736, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002986", - "question_id": 25741, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00002954", - "question_id": 25742, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001428", - "question_id": 25743, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006355", - "question_id": 25744, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005648", - "question_id": 25747, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003750", - "question_id": 25748, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006784", - "question_id": 25750, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003506", - "question_id": 25751, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"congas\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006518", - "question_id": 25752, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005606", - "question_id": 25753, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00003726", - "question_id": 25755, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003656", - "question_id": 25757, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008557", - "question_id": 25758, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00007679", - "question_id": 25759, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001908", - "question_id": 25760, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003551", - "question_id": 25761, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004315", - "question_id": 25762, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008883", - "question_id": 25764, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00007011", - "question_id": 25766, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007275", - "question_id": 25767, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004390", - "question_id": 25768, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003587", - "question_id": 25769, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007115", - "question_id": 25770, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001682", - "question_id": 25771, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005824", - "question_id": 25772, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000893", - "question_id": 25773, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000536", - "question_id": 25774, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006433", - "question_id": 25775, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006433", - "question_id": 25775, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000519", - "question_id": 25777, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00001133", - "question_id": 25778, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00001737", - "question_id": 25779, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004612", - "question_id": 25780, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007466", - "question_id": 25781, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006573", - "question_id": 25782, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003195", - "question_id": 25783, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00001593", - "question_id": 25785, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005323", - "question_id": 25786, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006363", - "question_id": 25787, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005150", - "question_id": 25788, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003470", - "question_id": 25790, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00003769", - "question_id": 25791, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005150", - "question_id": 25792, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002646", - "question_id": 25793, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001989", - "question_id": 25796, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006453", - "question_id": 25797, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007152", - "question_id": 25799, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00008902", - "question_id": 25800, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000936", - "question_id": 25802, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001941", - "question_id": 25804, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00005820", - "question_id": 25805, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003430", - "question_id": 25806, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003339", - "question_id": 25807, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004437", - "question_id": 25808, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000021", - "question_id": 25809, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00001591", - "question_id": 25810, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"xylophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005919", - "question_id": 25812, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00004442", - "question_id": 25814, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006478", - "question_id": 25815, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008581", - "question_id": 25817, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008712", - "question_id": 25819, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003060", - "question_id": 25821, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004711", - "question_id": 25822, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"accordion\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003332", - "question_id": 25823, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005306", - "question_id": 25824, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003846", - "question_id": 25825, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004890", - "question_id": 25827, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001354", - "question_id": 25828, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002481", - "question_id": 25829, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006559", - "question_id": 25830, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007715", - "question_id": 25831, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000474", - "question_id": 25832, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000826", - "question_id": 25836, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002080", - "question_id": 25838, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00005744", - "question_id": 25839, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00003777", - "question_id": 25840, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007546", - "question_id": 25841, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006048", - "question_id": 25842, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006328", - "question_id": 25844, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004108", - "question_id": 25845, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008062", - "question_id": 25846, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006663", - "question_id": 25848, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008930", - "question_id": 25849, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007591", - "question_id": 25850, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00000214", - "question_id": 25851, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00002016", - "question_id": 25852, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002553", - "question_id": 25853, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000909", - "question_id": 25854, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008426", - "question_id": 25855, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000263", - "question_id": 25856, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005961", - "question_id": 25857, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001721", - "question_id": 25859, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002534", - "question_id": 25860, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00005139", - "question_id": 25861, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006913", - "question_id": 25862, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00008408", - "question_id": 25864, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003996", - "question_id": 25867, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004585", - "question_id": 25869, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00008240", - "question_id": 25872, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002466", - "question_id": 25873, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00008472", - "question_id": 25874, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005609", - "question_id": 25875, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002844", - "question_id": 25876, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002922", - "question_id": 25879, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005288", - "question_id": 25880, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00007278", - "question_id": 25881, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006067", - "question_id": 25882, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"congas\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000644", - "question_id": 25883, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007381", - "question_id": 25885, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002465", - "question_id": 25887, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008729", - "question_id": 25888, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006267", - "question_id": 25890, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007650", - "question_id": 25892, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003711", - "question_id": 25893, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002119", - "question_id": 25894, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00006018", - "question_id": 25895, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001566", - "question_id": 25896, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007377", - "question_id": 25897, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"congas\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001407", - "question_id": 25900, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002087", - "question_id": 25901, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006657", - "question_id": 25902, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002580", - "question_id": 25905, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001761", - "question_id": 25906, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001801", - "question_id": 25907, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004065", - "question_id": 25909, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"suona\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001680", - "question_id": 25912, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008670", - "question_id": 25915, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001809", - "question_id": 25916, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008820", - "question_id": 25917, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004291", - "question_id": 25919, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001706", - "question_id": 25921, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00004988", - "question_id": 25924, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002191", - "question_id": 25925, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005632", - "question_id": 25928, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006072", - "question_id": 25929, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008846", - "question_id": 25931, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000182", - "question_id": 25932, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001414", - "question_id": 25933, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000741", - "question_id": 25934, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005406", - "question_id": 25935, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006470", - "question_id": 25937, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000046", - "question_id": 25938, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008887", - "question_id": 25940, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00008887", - "question_id": 25940, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005901", - "question_id": 25942, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008706", - "question_id": 25943, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005188", - "question_id": 25944, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007327", - "question_id": 25945, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005384", - "question_id": 25946, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008027", - "question_id": 25948, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007586", - "question_id": 25950, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003713", - "question_id": 25951, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001837", - "question_id": 25953, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00005300", - "question_id": 25954, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004636", - "question_id": 25955, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006170", - "question_id": 25956, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006789", - "question_id": 25958, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003606", - "question_id": 25959, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007926", - "question_id": 25961, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007051", - "question_id": 25963, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00000560", - "question_id": 25964, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004791", - "question_id": 25965, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002673", - "question_id": 25968, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003422", - "question_id": 25969, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002272", - "question_id": 25970, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001381", - "question_id": 25971, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001865", - "question_id": 25972, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004790", - "question_id": 25973, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001717", - "question_id": 25974, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004340", - "question_id": 25975, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00008021", - "question_id": 25976, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008257", - "question_id": 25978, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008063", - "question_id": 25979, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001141", - "question_id": 25980, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00000117", - "question_id": 25981, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006297", - "question_id": 25982, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007378", - "question_id": 25984, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002422", - "question_id": 25988, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002514", - "question_id": 25989, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002500", - "question_id": 25990, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005956", - "question_id": 25991, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001376", - "question_id": 25992, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00003320", - "question_id": 25993, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001931", - "question_id": 25994, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006025", - "question_id": 25995, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005927", - "question_id": 25996, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00004696", - "question_id": 25998, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000462", - "question_id": 26000, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006139", - "question_id": 26003, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006460", - "question_id": 26005, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002344", - "question_id": 26006, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004447", - "question_id": 26008, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004952", - "question_id": 26009, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00006873", - "question_id": 26010, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001075", - "question_id": 26011, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004934", - "question_id": 26012, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007733", - "question_id": 26013, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005982", - "question_id": 26014, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006853", - "question_id": 26015, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008887", - "question_id": 26016, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007763", - "question_id": 26017, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003596", - "question_id": 26019, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00004635", - "question_id": 26021, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008819", - "question_id": 26022, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003572", - "question_id": 26023, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00008391", - "question_id": 26024, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000254", - "question_id": 26025, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005296", - "question_id": 26027, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005071", - "question_id": 26030, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000124", - "question_id": 26031, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005390", - "question_id": 26032, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004823", - "question_id": 26034, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007384", - "question_id": 26037, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002066", - "question_id": 26038, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008874", - "question_id": 26041, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005286", - "question_id": 26042, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001522", - "question_id": 26043, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001694", - "question_id": 26044, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00000964", - "question_id": 26045, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003901", - "question_id": 26046, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006716", - "question_id": 26048, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006013", - "question_id": 26049, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002799", - "question_id": 26050, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000457", - "question_id": 26052, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002918", - "question_id": 26054, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005794", - "question_id": 26058, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008847", - "question_id": 26060, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008625", - "question_id": 26062, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001600", - "question_id": 26063, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007023", - "question_id": 26064, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001957", - "question_id": 26066, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004361", - "question_id": 26070, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000699", - "question_id": 26071, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00006290", - "question_id": 26073, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000628", - "question_id": 26074, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004310", - "question_id": 26076, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000056", - "question_id": 26077, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002348", - "question_id": 26078, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00001643", - "question_id": 26080, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005457", - "question_id": 26081, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002805", - "question_id": 26082, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000934", - "question_id": 26083, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001950", - "question_id": 26086, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001140", - "question_id": 26087, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003390", - "question_id": 26088, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001456", - "question_id": 26090, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00004071", - "question_id": 26092, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003085", - "question_id": 26093, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002729", - "question_id": 26094, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003684", - "question_id": 26095, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006603", - "question_id": 26096, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00000769", - "question_id": 26097, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002856", - "question_id": 26098, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00002024", - "question_id": 26099, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008359", - "question_id": 26101, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006016", - "question_id": 26102, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006460", - "question_id": 26104, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00004892", - "question_id": 26105, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008662", - "question_id": 26106, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003762", - "question_id": 26109, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005525", - "question_id": 26110, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002903", - "question_id": 26111, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000432", - "question_id": 26112, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005009", - "question_id": 26113, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001114", - "question_id": 26115, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006850", - "question_id": 26116, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002173", - "question_id": 26119, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005062", - "question_id": 26121, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008184", - "question_id": 26122, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006407", - "question_id": 26123, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008656", - "question_id": 26125, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008896", - "question_id": 26128, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001002", - "question_id": 26131, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00005954", - "question_id": 26133, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008307", - "question_id": 26134, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007850", - "question_id": 26135, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008762", - "question_id": 26136, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000030", - "question_id": 26137, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00002562", - "question_id": 26140, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004306", - "question_id": 26141, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005559", - "question_id": 26143, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007681", - "question_id": 26144, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003265", - "question_id": 26147, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"trumpet\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008051", - "question_id": 26149, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000857", - "question_id": 26151, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00006666", - "question_id": 26152, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00006730", - "question_id": 26153, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00008818", - "question_id": 26155, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003716", - "question_id": 26156, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008378", - "question_id": 26159, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"xylophone\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001801", - "question_id": 26160, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002259", - "question_id": 26161, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008867", - "question_id": 26162, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00002568", - "question_id": 26163, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000635", - "question_id": 26164, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002443", - "question_id": 26165, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00005749", - "question_id": 26166, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003205", - "question_id": 26168, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00006570", - "question_id": 26169, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002891", - "question_id": 26171, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005401", - "question_id": 26172, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007220", - "question_id": 26173, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001203", - "question_id": 26174, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005195", - "question_id": 26175, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006419", - "question_id": 26177, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008103", - "question_id": 26178, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006148", - "question_id": 26179, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004139", - "question_id": 26180, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002016", - "question_id": 26181, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007261", - "question_id": 26182, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"piano\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008618", - "question_id": 26183, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004517", - "question_id": 26189, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001759", - "question_id": 26190, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001479", - "question_id": 26192, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00007211", - "question_id": 26193, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005587", - "question_id": 26195, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005760", - "question_id": 26196, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00002458", - "question_id": 26197, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002349", - "question_id": 26198, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006124", - "question_id": 26200, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000619", - "question_id": 26201, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00006579", - "question_id": 26202, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002415", - "question_id": 26205, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004402", - "question_id": 26206, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005633", - "question_id": 26207, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004339", - "question_id": 26208, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00000660", - "question_id": 26210, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002939", - "question_id": 26211, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004850", - "question_id": 26212, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000132", - "question_id": 26213, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008217", - "question_id": 26214, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006872", - "question_id": 26216, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005622", - "question_id": 26217, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006801", - "question_id": 26218, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006024", - "question_id": 26221, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008861", - "question_id": 26222, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00008048", - "question_id": 26223, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004267", - "question_id": 26224, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000384", - "question_id": 26225, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005773", - "question_id": 26226, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007001", - "question_id": 26228, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00003038", - "question_id": 26230, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007239", - "question_id": 26231, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00008801", - "question_id": 26232, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005038", - "question_id": 26233, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008022", - "question_id": 26234, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008153", - "question_id": 26235, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00005313", - "question_id": 26238, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004456", - "question_id": 26240, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004881", - "question_id": 26241, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002065", - "question_id": 26242, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008288", - "question_id": 26243, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001017", - "question_id": 26244, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00001283", - "question_id": 26245, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004502", - "question_id": 26247, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005587", - "question_id": 26249, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007115", - "question_id": 26250, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001249", - "question_id": 26251, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007738", - "question_id": 26253, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003636", - "question_id": 26256, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004704", - "question_id": 26257, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00006650", - "question_id": 26258, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008806", - "question_id": 26262, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003633", - "question_id": 26263, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000340", - "question_id": 26264, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007766", - "question_id": 26268, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003892", - "question_id": 26270, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006702", - "question_id": 26271, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007379", - "question_id": 26272, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00007221", - "question_id": 26273, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006562", - "question_id": 26275, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007856", - "question_id": 26276, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006963", - "question_id": 26277, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00003905", - "question_id": 26278, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008941", - "question_id": 26283, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00008146", - "question_id": 26284, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000021", - "question_id": 26285, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006137", - "question_id": 26286, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002572", - "question_id": 26287, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003948", - "question_id": 26288, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004005", - "question_id": 26289, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002610", - "question_id": 26290, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00003252", - "question_id": 26292, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000026", - "question_id": 26293, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007514", - "question_id": 26294, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000846", - "question_id": 26295, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004679", - "question_id": 26296, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007971", - "question_id": 26297, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002389", - "question_id": 26298, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00003649", - "question_id": 26299, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004228", - "question_id": 26302, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005482", - "question_id": 26303, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008605", - "question_id": 26304, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006175", - "question_id": 26305, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002243", - "question_id": 26307, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002243", - "question_id": 26307, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004763", - "question_id": 26312, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003642", - "question_id": 26313, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008721", - "question_id": 26315, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00001061", - "question_id": 26316, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006182", - "question_id": 26317, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000228", - "question_id": 26318, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007086", - "question_id": 26319, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005317", - "question_id": 26320, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00003360", - "question_id": 26321, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002002", - "question_id": 26322, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008007", - "question_id": 26326, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007515", - "question_id": 26327, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00008958", - "question_id": 26328, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002449", - "question_id": 26336, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000814", - "question_id": 26339, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001673", - "question_id": 26343, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001998", - "question_id": 26345, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003339", - "question_id": 26346, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003869", - "question_id": 26347, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008063", - "question_id": 26349, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002115", - "question_id": 26350, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001867", - "question_id": 26351, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000182", - "question_id": 26352, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007261", - "question_id": 26354, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008484", - "question_id": 26355, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003837", - "question_id": 26359, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006342", - "question_id": 26360, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005261", - "question_id": 26361, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004027", - "question_id": 26362, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007772", - "question_id": 26364, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00006116", - "question_id": 26366, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008924", - "question_id": 26367, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00000366", - "question_id": 26368, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000007", - "question_id": 26370, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001972", - "question_id": 26371, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004224", - "question_id": 26372, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008525", - "question_id": 26373, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001386", - "question_id": 26374, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002582", - "question_id": 26375, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001111", - "question_id": 26376, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006085", - "question_id": 26383, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006507", - "question_id": 26385, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007486", - "question_id": 26386, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005205", - "question_id": 26388, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000878", - "question_id": 26389, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001992", - "question_id": 26391, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00001701", - "question_id": 26393, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00002172", - "question_id": 26396, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002614", - "question_id": 26397, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001612", - "question_id": 26398, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00005451", - "question_id": 26399, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006055", - "question_id": 26401, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005316", - "question_id": 26403, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00003487", - "question_id": 26405, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001580", - "question_id": 26406, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004836", - "question_id": 26407, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000665", - "question_id": 26408, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003170", - "question_id": 26409, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00007189", - "question_id": 26410, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007000", - "question_id": 26411, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001088", - "question_id": 26413, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008415", - "question_id": 26414, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005524", - "question_id": 26418, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00005844", - "question_id": 26421, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003591", - "question_id": 26422, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003028", - "question_id": 26424, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bagpipe\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004633", - "question_id": 26425, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004523", - "question_id": 26428, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005735", - "question_id": 26429, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002347", - "question_id": 26433, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000734", - "question_id": 26434, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001704", - "question_id": 26438, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005456", - "question_id": 26439, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008974", - "question_id": 26441, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006271", - "question_id": 26442, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005628", - "question_id": 26443, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003821", - "question_id": 26444, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008670", - "question_id": 26445, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005624", - "question_id": 26449, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001682", - "question_id": 26450, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008102", - "question_id": 26451, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004050", - "question_id": 26452, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003729", - "question_id": 26454, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004376", - "question_id": 26455, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004487", - "question_id": 26457, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00001887", - "question_id": 26458, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003275", - "question_id": 26459, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004117", - "question_id": 26460, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005675", - "question_id": 26462, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002307", - "question_id": 26463, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001995", - "question_id": 26464, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004795", - "question_id": 26466, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001706", - "question_id": 26468, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004856", - "question_id": 26469, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008821", - "question_id": 26471, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006361", - "question_id": 26472, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005566", - "question_id": 26473, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007897", - "question_id": 26474, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003228", - "question_id": 26475, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003010", - "question_id": 26477, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008225", - "question_id": 26479, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008031", - "question_id": 26483, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008409", - "question_id": 26485, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00003122", - "question_id": 26486, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006209", - "question_id": 26490, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000035", - "question_id": 26491, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007261", - "question_id": 26492, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006121", - "question_id": 26493, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003843", - "question_id": 26494, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001088", - "question_id": 26495, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008634", - "question_id": 26496, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00002201", - "question_id": 26498, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008121", - "question_id": 26500, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000814", - "question_id": 26501, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004560", - "question_id": 26503, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004072", - "question_id": 26505, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001882", - "question_id": 26507, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003546", - "question_id": 26508, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001404", - "question_id": 26509, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00005532", - "question_id": 26510, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008418", - "question_id": 26512, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002747", - "question_id": 26513, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000260", - "question_id": 26514, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008443", - "question_id": 26516, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002374", - "question_id": 26517, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00004761", - "question_id": 26518, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007113", - "question_id": 26519, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000903", - "question_id": 26520, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005678", - "question_id": 26521, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003931", - "question_id": 26523, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002043", - "question_id": 26526, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008529", - "question_id": 26528, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00000382", - "question_id": 26529, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007626", - "question_id": 26530, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006384", - "question_id": 26531, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005809", - "question_id": 26532, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004435", - "question_id": 26534, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005354", - "question_id": 26536, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005026", - "question_id": 26537, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001399", - "question_id": 26538, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00007229", - "question_id": 26539, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003202", - "question_id": 26540, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004838", - "question_id": 26541, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007792", - "question_id": 26542, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008678", - "question_id": 26543, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007044", - "question_id": 26544, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00008035", - "question_id": 26545, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004094", - "question_id": 26546, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001519", - "question_id": 26547, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006121", - "question_id": 26548, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004253", - "question_id": 26552, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001802", - "question_id": 26553, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001084", - "question_id": 26555, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00005252", - "question_id": 26557, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008481", - "question_id": 26558, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003850", - "question_id": 26559, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001262", - "question_id": 26560, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005930", - "question_id": 26561, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003567", - "question_id": 26562, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004176", - "question_id": 26564, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008076", - "question_id": 26565, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00002194", - "question_id": 26568, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002306", - "question_id": 26569, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00000128", - "question_id": 26570, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008597", - "question_id": 26571, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008881", - "question_id": 26573, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008290", - "question_id": 26574, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000925", - "question_id": 26575, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00005006", - "question_id": 26576, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003672", - "question_id": 26577, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002949", - "question_id": 26578, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002132", - "question_id": 26579, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004358", - "question_id": 26580, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006184", - "question_id": 26582, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005689", - "question_id": 26583, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00002462", - "question_id": 26584, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"drum\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003660", - "question_id": 26585, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006716", - "question_id": 26586, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005430", - "question_id": 26587, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001896", - "question_id": 26588, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006895", - "question_id": 26589, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005354", - "question_id": 26591, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003328", - "question_id": 26592, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004508", - "question_id": 26593, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000918", - "question_id": 26594, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007150", - "question_id": 26595, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007826", - "question_id": 26597, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005105", - "question_id": 26598, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005608", - "question_id": 26599, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002904", - "question_id": 26600, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002839", - "question_id": 26602, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00000880", - "question_id": 26604, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000023", - "question_id": 26605, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000526", - "question_id": 26606, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005237", - "question_id": 26608, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005090", - "question_id": 26610, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001652", - "question_id": 26612, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005126", - "question_id": 26614, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007791", - "question_id": 26616, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00000998", - "question_id": 26618, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005692", - "question_id": 26619, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005209", - "question_id": 26620, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003526", - "question_id": 26622, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004651", - "question_id": 26625, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005638", - "question_id": 26626, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00002898", - "question_id": 26627, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002784", - "question_id": 26629, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001791", - "question_id": 26631, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00005149", - "question_id": 26632, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000634", - "question_id": 26633, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00000005", - "question_id": 26634, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005018", - "question_id": 26635, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00008458", - "question_id": 26637, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002412", - "question_id": 26640, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00000973", - "question_id": 26641, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004659", - "question_id": 26643, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006622", - "question_id": 26645, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003139", - "question_id": 26647, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000134", - "question_id": 26648, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002277", - "question_id": 26649, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001739", - "question_id": 26651, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007953", - "question_id": 26653, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001916", - "question_id": 26654, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00006379", - "question_id": 26655, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004913", - "question_id": 26656, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00004853", - "question_id": 26658, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006628", - "question_id": 26660, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004064", - "question_id": 26662, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005011", - "question_id": 26664, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001341", - "question_id": 26666, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003580", - "question_id": 26668, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005811", - "question_id": 26670, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007992", - "question_id": 26671, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004458", - "question_id": 26672, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001874", - "question_id": 26673, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008386", - "question_id": 26674, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005998", - "question_id": 26675, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001953", - "question_id": 26676, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000075", - "question_id": 26677, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"pipa\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006349", - "question_id": 26678, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005386", - "question_id": 26679, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004676", - "question_id": 26680, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00005977", - "question_id": 26681, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005999", - "question_id": 26682, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001492", - "question_id": 26684, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005769", - "question_id": 26685, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000701", - "question_id": 26687, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005371", - "question_id": 26688, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008591", - "question_id": 26689, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001928", - "question_id": 26690, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004504", - "question_id": 26691, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004115", - "question_id": 26692, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004065", - "question_id": 26694, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006185", - "question_id": 26695, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00005956", - "question_id": 26696, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000141", - "question_id": 26697, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008530", - "question_id": 26698, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000443", - "question_id": 26699, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006974", - "question_id": 26700, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004185", - "question_id": 26702, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003866", - "question_id": 26703, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007444", - "question_id": 26704, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006230", - "question_id": 26706, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006441", - "question_id": 26707, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"trumpet\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006943", - "question_id": 26708, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005652", - "question_id": 26709, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"xylophone\", \"middle\", \"xylophone\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005652", - "question_id": 26709, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"xylophone\", \"middle\", \"xylophone\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005482", - "question_id": 26710, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007346", - "question_id": 26711, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008793", - "question_id": 26712, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00006005", - "question_id": 26713, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005898", - "question_id": 26714, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002926", - "question_id": 26716, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003202", - "question_id": 26717, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008408", - "question_id": 26718, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007300", - "question_id": 26719, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002186", - "question_id": 26720, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005064", - "question_id": 26722, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00000273", - "question_id": 26723, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002307", - "question_id": 26724, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004263", - "question_id": 26728, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004864", - "question_id": 26729, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002636", - "question_id": 26731, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003783", - "question_id": 26735, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008509", - "question_id": 26738, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008149", - "question_id": 26739, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003261", - "question_id": 26741, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002347", - "question_id": 26743, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007359", - "question_id": 26744, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005120", - "question_id": 26745, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007146", - "question_id": 26746, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000706", - "question_id": 26747, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000049", - "question_id": 26748, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005536", - "question_id": 26750, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008310", - "question_id": 26751, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004358", - "question_id": 26752, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000951", - "question_id": 26754, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008838", - "question_id": 26755, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003751", - "question_id": 26756, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00006265", - "question_id": 26757, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001574", - "question_id": 26758, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006499", - "question_id": 26759, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001604", - "question_id": 26760, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007737", - "question_id": 26761, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004577", - "question_id": 26762, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006549", - "question_id": 26763, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008523", - "question_id": 26764, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001562", - "question_id": 26766, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007558", - "question_id": 26769, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008246", - "question_id": 26773, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008884", - "question_id": 26774, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000238", - "question_id": 26775, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000660", - "question_id": 26777, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001764", - "question_id": 26778, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00004359", - "question_id": 26779, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005783", - "question_id": 26782, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001804", - "question_id": 26783, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005918", - "question_id": 26784, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004158", - "question_id": 26785, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000959", - "question_id": 26788, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006662", - "question_id": 26789, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00002804", - "question_id": 26790, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002509", - "question_id": 26791, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000716", - "question_id": 26792, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00002877", - "question_id": 26793, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003927", - "question_id": 26794, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005803", - "question_id": 26795, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"congas\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000574", - "question_id": 26796, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00005941", - "question_id": 26797, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005276", - "question_id": 26798, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001493", - "question_id": 26799, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002253", - "question_id": 26801, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001485", - "question_id": 26802, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008886", - "question_id": 26804, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00008625", - "question_id": 26806, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005728", - "question_id": 26807, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004127", - "question_id": 26808, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00002272", - "question_id": 26809, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00003734", - "question_id": 26810, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006186", - "question_id": 26811, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008510", - "question_id": 26812, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008132", - "question_id": 26813, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001867", - "question_id": 26816, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004548", - "question_id": 26817, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006267", - "question_id": 26818, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002136", - "question_id": 26819, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00008657", - "question_id": 26821, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000624", - "question_id": 26822, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005100", - "question_id": 26823, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006729", - "question_id": 26825, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000339", - "question_id": 26827, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007868", - "question_id": 26828, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002658", - "question_id": 26829, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002177", - "question_id": 26830, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006682", - "question_id": 26831, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007689", - "question_id": 26834, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008518", - "question_id": 26836, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007820", - "question_id": 26837, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006308", - "question_id": 26841, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00002623", - "question_id": 26842, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004031", - "question_id": 26843, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007588", - "question_id": 26844, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007704", - "question_id": 26845, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001591", - "question_id": 26846, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008439", - "question_id": 26847, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007479", - "question_id": 26852, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007479", - "question_id": 26852, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000738", - "question_id": 26853, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008013", - "question_id": 26854, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001605", - "question_id": 26857, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002929", - "question_id": 26859, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006633", - "question_id": 26863, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000103", - "question_id": 26865, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008601", - "question_id": 26868, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008601", - "question_id": 26868, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003920", - "question_id": 26869, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002851", - "question_id": 26870, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001836", - "question_id": 26871, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001572", - "question_id": 26873, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001263", - "question_id": 26875, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008912", - "question_id": 26877, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006750", - "question_id": 26878, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00004891", - "question_id": 26879, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002828", - "question_id": 26880, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007080", - "question_id": 26881, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003858", - "question_id": 26882, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000832", - "question_id": 26883, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007649", - "question_id": 26884, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008218", - "question_id": 26885, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002148", - "question_id": 26886, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004741", - "question_id": 26887, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002055", - "question_id": 26889, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003117", - "question_id": 26890, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005604", - "question_id": 26891, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005424", - "question_id": 26892, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003848", - "question_id": 26894, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000207", - "question_id": 26895, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004152", - "question_id": 26896, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00006666", - "question_id": 26897, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000775", - "question_id": 26898, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004558", - "question_id": 26899, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001110", - "question_id": 26900, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002885", - "question_id": 26901, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005971", - "question_id": 26904, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007907", - "question_id": 26905, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004774", - "question_id": 26906, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008676", - "question_id": 26910, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001315", - "question_id": 26912, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007627", - "question_id": 26913, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005658", - "question_id": 26915, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008091", - "question_id": 26916, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007012", - "question_id": 26917, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008873", - "question_id": 26919, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002573", - "question_id": 26920, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004646", - "question_id": 26923, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008794", - "question_id": 26924, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008148", - "question_id": 26926, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002393", - "question_id": 26927, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007738", - "question_id": 26928, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000938", - "question_id": 26929, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001097", - "question_id": 26930, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000163", - "question_id": 26932, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004734", - "question_id": 26934, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003043", - "question_id": 26935, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003468", - "question_id": 26937, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004690", - "question_id": 26938, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004854", - "question_id": 26940, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007852", - "question_id": 26941, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005614", - "question_id": 26942, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001613", - "question_id": 26943, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006003", - "question_id": 26944, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002828", - "question_id": 26946, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008071", - "question_id": 26947, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004368", - "question_id": 26948, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002138", - "question_id": 26949, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007830", - "question_id": 26950, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004340", - "question_id": 26951, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00007385", - "question_id": 26953, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004974", - "question_id": 26954, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007637", - "question_id": 26955, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003753", - "question_id": 26956, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004494", - "question_id": 26957, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008346", - "question_id": 26958, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008346", - "question_id": 26958, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000800", - "question_id": 26960, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007586", - "question_id": 26964, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007857", - "question_id": 26965, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"right\", \"erhu\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003405", - "question_id": 26966, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00004505", - "question_id": 26968, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00008568", - "question_id": 26969, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000407", - "question_id": 26971, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007273", - "question_id": 26972, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002467", - "question_id": 26974, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001759", - "question_id": 26977, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002358", - "question_id": 26978, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00005277", - "question_id": 26979, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003711", - "question_id": 26980, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007985", - "question_id": 26981, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006490", - "question_id": 26982, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00005400", - "question_id": 26983, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000504", - "question_id": 26984, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003865", - "question_id": 26985, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005431", - "question_id": 26986, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002402", - "question_id": 26988, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002513", - "question_id": 26989, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00001221", - "question_id": 26992, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000795", - "question_id": 26993, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005575", - "question_id": 26994, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00003807", - "question_id": 26995, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000413", - "question_id": 26999, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008728", - "question_id": 27000, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00001505", - "question_id": 27002, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003165", - "question_id": 27003, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000053", - "question_id": 27004, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005718", - "question_id": 27005, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006182", - "question_id": 27006, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"electric_bass\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005896", - "question_id": 27007, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004514", - "question_id": 27008, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004203", - "question_id": 27009, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006832", - "question_id": 27010, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"xylophone\", \"left\", \"guzheng\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008612", - "question_id": 27012, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000094", - "question_id": 27013, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001803", - "question_id": 27014, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001329", - "question_id": 27016, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008453", - "question_id": 27018, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005131", - "question_id": 27019, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004730", - "question_id": 27020, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006678", - "question_id": 27024, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005418", - "question_id": 27026, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002976", - "question_id": 27027, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003415", - "question_id": 27029, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003911", - "question_id": 27031, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004527", - "question_id": 27032, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007805", - "question_id": 27033, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003468", - "question_id": 27034, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00005309", - "question_id": 27036, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006323", - "question_id": 27037, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005590", - "question_id": 27038, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004383", - "question_id": 27040, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000866", - "question_id": 27041, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008781", - "question_id": 27043, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000187", - "question_id": 27045, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002995", - "question_id": 27047, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003994", - "question_id": 27048, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001880", - "question_id": 27049, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007596", - "question_id": 27051, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004224", - "question_id": 27052, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003908", - "question_id": 27053, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008095", - "question_id": 27055, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005620", - "question_id": 27056, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005104", - "question_id": 27057, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007419", - "question_id": 27058, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00005158", - "question_id": 27059, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006801", - "question_id": 27060, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000641", - "question_id": 27061, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008861", - "question_id": 27062, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002132", - "question_id": 27065, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001709", - "question_id": 27066, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002666", - "question_id": 27067, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004278", - "question_id": 27071, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005288", - "question_id": 27072, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"xylophone\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007049", - "question_id": 27073, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002166", - "question_id": 27074, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005358", - "question_id": 27075, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005488", - "question_id": 27076, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008436", - "question_id": 27077, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006490", - "question_id": 27079, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003519", - "question_id": 27080, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006447", - "question_id": 27081, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002590", - "question_id": 27083, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00002496", - "question_id": 27085, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002496", - "question_id": 27085, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007214", - "question_id": 27086, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00005058", - "question_id": 27087, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002236", - "question_id": 27089, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001907", - "question_id": 27090, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000995", - "question_id": 27092, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008787", - "question_id": 27094, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006310", - "question_id": 27095, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004456", - "question_id": 27096, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006994", - "question_id": 27097, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006674", - "question_id": 27098, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006683", - "question_id": 27100, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008514", - "question_id": 27102, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001571", - "question_id": 27104, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001291", - "question_id": 27105, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000700", - "question_id": 27108, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003679", - "question_id": 27109, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007391", - "question_id": 27112, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002649", - "question_id": 27113, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003134", - "question_id": 27114, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00005221", - "question_id": 27115, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003703", - "question_id": 27120, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005526", - "question_id": 27121, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"accordion\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007764", - "question_id": 27122, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"suona\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003561", - "question_id": 27123, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00005887", - "question_id": 27124, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006986", - "question_id": 27125, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003648", - "question_id": 27126, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00000863", - "question_id": 27127, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"congas\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006361", - "question_id": 27128, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006978", - "question_id": 27130, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005692", - "question_id": 27131, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007130", - "question_id": 27134, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00001225", - "question_id": 27135, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003993", - "question_id": 27136, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00007930", - "question_id": 27137, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007409", - "question_id": 27140, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003731", - "question_id": 27142, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00008708", - "question_id": 27143, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007270", - "question_id": 27144, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bagpipe\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006716", - "question_id": 27145, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008951", - "question_id": 27146, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007169", - "question_id": 27147, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005663", - "question_id": 27148, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002569", - "question_id": 27149, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002853", - "question_id": 27150, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005848", - "question_id": 27151, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004031", - "question_id": 27152, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003600", - "question_id": 27153, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003397", - "question_id": 27154, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00005782", - "question_id": 27155, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007187", - "question_id": 27157, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003749", - "question_id": 27158, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005732", - "question_id": 27159, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000368", - "question_id": 27160, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003148", - "question_id": 27161, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"middle\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000454", - "question_id": 27163, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002541", - "question_id": 27164, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"tuba\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003941", - "question_id": 27165, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001497", - "question_id": 27166, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004943", - "question_id": 27167, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004758", - "question_id": 27170, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006803", - "question_id": 27171, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001041", - "question_id": 27173, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002180", - "question_id": 27176, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004222", - "question_id": 27178, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00007110", - "question_id": 27181, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000720", - "question_id": 27182, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003121", - "question_id": 27183, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00007247", - "question_id": 27185, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00007880", - "question_id": 27188, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008663", - "question_id": 27190, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006131", - "question_id": 27191, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00006039", - "question_id": 27192, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005535", - "question_id": 27193, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00006406", - "question_id": 27194, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005331", - "question_id": 27195, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005159", - "question_id": 27196, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004323", - "question_id": 27197, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00006248", - "question_id": 27198, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002258", - "question_id": 27199, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005604", - "question_id": 27200, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007049", - "question_id": 27201, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008016", - "question_id": 27203, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003980", - "question_id": 27204, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00005850", - "question_id": 27206, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005608", - "question_id": 27207, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006883", - "question_id": 27208, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005078", - "question_id": 27209, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002863", - "question_id": 27210, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"congas\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002851", - "question_id": 27211, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008016", - "question_id": 27212, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006032", - "question_id": 27215, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005129", - "question_id": 27217, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002735", - "question_id": 27219, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"congas\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000870", - "question_id": 27220, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001985", - "question_id": 27222, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001989", - "question_id": 27223, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006512", - "question_id": 27225, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004393", - "question_id": 27226, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006620", - "question_id": 27229, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004074", - "question_id": 27232, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002299", - "question_id": 27233, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00005443", - "question_id": 27234, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003057", - "question_id": 27235, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008251", - "question_id": 27237, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003786", - "question_id": 27238, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002895", - "question_id": 27239, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003341", - "question_id": 27240, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006935", - "question_id": 27241, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001963", - "question_id": 27242, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00001170", - "question_id": 27243, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001291", - "question_id": 27244, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00003322", - "question_id": 27246, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"banjo\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006732", - "question_id": 27253, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002813", - "question_id": 27255, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004151", - "question_id": 27256, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"middle\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000915", - "question_id": 27260, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"right\", \"pipa\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005527", - "question_id": 27262, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007599", - "question_id": 27263, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00004403", - "question_id": 27265, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006281", - "question_id": 27266, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"pipa\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003921", - "question_id": 27267, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000358", - "question_id": 27271, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002629", - "question_id": 27273, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"xylophone\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005228", - "question_id": 27274, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007096", - "question_id": 27275, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001701", - "question_id": 27276, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007314", - "question_id": 27277, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00000553", - "question_id": 27278, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006488", - "question_id": 27281, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008154", - "question_id": 27283, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001729", - "question_id": 27285, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00002722", - "question_id": 27288, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005630", - "question_id": 27290, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004417", - "question_id": 27291, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000511", - "question_id": 27292, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004412", - "question_id": 27293, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00004144", - "question_id": 27295, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003945", - "question_id": 27296, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002645", - "question_id": 27297, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00001488", - "question_id": 27298, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006760", - "question_id": 27301, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005809", - "question_id": 27302, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00008266", - "question_id": 27303, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002277", - "question_id": 27305, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007467", - "question_id": 27306, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007467", - "question_id": 27306, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007664", - "question_id": 27307, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004663", - "question_id": 27309, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003110", - "question_id": 27311, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00008123", - "question_id": 27312, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007886", - "question_id": 27315, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002715", - "question_id": 27317, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00008642", - "question_id": 27318, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001464", - "question_id": 27319, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00005530", - "question_id": 27321, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001076", - "question_id": 27322, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001035", - "question_id": 27323, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003699", - "question_id": 27326, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007686", - "question_id": 27327, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004951", - "question_id": 27330, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000749", - "question_id": 27332, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004958", - "question_id": 27333, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000684", - "question_id": 27334, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002780", - "question_id": 27335, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004501", - "question_id": 27336, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000856", - "question_id": 27337, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001284", - "question_id": 27338, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004368", - "question_id": 27340, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002331", - "question_id": 27341, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003834", - "question_id": 27342, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008384", - "question_id": 27344, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008819", - "question_id": 27346, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004441", - "question_id": 27349, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00001165", - "question_id": 27350, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00001658", - "question_id": 27351, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005768", - "question_id": 27352, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000675", - "question_id": 27353, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00006653", - "question_id": 27354, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00006371", - "question_id": 27355, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006109", - "question_id": 27356, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002715", - "question_id": 27358, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005421", - "question_id": 27359, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00004098", - "question_id": 27360, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006688", - "question_id": 27361, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004718", - "question_id": 27362, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004178", - "question_id": 27364, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001827", - "question_id": 27365, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00006850", - "question_id": 27366, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001511", - "question_id": 27368, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000822", - "question_id": 27369, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00002600", - "question_id": 27370, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006532", - "question_id": 27372, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00005012", - "question_id": 27373, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004599", - "question_id": 27374, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00004159", - "question_id": 27375, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002611", - "question_id": 27376, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008475", - "question_id": 27378, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00006391", - "question_id": 27379, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003649", - "question_id": 27384, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00002683", - "question_id": 27385, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004683", - "question_id": 27387, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007056", - "question_id": 27389, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002930", - "question_id": 27391, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00008902", - "question_id": 27395, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006120", - "question_id": 27396, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00004738", - "question_id": 27397, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000312", - "question_id": 27398, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00006079", - "question_id": 27400, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003923", - "question_id": 27401, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000392", - "question_id": 27403, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003190", - "question_id": 27404, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000977", - "question_id": 27407, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004481", - "question_id": 27408, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007221", - "question_id": 27409, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005034", - "question_id": 27410, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005569", - "question_id": 27412, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002863", - "question_id": 27413, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001542", - "question_id": 27414, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004632", - "question_id": 27415, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008484", - "question_id": 27416, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005930", - "question_id": 27417, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00001392", - "question_id": 27418, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008191", - "question_id": 27421, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007359", - "question_id": 27423, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003775", - "question_id": 27424, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006346", - "question_id": 27426, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002659", - "question_id": 27427, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004783", - "question_id": 27428, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"xylophone\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00001433", - "question_id": 27430, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007701", - "question_id": 27431, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00000170", - "question_id": 27434, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002687", - "question_id": 27436, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00000202", - "question_id": 27437, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002414", - "question_id": 27439, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004013", - "question_id": 27440, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000832", - "question_id": 27446, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004504", - "question_id": 27447, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004721", - "question_id": 27448, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00008547", - "question_id": 27449, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002198", - "question_id": 27450, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002198", - "question_id": 27450, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004587", - "question_id": 27454, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00001506", - "question_id": 27455, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000948", - "question_id": 27457, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"banjo\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00003860", - "question_id": 27458, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00002028", - "question_id": 27459, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008422", - "question_id": 27464, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001479", - "question_id": 27465, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006655", - "question_id": 27466, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005446", - "question_id": 27468, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008972", - "question_id": 27469, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000355", - "question_id": 27470, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006858", - "question_id": 27472, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004852", - "question_id": 27473, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004023", - "question_id": 27474, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008573", - "question_id": 27477, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001621", - "question_id": 27479, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005425", - "question_id": 27480, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007479", - "question_id": 27481, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008297", - "question_id": 27482, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002173", - "question_id": 27483, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00008338", - "question_id": 27484, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006058", - "question_id": 27485, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005450", - "question_id": 27486, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001361", - "question_id": 27488, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007614", - "question_id": 27490, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006193", - "question_id": 27491, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005004", - "question_id": 27492, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003639", - "question_id": 27494, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005999", - "question_id": 27495, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00004724", - "question_id": 27496, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006883", - "question_id": 27498, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005711", - "question_id": 27499, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002782", - "question_id": 27500, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006473", - "question_id": 27501, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006564", - "question_id": 27502, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005617", - "question_id": 27503, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008391", - "question_id": 27506, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006615", - "question_id": 27507, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00006280", - "question_id": 27508, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002685", - "question_id": 27510, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00000280", - "question_id": 27511, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004586", - "question_id": 27512, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007541", - "question_id": 27513, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007836", - "question_id": 27514, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001037", - "question_id": 27515, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001820", - "question_id": 27516, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000985", - "question_id": 27517, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00000106", - "question_id": 27519, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004869", - "question_id": 27520, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003713", - "question_id": 27521, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006686", - "question_id": 27522, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003703", - "question_id": 27526, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006996", - "question_id": 27527, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00006080", - "question_id": 27528, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001114", - "question_id": 27532, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001843", - "question_id": 27534, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007637", - "question_id": 27535, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006201", - "question_id": 27536, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"congas\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000814", - "question_id": 27537, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008155", - "question_id": 27539, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002459", - "question_id": 27540, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003290", - "question_id": 27542, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00008979", - "question_id": 27544, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005312", - "question_id": 27545, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002821", - "question_id": 27547, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002238", - "question_id": 27549, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004797", - "question_id": 27551, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00001952", - "question_id": 27552, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00005842", - "question_id": 27553, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007181", - "question_id": 27555, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000370", - "question_id": 27556, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002389", - "question_id": 27559, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006990", - "question_id": 27560, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004429", - "question_id": 27562, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005587", - "question_id": 27564, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006951", - "question_id": 27565, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006951", - "question_id": 27565, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006029", - "question_id": 27566, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006657", - "question_id": 27569, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005479", - "question_id": 27571, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001918", - "question_id": 27573, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005714", - "question_id": 27575, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00000131", - "question_id": 27576, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002319", - "question_id": 27577, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00001283", - "question_id": 27579, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006953", - "question_id": 27581, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005471", - "question_id": 27583, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008382", - "question_id": 27585, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008899", - "question_id": 27587, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004675", - "question_id": 27588, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006924", - "question_id": 27590, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00007505", - "question_id": 27591, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006013", - "question_id": 27593, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00001822", - "question_id": 27594, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006741", - "question_id": 27595, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003708", - "question_id": 27598, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003983", - "question_id": 27600, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002369", - "question_id": 27602, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005895", - "question_id": 27603, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001115", - "question_id": 27605, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006086", - "question_id": 27607, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006395", - "question_id": 27608, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007041", - "question_id": 27610, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002294", - "question_id": 27611, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00001817", - "question_id": 27612, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005182", - "question_id": 27614, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007334", - "question_id": 27616, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00000657", - "question_id": 27617, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002900", - "question_id": 27619, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004181", - "question_id": 27620, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005797", - "question_id": 27621, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00005411", - "question_id": 27622, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006157", - "question_id": 27623, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007612", - "question_id": 27624, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00003119", - "question_id": 27626, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004740", - "question_id": 27627, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00005513", - "question_id": 27629, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008547", - "question_id": 27631, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00001524", - "question_id": 27632, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00002714", - "question_id": 27633, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003068", - "question_id": 27637, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007617", - "question_id": 27639, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002931", - "question_id": 27640, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003417", - "question_id": 27641, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00000878", - "question_id": 27643, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005001", - "question_id": 27645, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002402", - "question_id": 27646, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00008009", - "question_id": 27647, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003849", - "question_id": 27648, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003707", - "question_id": 27649, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001459", - "question_id": 27650, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00007318", - "question_id": 27651, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003262", - "question_id": 27653, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008109", - "question_id": 27654, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000785", - "question_id": 27656, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003737", - "question_id": 27658, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004194", - "question_id": 27659, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00004706", - "question_id": 27661, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008576", - "question_id": 27662, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004783", - "question_id": 27664, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003937", - "question_id": 27665, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000033", - "question_id": 27666, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00005742", - "question_id": 27667, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00007534", - "question_id": 27668, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006316", - "question_id": 27670, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008331", - "question_id": 27673, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001918", - "question_id": 27674, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001248", - "question_id": 27675, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00008356", - "question_id": 27679, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002591", - "question_id": 27680, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00008784", - "question_id": 27682, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001330", - "question_id": 27683, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00007290", - "question_id": 27684, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003486", - "question_id": 27686, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003589", - "question_id": 27688, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00006851", - "question_id": 27689, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008510", - "question_id": 27691, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002708", - "question_id": 27692, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008839", - "question_id": 27695, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001094", - "question_id": 27696, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004586", - "question_id": 27697, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001383", - "question_id": 27699, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00001125", - "question_id": 27700, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008606", - "question_id": 27701, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002194", - "question_id": 27703, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004505", - "question_id": 27704, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003867", - "question_id": 27706, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002248", - "question_id": 27707, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001179", - "question_id": 27708, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001108", - "question_id": 27709, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00008617", - "question_id": 27710, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002675", - "question_id": 27713, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002822", - "question_id": 27715, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00000398", - "question_id": 27717, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000134", - "question_id": 27719, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002286", - "question_id": 27720, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007076", - "question_id": 27721, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008610", - "question_id": 27722, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008821", - "question_id": 27724, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00006104", - "question_id": 27725, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005138", - "question_id": 27727, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002683", - "question_id": 27729, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002516", - "question_id": 27731, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006767", - "question_id": 27732, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001796", - "question_id": 27733, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001302", - "question_id": 27734, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00003131", - "question_id": 27735, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008015", - "question_id": 27736, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006315", - "question_id": 27739, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00007146", - "question_id": 27740, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00005009", - "question_id": 27741, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00007466", - "question_id": 27744, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007479", - "question_id": 27745, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008260", - "question_id": 27746, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008961", - "question_id": 27747, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002287", - "question_id": 27748, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00007701", - "question_id": 27750, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00000990", - "question_id": 27752, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007298", - "question_id": 27754, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00006699", - "question_id": 27756, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00007393", - "question_id": 27759, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000738", - "question_id": 27760, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00000811", - "question_id": 27761, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00007852", - "question_id": 27763, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007633", - "question_id": 27764, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000148", - "question_id": 27766, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005597", - "question_id": 27767, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000299", - "question_id": 27769, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002358", - "question_id": 27770, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"bassoon\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008301", - "question_id": 27771, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005860", - "question_id": 27773, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00007348", - "question_id": 27774, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005694", - "question_id": 27777, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007324", - "question_id": 27778, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004800", - "question_id": 27782, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000744", - "question_id": 27784, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00006298", - "question_id": 27785, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002697", - "question_id": 27787, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00003510", - "question_id": 27789, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001089", - "question_id": 27791, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00003881", - "question_id": 27792, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001777", - "question_id": 27793, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007351", - "question_id": 27794, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007251", - "question_id": 27795, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008356", - "question_id": 27796, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000397", - "question_id": 27797, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001861", - "question_id": 27798, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008793", - "question_id": 27800, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002866", - "question_id": 27801, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00000174", - "question_id": 27802, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003814", - "question_id": 27803, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005010", - "question_id": 27805, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00001812", - "question_id": 27807, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006270", - "question_id": 27808, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008706", - "question_id": 27811, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00002466", - "question_id": 27812, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005953", - "question_id": 27815, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00000511", - "question_id": 27817, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005315", - "question_id": 27818, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007652", - "question_id": 27819, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001693", - "question_id": 27820, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00002126", - "question_id": 27821, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00005517", - "question_id": 27823, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007080", - "question_id": 27824, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002589", - "question_id": 27825, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005588", - "question_id": 27827, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00002186", - "question_id": 27828, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000620", - "question_id": 27829, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000918", - "question_id": 27830, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002032", - "question_id": 27831, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008019", - "question_id": 27833, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006057", - "question_id": 27834, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004666", - "question_id": 27835, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00004503", - "question_id": 27836, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007457", - "question_id": 27837, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001065", - "question_id": 27838, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002066", - "question_id": 27841, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003303", - "question_id": 27842, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005984", - "question_id": 27844, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005785", - "question_id": 27845, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00000346", - "question_id": 27848, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006140", - "question_id": 27849, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004612", - "question_id": 27851, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00001713", - "question_id": 27853, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004361", - "question_id": 27854, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005611", - "question_id": 27856, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00001934", - "question_id": 27857, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000352", - "question_id": 27858, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006110", - "question_id": 27860, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002685", - "question_id": 27861, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004373", - "question_id": 27862, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00008022", - "question_id": 27863, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00001967", - "question_id": 27864, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005887", - "question_id": 27865, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002861", - "question_id": 27866, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000283", - "question_id": 27867, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00005632", - "question_id": 27868, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00001705", - "question_id": 27869, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00007375", - "question_id": 27870, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008492", - "question_id": 27871, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007789", - "question_id": 27872, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002151", - "question_id": 27873, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002530", - "question_id": 27874, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00000706", - "question_id": 27877, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006866", - "question_id": 27878, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004909", - "question_id": 27879, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003769", - "question_id": 27880, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006169", - "question_id": 27881, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001471", - "question_id": 27882, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005217", - "question_id": 27883, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002175", - "question_id": 27887, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00008117", - "question_id": 27888, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"last\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004479", - "question_id": 27889, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00007408", - "question_id": 27890, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006163", - "question_id": 27891, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008155", - "question_id": 27892, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005232", - "question_id": 27893, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008594", - "question_id": 27895, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00005231", - "question_id": 27899, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008006", - "question_id": 27900, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004748", - "question_id": 27901, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00007859", - "question_id": 27902, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000330", - "question_id": 27903, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002831", - "question_id": 27904, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004093", - "question_id": 27905, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001768", - "question_id": 27906, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006178", - "question_id": 27908, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004129", - "question_id": 27910, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005034", - "question_id": 27911, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008867", - "question_id": 27913, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007463", - "question_id": 27914, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00000020", - "question_id": 27917, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001630", - "question_id": 27918, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006399", - "question_id": 27919, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001845", - "question_id": 27922, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003499", - "question_id": 27923, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004222", - "question_id": 27925, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007837", - "question_id": 27926, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000148", - "question_id": 27928, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005366", - "question_id": 27929, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002101", - "question_id": 27930, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00003405", - "question_id": 27931, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008719", - "question_id": 27933, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002724", - "question_id": 27935, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005686", - "question_id": 27937, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00000640", - "question_id": 27941, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008421", - "question_id": 27943, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002323", - "question_id": 27944, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005488", - "question_id": 27946, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005405", - "question_id": 27947, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00000542", - "question_id": 27949, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00001957", - "question_id": 27950, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000352", - "question_id": 27951, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00000214", - "question_id": 27952, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001806", - "question_id": 27953, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001738", - "question_id": 27955, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000030", - "question_id": 27956, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005020", - "question_id": 27957, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004375", - "question_id": 27959, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008940", - "question_id": 27960, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00005475", - "question_id": 27963, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00001293", - "question_id": 27964, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002730", - "question_id": 27966, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003810", - "question_id": 27967, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004424", - "question_id": 27968, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00000612", - "question_id": 27969, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002173", - "question_id": 27970, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00008389", - "question_id": 27971, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003129", - "question_id": 27972, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00001599", - "question_id": 27973, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000053", - "question_id": 27974, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008814", - "question_id": 27975, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003896", - "question_id": 27977, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008186", - "question_id": 27979, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008634", - "question_id": 27980, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004930", - "question_id": 27982, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002825", - "question_id": 27984, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000552", - "question_id": 27985, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003164", - "question_id": 27986, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00005022", - "question_id": 27987, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000184", - "question_id": 27991, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002765", - "question_id": 27993, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006039", - "question_id": 27994, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005210", - "question_id": 27995, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001472", - "question_id": 27996, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002660", - "question_id": 27997, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00006034", - "question_id": 27998, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001914", - "question_id": 27999, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006106", - "question_id": 28000, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006742", - "question_id": 28003, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002124", - "question_id": 28004, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00000699", - "question_id": 28005, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006878", - "question_id": 28007, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001667", - "question_id": 28008, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001107", - "question_id": 28009, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006353", - "question_id": 28010, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007987", - "question_id": 28011, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005916", - "question_id": 28012, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001228", - "question_id": 28013, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004128", - "question_id": 28014, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003555", - "question_id": 28015, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002357", - "question_id": 28017, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008230", - "question_id": 28018, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003545", - "question_id": 28020, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00007612", - "question_id": 28021, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002676", - "question_id": 28022, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004975", - "question_id": 28023, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005905", - "question_id": 28024, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003657", - "question_id": 28025, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000104", - "question_id": 28026, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008403", - "question_id": 28027, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003686", - "question_id": 28028, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003852", - "question_id": 28029, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000556", - "question_id": 28030, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005958", - "question_id": 28032, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00001778", - "question_id": 28033, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001891", - "question_id": 28036, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004020", - "question_id": 28037, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003921", - "question_id": 28040, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00006208", - "question_id": 28041, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006415", - "question_id": 28042, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001791", - "question_id": 28043, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005911", - "question_id": 28044, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00001157", - "question_id": 28045, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007413", - "question_id": 28049, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001169", - "question_id": 28050, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006531", - "question_id": 28051, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002505", - "question_id": 28053, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004500", - "question_id": 28055, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005256", - "question_id": 28056, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003039", - "question_id": 28057, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001351", - "question_id": 28059, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000433", - "question_id": 28060, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004936", - "question_id": 28061, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001041", - "question_id": 28064, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008812", - "question_id": 28065, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001413", - "question_id": 28066, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003566", - "question_id": 28067, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005095", - "question_id": 28069, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004669", - "question_id": 28070, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000869", - "question_id": 28071, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002673", - "question_id": 28072, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"xylophone\", \"left\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003368", - "question_id": 28074, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"congas\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004716", - "question_id": 28075, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"banjo\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004412", - "question_id": 28077, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000759", - "question_id": 28078, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007120", - "question_id": 28079, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003444", - "question_id": 28080, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001031", - "question_id": 28081, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005645", - "question_id": 28082, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003830", - "question_id": 28084, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002320", - "question_id": 28085, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002688", - "question_id": 28086, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003312", - "question_id": 28087, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001089", - "question_id": 28089, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005896", - "question_id": 28092, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005836", - "question_id": 28093, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004788", - "question_id": 28094, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003849", - "question_id": 28095, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007106", - "question_id": 28096, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008560", - "question_id": 28098, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003380", - "question_id": 28100, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006349", - "question_id": 28101, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"congas\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005724", - "question_id": 28105, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004292", - "question_id": 28106, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008197", - "question_id": 28107, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008274", - "question_id": 28108, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007572", - "question_id": 28109, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00001305", - "question_id": 28110, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007099", - "question_id": 28112, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"xylophone\", \"left\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005447", - "question_id": 28114, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000217", - "question_id": 28115, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003341", - "question_id": 28116, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007696", - "question_id": 28118, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00000390", - "question_id": 28119, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001656", - "question_id": 28120, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001059", - "question_id": 28121, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003707", - "question_id": 28123, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000582", - "question_id": 28124, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004622", - "question_id": 28125, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00007340", - "question_id": 28126, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004615", - "question_id": 28127, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005339", - "question_id": 28128, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001640", - "question_id": 28129, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003017", - "question_id": 28130, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001907", - "question_id": 28132, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005873", - "question_id": 28134, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00001014", - "question_id": 28135, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004575", - "question_id": 28136, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001159", - "question_id": 28137, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00006518", - "question_id": 28138, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000344", - "question_id": 28139, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003349", - "question_id": 28140, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008070", - "question_id": 28141, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001697", - "question_id": 28142, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000703", - "question_id": 28143, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004138", - "question_id": 28148, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006115", - "question_id": 28151, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003770", - "question_id": 28153, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00005991", - "question_id": 28157, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001396", - "question_id": 28158, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005918", - "question_id": 28159, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002493", - "question_id": 28160, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00007804", - "question_id": 28161, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001961", - "question_id": 28162, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00008538", - "question_id": 28163, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002087", - "question_id": 28164, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "sa00008488", - "question_id": 28165, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "va00005351", - "question_id": 28167, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00006363", - "question_id": 28171, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00005669", - "question_id": 28172, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002480", - "question_id": 28173, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005387", - "question_id": 28175, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006641", - "question_id": 28177, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002304", - "question_id": 28178, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000116", - "question_id": 28181, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006334", - "question_id": 28183, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00001195", - "question_id": 28185, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001380", - "question_id": 28187, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "va00005224", - "question_id": 28188, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002543", - "question_id": 28189, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "sa00008037", - "question_id": 28192, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006361", - "question_id": 28193, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00007373", - "question_id": 28194, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002731", - "question_id": 28195, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007571", - "question_id": 28196, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004449", - "question_id": 28198, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00006317", - "question_id": 28200, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008800", - "question_id": 28201, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002302", - "question_id": 28202, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003260", - "question_id": 28205, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005271", - "question_id": 28206, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006292", - "question_id": 28207, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000068", - "question_id": 28208, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007370", - "question_id": 28209, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007883", - "question_id": 28210, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008577", - "question_id": 28211, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000686", - "question_id": 28212, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007439", - "question_id": 28213, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005382", - "question_id": 28214, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004941", - "question_id": 28215, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00006092", - "question_id": 28216, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008484", - "question_id": 28217, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005789", - "question_id": 28218, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006617", - "question_id": 28219, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003329", - "question_id": 28220, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00008827", - "question_id": 28221, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000321", - "question_id": 28222, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "va00004030", - "question_id": 28223, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00005983", - "question_id": 28224, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00006684", - "question_id": 28225, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004201", - "question_id": 28226, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002318", - "question_id": 28228, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007363", - "question_id": 28229, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008961", - "question_id": 28230, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00007117", - "question_id": 28231, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002915", - "question_id": 28232, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003179", - "question_id": 28233, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "vv00000572", - "question_id": 28234, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007027", - "question_id": 28235, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005107", - "question_id": 28236, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005876", - "question_id": 28238, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "va00005758", - "question_id": 28240, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005293", - "question_id": 28241, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006512", - "question_id": 28242, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002469", - "question_id": 28243, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007583", - "question_id": 28244, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "va00004993", - "question_id": 28245, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002488", - "question_id": 28246, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003935", - "question_id": 28247, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00007474", - "question_id": 28248, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00008937", - "question_id": 28251, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006368", - "question_id": 28252, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007841", - "question_id": 28253, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001575", - "question_id": 28254, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008217", - "question_id": 28256, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006180", - "question_id": 28258, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001270", - "question_id": 28260, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002184", - "question_id": 28262, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00001694", - "question_id": 28264, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00007851", - "question_id": 28267, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000927", - "question_id": 28268, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00000511", - "question_id": 28269, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002862", - "question_id": 28270, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005465", - "question_id": 28273, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00006962", - "question_id": 28274, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004017", - "question_id": 28275, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00005208", - "question_id": 28276, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004455", - "question_id": 28277, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006178", - "question_id": 28278, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00008757", - "question_id": 28279, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00006569", - "question_id": 28280, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001306", - "question_id": 28282, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000849", - "question_id": 28284, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "va00004282", - "question_id": 28285, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003280", - "question_id": 28286, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006244", - "question_id": 28287, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008253", - "question_id": 28288, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00001723", - "question_id": 28289, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00000984", - "question_id": 28291, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007939", - "question_id": 28292, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003195", - "question_id": 28294, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006332", - "question_id": 28295, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003839", - "question_id": 28296, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "va00003692", - "question_id": 28297, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00006849", - "question_id": 28298, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "vv00000404", - "question_id": 28299, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003896", - "question_id": 28300, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006543", - "question_id": 28302, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005253", - "question_id": 28303, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00005957", - "question_id": 28304, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006564", - "question_id": 28306, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007095", - "question_id": 28307, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003526", - "question_id": 28308, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002215", - "question_id": 28309, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008001", - "question_id": 28311, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001125", - "question_id": 28312, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "va00005545", - "question_id": 28313, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004530", - "question_id": 28314, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005896", - "question_id": 28316, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00006041", - "question_id": 28317, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000201", - "question_id": 28318, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003942", - "question_id": 28319, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00007354", - "question_id": 28320, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001647", - "question_id": 28321, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005619", - "question_id": 28322, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005866", - "question_id": 28323, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00008658", - "question_id": 28324, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001295", - "question_id": 28326, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001532", - "question_id": 28327, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "va00003173", - "question_id": 28328, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00006263", - "question_id": 28330, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00005771", - "question_id": 28331, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006019", - "question_id": 28333, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008350", - "question_id": 28338, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000029", - "question_id": 28341, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006476", - "question_id": 28342, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007495", - "question_id": 28344, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "va00003409", - "question_id": 28346, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002166", - "question_id": 28348, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002044", - "question_id": 28349, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00006505", - "question_id": 28350, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008085", - "question_id": 28351, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00006122", - "question_id": 28352, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00006306", - "question_id": 28353, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00001367", - "question_id": 28355, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006681", - "question_id": 28359, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003840", - "question_id": 28360, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003250", - "question_id": 28361, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "va00005215", - "question_id": 28362, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002692", - "question_id": 28364, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00003158", - "question_id": 28365, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00005374", - "question_id": 28366, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "va00004989", - "question_id": 28369, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "vv00002544", - "question_id": 28371, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008925", - "question_id": 28372, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007384", - "question_id": 28373, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005194", - "question_id": 28374, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00001269", - "question_id": 28376, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002673", - "question_id": 28377, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00008979", - "question_id": 28378, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000839", - "question_id": 28379, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003582", - "question_id": 28380, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003486", - "question_id": 28383, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007910", - "question_id": 28384, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007475", - "question_id": 28388, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "sa00008429", - "question_id": 28389, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00007887", - "question_id": 28390, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001264", - "question_id": 28392, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005400", - "question_id": 28393, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002879", - "question_id": 28394, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002893", - "question_id": 28395, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00008421", - "question_id": 28397, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00006725", - "question_id": 28398, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000514", - "question_id": 28399, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004229", - "question_id": 28400, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002990", - "question_id": 28401, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000203", - "question_id": 28402, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "vv00003080", - "question_id": 28403, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008509", - "question_id": 28406, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "vv00002841", - "question_id": 28407, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000052", - "question_id": 28409, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "va00005831", - "question_id": 28410, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007853", - "question_id": 28411, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003679", - "question_id": 28412, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00002811", - "question_id": 28413, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00000342", - "question_id": 28415, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "va00003477", - "question_id": 28416, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00007502", - "question_id": 28418, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "vv00002845", - "question_id": 28420, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007380", - "question_id": 28423, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00003514", - "question_id": 28424, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001292", - "question_id": 28426, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002794", - "question_id": 28428, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004987", - "question_id": 28429, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008968", - "question_id": 28430, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005223", - "question_id": 28431, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004155", - "question_id": 28432, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008757", - "question_id": 28433, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00007046", - "question_id": 28434, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006582", - "question_id": 28435, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00005665", - "question_id": 28437, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005914", - "question_id": 28438, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004108", - "question_id": 28440, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00008848", - "question_id": 28441, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006016", - "question_id": 28442, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006871", - "question_id": 28444, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003985", - "question_id": 28445, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000326", - "question_id": 28446, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007236", - "question_id": 28447, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004406", - "question_id": 28449, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005503", - "question_id": 28450, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005261", - "question_id": 28452, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001376", - "question_id": 28454, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006184", - "question_id": 28455, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008270", - "question_id": 28457, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003730", - "question_id": 28458, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001152", - "question_id": 28459, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008427", - "question_id": 28462, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002309", - "question_id": 28463, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002807", - "question_id": 28464, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "vv00000558", - "question_id": 28466, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00001089", - "question_id": 28468, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008584", - "question_id": 28469, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006209", - "question_id": 28471, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00007882", - "question_id": 28473, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00007949", - "question_id": 28474, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00007676", - "question_id": 28475, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005418", - "question_id": 28478, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008824", - "question_id": 28480, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004063", - "question_id": 28482, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005561", - "question_id": 28483, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000472", - "question_id": 28485, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bagpipe\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001018", - "question_id": 28488, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005008", - "question_id": 28490, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "va00003159", - "question_id": 28491, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004280", - "question_id": 28492, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007076", - "question_id": 28494, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "va00003961", - "question_id": 28495, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006844", - "question_id": 28496, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008128", - "question_id": 28497, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008153", - "question_id": 28498, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003503", - "question_id": 28499, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004639", - "question_id": 28500, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000287", - "question_id": 28502, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002976", - "question_id": 28503, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00001781", - "question_id": 28507, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"clarinet\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006872", - "question_id": 28508, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00000204", - "question_id": 28510, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004372", - "question_id": 28511, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000923", - "question_id": 28512, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007446", - "question_id": 28514, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002795", - "question_id": 28515, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00008366", - "question_id": 28516, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000293", - "question_id": 28518, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008866", - "question_id": 28522, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001011", - "question_id": 28523, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008066", - "question_id": 28524, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "va00004451", - "question_id": 28525, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003764", - "question_id": 28526, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003620", - "question_id": 28527, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006201", - "question_id": 28528, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00002661", - "question_id": 28529, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002129", - "question_id": 28530, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "vv00000262", - "question_id": 28531, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"xylophone\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005947", - "question_id": 28535, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001850", - "question_id": 28536, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00007482", - "question_id": 28537, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004660", - "question_id": 28538, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007156", - "question_id": 28539, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00006464", - "question_id": 28540, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000903", - "question_id": 28541, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002319", - "question_id": 28543, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00001605", - "question_id": 28544, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005607", - "question_id": 28546, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00001678", - "question_id": 28547, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003148", - "question_id": 28549, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004966", - "question_id": 28550, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00003057", - "question_id": 28552, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007126", - "question_id": 28553, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00000759", - "question_id": 28554, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003197", - "question_id": 28555, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003495", - "question_id": 28556, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004228", - "question_id": 28557, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007734", - "question_id": 28558, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000919", - "question_id": 28559, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00006870", - "question_id": 28560, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004629", - "question_id": 28564, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006162", - "question_id": 28565, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "vv00000406", - "question_id": 28566, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "va00004009", - "question_id": 28567, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00008255", - "question_id": 28569, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006298", - "question_id": 28570, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000333", - "question_id": 28571, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "va00004040", - "question_id": 28572, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00002755", - "question_id": 28574, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007029", - "question_id": 28575, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002305", - "question_id": 28577, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006747", - "question_id": 28579, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001289", - "question_id": 28581, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005783", - "question_id": 28582, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00000637", - "question_id": 28583, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003024", - "question_id": 28585, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001005", - "question_id": 28586, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003413", - "question_id": 28587, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003737", - "question_id": 28588, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005635", - "question_id": 28590, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005275", - "question_id": 28592, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007528", - "question_id": 28593, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "vv00002429", - "question_id": 28595, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007498", - "question_id": 28596, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "sa00006492", - "question_id": 28598, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004320", - "question_id": 28600, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00008529", - "question_id": 28601, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006913", - "question_id": 28603, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00000467", - "question_id": 28606, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000032", - "question_id": 28607, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007575", - "question_id": 28610, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002047", - "question_id": 28613, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001960", - "question_id": 28622, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "vv00002643", - "question_id": 28624, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"trumpet\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003155", - "question_id": 28625, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002142", - "question_id": 28626, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00000662", - "question_id": 28627, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "vv00000639", - "question_id": 28628, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00007062", - "question_id": 28630, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00003001", - "question_id": 28633, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00001475", - "question_id": 28635, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00006285", - "question_id": 28636, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00007541", - "question_id": 28638, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001180", - "question_id": 28639, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "vv00000216", - "question_id": 28640, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001215", - "question_id": 28641, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002626", - "question_id": 28643, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00005885", - "question_id": 28645, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007882", - "question_id": 28646, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007692", - "question_id": 28651, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002329", - "question_id": 28652, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "vv00002909", - "question_id": 28654, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"xylophone\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004131", - "question_id": 28657, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008123", - "question_id": 28658, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005960", - "question_id": 28659, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00002646", - "question_id": 28660, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004930", - "question_id": 28661, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00008202", - "question_id": 28664, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001270", - "question_id": 28666, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004289", - "question_id": 28667, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "sa00006533", - "question_id": 28669, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004468", - "question_id": 28670, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004071", - "question_id": 28671, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00007068", - "question_id": 28674, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00006814", - "question_id": 28675, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"xylophone\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004093", - "question_id": 28676, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "va00005332", - "question_id": 28679, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000736", - "question_id": 28682, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005996", - "question_id": 28683, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "sa00007330", - "question_id": 28684, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007496", - "question_id": 28685, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bagpipe\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000515", - "question_id": 28687, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00001385", - "question_id": 28688, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002496", - "question_id": 28689, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"middle\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006330", - "question_id": 28691, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003400", - "question_id": 28692, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00000419", - "question_id": 28695, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006934", - "question_id": 28696, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006044", - "question_id": 28697, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004083", - "question_id": 28700, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00007775", - "question_id": 28701, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001754", - "question_id": 28702, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00001743", - "question_id": 28704, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "va00003992", - "question_id": 28706, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00005236", - "question_id": 28707, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00007317", - "question_id": 28708, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008118", - "question_id": 28710, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00005125", - "question_id": 28711, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002821", - "question_id": 28712, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "va00005796", - "question_id": 28713, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "vv00002752", - "question_id": 28714, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001199", - "question_id": 28715, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008610", - "question_id": 28716, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004563", - "question_id": 28718, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "vv00000394", - "question_id": 28719, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008691", - "question_id": 28720, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004352", - "question_id": 28721, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "sa00007584", - "question_id": 28722, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00006698", - "question_id": 28724, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003937", - "question_id": 28725, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00006609", - "question_id": 28726, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006249", - "question_id": 28727, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00007374", - "question_id": 28730, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006064", - "question_id": 28732, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00001315", - "question_id": 28733, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003131", - "question_id": 28734, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006795", - "question_id": 28735, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004830", - "question_id": 28737, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004504", - "question_id": 28738, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002792", - "question_id": 28740, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002006", - "question_id": 28741, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005254", - "question_id": 28743, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004315", - "question_id": 28744, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00006237", - "question_id": 28746, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006426", - "question_id": 28749, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00000695", - "question_id": 28750, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001428", - "question_id": 28751, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00005982", - "question_id": 28752, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006686", - "question_id": 28754, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"suona\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003870", - "question_id": 28755, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003309", - "question_id": 28756, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003833", - "question_id": 28759, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00008294", - "question_id": 28760, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"flute\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002006", - "question_id": 28761, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "sa00008876", - "question_id": 28762, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00001493", - "question_id": 28763, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004486", - "question_id": 28764, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00000384", - "question_id": 28765, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007280", - "question_id": 28766, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007327", - "question_id": 28767, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004157", - "question_id": 28768, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007873", - "question_id": 28770, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003615", - "question_id": 28772, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008748", - "question_id": 28773, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00003341", - "question_id": 28774, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005029", - "question_id": 28775, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005607", - "question_id": 28776, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008448", - "question_id": 28777, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005880", - "question_id": 28778, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001092", - "question_id": 28779, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004543", - "question_id": 28780, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006272", - "question_id": 28782, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00007423", - "question_id": 28784, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"erhu\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00007060", - "question_id": 28785, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002191", - "question_id": 28786, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "sa00008089", - "question_id": 28787, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006273", - "question_id": 28788, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007923", - "question_id": 28790, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001966", - "question_id": 28791, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008455", - "question_id": 28792, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008850", - "question_id": 28793, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000885", - "question_id": 28794, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001317", - "question_id": 28795, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002706", - "question_id": 28796, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001563", - "question_id": 28797, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00007246", - "question_id": 28799, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001083", - "question_id": 28800, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006937", - "question_id": 28801, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004474", - "question_id": 28803, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00008104", - "question_id": 28804, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006930", - "question_id": 28805, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003751", - "question_id": 28806, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003041", - "question_id": 28807, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004254", - "question_id": 28809, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008127", - "question_id": 28810, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00005330", - "question_id": 28812, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002475", - "question_id": 28813, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "vv00000221", - "question_id": 28814, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00003210", - "question_id": 28815, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00006337", - "question_id": 28818, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004625", - "question_id": 28819, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000721", - "question_id": 28822, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001870", - "question_id": 28823, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006567", - "question_id": 28825, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001779", - "question_id": 28827, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000707", - "question_id": 28828, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002303", - "question_id": 28829, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001376", - "question_id": 28830, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "va00004040", - "question_id": 28831, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007697", - "question_id": 28832, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00008660", - "question_id": 28833, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "sa00008165", - "question_id": 28834, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00004705", - "question_id": 28835, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004964", - "question_id": 28836, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00004453", - "question_id": 28837, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00000287", - "question_id": 28839, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006831", - "question_id": 28841, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002032", - "question_id": 28843, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "va00004916", - "question_id": 28845, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006587", - "question_id": 28846, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003069", - "question_id": 28847, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002880", - "question_id": 28849, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001796", - "question_id": 28852, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002504", - "question_id": 28853, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00008043", - "question_id": 28854, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00004817", - "question_id": 28858, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003590", - "question_id": 28860, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00001709", - "question_id": 28861, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007416", - "question_id": 28862, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006100", - "question_id": 28865, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005483", - "question_id": 28866, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003721", - "question_id": 28867, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003900", - "question_id": 28868, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002300", - "question_id": 28869, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001242", - "question_id": 28870, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00000959", - "question_id": 28871, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005203", - "question_id": 28874, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003732", - "question_id": 28875, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002295", - "question_id": 28877, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003066", - "question_id": 28878, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00007345", - "question_id": 28879, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005696", - "question_id": 28880, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003168", - "question_id": 28881, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00004215", - "question_id": 28882, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007846", - "question_id": 28885, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00001188", - "question_id": 28886, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "sa00006972", - "question_id": 28887, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001901", - "question_id": 28888, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "vv00002728", - "question_id": 28889, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002746", - "question_id": 28890, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005920", - "question_id": 28891, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00005257", - "question_id": 28892, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"guzheng\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "sa00007804", - "question_id": 28893, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000203", - "question_id": 28896, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "sa00008927", - "question_id": 28898, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001678", - "question_id": 28899, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "sa00008963", - "question_id": 28900, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004164", - "question_id": 28901, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002998", - "question_id": 28902, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007488", - "question_id": 28903, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "vv00002511", - "question_id": 28905, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005666", - "question_id": 28906, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008735", - "question_id": 28907, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005093", - "question_id": 28910, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "va00004294", - "question_id": 28911, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002911", - "question_id": 28912, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00000332", - "question_id": 28914, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005171", - "question_id": 28915, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007884", - "question_id": 28916, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00006725", - "question_id": 28917, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005021", - "question_id": 28918, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "sa00008609", - "question_id": 28920, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007270", - "question_id": 28921, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "sa00007602", - "question_id": 28922, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008743", - "question_id": 28927, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00005576", - "question_id": 28928, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004107", - "question_id": 28929, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00003194", - "question_id": 28930, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "va00004546", - "question_id": 28931, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005457", - "question_id": 28932, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005578", - "question_id": 28934, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003607", - "question_id": 28935, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "va00005508", - "question_id": 28938, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "va00003539", - "question_id": 28939, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006449", - "question_id": 28943, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004253", - "question_id": 28944, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00002299", - "question_id": 28946, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000121", - "question_id": 28947, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008365", - "question_id": 28948, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005054", - "question_id": 28950, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003545", - "question_id": 28951, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001390", - "question_id": 28952, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004771", - "question_id": 28954, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006342", - "question_id": 28955, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003452", - "question_id": 28957, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003512", - "question_id": 28959, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00003409", - "question_id": 28960, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00004830", - "question_id": 28961, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004595", - "question_id": 28963, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00008638", - "question_id": 28966, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003168", - "question_id": 28967, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008350", - "question_id": 28969, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000383", - "question_id": 28970, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001759", - "question_id": 28971, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "va00005816", - "question_id": 28972, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00006892", - "question_id": 28974, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008430", - "question_id": 28976, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002865", - "question_id": 28977, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003388", - "question_id": 28978, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005958", - "question_id": 28979, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004766", - "question_id": 28980, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00008924", - "question_id": 28983, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002745", - "question_id": 28985, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005655", - "question_id": 28986, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002079", - "question_id": 28987, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001269", - "question_id": 28988, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000564", - "question_id": 28989, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001365", - "question_id": 28991, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004459", - "question_id": 28993, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006980", - "question_id": 28994, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00008020", - "question_id": 28995, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005451", - "question_id": 28996, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003335", - "question_id": 28999, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007243", - "question_id": 29001, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004848", - "question_id": 29003, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00008114", - "question_id": 29004, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007889", - "question_id": 29005, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00007379", - "question_id": 29008, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005620", - "question_id": 29010, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003610", - "question_id": 29011, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008902", - "question_id": 29012, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003577", - "question_id": 29014, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00001429", - "question_id": 29015, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00003017", - "question_id": 29016, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000537", - "question_id": 29017, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00003734", - "question_id": 29018, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"suona\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008145", - "question_id": 29020, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005611", - "question_id": 29022, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002932", - "question_id": 29023, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005468", - "question_id": 29024, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00003147", - "question_id": 29025, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006916", - "question_id": 29026, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "va00003255", - "question_id": 29027, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00000975", - "question_id": 29028, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005049", - "question_id": 29029, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00001898", - "question_id": 29030, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001836", - "question_id": 29031, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005657", - "question_id": 29032, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00001086", - "question_id": 29033, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006277", - "question_id": 29037, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00007148", - "question_id": 29038, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00004149", - "question_id": 29039, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00001152", - "question_id": 29041, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "va00003276", - "question_id": 29043, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002157", - "question_id": 29044, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001546", - "question_id": 29045, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002208", - "question_id": 29046, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00005190", - "question_id": 29047, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00005012", - "question_id": 29048, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00002513", - "question_id": 29052, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00000857", - "question_id": 29054, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005509", - "question_id": 29055, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "va00005224", - "question_id": 29056, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004271", - "question_id": 29057, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004124", - "question_id": 29058, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00001614", - "question_id": 29059, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000734", - "question_id": 29061, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001546", - "question_id": 29063, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008254", - "question_id": 29064, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006431", - "question_id": 29066, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000757", - "question_id": 29067, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003574", - "question_id": 29068, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000940", - "question_id": 29069, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00001756", - "question_id": 29071, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003057", - "question_id": 29072, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007839", - "question_id": 29073, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004851", - "question_id": 29074, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00004359", - "question_id": 29075, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000206", - "question_id": 29076, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004615", - "question_id": 29077, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00005104", - "question_id": 29078, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007775", - "question_id": 29079, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00008904", - "question_id": 29082, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00003821", - "question_id": 29083, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002663", - "question_id": 29084, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008564", - "question_id": 29086, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00002274", - "question_id": 29087, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "va00003229", - "question_id": 29088, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00005179", - "question_id": 29089, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005653", - "question_id": 29091, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007464", - "question_id": 29092, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003140", - "question_id": 29094, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003357", - "question_id": 29096, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007446", - "question_id": 29099, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "sa00007890", - "question_id": 29101, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008926", - "question_id": 29103, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "sa00007648", - "question_id": 29104, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00000275", - "question_id": 29105, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006282", - "question_id": 29106, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00001251", - "question_id": 29107, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007155", - "question_id": 29108, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00007194", - "question_id": 29112, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00001985", - "question_id": 29113, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00007784", - "question_id": 29114, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00002481", - "question_id": 29116, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001071", - "question_id": 29117, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00008821", - "question_id": 29121, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004128", - "question_id": 29123, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000457", - "question_id": 29125, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002223", - "question_id": 29126, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004296", - "question_id": 29127, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008659", - "question_id": 29128, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00003722", - "question_id": 29130, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002093", - "question_id": 29133, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006752", - "question_id": 29136, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000428", - "question_id": 29137, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00007874", - "question_id": 29138, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002641", - "question_id": 29140, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005574", - "question_id": 29142, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001407", - "question_id": 29143, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000778", - "question_id": 29144, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00007552", - "question_id": 29145, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000824", - "question_id": 29146, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005317", - "question_id": 29148, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003330", - "question_id": 29151, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005472", - "question_id": 29152, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003204", - "question_id": 29154, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004220", - "question_id": 29155, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003854", - "question_id": 29156, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003033", - "question_id": 29158, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000586", - "question_id": 29159, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "va00005677", - "question_id": 29164, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005249", - "question_id": 29166, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bagpipe\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005297", - "question_id": 29168, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002201", - "question_id": 29170, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002489", - "question_id": 29171, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008002", - "question_id": 29173, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002138", - "question_id": 29175, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003169", - "question_id": 29176, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00006372", - "question_id": 29178, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000621", - "question_id": 29182, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005453", - "question_id": 29183, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00005286", - "question_id": 29184, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "va00004265", - "question_id": 29185, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00007095", - "question_id": 29186, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"ukulele\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00003678", - "question_id": 29187, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002580", - "question_id": 29191, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002192", - "question_id": 29192, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003208", - "question_id": 29193, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006758", - "question_id": 29195, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00006475", - "question_id": 29196, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002589", - "question_id": 29198, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001708", - "question_id": 29199, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001273", - "question_id": 29200, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002881", - "question_id": 29202, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007943", - "question_id": 29204, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007155", - "question_id": 29205, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000510", - "question_id": 29208, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004522", - "question_id": 29209, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00004328", - "question_id": 29210, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "sa00007909", - "question_id": 29211, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008557", - "question_id": 29212, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004300", - "question_id": 29213, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000463", - "question_id": 29215, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001285", - "question_id": 29216, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005190", - "question_id": 29218, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008218", - "question_id": 29219, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002907", - "question_id": 29220, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00008940", - "question_id": 29221, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00005691", - "question_id": 29224, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002887", - "question_id": 29225, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00006547", - "question_id": 29226, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00007048", - "question_id": 29228, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005874", - "question_id": 29231, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006095", - "question_id": 29232, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00005851", - "question_id": 29234, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005506", - "question_id": 29235, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00006860", - "question_id": 29236, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "va00004249", - "question_id": 29237, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003267", - "question_id": 29238, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006820", - "question_id": 29239, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00005532", - "question_id": 29241, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00007621", - "question_id": 29242, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bagpipe\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000774", - "question_id": 29246, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001639", - "question_id": 29247, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004991", - "question_id": 29249, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005860", - "question_id": 29253, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00004843", - "question_id": 29255, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005346", - "question_id": 29257, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002690", - "question_id": 29258, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "sa00007118", - "question_id": 29259, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"xylophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001529", - "question_id": 29260, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002249", - "question_id": 29262, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008661", - "question_id": 29264, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000500", - "question_id": 29265, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00000215", - "question_id": 29266, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00006571", - "question_id": 29267, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006601", - "question_id": 29270, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003181", - "question_id": 29271, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001571", - "question_id": 29273, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005611", - "question_id": 29274, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "va00003585", - "question_id": 29275, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001226", - "question_id": 29276, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00004091", - "question_id": 29278, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "sa00008608", - "question_id": 29279, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00004689", - "question_id": 29281, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00000225", - "question_id": 29283, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004880", - "question_id": 29284, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00002347", - "question_id": 29285, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005913", - "question_id": 29286, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00001956", - "question_id": 29288, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"middle\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004812", - "question_id": 29289, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "va00004279", - "question_id": 29290, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "sa00006808", - "question_id": 29291, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00002382", - "question_id": 29296, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007218", - "question_id": 29298, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "sa00007256", - "question_id": 29299, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00004949", - "question_id": 29300, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00008563", - "question_id": 29302, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "sa00006857", - "question_id": 29303, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00004493", - "question_id": 29304, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003697", - "question_id": 29305, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003536", - "question_id": 29308, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007942", - "question_id": 29309, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00002415", - "question_id": 29310, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002555", - "question_id": 29311, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000938", - "question_id": 29312, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00005983", - "question_id": 29314, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001124", - "question_id": 29317, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000891", - "question_id": 29318, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008898", - "question_id": 29319, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004999", - "question_id": 29320, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003473", - "question_id": 29328, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004774", - "question_id": 29329, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "va00003929", - "question_id": 29330, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008973", - "question_id": 29333, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "va00003105", - "question_id": 29334, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "sa00007060", - "question_id": 29337, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003265", - "question_id": 29338, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00006377", - "question_id": 29340, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007267", - "question_id": 29341, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003852", - "question_id": 29342, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005144", - "question_id": 29343, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004297", - "question_id": 29344, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "vv00002533", - "question_id": 29349, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007251", - "question_id": 29350, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000989", - "question_id": 29351, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001010", - "question_id": 29352, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001777", - "question_id": 29353, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004565", - "question_id": 29354, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001747", - "question_id": 29355, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005969", - "question_id": 29358, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "va00004451", - "question_id": 29360, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00003187", - "question_id": 29362, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002750", - "question_id": 29363, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "sa00007154", - "question_id": 29364, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "vv00000336", - "question_id": 29365, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00002122", - "question_id": 29366, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000255", - "question_id": 29367, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008650", - "question_id": 29369, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "vv00000550", - "question_id": 29370, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000984", - "question_id": 29373, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004170", - "question_id": 29375, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004350", - "question_id": 29377, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008265", - "question_id": 29380, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001080", - "question_id": 29385, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "vv00000614", - "question_id": 29389, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002810", - "question_id": 29390, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000954", - "question_id": 29391, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002937", - "question_id": 29393, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004730", - "question_id": 29394, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003148", - "question_id": 29395, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002920", - "question_id": 29396, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000282", - "question_id": 29399, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003239", - "question_id": 29400, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002435", - "question_id": 29401, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001669", - "question_id": 29402, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003149", - "question_id": 29403, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001356", - "question_id": 29405, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004913", - "question_id": 29406, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002043", - "question_id": 29407, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001262", - "question_id": 29408, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003757", - "question_id": 29410, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001034", - "question_id": 29411, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00002747", - "question_id": 29412, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008209", - "question_id": 29413, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00000691", - "question_id": 29414, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00007774", - "question_id": 29415, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00006524", - "question_id": 29416, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004876", - "question_id": 29417, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00001533", - "question_id": 29418, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003580", - "question_id": 29419, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00008179", - "question_id": 29420, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007782", - "question_id": 29421, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003518", - "question_id": 29422, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002729", - "question_id": 29424, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006086", - "question_id": 29426, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004177", - "question_id": 29427, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "vv00002964", - "question_id": 29429, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004050", - "question_id": 29433, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004698", - "question_id": 29434, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008896", - "question_id": 29435, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008285", - "question_id": 29436, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007013", - "question_id": 29437, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "sa00007371", - "question_id": 29438, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007144", - "question_id": 29439, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007303", - "question_id": 29441, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "sa00007433", - "question_id": 29442, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007585", - "question_id": 29444, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00000337", - "question_id": 29445, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004084", - "question_id": 29449, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00008780", - "question_id": 29450, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001879", - "question_id": 29451, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001486", - "question_id": 29453, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008905", - "question_id": 29458, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008204", - "question_id": 29460, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005779", - "question_id": 29461, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000091", - "question_id": 29465, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003615", - "question_id": 29466, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000123", - "question_id": 29467, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001835", - "question_id": 29469, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008067", - "question_id": 29472, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006613", - "question_id": 29473, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005807", - "question_id": 29474, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00005801", - "question_id": 29476, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00008226", - "question_id": 29477, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001370", - "question_id": 29478, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004289", - "question_id": 29479, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008638", - "question_id": 29480, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000312", - "question_id": 29481, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "va00003951", - "question_id": 29483, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bagpipe\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003206", - "question_id": 29484, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002240", - "question_id": 29485, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "va00004351", - "question_id": 29488, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00003585", - "question_id": 29490, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007279", - "question_id": 29491, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00007205", - "question_id": 29494, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002088", - "question_id": 29496, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006010", - "question_id": 29499, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003315", - "question_id": 29500, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000433", - "question_id": 29501, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006302", - "question_id": 29502, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008277", - "question_id": 29503, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005073", - "question_id": 29504, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004159", - "question_id": 29506, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001658", - "question_id": 29508, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004885", - "question_id": 29511, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008456", - "question_id": 29512, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00008018", - "question_id": 29514, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002216", - "question_id": 29517, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00008937", - "question_id": 29519, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"pipa\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002570", - "question_id": 29521, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006790", - "question_id": 29522, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002961", - "question_id": 29523, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002065", - "question_id": 29525, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003680", - "question_id": 29527, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007858", - "question_id": 29528, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002999", - "question_id": 29529, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007550", - "question_id": 29532, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004187", - "question_id": 29533, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002307", - "question_id": 29535, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000149", - "question_id": 29536, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003706", - "question_id": 29537, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005018", - "question_id": 29539, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "sa00008037", - "question_id": 29540, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006423", - "question_id": 29541, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004660", - "question_id": 29542, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000265", - "question_id": 29544, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004012", - "question_id": 29545, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "va00004473", - "question_id": 29546, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002467", - "question_id": 29547, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002747", - "question_id": 29548, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004298", - "question_id": 29551, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00002952", - "question_id": 29552, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "vv00000365", - "question_id": 29553, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00004358", - "question_id": 29554, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002985", - "question_id": 29555, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000774", - "question_id": 29556, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006832", - "question_id": 29557, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000711", - "question_id": 29558, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007120", - "question_id": 29561, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002348", - "question_id": 29563, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"congas\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004404", - "question_id": 29564, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004624", - "question_id": 29567, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "vv00000282", - "question_id": 29568, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00003657", - "question_id": 29570, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00008659", - "question_id": 29571, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007348", - "question_id": 29572, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002573", - "question_id": 29574, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00002687", - "question_id": 29575, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001526", - "question_id": 29577, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00003719", - "question_id": 29578, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005496", - "question_id": 29579, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006537", - "question_id": 29580, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003844", - "question_id": 29581, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005699", - "question_id": 29582, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005590", - "question_id": 29584, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007174", - "question_id": 29586, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006709", - "question_id": 29588, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000609", - "question_id": 29590, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004612", - "question_id": 29591, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001738", - "question_id": 29592, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008946", - "question_id": 29598, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000230", - "question_id": 29602, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001239", - "question_id": 29603, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00007390", - "question_id": 29604, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003023", - "question_id": 29605, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002632", - "question_id": 29606, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007295", - "question_id": 29608, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002972", - "question_id": 29609, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008456", - "question_id": 29610, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "va00004906", - "question_id": 29611, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006155", - "question_id": 29613, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005883", - "question_id": 29614, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008781", - "question_id": 29615, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "va00003539", - "question_id": 29616, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007724", - "question_id": 29617, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00000788", - "question_id": 29620, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006397", - "question_id": 29622, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00005782", - "question_id": 29625, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00005274", - "question_id": 29626, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006249", - "question_id": 29627, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "va00005537", - "question_id": 29630, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00002602", - "question_id": 29631, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006335", - "question_id": 29633, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"acoustic_guitar\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005060", - "question_id": 29634, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008849", - "question_id": 29635, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00001773", - "question_id": 29636, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008305", - "question_id": 29638, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00008822", - "question_id": 29639, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008943", - "question_id": 29640, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006221", - "question_id": 29641, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008526", - "question_id": 29642, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005506", - "question_id": 29644, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004704", - "question_id": 29645, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00001069", - "question_id": 29647, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001288", - "question_id": 29648, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001275", - "question_id": 29649, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006192", - "question_id": 29650, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001234", - "question_id": 29652, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008147", - "question_id": 29653, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001980", - "question_id": 29654, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006965", - "question_id": 29655, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00002554", - "question_id": 29657, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008537", - "question_id": 29658, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007438", - "question_id": 29659, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00000120", - "question_id": 29660, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003839", - "question_id": 29661, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004801", - "question_id": 29662, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00008091", - "question_id": 29663, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006701", - "question_id": 29664, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002535", - "question_id": 29665, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005845", - "question_id": 29666, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003696", - "question_id": 29667, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"suona\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001368", - "question_id": 29669, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004219", - "question_id": 29671, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007309", - "question_id": 29672, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"xylophone\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004694", - "question_id": 29673, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000820", - "question_id": 29674, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007280", - "question_id": 29675, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00007291", - "question_id": 29676, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005965", - "question_id": 29679, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00003914", - "question_id": 29680, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006890", - "question_id": 29681, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004949", - "question_id": 29682, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "va00004469", - "question_id": 29685, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003109", - "question_id": 29686, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00003252", - "question_id": 29687, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003952", - "question_id": 29688, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008138", - "question_id": 29690, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007516", - "question_id": 29693, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002294", - "question_id": 29694, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007943", - "question_id": 29696, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00006760", - "question_id": 29697, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004720", - "question_id": 29698, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000620", - "question_id": 29699, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00001428", - "question_id": 29700, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "va00003094", - "question_id": 29701, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005709", - "question_id": 29702, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000911", - "question_id": 29703, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002393", - "question_id": 29704, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005871", - "question_id": 29705, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004724", - "question_id": 29706, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007567", - "question_id": 29707, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00003531", - "question_id": 29708, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00006797", - "question_id": 29711, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006910", - "question_id": 29712, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005799", - "question_id": 29713, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006876", - "question_id": 29714, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00003582", - "question_id": 29717, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000230", - "question_id": 29722, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007523", - "question_id": 29723, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004373", - "question_id": 29725, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000974", - "question_id": 29726, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00005766", - "question_id": 29728, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006545", - "question_id": 29729, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001653", - "question_id": 29730, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005592", - "question_id": 29731, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006089", - "question_id": 29732, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00006661", - "question_id": 29733, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00005330", - "question_id": 29735, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008783", - "question_id": 29736, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007293", - "question_id": 29738, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004708", - "question_id": 29739, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000905", - "question_id": 29740, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "va00005289", - "question_id": 29741, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006659", - "question_id": 29743, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002003", - "question_id": 29744, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004655", - "question_id": 29745, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000501", - "question_id": 29747, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00006295", - "question_id": 29748, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00008466", - "question_id": 29750, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "va00005759", - "question_id": 29752, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000101", - "question_id": 29753, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bagpipe\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002052", - "question_id": 29755, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002807", - "question_id": 29757, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006957", - "question_id": 29758, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00000821", - "question_id": 29760, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00000116", - "question_id": 29761, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005940", - "question_id": 29764, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00004649", - "question_id": 29765, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007553", - "question_id": 29767, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00005432", - "question_id": 29768, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002973", - "question_id": 29769, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006904", - "question_id": 29770, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007443", - "question_id": 29771, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007928", - "question_id": 29773, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007680", - "question_id": 29774, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "sa00007601", - "question_id": 29777, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00004707", - "question_id": 29778, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00004584", - "question_id": 29780, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00001365", - "question_id": 29782, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004220", - "question_id": 29783, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006777", - "question_id": 29784, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006442", - "question_id": 29787, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005185", - "question_id": 29788, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "vv00000052", - "question_id": 29789, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006605", - "question_id": 29790, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007872", - "question_id": 29791, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00007308", - "question_id": 29792, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00006868", - "question_id": 29793, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006924", - "question_id": 29794, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003851", - "question_id": 29795, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005233", - "question_id": 29796, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00007083", - "question_id": 29797, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005577", - "question_id": 29799, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004148", - "question_id": 29800, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002445", - "question_id": 29801, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002583", - "question_id": 29802, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001937", - "question_id": 29804, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "vv00000518", - "question_id": 29805, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "va00003494", - "question_id": 29806, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00007891", - "question_id": 29807, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "va00003845", - "question_id": 29808, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006360", - "question_id": 29809, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003176", - "question_id": 29811, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004896", - "question_id": 29813, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004896", - "question_id": 29813, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001614", - "question_id": 29816, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004965", - "question_id": 29817, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000131", - "question_id": 29818, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00006930", - "question_id": 29820, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003619", - "question_id": 29822, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00004184", - "question_id": 29823, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005540", - "question_id": 29824, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00008345", - "question_id": 29826, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007151", - "question_id": 29827, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00004325", - "question_id": 29828, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004162", - "question_id": 29829, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"tuba\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00004869", - "question_id": 29830, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00004138", - "question_id": 29831, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000255", - "question_id": 29833, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004689", - "question_id": 29834, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005365", - "question_id": 29835, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002913", - "question_id": 29836, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006221", - "question_id": 29837, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004620", - "question_id": 29839, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "va00004581", - "question_id": 29840, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "va00003692", - "question_id": 29841, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00001784", - "question_id": 29843, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00007527", - "question_id": 29844, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005687", - "question_id": 29846, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006152", - "question_id": 29847, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004238", - "question_id": 29848, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003542", - "question_id": 29850, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00007974", - "question_id": 29851, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00007585", - "question_id": 29852, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008033", - "question_id": 29854, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00005282", - "question_id": 29856, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002763", - "question_id": 29857, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000733", - "question_id": 29858, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00006590", - "question_id": 29859, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00001511", - "question_id": 29861, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005835", - "question_id": 29862, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00005841", - "question_id": 29863, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00000698", - "question_id": 29864, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006714", - "question_id": 29866, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00003510", - "question_id": 29870, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "sa00008532", - "question_id": 29871, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008122", - "question_id": 29872, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00008937", - "question_id": 29873, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003996", - "question_id": 29874, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003312", - "question_id": 29876, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005600", - "question_id": 29877, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001633", - "question_id": 29878, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005094", - "question_id": 29879, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00005556", - "question_id": 29881, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004332", - "question_id": 29882, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003721", - "question_id": 29885, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004890", - "question_id": 29887, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003137", - "question_id": 29888, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001851", - "question_id": 29889, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005592", - "question_id": 29890, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00002979", - "question_id": 29895, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000589", - "question_id": 29897, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00008280", - "question_id": 29898, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005713", - "question_id": 29899, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00008042", - "question_id": 29900, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001948", - "question_id": 29901, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006740", - "question_id": 29903, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00005432", - "question_id": 29904, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002539", - "question_id": 29905, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001474", - "question_id": 29906, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002418", - "question_id": 29908, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "va00004569", - "question_id": 29909, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008826", - "question_id": 29910, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002336", - "question_id": 29911, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004914", - "question_id": 29916, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"clarinet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "vv00002643", - "question_id": 29917, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"trumpet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004386", - "question_id": 29918, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008139", - "question_id": 29919, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006016", - "question_id": 29920, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00000435", - "question_id": 29923, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00002361", - "question_id": 29924, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005444", - "question_id": 29925, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005245", - "question_id": 29926, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005254", - "question_id": 29927, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007211", - "question_id": 29928, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "vv00000233", - "question_id": 29929, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00002760", - "question_id": 29930, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007792", - "question_id": 29932, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00004482", - "question_id": 29933, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008466", - "question_id": 29934, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006218", - "question_id": 29935, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00008611", - "question_id": 29937, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003086", - "question_id": 29938, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004309", - "question_id": 29939, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00008059", - "question_id": 29940, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00006382", - "question_id": 29941, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004191", - "question_id": 29942, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006809", - "question_id": 29943, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003972", - "question_id": 29945, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00003551", - "question_id": 29946, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000780", - "question_id": 29948, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000563", - "question_id": 29949, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001188", - "question_id": 29950, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "va00005373", - "question_id": 29953, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "vv00003080", - "question_id": 29954, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"right\", \"tuba\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006096", - "question_id": 29956, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003026", - "question_id": 29959, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00003106", - "question_id": 29960, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00000553", - "question_id": 29961, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00002861", - "question_id": 29962, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "vv00000161", - "question_id": 29963, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000549", - "question_id": 29965, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002287", - "question_id": 29967, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001561", - "question_id": 29968, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000793", - "question_id": 29969, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001009", - "question_id": 29970, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006090", - "question_id": 29972, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006309", - "question_id": 29974, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005296", - "question_id": 29976, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003944", - "question_id": 29977, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00005381", - "question_id": 29978, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005380", - "question_id": 29981, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"banjo\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002092", - "question_id": 29982, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00001199", - "question_id": 29983, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002641", - "question_id": 29984, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00006089", - "question_id": 29986, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005653", - "question_id": 29988, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00004002", - "question_id": 29989, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00005837", - "question_id": 29990, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008002", - "question_id": 29991, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00005135", - "question_id": 29992, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008651", - "question_id": 29994, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00006533", - "question_id": 29995, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00001133", - "question_id": 29998, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000798", - "question_id": 30000, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "vv00002633", - "question_id": 30002, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00000773", - "question_id": 30003, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "vv00003065", - "question_id": 30004, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00007115", - "question_id": 30005, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002951", - "question_id": 30006, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00007341", - "question_id": 30007, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007004", - "question_id": 30009, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004809", - "question_id": 30010, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005952", - "question_id": 30011, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003059", - "question_id": 30013, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "va00003622", - "question_id": 30017, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003779", - "question_id": 30018, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00007648", - "question_id": 30019, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "va00005568", - "question_id": 30020, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00007448", - "question_id": 30022, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "va00005909", - "question_id": 30024, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00001225", - "question_id": 30026, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "va00003816", - "question_id": 30027, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002436", - "question_id": 30029, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"first\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "va00004384", - "question_id": 30030, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002559", - "question_id": 30035, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006398", - "question_id": 30036, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00000021", - "question_id": 30037, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003684", - "question_id": 30038, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005051", - "question_id": 30039, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "sa00006780", - "question_id": 30041, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00005928", - "question_id": 30043, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008618", - "question_id": 30044, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00000910", - "question_id": 30047, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003323", - "question_id": 30048, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00002937", - "question_id": 30050, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"erhu\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003204", - "question_id": 30052, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00003641", - "question_id": 30056, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007200", - "question_id": 30057, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "va00003229", - "question_id": 30058, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001432", - "question_id": 30059, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005922", - "question_id": 30060, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008745", - "question_id": 30061, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "sa00006879", - "question_id": 30063, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00007455", - "question_id": 30064, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007065", - "question_id": 30065, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005199", - "question_id": 30067, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00001896", - "question_id": 30068, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005788", - "question_id": 30070, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007811", - "question_id": 30071, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "va00004596", - "question_id": 30073, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002798", - "question_id": 30077, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "vv00002322", - "question_id": 30080, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00003384", - "question_id": 30081, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008493", - "question_id": 30082, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "vv00000322", - "question_id": 30083, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006979", - "question_id": 30084, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001647", - "question_id": 30085, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001186", - "question_id": 30086, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004268", - "question_id": 30088, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00003967", - "question_id": 30091, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004307", - "question_id": 30094, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003978", - "question_id": 30095, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "va00003088", - "question_id": 30098, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006185", - "question_id": 30101, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001118", - "question_id": 30102, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008573", - "question_id": 30103, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008645", - "question_id": 30104, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00005597", - "question_id": 30105, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00001606", - "question_id": 30107, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006089", - "question_id": 30108, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004299", - "question_id": 30109, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00002980", - "question_id": 30110, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"erhu\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004052", - "question_id": 30111, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00001025", - "question_id": 30112, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"trumpet\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000437", - "question_id": 30113, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002679", - "question_id": 30114, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003191", - "question_id": 30115, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"erhu\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00004618", - "question_id": 30116, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00008299", - "question_id": 30117, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007854", - "question_id": 30118, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00000800", - "question_id": 30120, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002446", - "question_id": 30121, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "va00005307", - "question_id": 30123, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002477", - "question_id": 30125, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004815", - "question_id": 30126, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003371", - "question_id": 30127, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "vv00003027", - "question_id": 30130, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bagpipe\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004000", - "question_id": 30132, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00004863", - "question_id": 30133, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006607", - "question_id": 30135, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004908", - "question_id": 30136, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004032", - "question_id": 30138, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00007680", - "question_id": 30139, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005641", - "question_id": 30140, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007824", - "question_id": 30141, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003241", - "question_id": 30142, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "vv00003065", - "question_id": 30144, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002425", - "question_id": 30145, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003305", - "question_id": 30146, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001549", - "question_id": 30147, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"tuba\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006129", - "question_id": 30148, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00003887", - "question_id": 30149, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000436", - "question_id": 30150, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00001327", - "question_id": 30152, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00006907", - "question_id": 30154, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00000412", - "question_id": 30155, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008965", - "question_id": 30156, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00005271", - "question_id": 30158, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007287", - "question_id": 30159, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00001333", - "question_id": 30161, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "va00005165", - "question_id": 30162, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00001360", - "question_id": 30163, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000597", - "question_id": 30164, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00007790", - "question_id": 30165, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "vv00003076", - "question_id": 30166, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002506", - "question_id": 30168, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003666", - "question_id": 30169, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "sa00006694", - "question_id": 30170, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007727", - "question_id": 30172, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00007833", - "question_id": 30176, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006722", - "question_id": 30179, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "va00004030", - "question_id": 30183, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007082", - "question_id": 30185, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004695", - "question_id": 30187, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004716", - "question_id": 30188, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002624", - "question_id": 30189, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "va00005461", - "question_id": 30190, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "sa00006847", - "question_id": 30193, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000620", - "question_id": 30194, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007424", - "question_id": 30195, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000893", - "question_id": 30196, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001328", - "question_id": 30197, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004221", - "question_id": 30198, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002918", - "question_id": 30199, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008324", - "question_id": 30200, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000076", - "question_id": 30203, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005788", - "question_id": 30204, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "vv00002667", - "question_id": 30208, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000680", - "question_id": 30209, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000943", - "question_id": 30210, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003285", - "question_id": 30211, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005427", - "question_id": 30212, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "va00004531", - "question_id": 30213, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003694", - "question_id": 30214, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006150", - "question_id": 30216, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001493", - "question_id": 30217, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006989", - "question_id": 30218, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "vv00002935", - "question_id": 30219, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003347", - "question_id": 30221, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"bassoon\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007441", - "question_id": 30222, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "va00005342", - "question_id": 30223, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "va00004822", - "question_id": 30226, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00003385", - "question_id": 30227, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00007866", - "question_id": 30228, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005688", - "question_id": 30229, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005752", - "question_id": 30230, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00002462", - "question_id": 30232, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001301", - "question_id": 30233, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "vv00000081", - "question_id": 30234, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00003951", - "question_id": 30235, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003416", - "question_id": 30236, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008646", - "question_id": 30237, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00001368", - "question_id": 30238, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00008274", - "question_id": 30239, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005015", - "question_id": 30240, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006288", - "question_id": 30241, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005940", - "question_id": 30243, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002436", - "question_id": 30244, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "va00005565", - "question_id": 30245, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005963", - "question_id": 30247, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006826", - "question_id": 30248, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00008083", - "question_id": 30249, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005616", - "question_id": 30252, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003771", - "question_id": 30254, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003719", - "question_id": 30256, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004271", - "question_id": 30257, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "sa00007433", - "question_id": 30259, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007536", - "question_id": 30260, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001977", - "question_id": 30264, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001061", - "question_id": 30265, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "vv00003078", - "question_id": 30266, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008397", - "question_id": 30267, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005714", - "question_id": 30268, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004962", - "question_id": 30269, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00007040", - "question_id": 30270, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008950", - "question_id": 30272, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000661", - "question_id": 30273, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000868", - "question_id": 30274, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000203", - "question_id": 30277, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00000990", - "question_id": 30281, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"middle\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002428", - "question_id": 30284, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00002065", - "question_id": 30286, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "sa00008869", - "question_id": 30288, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005875", - "question_id": 30289, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002665", - "question_id": 30290, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007353", - "question_id": 30293, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00003998", - "question_id": 30295, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00006537", - "question_id": 30297, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00006359", - "question_id": 30300, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005022", - "question_id": 30301, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008445", - "question_id": 30302, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006440", - "question_id": 30303, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003547", - "question_id": 30306, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00006765", - "question_id": 30307, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005824", - "question_id": 30310, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002431", - "question_id": 30311, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002478", - "question_id": 30312, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002520", - "question_id": 30314, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00007988", - "question_id": 30316, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000502", - "question_id": 30317, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "va00004338", - "question_id": 30318, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00004652", - "question_id": 30319, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007704", - "question_id": 30321, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002025", - "question_id": 30323, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"drum\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00007928", - "question_id": 30325, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007327", - "question_id": 30326, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001466", - "question_id": 30328, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007585", - "question_id": 30329, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008173", - "question_id": 30330, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00002678", - "question_id": 30332, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00000827", - "question_id": 30334, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00008903", - "question_id": 30335, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001623", - "question_id": 30336, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008863", - "question_id": 30337, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006437", - "question_id": 30338, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002197", - "question_id": 30339, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00003488", - "question_id": 30340, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006810", - "question_id": 30344, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "va00005393", - "question_id": 30345, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000805", - "question_id": 30347, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007879", - "question_id": 30348, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00001849", - "question_id": 30350, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00001037", - "question_id": 30351, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003735", - "question_id": 30352, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007361", - "question_id": 30357, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002499", - "question_id": 30358, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000437", - "question_id": 30360, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001819", - "question_id": 30364, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003270", - "question_id": 30366, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"trumpet\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003478", - "question_id": 30369, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00004010", - "question_id": 30370, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "va00005458", - "question_id": 30371, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"xylophone\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00006423", - "question_id": 30373, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004680", - "question_id": 30377, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000925", - "question_id": 30378, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00002426", - "question_id": 30380, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003185", - "question_id": 30383, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005131", - "question_id": 30384, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001032", - "question_id": 30385, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000824", - "question_id": 30387, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004908", - "question_id": 30388, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00002054", - "question_id": 30390, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005145", - "question_id": 30391, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002444", - "question_id": 30392, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002988", - "question_id": 30393, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00003740", - "question_id": 30394, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00001207", - "question_id": 30395, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00004607", - "question_id": 30396, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000328", - "question_id": 30398, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006971", - "question_id": 30399, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "va00005586", - "question_id": 30400, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008095", - "question_id": 30402, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007666", - "question_id": 30404, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00006700", - "question_id": 30405, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00003030", - "question_id": 30407, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00004835", - "question_id": 30410, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004136", - "question_id": 30413, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002117", - "question_id": 30414, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00008518", - "question_id": 30416, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"middle\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001328", - "question_id": 30419, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002138", - "question_id": 30420, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008062", - "question_id": 30421, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007945", - "question_id": 30422, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005135", - "question_id": 30424, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008052", - "question_id": 30425, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001351", - "question_id": 30426, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "sa00008743", - "question_id": 30428, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003838", - "question_id": 30429, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00002497", - "question_id": 30430, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000817", - "question_id": 30431, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00004956", - "question_id": 30433, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"ukulele\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006012", - "question_id": 30434, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006888", - "question_id": 30435, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "sa00006278", - "question_id": 30436, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00001030", - "question_id": 30437, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005416", - "question_id": 30438, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006562", - "question_id": 30439, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00001117", - "question_id": 30442, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00003227", - "question_id": 30443, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "sa00007216", - "question_id": 30444, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00008280", - "question_id": 30445, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007939", - "question_id": 30446, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003805", - "question_id": 30447, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003824", - "question_id": 30448, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004920", - "question_id": 30449, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006494", - "question_id": 30451, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005830", - "question_id": 30452, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"ukulele\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00007761", - "question_id": 30456, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003812", - "question_id": 30457, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008185", - "question_id": 30458, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"xylophone\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006592", - "question_id": 30459, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002081", - "question_id": 30460, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004272", - "question_id": 30461, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00008879", - "question_id": 30462, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006419", - "question_id": 30463, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004274", - "question_id": 30464, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004073", - "question_id": 30465, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00005529", - "question_id": 30466, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002756", - "question_id": 30467, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001060", - "question_id": 30468, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"pipa\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00004578", - "question_id": 30469, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "sa00007434", - "question_id": 30470, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007844", - "question_id": 30471, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007419", - "question_id": 30472, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "vv00000336", - "question_id": 30474, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00005201", - "question_id": 30475, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00004431", - "question_id": 30477, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004674", - "question_id": 30478, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000979", - "question_id": 30479, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001273", - "question_id": 30480, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00000548", - "question_id": 30481, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00008041", - "question_id": 30482, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007040", - "question_id": 30484, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001010", - "question_id": 30485, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000891", - "question_id": 30488, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "vv00002852", - "question_id": 30489, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "vv00002873", - "question_id": 30491, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006655", - "question_id": 30492, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00000449", - "question_id": 30493, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00001649", - "question_id": 30497, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00001306", - "question_id": 30500, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00005742", - "question_id": 30501, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00001579", - "question_id": 30503, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00003458", - "question_id": 30504, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00001995", - "question_id": 30506, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005177", - "question_id": 30508, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "va00005184", - "question_id": 30509, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00004579", - "question_id": 30510, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008300", - "question_id": 30515, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "vv00000302", - "question_id": 30516, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00003013", - "question_id": 30517, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "sa00006859", - "question_id": 30520, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001571", - "question_id": 30521, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00004900", - "question_id": 30523, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005773", - "question_id": 30524, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008961", - "question_id": 30525, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "vv00000396", - "question_id": 30526, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002026", - "question_id": 30527, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000009", - "question_id": 30528, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "sa00008795", - "question_id": 30529, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003239", - "question_id": 30530, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005740", - "question_id": 30531, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004778", - "question_id": 30532, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004845", - "question_id": 30537, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00001916", - "question_id": 30538, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00005867", - "question_id": 30539, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00003164", - "question_id": 30541, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00006896", - "question_id": 30542, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001043", - "question_id": 30544, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001043", - "question_id": 30544, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002791", - "question_id": 30546, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002761", - "question_id": 30547, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007730", - "question_id": 30548, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002676", - "question_id": 30549, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008880", - "question_id": 30552, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "va00005970", - "question_id": 30554, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001317", - "question_id": 30555, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001983", - "question_id": 30562, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00003692", - "question_id": 30563, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006041", - "question_id": 30564, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00003998", - "question_id": 30565, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00003118", - "question_id": 30566, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006399", - "question_id": 30568, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007642", - "question_id": 30569, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007486", - "question_id": 30570, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006116", - "question_id": 30571, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007364", - "question_id": 30572, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "sa00007721", - "question_id": 30573, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00003417", - "question_id": 30576, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "va00005553", - "question_id": 30577, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005639", - "question_id": 30580, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "vv00000096", - "question_id": 30581, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00008604", - "question_id": 30582, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00007775", - "question_id": 30585, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00008804", - "question_id": 30586, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001032", - "question_id": 30588, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "vv00000173", - "question_id": 30590, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00008292", - "question_id": 30591, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00001805", - "question_id": 30595, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006526", - "question_id": 30598, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00002304", - "question_id": 30599, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005944", - "question_id": 30601, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000710", - "question_id": 30603, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00001389", - "question_id": 30604, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006722", - "question_id": 30605, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006736", - "question_id": 30607, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "vv00000110", - "question_id": 30610, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000348", - "question_id": 30613, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002697", - "question_id": 30615, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00005149", - "question_id": 30616, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005879", - "question_id": 30617, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00001984", - "question_id": 30620, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006528", - "question_id": 30622, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00004649", - "question_id": 30623, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00000681", - "question_id": 30624, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002124", - "question_id": 30625, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00008114", - "question_id": 30626, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00008930", - "question_id": 30627, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"banjo\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008555", - "question_id": 30628, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002716", - "question_id": 30630, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00008060", - "question_id": 30631, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00007988", - "question_id": 30632, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "va00003767", - "question_id": 30635, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00007278", - "question_id": 30636, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006936", - "question_id": 30638, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "vv00000646", - "question_id": 30639, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "va00005279", - "question_id": 30641, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "vv00000394", - "question_id": 30642, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003817", - "question_id": 30643, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00007080", - "question_id": 30644, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006491", - "question_id": 30645, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007175", - "question_id": 30646, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "sa00008332", - "question_id": 30647, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003903", - "question_id": 30648, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"clarinet\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00004073", - "question_id": 30650, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007422", - "question_id": 30651, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006792", - "question_id": 30654, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00003681", - "question_id": 30655, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "vv00002956", - "question_id": 30656, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00005531", - "question_id": 30657, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003253", - "question_id": 30658, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006227", - "question_id": 30660, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007950", - "question_id": 30661, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007501", - "question_id": 30662, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00001702", - "question_id": 30663, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00005952", - "question_id": 30664, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "vv00002956", - "question_id": 30665, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006733", - "question_id": 30666, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003246", - "question_id": 30667, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000432", - "question_id": 30668, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004216", - "question_id": 30670, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004243", - "question_id": 30671, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004746", - "question_id": 30672, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00001895", - "question_id": 30673, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00008157", - "question_id": 30674, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00004604", - "question_id": 30676, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007657", - "question_id": 30678, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005818", - "question_id": 30679, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00006185", - "question_id": 30681, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002985", - "question_id": 30682, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006894", - "question_id": 30683, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006617", - "question_id": 30685, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00007842", - "question_id": 30686, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00006409", - "question_id": 30687, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006182", - "question_id": 30688, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "va00004335", - "question_id": 30689, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003309", - "question_id": 30690, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005049", - "question_id": 30691, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00002233", - "question_id": 30692, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00002461", - "question_id": 30693, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "vv00000125", - "question_id": 30696, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00004758", - "question_id": 30697, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00001671", - "question_id": 30698, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00001228", - "question_id": 30700, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006434", - "question_id": 30701, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00001966", - "question_id": 30702, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00004732", - "question_id": 30705, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00008980", - "question_id": 30707, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003534", - "question_id": 30709, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "vv00003076", - "question_id": 30710, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00004761", - "question_id": 30711, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001432", - "question_id": 30714, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004008", - "question_id": 30715, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008334", - "question_id": 30717, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001405", - "question_id": 30718, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00005567", - "question_id": 30719, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "vv00000492", - "question_id": 30720, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00008607", - "question_id": 30722, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00003897", - "question_id": 30724, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00003907", - "question_id": 30725, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "va00004028", - "question_id": 30726, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00008345", - "question_id": 30727, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00003145", - "question_id": 30729, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00008493", - "question_id": 30730, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005554", - "question_id": 30731, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00005485", - "question_id": 30732, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "vv00008936", - "question_id": 30733, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002519", - "question_id": 30734, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00007487", - "question_id": 30735, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00003163", - "question_id": 30737, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006351", - "question_id": 30739, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005527", - "question_id": 30741, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "vv00003053", - "question_id": 30742, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007572", - "question_id": 30743, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003385", - "question_id": 30744, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "vv00000518", - "question_id": 30745, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"congas\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00004000", - "question_id": 30746, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004261", - "question_id": 30747, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008703", - "question_id": 30749, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00008525", - "question_id": 30751, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007891", - "question_id": 30752, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00001427", - "question_id": 30754, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003707", - "question_id": 30755, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00004815", - "question_id": 30756, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001338", - "question_id": 30757, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00008292", - "question_id": 30760, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00001740", - "question_id": 30761, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006739", - "question_id": 30762, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "vv00000492", - "question_id": 30763, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001497", - "question_id": 30764, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005941", - "question_id": 30766, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008359", - "question_id": 30767, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003763", - "question_id": 30769, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008235", - "question_id": 30770, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001565", - "question_id": 30771, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00006371", - "question_id": 30773, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002902", - "question_id": 30774, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00005383", - "question_id": 30775, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002730", - "question_id": 30776, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00003424", - "question_id": 30777, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004236", - "question_id": 30778, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "va00005295", - "question_id": 30780, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "va00003890", - "question_id": 30782, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00002960", - "question_id": 30783, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004453", - "question_id": 30784, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006992", - "question_id": 30785, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008135", - "question_id": 30786, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000990", - "question_id": 30787, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "vv00000361", - "question_id": 30788, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000527", - "question_id": 30789, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00008712", - "question_id": 30790, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00002207", - "question_id": 30793, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "sa00008245", - "question_id": 30798, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00007088", - "question_id": 30799, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003875", - "question_id": 30801, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00000824", - "question_id": 30802, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "sa00007077", - "question_id": 30803, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004427", - "question_id": 30804, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003372", - "question_id": 30805, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004094", - "question_id": 30806, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00004633", - "question_id": 30807, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00003118", - "question_id": 30808, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007978", - "question_id": 30809, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006466", - "question_id": 30810, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003196", - "question_id": 30811, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001455", - "question_id": 30813, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005749", - "question_id": 30814, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006426", - "question_id": 30815, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "vv00002693", - "question_id": 30816, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007991", - "question_id": 30817, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00002813", - "question_id": 30820, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008253", - "question_id": 30822, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003484", - "question_id": 30823, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00002477", - "question_id": 30825, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000402", - "question_id": 30826, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00007408", - "question_id": 30828, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001164", - "question_id": 30830, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "sa00006575", - "question_id": 30832, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004917", - "question_id": 30834, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00003415", - "question_id": 30835, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004101", - "question_id": 30836, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008644", - "question_id": 30837, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00005691", - "question_id": 30838, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003292", - "question_id": 30839, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000554", - "question_id": 30842, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00008055", - "question_id": 30844, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000011", - "question_id": 30845, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00005212", - "question_id": 30846, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00008607", - "question_id": 30847, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000607", - "question_id": 30848, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001233", - "question_id": 30852, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"middle\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008841", - "question_id": 30854, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00005902", - "question_id": 30855, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006208", - "question_id": 30856, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "sa00007332", - "question_id": 30857, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00001081", - "question_id": 30858, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007672", - "question_id": 30859, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004800", - "question_id": 30860, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002722", - "question_id": 30861, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00000937", - "question_id": 30862, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00005691", - "question_id": 30863, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001120", - "question_id": 30864, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "vv00000196", - "question_id": 30871, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00002391", - "question_id": 30874, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003503", - "question_id": 30875, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001555", - "question_id": 30876, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000629", - "question_id": 30877, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00007401", - "question_id": 30878, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00002431", - "question_id": 30879, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004989", - "question_id": 30880, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"xylophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005351", - "question_id": 30882, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00007260", - "question_id": 30884, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00002478", - "question_id": 30886, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008694", - "question_id": 30887, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001986", - "question_id": 30888, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00001405", - "question_id": 30889, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "va00003376", - "question_id": 30890, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00003516", - "question_id": 30891, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00008353", - "question_id": 30893, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00006118", - "question_id": 30896, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006382", - "question_id": 30897, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00002441", - "question_id": 30899, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00007745", - "question_id": 30901, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00001097", - "question_id": 30902, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001824", - "question_id": 30903, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00002788", - "question_id": 30906, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00006707", - "question_id": 30907, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004959", - "question_id": 30908, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00005744", - "question_id": 30910, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00000644", - "question_id": 30911, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006018", - "question_id": 30914, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008179", - "question_id": 30915, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00001792", - "question_id": 30917, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005761", - "question_id": 30918, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00001796", - "question_id": 30921, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005116", - "question_id": 30923, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"tuba\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001249", - "question_id": 30925, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00000892", - "question_id": 30927, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00003303", - "question_id": 30928, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007742", - "question_id": 30931, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006808", - "question_id": 30932, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00004213", - "question_id": 30933, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00007779", - "question_id": 30937, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00000364", - "question_id": 30938, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008061", - "question_id": 30939, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008613", - "question_id": 30942, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008006", - "question_id": 30943, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004542", - "question_id": 30944, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "vv00000236", - "question_id": 30945, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005456", - "question_id": 30946, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004015", - "question_id": 30947, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"drum\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001898", - "question_id": 30948, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00008839", - "question_id": 30949, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001372", - "question_id": 30950, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "sa00006224", - "question_id": 30951, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00008863", - "question_id": 30952, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00000267", - "question_id": 30954, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00000471", - "question_id": 30955, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00008934", - "question_id": 30956, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004232", - "question_id": 30959, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00000528", - "question_id": 30960, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003937", - "question_id": 30963, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003395", - "question_id": 30965, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00004831", - "question_id": 30966, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001057", - "question_id": 30967, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006636", - "question_id": 30968, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00005080", - "question_id": 30969, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002929", - "question_id": 30971, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004198", - "question_id": 30972, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005236", - "question_id": 30973, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004586", - "question_id": 30974, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005756", - "question_id": 30976, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00001667", - "question_id": 30978, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004105", - "question_id": 30986, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008324", - "question_id": 30987, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00004539", - "question_id": 30989, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00007618", - "question_id": 30991, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00001054", - "question_id": 30992, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00003466", - "question_id": 30994, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00000922", - "question_id": 30995, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006335", - "question_id": 30996, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00003515", - "question_id": 30999, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002871", - "question_id": 31000, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "sa00006940", - "question_id": 31001, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006074", - "question_id": 31002, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004390", - "question_id": 31003, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00000908", - "question_id": 31004, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002545", - "question_id": 31006, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005217", - "question_id": 31007, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003554", - "question_id": 31009, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008102", - "question_id": 31010, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006091", - "question_id": 31011, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001157", - "question_id": 31016, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006123", - "question_id": 31017, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "more than ten" - }, - { - "video_id": "00007034", - "question_id": 31018, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006664", - "question_id": 31020, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006571", - "question_id": 31021, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004360", - "question_id": 31022, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006247", - "question_id": 31023, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000576", - "question_id": 31025, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005826", - "question_id": 31028, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002907", - "question_id": 31029, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002225", - "question_id": 31031, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003474", - "question_id": 31032, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005970", - "question_id": 31033, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008089", - "question_id": 31035, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007648", - "question_id": 31036, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007067", - "question_id": 31037, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "sa00007817", - "question_id": 31039, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001412", - "question_id": 31040, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007649", - "question_id": 31041, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002057", - "question_id": 31042, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004461", - "question_id": 31043, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004505", - "question_id": 31045, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000207", - "question_id": 31047, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000569", - "question_id": 31051, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005965", - "question_id": 31052, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005914", - "question_id": 31054, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000219", - "question_id": 31055, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000229", - "question_id": 31057, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005210", - "question_id": 31061, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004498", - "question_id": 31062, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007373", - "question_id": 31063, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000387", - "question_id": 31064, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006368", - "question_id": 31065, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003203", - "question_id": 31066, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002699", - "question_id": 31067, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008289", - "question_id": 31068, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004596", - "question_id": 31070, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007618", - "question_id": 31071, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006180", - "question_id": 31072, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003688", - "question_id": 31073, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006565", - "question_id": 31074, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004764", - "question_id": 31075, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002264", - "question_id": 31077, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000260", - "question_id": 31079, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005723", - "question_id": 31081, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006235", - "question_id": 31082, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001463", - "question_id": 31083, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006935", - "question_id": 31085, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000585", - "question_id": 31086, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007779", - "question_id": 31087, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00003459", - "question_id": 31088, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001889", - "question_id": 31090, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004149", - "question_id": 31092, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003990", - "question_id": 31093, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008302", - "question_id": 31094, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000242", - "question_id": 31095, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005212", - "question_id": 31096, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000455", - "question_id": 31097, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008395", - "question_id": 31098, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008535", - "question_id": 31099, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "vv00000460", - "question_id": 31101, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008695", - "question_id": 31106, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006583", - "question_id": 31107, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "vv00002786", - "question_id": 31108, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002424", - "question_id": 31110, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007340", - "question_id": 31111, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006620", - "question_id": 31115, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006243", - "question_id": 31117, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002535", - "question_id": 31118, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003524", - "question_id": 31119, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004427", - "question_id": 31120, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004351", - "question_id": 31121, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000635", - "question_id": 31122, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00005364", - "question_id": 31123, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005603", - "question_id": 31124, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008911", - "question_id": 31126, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00007932", - "question_id": 31127, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006757", - "question_id": 31128, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001534", - "question_id": 31130, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001735", - "question_id": 31131, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007985", - "question_id": 31135, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001307", - "question_id": 31136, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005518", - "question_id": 31137, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000013", - "question_id": 31138, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002900", - "question_id": 31139, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003120", - "question_id": 31140, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003229", - "question_id": 31143, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006880", - "question_id": 31144, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008187", - "question_id": 31145, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002338", - "question_id": 31146, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005911", - "question_id": 31148, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007833", - "question_id": 31149, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006671", - "question_id": 31150, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006639", - "question_id": 31151, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005281", - "question_id": 31152, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006026", - "question_id": 31154, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005822", - "question_id": 31156, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00000286", - "question_id": 31157, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003682", - "question_id": 31158, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001400", - "question_id": 31159, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000878", - "question_id": 31160, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008171", - "question_id": 31162, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004184", - "question_id": 31163, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006798", - "question_id": 31164, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005478", - "question_id": 31168, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004347", - "question_id": 31169, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005631", - "question_id": 31170, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004852", - "question_id": 31171, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003333", - "question_id": 31172, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004956", - "question_id": 31175, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004381", - "question_id": 31176, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002195", - "question_id": 31177, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008206", - "question_id": 31178, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003924", - "question_id": 31180, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005527", - "question_id": 31182, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00004620", - "question_id": 31183, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003263", - "question_id": 31184, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004801", - "question_id": 31185, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005599", - "question_id": 31187, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006635", - "question_id": 31188, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004964", - "question_id": 31190, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004332", - "question_id": 31191, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002451", - "question_id": 31192, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006116", - "question_id": 31193, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001748", - "question_id": 31195, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000144", - "question_id": 31196, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000775", - "question_id": 31197, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007917", - "question_id": 31198, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001288", - "question_id": 31199, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003023", - "question_id": 31201, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006951", - "question_id": 31202, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002521", - "question_id": 31203, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002351", - "question_id": 31204, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000208", - "question_id": 31205, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000867", - "question_id": 31207, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007268", - "question_id": 31208, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008420", - "question_id": 31210, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003330", - "question_id": 31211, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000504", - "question_id": 31214, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000831", - "question_id": 31216, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000864", - "question_id": 31218, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004710", - "question_id": 31219, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006738", - "question_id": 31220, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002487", - "question_id": 31221, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001896", - "question_id": 31222, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007727", - "question_id": 31223, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008407", - "question_id": 31226, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006936", - "question_id": 31228, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000354", - "question_id": 31231, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005724", - "question_id": 31233, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003974", - "question_id": 31236, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007741", - "question_id": 31239, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004875", - "question_id": 31240, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006958", - "question_id": 31241, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007646", - "question_id": 31243, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008911", - "question_id": 31244, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00008060", - "question_id": 31245, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005702", - "question_id": 31246, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001699", - "question_id": 31248, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004910", - "question_id": 31249, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006373", - "question_id": 31252, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008433", - "question_id": 31254, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003016", - "question_id": 31255, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003246", - "question_id": 31258, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002993", - "question_id": 31259, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006496", - "question_id": 31260, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004174", - "question_id": 31264, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001734", - "question_id": 31266, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000283", - "question_id": 31268, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008092", - "question_id": 31269, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002789", - "question_id": 31270, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006338", - "question_id": 31272, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008751", - "question_id": 31274, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002005", - "question_id": 31276, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007489", - "question_id": 31278, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008718", - "question_id": 31279, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003383", - "question_id": 31280, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005481", - "question_id": 31281, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008284", - "question_id": 31282, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005680", - "question_id": 31283, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00006730", - "question_id": 31284, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007134", - "question_id": 31285, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002179", - "question_id": 31286, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "va00003817", - "question_id": 31288, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004863", - "question_id": 31289, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002215", - "question_id": 31292, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002552", - "question_id": 31295, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005169", - "question_id": 31298, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005257", - "question_id": 31299, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004575", - "question_id": 31300, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007278", - "question_id": 31303, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007802", - "question_id": 31305, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001464", - "question_id": 31307, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007508", - "question_id": 31308, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008213", - "question_id": 31309, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00004145", - "question_id": 31310, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007225", - "question_id": 31311, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004627", - "question_id": 31312, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006792", - "question_id": 31315, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000756", - "question_id": 31317, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004279", - "question_id": 31318, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005461", - "question_id": 31321, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002566", - "question_id": 31323, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001329", - "question_id": 31324, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003057", - "question_id": 31327, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008009", - "question_id": 31328, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001561", - "question_id": 31329, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003398", - "question_id": 31330, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004156", - "question_id": 31332, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008336", - "question_id": 31333, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008156", - "question_id": 31334, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006985", - "question_id": 31335, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008285", - "question_id": 31336, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002533", - "question_id": 31338, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000125", - "question_id": 31339, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007797", - "question_id": 31340, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007216", - "question_id": 31341, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007472", - "question_id": 31344, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007012", - "question_id": 31345, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006500", - "question_id": 31348, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007067", - "question_id": 31350, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008429", - "question_id": 31351, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005052", - "question_id": 31352, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004625", - "question_id": 31353, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005226", - "question_id": 31354, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008741", - "question_id": 31355, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001455", - "question_id": 31356, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004787", - "question_id": 31358, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000282", - "question_id": 31360, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008282", - "question_id": 31363, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004461", - "question_id": 31364, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "sa00007308", - "question_id": 31365, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004948", - "question_id": 31368, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007237", - "question_id": 31369, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004412", - "question_id": 31370, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007839", - "question_id": 31373, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00000255", - "question_id": 31376, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004394", - "question_id": 31378, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004435", - "question_id": 31379, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008745", - "question_id": 31380, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007916", - "question_id": 31383, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000307", - "question_id": 31385, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008021", - "question_id": 31386, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005589", - "question_id": 31387, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001089", - "question_id": 31388, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008652", - "question_id": 31391, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004978", - "question_id": 31392, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002859", - "question_id": 31394, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007612", - "question_id": 31396, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007236", - "question_id": 31397, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005627", - "question_id": 31400, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002177", - "question_id": 31402, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003553", - "question_id": 31403, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006718", - "question_id": 31404, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007924", - "question_id": 31405, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001353", - "question_id": 31406, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002826", - "question_id": 31407, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004760", - "question_id": 31411, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004475", - "question_id": 31413, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008851", - "question_id": 31415, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007349", - "question_id": 31417, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005305", - "question_id": 31418, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006023", - "question_id": 31419, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007178", - "question_id": 31420, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006452", - "question_id": 31422, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002942", - "question_id": 31423, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001632", - "question_id": 31424, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001660", - "question_id": 31425, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000056", - "question_id": 31428, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008236", - "question_id": 31429, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004858", - "question_id": 31431, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005520", - "question_id": 31432, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003428", - "question_id": 31434, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005003", - "question_id": 31435, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008375", - "question_id": 31437, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006544", - "question_id": 31441, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000009", - "question_id": 31444, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002748", - "question_id": 31445, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "va00003495", - "question_id": 31446, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007120", - "question_id": 31449, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "va00003125", - "question_id": 31450, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004463", - "question_id": 31451, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005910", - "question_id": 31452, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001591", - "question_id": 31453, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000253", - "question_id": 31454, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000507", - "question_id": 31455, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00008943", - "question_id": 31458, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007272", - "question_id": 31459, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004103", - "question_id": 31460, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008068", - "question_id": 31461, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005390", - "question_id": 31462, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001272", - "question_id": 31464, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004108", - "question_id": 31466, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008891", - "question_id": 31468, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005050", - "question_id": 31469, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003967", - "question_id": 31471, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006535", - "question_id": 31472, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002564", - "question_id": 31473, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007899", - "question_id": 31474, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000572", - "question_id": 31477, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008595", - "question_id": 31478, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008841", - "question_id": 31479, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001978", - "question_id": 31480, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006976", - "question_id": 31481, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007790", - "question_id": 31482, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001644", - "question_id": 31483, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005831", - "question_id": 31484, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000841", - "question_id": 31485, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007236", - "question_id": 31488, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001262", - "question_id": 31491, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001002", - "question_id": 31492, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004037", - "question_id": 31493, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001092", - "question_id": 31494, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002544", - "question_id": 31496, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007533", - "question_id": 31498, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004653", - "question_id": 31500, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006002", - "question_id": 31501, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008137", - "question_id": 31503, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00003113", - "question_id": 31505, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002019", - "question_id": 31506, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "vv00000196", - "question_id": 31507, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007610", - "question_id": 31508, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "va00004627", - "question_id": 31509, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005093", - "question_id": 31510, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008492", - "question_id": 31511, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001155", - "question_id": 31513, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008700", - "question_id": 31514, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008700", - "question_id": 31514, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005891", - "question_id": 31515, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004532", - "question_id": 31516, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007770", - "question_id": 31517, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000871", - "question_id": 31519, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001749", - "question_id": 31521, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000379", - "question_id": 31522, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003740", - "question_id": 31523, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000327", - "question_id": 31524, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007415", - "question_id": 31525, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004265", - "question_id": 31527, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003258", - "question_id": 31528, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002824", - "question_id": 31529, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008150", - "question_id": 31530, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007350", - "question_id": 31532, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006815", - "question_id": 31533, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00008345", - "question_id": 31535, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005582", - "question_id": 31536, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004620", - "question_id": 31538, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003800", - "question_id": 31540, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008062", - "question_id": 31542, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000500", - "question_id": 31543, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006953", - "question_id": 31544, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003791", - "question_id": 31545, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002764", - "question_id": 31546, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00008340", - "question_id": 31548, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000757", - "question_id": 31549, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00001097", - "question_id": 31554, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003918", - "question_id": 31555, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000087", - "question_id": 31556, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000125", - "question_id": 31557, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004677", - "question_id": 31558, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008676", - "question_id": 31559, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00008302", - "question_id": 31561, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008302", - "question_id": 31561, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005339", - "question_id": 31562, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00000885", - "question_id": 31563, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "sa00006119", - "question_id": 31564, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003534", - "question_id": 31565, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00008111", - "question_id": 31566, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006134", - "question_id": 31570, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008905", - "question_id": 31572, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002827", - "question_id": 31573, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001413", - "question_id": 31574, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000548", - "question_id": 31577, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00005975", - "question_id": 31579, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006054", - "question_id": 31583, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003909", - "question_id": 31584, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002334", - "question_id": 31585, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004781", - "question_id": 31586, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007561", - "question_id": 31587, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007299", - "question_id": 31591, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002652", - "question_id": 31592, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000683", - "question_id": 31594, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003888", - "question_id": 31595, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000255", - "question_id": 31596, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008693", - "question_id": 31597, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003485", - "question_id": 31598, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001183", - "question_id": 31599, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004736", - "question_id": 31602, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004077", - "question_id": 31603, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002847", - "question_id": 31605, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00007157", - "question_id": 31606, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004374", - "question_id": 31608, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008799", - "question_id": 31609, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003334", - "question_id": 31610, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001311", - "question_id": 31611, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000214", - "question_id": 31615, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001432", - "question_id": 31616, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007877", - "question_id": 31618, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002693", - "question_id": 31619, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004752", - "question_id": 31621, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003568", - "question_id": 31622, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00001526", - "question_id": 31625, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005402", - "question_id": 31627, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007838", - "question_id": 31628, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006483", - "question_id": 31629, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004707", - "question_id": 31630, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004245", - "question_id": 31632, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000338", - "question_id": 31634, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004141", - "question_id": 31636, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00004655", - "question_id": 31638, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006885", - "question_id": 31639, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000638", - "question_id": 31640, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005238", - "question_id": 31642, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004408", - "question_id": 31643, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005113", - "question_id": 31644, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006691", - "question_id": 31646, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002278", - "question_id": 31647, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005906", - "question_id": 31650, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004747", - "question_id": 31652, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005713", - "question_id": 31653, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008110", - "question_id": 31654, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004864", - "question_id": 31655, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003356", - "question_id": 31658, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008879", - "question_id": 31659, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008879", - "question_id": 31659, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008295", - "question_id": 31660, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005453", - "question_id": 31663, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006370", - "question_id": 31664, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003194", - "question_id": 31665, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002675", - "question_id": 31666, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003464", - "question_id": 31667, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002384", - "question_id": 31669, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004892", - "question_id": 31670, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003363", - "question_id": 31672, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007800", - "question_id": 31674, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005085", - "question_id": 31675, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002787", - "question_id": 31676, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005572", - "question_id": 31677, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007860", - "question_id": 31678, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005316", - "question_id": 31679, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005365", - "question_id": 31680, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007019", - "question_id": 31681, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00001828", - "question_id": 31682, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004785", - "question_id": 31683, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005938", - "question_id": 31684, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008039", - "question_id": 31685, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003373", - "question_id": 31686, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005155", - "question_id": 31687, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007900", - "question_id": 31688, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007276", - "question_id": 31689, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007465", - "question_id": 31690, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003842", - "question_id": 31693, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007009", - "question_id": 31694, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001210", - "question_id": 31695, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00007415", - "question_id": 31696, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000304", - "question_id": 31697, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002799", - "question_id": 31699, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006982", - "question_id": 31702, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008817", - "question_id": 31703, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000089", - "question_id": 31705, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00004914", - "question_id": 31706, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005787", - "question_id": 31707, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003982", - "question_id": 31708, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003418", - "question_id": 31709, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002916", - "question_id": 31710, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006279", - "question_id": 31711, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007326", - "question_id": 31713, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000800", - "question_id": 31714, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002308", - "question_id": 31715, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004095", - "question_id": 31716, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004966", - "question_id": 31717, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001749", - "question_id": 31719, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00001174", - "question_id": 31722, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001545", - "question_id": 31723, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006058", - "question_id": 31725, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007053", - "question_id": 31727, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003663", - "question_id": 31728, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006140", - "question_id": 31730, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008628", - "question_id": 31731, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006001", - "question_id": 31732, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004373", - "question_id": 31733, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006465", - "question_id": 31734, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000308", - "question_id": 31735, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "sa00006317", - "question_id": 31736, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007435", - "question_id": 31737, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005897", - "question_id": 31738, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00006301", - "question_id": 31740, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002230", - "question_id": 31741, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004087", - "question_id": 31743, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000210", - "question_id": 31744, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001322", - "question_id": 31746, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003306", - "question_id": 31747, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007434", - "question_id": 31748, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002493", - "question_id": 31751, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "sa00008868", - "question_id": 31753, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004870", - "question_id": 31754, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00004866", - "question_id": 31755, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007876", - "question_id": 31757, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001302", - "question_id": 31758, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001081", - "question_id": 31759, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "sa00006941", - "question_id": 31762, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000236", - "question_id": 31763, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"tuba\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005611", - "question_id": 31764, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006397", - "question_id": 31765, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003694", - "question_id": 31767, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "sa00007598", - "question_id": 31769, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006296", - "question_id": 31774, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008654", - "question_id": 31778, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003256", - "question_id": 31781, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005668", - "question_id": 31782, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006720", - "question_id": 31783, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005226", - "question_id": 31784, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001771", - "question_id": 31785, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001151", - "question_id": 31786, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007050", - "question_id": 31789, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008427", - "question_id": 31791, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005354", - "question_id": 31792, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003781", - "question_id": 31794, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001661", - "question_id": 31795, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004136", - "question_id": 31796, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005347", - "question_id": 31800, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005086", - "question_id": 31801, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002874", - "question_id": 31802, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002329", - "question_id": 31803, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007216", - "question_id": 31805, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002616", - "question_id": 31806, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004923", - "question_id": 31807, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008456", - "question_id": 31808, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000538", - "question_id": 31809, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bagpipe\", \"right\", \"bagpipe\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004671", - "question_id": 31811, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00005975", - "question_id": 31812, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003085", - "question_id": 31814, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002607", - "question_id": 31815, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005797", - "question_id": 31817, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002707", - "question_id": 31818, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008208", - "question_id": 31819, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003063", - "question_id": 31820, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004568", - "question_id": 31821, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00007978", - "question_id": 31824, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004914", - "question_id": 31825, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007378", - "question_id": 31826, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005601", - "question_id": 31828, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000615", - "question_id": 31829, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000752", - "question_id": 31830, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00005299", - "question_id": 31831, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002820", - "question_id": 31833, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00003700", - "question_id": 31834, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003004", - "question_id": 31836, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004528", - "question_id": 31838, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006916", - "question_id": 31839, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00003080", - "question_id": 31841, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000508", - "question_id": 31843, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001704", - "question_id": 31846, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007711", - "question_id": 31847, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007841", - "question_id": 31848, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004902", - "question_id": 31849, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002954", - "question_id": 31850, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000672", - "question_id": 31852, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006938", - "question_id": 31853, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00000653", - "question_id": 31854, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006780", - "question_id": 31855, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001969", - "question_id": 31857, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00002308", - "question_id": 31859, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003654", - "question_id": 31860, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000270", - "question_id": 31862, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003964", - "question_id": 31863, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004614", - "question_id": 31866, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007664", - "question_id": 31867, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001485", - "question_id": 31868, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00004125", - "question_id": 31869, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004465", - "question_id": 31870, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006856", - "question_id": 31871, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002042", - "question_id": 31872, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000694", - "question_id": 31873, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007726", - "question_id": 31874, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007726", - "question_id": 31874, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003366", - "question_id": 31875, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001742", - "question_id": 31876, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006335", - "question_id": 31879, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000013", - "question_id": 31880, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000068", - "question_id": 31881, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000844", - "question_id": 31883, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007351", - "question_id": 31884, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002826", - "question_id": 31885, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003759", - "question_id": 31886, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007153", - "question_id": 31887, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000221", - "question_id": 31888, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002292", - "question_id": 31889, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000891", - "question_id": 31891, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001341", - "question_id": 31894, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "vv00002689", - "question_id": 31895, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00004137", - "question_id": 31896, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00004137", - "question_id": 31896, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001727", - "question_id": 31898, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005019", - "question_id": 31899, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005250", - "question_id": 31902, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000703", - "question_id": 31904, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004218", - "question_id": 31905, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000257", - "question_id": 31906, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003919", - "question_id": 31907, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007466", - "question_id": 31908, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007962", - "question_id": 31909, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005574", - "question_id": 31910, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003894", - "question_id": 31912, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006810", - "question_id": 31913, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005838", - "question_id": 31914, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005022", - "question_id": 31915, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005101", - "question_id": 31916, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "va00004284", - "question_id": 31920, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005699", - "question_id": 31921, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006164", - "question_id": 31922, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005799", - "question_id": 31925, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005619", - "question_id": 31926, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006003", - "question_id": 31927, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007730", - "question_id": 31929, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002851", - "question_id": 31930, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004383", - "question_id": 31931, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002227", - "question_id": 31932, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008127", - "question_id": 31933, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003776", - "question_id": 31939, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002570", - "question_id": 31940, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001661", - "question_id": 31941, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006915", - "question_id": 31942, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006824", - "question_id": 31943, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005416", - "question_id": 31944, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001556", - "question_id": 31947, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00007014", - "question_id": 31949, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000219", - "question_id": 31952, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001167", - "question_id": 31953, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007643", - "question_id": 31954, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003109", - "question_id": 31956, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004762", - "question_id": 31958, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001065", - "question_id": 31959, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001085", - "question_id": 31961, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006891", - "question_id": 31963, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001315", - "question_id": 31964, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007330", - "question_id": 31965, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008948", - "question_id": 31966, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004331", - "question_id": 31967, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000897", - "question_id": 31968, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005912", - "question_id": 31970, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008483", - "question_id": 31973, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008603", - "question_id": 31976, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004082", - "question_id": 31977, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00006432", - "question_id": 31978, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002438", - "question_id": 31979, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006085", - "question_id": 31980, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002818", - "question_id": 31982, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004330", - "question_id": 31983, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005040", - "question_id": 31984, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006350", - "question_id": 31985, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004410", - "question_id": 31986, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003532", - "question_id": 31987, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002983", - "question_id": 31988, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001925", - "question_id": 31989, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003555", - "question_id": 31990, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007782", - "question_id": 31991, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002279", - "question_id": 31994, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004227", - "question_id": 31996, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007143", - "question_id": 31997, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001938", - "question_id": 31998, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005756", - "question_id": 31999, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008196", - "question_id": 32000, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006435", - "question_id": 32001, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006374", - "question_id": 32004, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003049", - "question_id": 32005, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003654", - "question_id": 32006, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002280", - "question_id": 32007, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001630", - "question_id": 32008, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000790", - "question_id": 32009, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007650", - "question_id": 32010, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008585", - "question_id": 32012, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001994", - "question_id": 32013, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006103", - "question_id": 32014, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003205", - "question_id": 32016, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004491", - "question_id": 32019, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001138", - "question_id": 32020, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003623", - "question_id": 32024, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "vv00000525", - "question_id": 32025, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002663", - "question_id": 32027, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006940", - "question_id": 32028, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001075", - "question_id": 32030, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008782", - "question_id": 32031, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003457", - "question_id": 32032, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005607", - "question_id": 32033, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006529", - "question_id": 32034, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007826", - "question_id": 32035, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005520", - "question_id": 32036, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004491", - "question_id": 32038, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005837", - "question_id": 32041, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006050", - "question_id": 32042, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000829", - "question_id": 32045, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"banjo\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006313", - "question_id": 32047, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006198", - "question_id": 32048, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001882", - "question_id": 32049, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006539", - "question_id": 32050, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007628", - "question_id": 32051, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002396", - "question_id": 32052, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "sa00006859", - "question_id": 32054, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007476", - "question_id": 32055, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005305", - "question_id": 32056, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003325", - "question_id": 32057, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005199", - "question_id": 32058, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001816", - "question_id": 32059, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00005987", - "question_id": 32060, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000914", - "question_id": 32061, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004536", - "question_id": 32064, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00007806", - "question_id": 32066, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004494", - "question_id": 32067, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001480", - "question_id": 32068, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005666", - "question_id": 32069, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00004619", - "question_id": 32071, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002873", - "question_id": 32072, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005883", - "question_id": 32073, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000940", - "question_id": 32074, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000342", - "question_id": 32076, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001808", - "question_id": 32078, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006451", - "question_id": 32080, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003157", - "question_id": 32081, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006667", - "question_id": 32082, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005838", - "question_id": 32084, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003310", - "question_id": 32085, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007811", - "question_id": 32087, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004211", - "question_id": 32088, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006936", - "question_id": 32089, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004717", - "question_id": 32090, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007152", - "question_id": 32091, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005415", - "question_id": 32092, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004887", - "question_id": 32093, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003473", - "question_id": 32094, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006219", - "question_id": 32095, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006350", - "question_id": 32096, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005752", - "question_id": 32097, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006270", - "question_id": 32098, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004671", - "question_id": 32099, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "vv00000173", - "question_id": 32100, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008149", - "question_id": 32101, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004886", - "question_id": 32102, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006261", - "question_id": 32103, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "sa00007668", - "question_id": 32104, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003904", - "question_id": 32105, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004616", - "question_id": 32106, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00005441", - "question_id": 32107, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006285", - "question_id": 32108, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007265", - "question_id": 32110, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006578", - "question_id": 32112, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000958", - "question_id": 32113, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006545", - "question_id": 32115, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008760", - "question_id": 32116, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008691", - "question_id": 32117, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005526", - "question_id": 32119, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007376", - "question_id": 32121, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00003376", - "question_id": 32123, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007813", - "question_id": 32125, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008773", - "question_id": 32126, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00003845", - "question_id": 32127, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005638", - "question_id": 32128, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003315", - "question_id": 32129, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005155", - "question_id": 32130, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004702", - "question_id": 32131, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002763", - "question_id": 32132, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002055", - "question_id": 32133, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007294", - "question_id": 32134, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003140", - "question_id": 32135, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00000323", - "question_id": 32136, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004856", - "question_id": 32137, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003517", - "question_id": 32138, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000593", - "question_id": 32139, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000290", - "question_id": 32140, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007096", - "question_id": 32141, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002804", - "question_id": 32143, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002091", - "question_id": 32144, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004292", - "question_id": 32148, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003934", - "question_id": 32150, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008976", - "question_id": 32151, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002510", - "question_id": 32152, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003968", - "question_id": 32153, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005696", - "question_id": 32154, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004123", - "question_id": 32156, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007213", - "question_id": 32158, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002529", - "question_id": 32159, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000533", - "question_id": 32161, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002378", - "question_id": 32162, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007139", - "question_id": 32164, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005545", - "question_id": 32165, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000813", - "question_id": 32166, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006183", - "question_id": 32167, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002545", - "question_id": 32169, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005949", - "question_id": 32170, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000792", - "question_id": 32171, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008876", - "question_id": 32173, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006747", - "question_id": 32174, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005425", - "question_id": 32175, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002183", - "question_id": 32176, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005564", - "question_id": 32177, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005111", - "question_id": 32178, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005200", - "question_id": 32179, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007410", - "question_id": 32182, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000491", - "question_id": 32184, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003461", - "question_id": 32186, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002241", - "question_id": 32187, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00003328", - "question_id": 32188, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003816", - "question_id": 32189, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008875", - "question_id": 32191, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002978", - "question_id": 32192, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006436", - "question_id": 32195, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003815", - "question_id": 32196, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007932", - "question_id": 32197, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004473", - "question_id": 32198, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007715", - "question_id": 32199, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005807", - "question_id": 32200, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001133", - "question_id": 32201, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004185", - "question_id": 32202, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006511", - "question_id": 32203, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000421", - "question_id": 32204, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003268", - "question_id": 32205, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000113", - "question_id": 32206, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006981", - "question_id": 32208, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000447", - "question_id": 32209, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007992", - "question_id": 32210, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004829", - "question_id": 32211, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002123", - "question_id": 32212, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "va00003125", - "question_id": 32213, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006352", - "question_id": 32216, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007934", - "question_id": 32217, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007314", - "question_id": 32218, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007174", - "question_id": 32219, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001224", - "question_id": 32220, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007003", - "question_id": 32222, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000786", - "question_id": 32225, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002353", - "question_id": 32226, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002137", - "question_id": 32227, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005458", - "question_id": 32228, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"suona\", \"left\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003813", - "question_id": 32229, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007711", - "question_id": 32230, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000548", - "question_id": 32232, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004142", - "question_id": 32233, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006119", - "question_id": 32235, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001922", - "question_id": 32236, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00001386", - "question_id": 32238, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005734", - "question_id": 32239, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008679", - "question_id": 32240, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006558", - "question_id": 32241, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006500", - "question_id": 32244, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004786", - "question_id": 32248, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005101", - "question_id": 32249, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008768", - "question_id": 32250, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006437", - "question_id": 32251, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00006300", - "question_id": 32252, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001360", - "question_id": 32253, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007467", - "question_id": 32254, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003531", - "question_id": 32257, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005041", - "question_id": 32261, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007497", - "question_id": 32262, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005107", - "question_id": 32265, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005600", - "question_id": 32266, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006111", - "question_id": 32267, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006345", - "question_id": 32268, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006442", - "question_id": 32269, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004453", - "question_id": 32272, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004878", - "question_id": 32273, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000555", - "question_id": 32274, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008305", - "question_id": 32276, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006833", - "question_id": 32277, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000204", - "question_id": 32279, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008671", - "question_id": 32282, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006306", - "question_id": 32283, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002789", - "question_id": 32285, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001973", - "question_id": 32287, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008947", - "question_id": 32288, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004168", - "question_id": 32290, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002986", - "question_id": 32292, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005752", - "question_id": 32293, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005414", - "question_id": 32294, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003383", - "question_id": 32296, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007199", - "question_id": 32298, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003681", - "question_id": 32299, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005891", - "question_id": 32301, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000239", - "question_id": 32303, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005130", - "question_id": 32304, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005532", - "question_id": 32305, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001502", - "question_id": 32306, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003804", - "question_id": 32307, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002181", - "question_id": 32309, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004710", - "question_id": 32310, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000448", - "question_id": 32311, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007837", - "question_id": 32312, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003541", - "question_id": 32314, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006679", - "question_id": 32315, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003157", - "question_id": 32316, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006891", - "question_id": 32317, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007628", - "question_id": 32318, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00008379", - "question_id": 32319, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "sa00007406", - "question_id": 32321, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001161", - "question_id": 32322, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005976", - "question_id": 32323, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006311", - "question_id": 32324, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004514", - "question_id": 32325, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00001403", - "question_id": 32330, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007785", - "question_id": 32331, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008459", - "question_id": 32334, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001720", - "question_id": 32335, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003331", - "question_id": 32336, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005116", - "question_id": 32338, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004328", - "question_id": 32339, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00005963", - "question_id": 32341, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001133", - "question_id": 32342, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"saxophone\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007154", - "question_id": 32343, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000009", - "question_id": 32345, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003770", - "question_id": 32348, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003980", - "question_id": 32349, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008231", - "question_id": 32350, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005780", - "question_id": 32351, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003507", - "question_id": 32352, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000878", - "question_id": 32354, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000951", - "question_id": 32355, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "va00003675", - "question_id": 32356, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003665", - "question_id": 32357, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002545", - "question_id": 32358, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005766", - "question_id": 32359, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007768", - "question_id": 32361, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008649", - "question_id": 32364, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006257", - "question_id": 32365, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001526", - "question_id": 32366, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008889", - "question_id": 32367, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002384", - "question_id": 32368, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002868", - "question_id": 32369, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008086", - "question_id": 32370, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005842", - "question_id": 32371, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005753", - "question_id": 32372, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006556", - "question_id": 32374, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008840", - "question_id": 32377, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"electric_bass\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007035", - "question_id": 32379, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007694", - "question_id": 32380, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006590", - "question_id": 32381, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003678", - "question_id": 32382, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008777", - "question_id": 32383, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003831", - "question_id": 32384, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005888", - "question_id": 32385, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00005923", - "question_id": 32386, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005575", - "question_id": 32387, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008704", - "question_id": 32388, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003543", - "question_id": 32390, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003400", - "question_id": 32391, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "vv00000091", - "question_id": 32392, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003396", - "question_id": 32394, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002307", - "question_id": 32395, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006506", - "question_id": 32396, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003880", - "question_id": 32397, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007958", - "question_id": 32399, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006738", - "question_id": 32400, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003100", - "question_id": 32401, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003524", - "question_id": 32403, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002698", - "question_id": 32404, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "va00003791", - "question_id": 32405, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008259", - "question_id": 32408, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004580", - "question_id": 32410, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003566", - "question_id": 32411, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005776", - "question_id": 32412, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005300", - "question_id": 32414, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004784", - "question_id": 32415, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004864", - "question_id": 32416, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007946", - "question_id": 32417, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003259", - "question_id": 32419, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005438", - "question_id": 32420, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007056", - "question_id": 32421, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000772", - "question_id": 32422, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001145", - "question_id": 32423, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003891", - "question_id": 32424, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006457", - "question_id": 32425, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004882", - "question_id": 32426, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "sa00006547", - "question_id": 32429, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003860", - "question_id": 32431, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000330", - "question_id": 32432, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004856", - "question_id": 32433, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006257", - "question_id": 32439, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006222", - "question_id": 32440, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006134", - "question_id": 32442, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "vv00000345", - "question_id": 32444, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008515", - "question_id": 32445, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006226", - "question_id": 32447, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008611", - "question_id": 32449, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008118", - "question_id": 32450, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003424", - "question_id": 32452, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008235", - "question_id": 32453, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002921", - "question_id": 32454, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001425", - "question_id": 32455, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007870", - "question_id": 32456, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00006119", - "question_id": 32458, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005288", - "question_id": 32460, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "vv00000369", - "question_id": 32461, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"suona\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006907", - "question_id": 32462, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002030", - "question_id": 32463, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004005", - "question_id": 32465, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004693", - "question_id": 32466, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008641", - "question_id": 32468, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007054", - "question_id": 32470, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005698", - "question_id": 32474, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001532", - "question_id": 32475, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002711", - "question_id": 32476, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006503", - "question_id": 32477, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004787", - "question_id": 32478, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000358", - "question_id": 32482, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006179", - "question_id": 32483, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005681", - "question_id": 32484, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004254", - "question_id": 32486, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005573", - "question_id": 32488, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007823", - "question_id": 32489, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006430", - "question_id": 32490, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000653", - "question_id": 32491, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005174", - "question_id": 32492, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004242", - "question_id": 32495, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008969", - "question_id": 32497, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003137", - "question_id": 32498, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000551", - "question_id": 32500, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003935", - "question_id": 32501, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"clarinet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00005891", - "question_id": 32502, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006854", - "question_id": 32503, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003125", - "question_id": 32505, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002618", - "question_id": 32507, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001529", - "question_id": 32508, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006436", - "question_id": 32511, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000302", - "question_id": 32512, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000607", - "question_id": 32514, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007496", - "question_id": 32515, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006876", - "question_id": 32517, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00002579", - "question_id": 32518, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000446", - "question_id": 32520, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "sa00006534", - "question_id": 32522, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006591", - "question_id": 32523, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006088", - "question_id": 32524, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008200", - "question_id": 32525, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008081", - "question_id": 32526, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003666", - "question_id": 32527, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00005374", - "question_id": 32528, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004883", - "question_id": 32530, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000507", - "question_id": 32531, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003071", - "question_id": 32532, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002951", - "question_id": 32533, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000281", - "question_id": 32534, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00004415", - "question_id": 32535, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005907", - "question_id": 32536, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002682", - "question_id": 32537, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006965", - "question_id": 32538, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002734", - "question_id": 32539, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00003052", - "question_id": 32541, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008254", - "question_id": 32543, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000927", - "question_id": 32544, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007784", - "question_id": 32546, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006169", - "question_id": 32547, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003376", - "question_id": 32548, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002437", - "question_id": 32549, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "va00005079", - "question_id": 32550, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007474", - "question_id": 32551, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005352", - "question_id": 32552, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007802", - "question_id": 32553, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004432", - "question_id": 32554, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006724", - "question_id": 32555, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000566", - "question_id": 32559, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003177", - "question_id": 32560, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007529", - "question_id": 32561, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007529", - "question_id": 32562, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002779", - "question_id": 32565, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000077", - "question_id": 32566, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001126", - "question_id": 32567, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "va00003284", - "question_id": 32568, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007034", - "question_id": 32569, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004126", - "question_id": 32570, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002640", - "question_id": 32571, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004773", - "question_id": 32572, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000372", - "question_id": 32573, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003034", - "question_id": 32574, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005677", - "question_id": 32575, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007576", - "question_id": 32576, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002935", - "question_id": 32577, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000389", - "question_id": 32579, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "sa00007721", - "question_id": 32580, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007464", - "question_id": 32583, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003873", - "question_id": 32585, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002841", - "question_id": 32586, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002551", - "question_id": 32588, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007983", - "question_id": 32590, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002257", - "question_id": 32591, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006994", - "question_id": 32596, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00004501", - "question_id": 32598, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006928", - "question_id": 32599, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008772", - "question_id": 32600, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00003065", - "question_id": 32604, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007116", - "question_id": 32605, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003935", - "question_id": 32606, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005539", - "question_id": 32607, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008320", - "question_id": 32609, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007244", - "question_id": 32610, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004958", - "question_id": 32611, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003100", - "question_id": 32612, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "sa00007077", - "question_id": 32613, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003862", - "question_id": 32614, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003826", - "question_id": 32615, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001356", - "question_id": 32616, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001284", - "question_id": 32617, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004901", - "question_id": 32618, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008151", - "question_id": 32620, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006085", - "question_id": 32621, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00006985", - "question_id": 32623, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006064", - "question_id": 32626, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003818", - "question_id": 32629, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005862", - "question_id": 32630, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006340", - "question_id": 32631, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003742", - "question_id": 32632, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00000875", - "question_id": 32633, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003360", - "question_id": 32635, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004205", - "question_id": 32636, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005923", - "question_id": 32637, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004301", - "question_id": 32638, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007046", - "question_id": 32641, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003788", - "question_id": 32643, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004443", - "question_id": 32647, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000078", - "question_id": 32648, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "sa00008136", - "question_id": 32649, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006985", - "question_id": 32650, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006331", - "question_id": 32651, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003774", - "question_id": 32653, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008025", - "question_id": 32655, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008129", - "question_id": 32657, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004000", - "question_id": 32659, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002663", - "question_id": 32660, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004025", - "question_id": 32661, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004320", - "question_id": 32662, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003813", - "question_id": 32663, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002009", - "question_id": 32664, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001207", - "question_id": 32665, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008233", - "question_id": 32668, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002624", - "question_id": 32671, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008624", - "question_id": 32672, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008304", - "question_id": 32673, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00002315", - "question_id": 32675, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000966", - "question_id": 32678, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006295", - "question_id": 32679, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002275", - "question_id": 32681, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000531", - "question_id": 32682, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000423", - "question_id": 32684, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003215", - "question_id": 32686, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006201", - "question_id": 32687, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008625", - "question_id": 32688, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"guzheng\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006551", - "question_id": 32690, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008219", - "question_id": 32691, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002645", - "question_id": 32692, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003798", - "question_id": 32693, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "sa00008544", - "question_id": 32695, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006099", - "question_id": 32696, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002776", - "question_id": 32697, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00002592", - "question_id": 32698, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005577", - "question_id": 32701, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006366", - "question_id": 32702, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008357", - "question_id": 32703, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005753", - "question_id": 32705, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007992", - "question_id": 32706, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001475", - "question_id": 32707, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008488", - "question_id": 32708, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008188", - "question_id": 32709, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "sa00007785", - "question_id": 32712, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001104", - "question_id": 32714, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00001481", - "question_id": 32715, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008223", - "question_id": 32717, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007336", - "question_id": 32720, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "va00004978", - "question_id": 32721, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008473", - "question_id": 32722, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004609", - "question_id": 32725, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006686", - "question_id": 32726, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003845", - "question_id": 32727, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004353", - "question_id": 32728, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00008914", - "question_id": 32729, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000099", - "question_id": 32731, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004059", - "question_id": 32732, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002410", - "question_id": 32733, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003205", - "question_id": 32735, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000517", - "question_id": 32737, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004945", - "question_id": 32739, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007609", - "question_id": 32740, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002175", - "question_id": 32741, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005810", - "question_id": 32742, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007426", - "question_id": 32743, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006919", - "question_id": 32745, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "va00003882", - "question_id": 32746, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005443", - "question_id": 32747, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005505", - "question_id": 32748, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008716", - "question_id": 32750, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002463", - "question_id": 32752, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002677", - "question_id": 32755, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006964", - "question_id": 32756, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00006940", - "question_id": 32757, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004066", - "question_id": 32758, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008312", - "question_id": 32759, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003049", - "question_id": 32761, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006560", - "question_id": 32762, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "vv00000216", - "question_id": 32763, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007961", - "question_id": 32766, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007291", - "question_id": 32767, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004148", - "question_id": 32770, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003473", - "question_id": 32771, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008400", - "question_id": 32772, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005584", - "question_id": 32773, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008583", - "question_id": 32774, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004218", - "question_id": 32775, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003196", - "question_id": 32779, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008471", - "question_id": 32780, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007102", - "question_id": 32781, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002368", - "question_id": 32782, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003290", - "question_id": 32783, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003938", - "question_id": 32784, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006235", - "question_id": 32785, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002366", - "question_id": 32787, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000617", - "question_id": 32788, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008535", - "question_id": 32790, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004995", - "question_id": 32791, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004501", - "question_id": 32792, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000511", - "question_id": 32793, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008723", - "question_id": 32794, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007746", - "question_id": 32795, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006935", - "question_id": 32796, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007793", - "question_id": 32797, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004618", - "question_id": 32798, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005341", - "question_id": 32799, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002576", - "question_id": 32800, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003907", - "question_id": 32801, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000298", - "question_id": 32802, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003843", - "question_id": 32803, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004436", - "question_id": 32804, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003369", - "question_id": 32805, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007695", - "question_id": 32806, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006998", - "question_id": 32808, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006502", - "question_id": 32809, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00000177", - "question_id": 32810, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002817", - "question_id": 32811, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007616", - "question_id": 32813, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003456", - "question_id": 32816, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006780", - "question_id": 32817, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008344", - "question_id": 32819, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003609", - "question_id": 32820, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00002421", - "question_id": 32821, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000657", - "question_id": 32822, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007354", - "question_id": 32823, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005001", - "question_id": 32825, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003670", - "question_id": 32827, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002195", - "question_id": 32828, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000219", - "question_id": 32829, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "sa00007117", - "question_id": 32830, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003894", - "question_id": 32832, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003456", - "question_id": 32833, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003985", - "question_id": 32835, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008230", - "question_id": 32837, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007467", - "question_id": 32838, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004034", - "question_id": 32839, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001418", - "question_id": 32840, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003209", - "question_id": 32841, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000419", - "question_id": 32842, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00003464", - "question_id": 32846, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004773", - "question_id": 32849, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000247", - "question_id": 32852, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004806", - "question_id": 32853, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002554", - "question_id": 32856, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003465", - "question_id": 32857, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001446", - "question_id": 32858, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004294", - "question_id": 32859, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007209", - "question_id": 32861, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002201", - "question_id": 32862, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007895", - "question_id": 32863, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001339", - "question_id": 32865, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007705", - "question_id": 32866, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006599", - "question_id": 32867, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004571", - "question_id": 32868, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006660", - "question_id": 32869, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000411", - "question_id": 32870, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004495", - "question_id": 32873, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007383", - "question_id": 32874, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006374", - "question_id": 32876, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000594", - "question_id": 32877, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007383", - "question_id": 32878, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004526", - "question_id": 32879, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001312", - "question_id": 32880, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006539", - "question_id": 32881, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000493", - "question_id": 32882, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007795", - "question_id": 32884, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007149", - "question_id": 32886, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006486", - "question_id": 32887, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000895", - "question_id": 32888, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003753", - "question_id": 32889, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008871", - "question_id": 32892, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007940", - "question_id": 32893, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001546", - "question_id": 32894, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00004561", - "question_id": 32896, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002386", - "question_id": 32898, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002952", - "question_id": 32900, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002579", - "question_id": 32902, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00008927", - "question_id": 32903, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004481", - "question_id": 32904, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006385", - "question_id": 32905, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004150", - "question_id": 32906, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008633", - "question_id": 32907, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003120", - "question_id": 32908, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007166", - "question_id": 32909, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000302", - "question_id": 32910, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008096", - "question_id": 32911, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005408", - "question_id": 32912, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002930", - "question_id": 32913, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005145", - "question_id": 32914, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008820", - "question_id": 32916, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006606", - "question_id": 32918, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007852", - "question_id": 32919, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00007037", - "question_id": 32920, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008751", - "question_id": 32921, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007435", - "question_id": 32922, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004307", - "question_id": 32923, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005726", - "question_id": 32925, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000712", - "question_id": 32926, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001492", - "question_id": 32927, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005268", - "question_id": 32928, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005001", - "question_id": 32929, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002667", - "question_id": 32930, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008622", - "question_id": 32931, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008378", - "question_id": 32933, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00000977", - "question_id": 32934, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000611", - "question_id": 32935, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008053", - "question_id": 32937, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003475", - "question_id": 32939, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00005473", - "question_id": 32940, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003732", - "question_id": 32941, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000564", - "question_id": 32942, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00002964", - "question_id": 32943, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "sa00007154", - "question_id": 32944, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007054", - "question_id": 32945, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007357", - "question_id": 32946, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001489", - "question_id": 32947, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006917", - "question_id": 32948, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006009", - "question_id": 32949, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "sa00008841", - "question_id": 32952, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002786", - "question_id": 32956, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003313", - "question_id": 32957, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008291", - "question_id": 32961, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007043", - "question_id": 32962, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005796", - "question_id": 32963, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001251", - "question_id": 32964, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008238", - "question_id": 32966, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006134", - "question_id": 32967, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "more than ten" - }, - { - "video_id": "00005603", - "question_id": 32968, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006099", - "question_id": 32969, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008425", - "question_id": 32970, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "vv00002546", - "question_id": 32971, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000268", - "question_id": 32973, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001976", - "question_id": 32974, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007381", - "question_id": 32975, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007096", - "question_id": 32979, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005043", - "question_id": 32980, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003229", - "question_id": 32981, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004125", - "question_id": 32982, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005971", - "question_id": 32983, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "sa00008420", - "question_id": 32986, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005490", - "question_id": 32987, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005331", - "question_id": 32989, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005292", - "question_id": 32990, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004882", - "question_id": 32991, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003695", - "question_id": 32992, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005038", - "question_id": 32993, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003095", - "question_id": 32995, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00008963", - "question_id": 32996, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00003517", - "question_id": 32997, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008031", - "question_id": 32998, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"tuba\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002654", - "question_id": 32999, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "va00003409", - "question_id": 33000, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000415", - "question_id": 33001, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005686", - "question_id": 33003, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008570", - "question_id": 33004, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004823", - "question_id": 33005, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005333", - "question_id": 33007, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005402", - "question_id": 33009, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002485", - "question_id": 33010, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00000758", - "question_id": 33011, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001104", - "question_id": 33012, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006476", - "question_id": 33013, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006311", - "question_id": 33014, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007035", - "question_id": 33016, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001390", - "question_id": 33018, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006164", - "question_id": 33019, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007544", - "question_id": 33021, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008110", - "question_id": 33022, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007884", - "question_id": 33023, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "va00005577", - "question_id": 33024, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007219", - "question_id": 33027, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001863", - "question_id": 33028, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002416", - "question_id": 33029, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "va00004916", - "question_id": 33032, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007563", - "question_id": 33033, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002140", - "question_id": 33034, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003867", - "question_id": 33036, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002654", - "question_id": 33037, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002707", - "question_id": 33038, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006478", - "question_id": 33039, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004765", - "question_id": 33040, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001554", - "question_id": 33042, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003412", - "question_id": 33043, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005427", - "question_id": 33044, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006602", - "question_id": 33045, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006362", - "question_id": 33047, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005519", - "question_id": 33048, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002885", - "question_id": 33050, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005345", - "question_id": 33051, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005068", - "question_id": 33052, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006050", - "question_id": 33054, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000801", - "question_id": 33055, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002309", - "question_id": 33057, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006810", - "question_id": 33058, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004329", - "question_id": 33060, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000439", - "question_id": 33062, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004673", - "question_id": 33063, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004467", - "question_id": 33065, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001530", - "question_id": 33066, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00002774", - "question_id": 33067, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001589", - "question_id": 33068, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007747", - "question_id": 33070, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004382", - "question_id": 33071, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006821", - "question_id": 33072, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007445", - "question_id": 33073, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002702", - "question_id": 33074, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008233", - "question_id": 33076, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008343", - "question_id": 33077, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008367", - "question_id": 33078, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008367", - "question_id": 33078, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005823", - "question_id": 33080, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005153", - "question_id": 33081, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007168", - "question_id": 33084, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005964", - "question_id": 33085, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002985", - "question_id": 33086, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006226", - "question_id": 33091, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003943", - "question_id": 33092, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003156", - "question_id": 33093, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006676", - "question_id": 33095, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000422", - "question_id": 33097, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008858", - "question_id": 33098, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000011", - "question_id": 33100, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007314", - "question_id": 33101, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00002390", - "question_id": 33102, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003244", - "question_id": 33103, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007920", - "question_id": 33104, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002861", - "question_id": 33105, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003807", - "question_id": 33106, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004462", - "question_id": 33108, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004152", - "question_id": 33109, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005164", - "question_id": 33110, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007023", - "question_id": 33111, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003574", - "question_id": 33112, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005002", - "question_id": 33113, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008766", - "question_id": 33114, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002692", - "question_id": 33115, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001110", - "question_id": 33117, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006894", - "question_id": 33118, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003777", - "question_id": 33119, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002173", - "question_id": 33120, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006199", - "question_id": 33122, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000327", - "question_id": 33124, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003394", - "question_id": 33125, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005858", - "question_id": 33127, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002625", - "question_id": 33128, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001150", - "question_id": 33129, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001836", - "question_id": 33130, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001221", - "question_id": 33131, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006583", - "question_id": 33132, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003575", - "question_id": 33133, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001081", - "question_id": 33135, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "vv00002978", - "question_id": 33138, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007443", - "question_id": 33140, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003696", - "question_id": 33141, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005377", - "question_id": 33142, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005085", - "question_id": 33146, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006513", - "question_id": 33147, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002357", - "question_id": 33149, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008150", - "question_id": 33152, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "sa00006725", - "question_id": 33153, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005037", - "question_id": 33154, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007721", - "question_id": 33155, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007680", - "question_id": 33158, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000469", - "question_id": 33161, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007462", - "question_id": 33163, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002505", - "question_id": 33164, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004153", - "question_id": 33171, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000047", - "question_id": 33172, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004160", - "question_id": 33173, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003966", - "question_id": 33174, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008344", - "question_id": 33176, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007558", - "question_id": 33177, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004767", - "question_id": 33178, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003704", - "question_id": 33184, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002639", - "question_id": 33185, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006141", - "question_id": 33186, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005211", - "question_id": 33187, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004091", - "question_id": 33188, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004252", - "question_id": 33191, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00003642", - "question_id": 33192, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006457", - "question_id": 33193, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001288", - "question_id": 33194, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002055", - "question_id": 33195, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003644", - "question_id": 33197, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008758", - "question_id": 33200, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002626", - "question_id": 33201, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003302", - "question_id": 33202, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007429", - "question_id": 33203, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007184", - "question_id": 33204, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002575", - "question_id": 33205, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000789", - "question_id": 33206, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002778", - "question_id": 33207, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004772", - "question_id": 33208, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006849", - "question_id": 33211, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000586", - "question_id": 33212, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005347", - "question_id": 33213, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002894", - "question_id": 33214, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000685", - "question_id": 33215, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001514", - "question_id": 33216, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001044", - "question_id": 33217, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00003429", - "question_id": 33218, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000922", - "question_id": 33220, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003652", - "question_id": 33221, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008194", - "question_id": 33223, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001281", - "question_id": 33224, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008758", - "question_id": 33225, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001042", - "question_id": 33226, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004745", - "question_id": 33228, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008226", - "question_id": 33229, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001867", - "question_id": 33231, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001848", - "question_id": 33232, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003848", - "question_id": 33233, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004570", - "question_id": 33235, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008824", - "question_id": 33236, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "vv00000322", - "question_id": 33237, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008404", - "question_id": 33238, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000227", - "question_id": 33242, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004454", - "question_id": 33243, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008085", - "question_id": 33244, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00005848", - "question_id": 33245, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002275", - "question_id": 33247, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000703", - "question_id": 33250, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008104", - "question_id": 33251, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000273", - "question_id": 33252, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00006712", - "question_id": 33254, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007225", - "question_id": 33255, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004154", - "question_id": 33257, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006137", - "question_id": 33258, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008673", - "question_id": 33259, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004585", - "question_id": 33261, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006622", - "question_id": 33262, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005882", - "question_id": 33264, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007598", - "question_id": 33265, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001396", - "question_id": 33266, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003332", - "question_id": 33268, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004785", - "question_id": 33269, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003401", - "question_id": 33273, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007927", - "question_id": 33274, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00000521", - "question_id": 33275, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003230", - "question_id": 33276, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006933", - "question_id": 33278, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004132", - "question_id": 33279, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000575", - "question_id": 33282, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004525", - "question_id": 33283, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005461", - "question_id": 33284, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003703", - "question_id": 33286, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006694", - "question_id": 33288, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005187", - "question_id": 33290, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008221", - "question_id": 33291, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007928", - "question_id": 33293, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008695", - "question_id": 33294, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001376", - "question_id": 33295, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001517", - "question_id": 33296, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000075", - "question_id": 33297, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00002791", - "question_id": 33299, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003437", - "question_id": 33301, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008329", - "question_id": 33303, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003005", - "question_id": 33304, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006909", - "question_id": 33305, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002640", - "question_id": 33306, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000902", - "question_id": 33307, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002916", - "question_id": 33308, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004799", - "question_id": 33309, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002999", - "question_id": 33312, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005098", - "question_id": 33313, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003730", - "question_id": 33315, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004586", - "question_id": 33316, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005212", - "question_id": 33318, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006251", - "question_id": 33320, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002107", - "question_id": 33322, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004459", - "question_id": 33324, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000870", - "question_id": 33325, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "sa00007782", - "question_id": 33330, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005157", - "question_id": 33331, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000064", - "question_id": 33332, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000157", - "question_id": 33336, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004229", - "question_id": 33338, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003313", - "question_id": 33339, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005019", - "question_id": 33340, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004209", - "question_id": 33341, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00003672", - "question_id": 33342, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003495", - "question_id": 33344, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002147", - "question_id": 33345, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008209", - "question_id": 33347, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003391", - "question_id": 33350, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001611", - "question_id": 33353, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001825", - "question_id": 33354, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006820", - "question_id": 33356, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007675", - "question_id": 33357, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008536", - "question_id": 33359, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003767", - "question_id": 33360, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000404", - "question_id": 33362, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002203", - "question_id": 33363, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00001785", - "question_id": 33364, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004744", - "question_id": 33365, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001960", - "question_id": 33368, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006082", - "question_id": 33370, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003742", - "question_id": 33373, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006766", - "question_id": 33374, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008914", - "question_id": 33375, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007184", - "question_id": 33376, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003409", - "question_id": 33377, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007962", - "question_id": 33379, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "va00004326", - "question_id": 33380, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002567", - "question_id": 33381, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004030", - "question_id": 33384, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006974", - "question_id": 33385, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008912", - "question_id": 33388, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000240", - "question_id": 33390, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001607", - "question_id": 33391, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000375", - "question_id": 33392, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007113", - "question_id": 33393, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005426", - "question_id": 33394, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007952", - "question_id": 33396, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007052", - "question_id": 33398, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003990", - "question_id": 33399, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006914", - "question_id": 33400, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001011", - "question_id": 33403, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004131", - "question_id": 33405, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003953", - "question_id": 33406, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00001985", - "question_id": 33407, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00007532", - "question_id": 33408, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004327", - "question_id": 33411, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007098", - "question_id": 33412, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008092", - "question_id": 33413, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002114", - "question_id": 33415, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003882", - "question_id": 33418, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000765", - "question_id": 33419, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008068", - "question_id": 33421, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003899", - "question_id": 33422, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00004207", - "question_id": 33423, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006433", - "question_id": 33426, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004154", - "question_id": 33428, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000421", - "question_id": 33430, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "more than ten" - }, - { - "video_id": "00000439", - "question_id": 33431, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005264", - "question_id": 33434, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006052", - "question_id": 33435, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007721", - "question_id": 33436, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001526", - "question_id": 33438, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005289", - "question_id": 33440, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "vv00000351", - "question_id": 33441, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006604", - "question_id": 33442, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002042", - "question_id": 33443, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "va00005796", - "question_id": 33444, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005291", - "question_id": 33447, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006605", - "question_id": 33449, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004862", - "question_id": 33450, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003298", - "question_id": 33451, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006148", - "question_id": 33453, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002430", - "question_id": 33457, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004207", - "question_id": 33458, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008683", - "question_id": 33459, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003045", - "question_id": 33460, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006529", - "question_id": 33461, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008064", - "question_id": 33462, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008390", - "question_id": 33463, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006315", - "question_id": 33464, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006595", - "question_id": 33465, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007107", - "question_id": 33466, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005895", - "question_id": 33467, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001595", - "question_id": 33468, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007869", - "question_id": 33469, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"ukulele\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00005603", - "question_id": 33470, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000815", - "question_id": 33471, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005552", - "question_id": 33473, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008524", - "question_id": 33474, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004622", - "question_id": 33475, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "va00005130", - "question_id": 33476, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005351", - "question_id": 33477, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00003081", - "question_id": 33478, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003742", - "question_id": 33479, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003062", - "question_id": 33480, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002846", - "question_id": 33482, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002422", - "question_id": 33484, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000106", - "question_id": 33485, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004605", - "question_id": 33486, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003300", - "question_id": 33487, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001651", - "question_id": 33488, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003990", - "question_id": 33489, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00002782", - "question_id": 33491, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001835", - "question_id": 33492, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005436", - "question_id": 33493, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006945", - "question_id": 33494, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003680", - "question_id": 33495, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006036", - "question_id": 33496, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002365", - "question_id": 33497, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005643", - "question_id": 33499, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005165", - "question_id": 33501, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00005449", - "question_id": 33502, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000513", - "question_id": 33503, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002375", - "question_id": 33504, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000116", - "question_id": 33506, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "sa00006684", - "question_id": 33507, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007589", - "question_id": 33510, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003580", - "question_id": 33512, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008187", - "question_id": 33513, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005480", - "question_id": 33515, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008463", - "question_id": 33516, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001785", - "question_id": 33518, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004015", - "question_id": 33519, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005164", - "question_id": 33520, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00002964", - "question_id": 33522, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004345", - "question_id": 33523, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008661", - "question_id": 33525, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008913", - "question_id": 33526, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007919", - "question_id": 33527, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007919", - "question_id": 33527, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007780", - "question_id": 33528, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008626", - "question_id": 33529, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003859", - "question_id": 33530, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002930", - "question_id": 33532, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002818", - "question_id": 33533, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005765", - "question_id": 33535, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008531", - "question_id": 33536, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003609", - "question_id": 33537, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003416", - "question_id": 33538, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002509", - "question_id": 33539, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000617", - "question_id": 33540, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006605", - "question_id": 33541, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000404", - "question_id": 33543, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004036", - "question_id": 33544, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00003076", - "question_id": 33546, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008929", - "question_id": 33547, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005270", - "question_id": 33548, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003603", - "question_id": 33549, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000085", - "question_id": 33551, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006762", - "question_id": 33552, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005205", - "question_id": 33554, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003106", - "question_id": 33556, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002515", - "question_id": 33557, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006743", - "question_id": 33559, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "va00005222", - "question_id": 33560, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008205", - "question_id": 33562, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007175", - "question_id": 33563, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007602", - "question_id": 33565, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000671", - "question_id": 33568, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003401", - "question_id": 33569, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008763", - "question_id": 33570, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004615", - "question_id": 33571, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006856", - "question_id": 33572, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001237", - "question_id": 33574, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005337", - "question_id": 33577, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003451", - "question_id": 33578, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008527", - "question_id": 33581, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007601", - "question_id": 33582, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002617", - "question_id": 33583, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002324", - "question_id": 33584, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005171", - "question_id": 33585, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002511", - "question_id": 33586, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000357", - "question_id": 33587, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005794", - "question_id": 33589, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008976", - "question_id": 33593, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007638", - "question_id": 33594, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007377", - "question_id": 33595, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001044", - "question_id": 33596, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006027", - "question_id": 33597, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007780", - "question_id": 33598, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003222", - "question_id": 33599, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005024", - "question_id": 33600, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002855", - "question_id": 33601, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007207", - "question_id": 33602, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004332", - "question_id": 33603, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008785", - "question_id": 33604, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007333", - "question_id": 33606, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008667", - "question_id": 33608, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004442", - "question_id": 33610, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001206", - "question_id": 33611, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006545", - "question_id": 33612, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001239", - "question_id": 33614, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003890", - "question_id": 33615, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002577", - "question_id": 33617, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005572", - "question_id": 33618, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000567", - "question_id": 33622, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004758", - "question_id": 33623, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001159", - "question_id": 33626, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"ukulele\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00002821", - "question_id": 33628, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000286", - "question_id": 33629, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006320", - "question_id": 33632, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006645", - "question_id": 33634, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001482", - "question_id": 33635, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003261", - "question_id": 33636, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"tuba\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "sa00008089", - "question_id": 33637, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008280", - "question_id": 33639, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003960", - "question_id": 33640, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002470", - "question_id": 33641, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007319", - "question_id": 33642, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003768", - "question_id": 33643, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00005495", - "question_id": 33646, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001452", - "question_id": 33648, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "va00003461", - "question_id": 33650, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006097", - "question_id": 33653, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003152", - "question_id": 33654, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000491", - "question_id": 33655, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008971", - "question_id": 33657, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004694", - "question_id": 33659, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006854", - "question_id": 33660, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"congas\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00007865", - "question_id": 33661, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008278", - "question_id": 33662, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000493", - "question_id": 33664, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00005197", - "question_id": 33665, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006509", - "question_id": 33667, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003661", - "question_id": 33668, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001865", - "question_id": 33669, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005103", - "question_id": 33675, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "vv00002886", - "question_id": 33676, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"pipa\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00008066", - "question_id": 33677, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003105", - "question_id": 33678, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003697", - "question_id": 33680, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "va00003654", - "question_id": 33681, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00002841", - "question_id": 33682, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004878", - "question_id": 33683, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00008413", - "question_id": 33685, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001599", - "question_id": 33690, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"banjo\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000476", - "question_id": 33691, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004256", - "question_id": 33692, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004967", - "question_id": 33693, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003583", - "question_id": 33694, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002514", - "question_id": 33695, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001860", - "question_id": 33696, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "sa00008630", - "question_id": 33697, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004533", - "question_id": 33698, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008244", - "question_id": 33701, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001716", - "question_id": 33704, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005512", - "question_id": 33707, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007279", - "question_id": 33709, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008452", - "question_id": 33712, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002268", - "question_id": 33713, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00003768", - "question_id": 33715, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001663", - "question_id": 33716, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004854", - "question_id": 33717, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001183", - "question_id": 33720, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008636", - "question_id": 33722, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005900", - "question_id": 33723, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008281", - "question_id": 33724, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006472", - "question_id": 33726, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008376", - "question_id": 33727, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006961", - "question_id": 33728, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000221", - "question_id": 33729, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005439", - "question_id": 33730, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "vv00002647", - "question_id": 33731, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005727", - "question_id": 33733, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005891", - "question_id": 33734, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006976", - "question_id": 33735, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005765", - "question_id": 33736, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000044", - "question_id": 33737, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004553", - "question_id": 33738, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "sa00006712", - "question_id": 33739, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000944", - "question_id": 33740, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001446", - "question_id": 33742, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00000547", - "question_id": 33743, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007710", - "question_id": 33744, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007361", - "question_id": 33745, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"pipa\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003303", - "question_id": 33746, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006294", - "question_id": 33749, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002546", - "question_id": 33752, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"trumpet\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00001087", - "question_id": 33753, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007822", - "question_id": 33755, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00003061", - "question_id": 33759, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00006488", - "question_id": 33760, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002577", - "question_id": 33761, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007715", - "question_id": 33764, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004187", - "question_id": 33765, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003915", - "question_id": 33766, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003083", - "question_id": 33767, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003741", - "question_id": 33768, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002693", - "question_id": 33770, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005031", - "question_id": 33771, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007754", - "question_id": 33772, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "sa00006857", - "question_id": 33773, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003777", - "question_id": 33775, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00001303", - "question_id": 33776, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000901", - "question_id": 33777, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003839", - "question_id": 33779, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001711", - "question_id": 33783, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004283", - "question_id": 33785, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "va00003621", - "question_id": 33786, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003482", - "question_id": 33787, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002682", - "question_id": 33788, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004545", - "question_id": 33789, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003188", - "question_id": 33793, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003843", - "question_id": 33794, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008094", - "question_id": 33795, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004959", - "question_id": 33799, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00007331", - "question_id": 33800, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008265", - "question_id": 33801, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008810", - "question_id": 33802, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000395", - "question_id": 33803, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006753", - "question_id": 33804, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003665", - "question_id": 33805, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003665", - "question_id": 33805, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007301", - "question_id": 33806, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002555", - "question_id": 33807, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00008716", - "question_id": 33810, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004057", - "question_id": 33812, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008539", - "question_id": 33813, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005089", - "question_id": 33815, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000933", - "question_id": 33816, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005882", - "question_id": 33817, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00006220", - "question_id": 33818, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002536", - "question_id": 33819, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008008", - "question_id": 33820, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00005463", - "question_id": 33821, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004009", - "question_id": 33823, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007659", - "question_id": 33825, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002469", - "question_id": 33826, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00008198", - "question_id": 33827, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006747", - "question_id": 33828, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003187", - "question_id": 33829, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002210", - "question_id": 33831, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003649", - "question_id": 33835, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004866", - "question_id": 33837, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00006575", - "question_id": 33838, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005250", - "question_id": 33839, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002227", - "question_id": 33840, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006118", - "question_id": 33841, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004041", - "question_id": 33842, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005397", - "question_id": 33843, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00007264", - "question_id": 33844, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001308", - "question_id": 33845, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006026", - "question_id": 33846, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005722", - "question_id": 33847, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00005028", - "question_id": 33851, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003580", - "question_id": 33852, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00000948", - "question_id": 33853, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00003020", - "question_id": 33854, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003251", - "question_id": 33855, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003497", - "question_id": 33856, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007688", - "question_id": 33857, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006255", - "question_id": 33859, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006444", - "question_id": 33860, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008500", - "question_id": 33862, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002987", - "question_id": 33864, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004912", - "question_id": 33865, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006388", - "question_id": 33867, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007500", - "question_id": 33869, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008744", - "question_id": 33872, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005372", - "question_id": 33873, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"erhu\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006247", - "question_id": 33874, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004006", - "question_id": 33878, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007803", - "question_id": 33879, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006434", - "question_id": 33880, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003791", - "question_id": 33884, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002547", - "question_id": 33885, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008695", - "question_id": 33887, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004320", - "question_id": 33888, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001194", - "question_id": 33891, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00005831", - "question_id": 33892, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008107", - "question_id": 33893, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002447", - "question_id": 33894, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002104", - "question_id": 33895, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "nine" - }, - { - "video_id": "vv00002691", - "question_id": 33896, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "sa00008456", - "question_id": 33897, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005184", - "question_id": 33898, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002183", - "question_id": 33899, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00003809", - "question_id": 33900, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003823", - "question_id": 33901, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001566", - "question_id": 33904, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003494", - "question_id": 33905, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004424", - "question_id": 33906, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002989", - "question_id": 33908, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007987", - "question_id": 33909, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00008936", - "question_id": 33910, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00008936", - "question_id": 33910, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "vv00002667", - "question_id": 33911, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"drum\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "va00004028", - "question_id": 33912, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00005830", - "question_id": 33913, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000789", - "question_id": 33916, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004182", - "question_id": 33917, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00003152", - "question_id": 33918, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007553", - "question_id": 33919, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000664", - "question_id": 33920, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004339", - "question_id": 33922, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003736", - "question_id": 33923, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007271", - "question_id": 33924, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002841", - "question_id": 33925, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002240", - "question_id": 33926, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "vv00002618", - "question_id": 33927, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001534", - "question_id": 33928, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002908", - "question_id": 33929, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003209", - "question_id": 33930, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005176", - "question_id": 33931, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000405", - "question_id": 33932, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002502", - "question_id": 33933, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00008610", - "question_id": 33934, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008559", - "question_id": 33936, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003051", - "question_id": 33937, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008094", - "question_id": 33938, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008300", - "question_id": 33939, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005078", - "question_id": 33941, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005520", - "question_id": 33942, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002661", - "question_id": 33943, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006855", - "question_id": 33944, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000514", - "question_id": 33945, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004545", - "question_id": 33946, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002421", - "question_id": 33947, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00004941", - "question_id": 33951, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006209", - "question_id": 33952, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005578", - "question_id": 33953, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006221", - "question_id": 33954, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000001", - "question_id": 33955, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004256", - "question_id": 33958, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001712", - "question_id": 33959, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000813", - "question_id": 33961, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00003556", - "question_id": 33962, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005060", - "question_id": 33964, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003644", - "question_id": 33965, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"guzheng\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00008296", - "question_id": 33966, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004642", - "question_id": 33967, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007694", - "question_id": 33968, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "sa00006318", - "question_id": 33971, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005434", - "question_id": 33972, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004965", - "question_id": 33973, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002896", - "question_id": 33974, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001892", - "question_id": 33976, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004467", - "question_id": 33977, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003263", - "question_id": 33978, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"banjo\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00001903", - "question_id": 33979, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005756", - "question_id": 33980, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008953", - "question_id": 33981, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007870", - "question_id": 33982, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006679", - "question_id": 33983, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002599", - "question_id": 33987, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004710", - "question_id": 33988, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006816", - "question_id": 33989, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00004050", - "question_id": 33994, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004549", - "question_id": 33995, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "sa00007643", - "question_id": 33996, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002828", - "question_id": 33997, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006532", - "question_id": 33999, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000356", - "question_id": 34000, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001135", - "question_id": 34001, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005961", - "question_id": 34004, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000184", - "question_id": 34005, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"bassoon\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000905", - "question_id": 34007, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002056", - "question_id": 34008, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006578", - "question_id": 34009, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00006208", - "question_id": 34010, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002495", - "question_id": 34011, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003986", - "question_id": 34012, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003696", - "question_id": 34013, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004454", - "question_id": 34014, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003094", - "question_id": 34015, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007942", - "question_id": 34016, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002871", - "question_id": 34017, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "va00003102", - "question_id": 34018, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006496", - "question_id": 34019, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"banjo\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00004249", - "question_id": 34020, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002288", - "question_id": 34021, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008811", - "question_id": 34023, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006621", - "question_id": 34024, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003215", - "question_id": 34025, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "vv00002742", - "question_id": 34026, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001774", - "question_id": 34027, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000063", - "question_id": 34028, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005110", - "question_id": 34030, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002028", - "question_id": 34031, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006639", - "question_id": 34032, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "va00004541", - "question_id": 34033, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005060", - "question_id": 34034, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006339", - "question_id": 34035, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00004020", - "question_id": 34037, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "va00004518", - "question_id": 34038, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005193", - "question_id": 34039, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008101", - "question_id": 34042, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003210", - "question_id": 34046, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00007476", - "question_id": 34048, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005892", - "question_id": 34050, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003538", - "question_id": 34051, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "sa00007925", - "question_id": 34052, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008664", - "question_id": 34053, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002375", - "question_id": 34054, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006696", - "question_id": 34055, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003645", - "question_id": 34056, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004600", - "question_id": 34058, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007407", - "question_id": 34059, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002681", - "question_id": 34060, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006628", - "question_id": 34062, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00002436", - "question_id": 34063, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003126", - "question_id": 34065, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002557", - "question_id": 34067, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007819", - "question_id": 34068, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006308", - "question_id": 34069, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007085", - "question_id": 34070, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002452", - "question_id": 34071, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00008037", - "question_id": 34076, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003435", - "question_id": 34077, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008332", - "question_id": 34078, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000350", - "question_id": 34079, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005032", - "question_id": 34081, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00004639", - "question_id": 34082, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005380", - "question_id": 34083, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001553", - "question_id": 34085, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004628", - "question_id": 34086, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002488", - "question_id": 34087, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000340", - "question_id": 34089, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "sa00008640", - "question_id": 34090, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004434", - "question_id": 34094, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008866", - "question_id": 34096, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008246", - "question_id": 34098, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005297", - "question_id": 34099, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"pipa\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005869", - "question_id": 34100, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002063", - "question_id": 34101, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00002846", - "question_id": 34106, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006054", - "question_id": 34107, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00002711", - "question_id": 34108, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005226", - "question_id": 34109, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004294", - "question_id": 34110, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003902", - "question_id": 34111, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007241", - "question_id": 34115, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007164", - "question_id": 34117, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007322", - "question_id": 34118, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001238", - "question_id": 34119, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004720", - "question_id": 34121, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000568", - "question_id": 34122, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000248", - "question_id": 34123, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002986", - "question_id": 34125, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000980", - "question_id": 34126, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00005995", - "question_id": 34128, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001129", - "question_id": 34129, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005758", - "question_id": 34130, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007042", - "question_id": 34131, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000142", - "question_id": 34132, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001283", - "question_id": 34133, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006849", - "question_id": 34134, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008884", - "question_id": 34135, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004863", - "question_id": 34136, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004863", - "question_id": 34136, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003478", - "question_id": 34139, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001200", - "question_id": 34140, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001721", - "question_id": 34141, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005638", - "question_id": 34142, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000934", - "question_id": 34144, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00004277", - "question_id": 34146, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "eight" - }, - { - "video_id": "vv00002544", - "question_id": 34148, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00001324", - "question_id": 34149, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008167", - "question_id": 34151, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"trumpet\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001934", - "question_id": 34153, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007325", - "question_id": 34155, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002638", - "question_id": 34156, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005123", - "question_id": 34157, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007655", - "question_id": 34160, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002919", - "question_id": 34161, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007566", - "question_id": 34163, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007301", - "question_id": 34165, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008768", - "question_id": 34170, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007314", - "question_id": 34172, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005403", - "question_id": 34173, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007835", - "question_id": 34176, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007187", - "question_id": 34177, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008222", - "question_id": 34178, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008222", - "question_id": 34178, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001603", - "question_id": 34179, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002639", - "question_id": 34180, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007927", - "question_id": 34181, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00000228", - "question_id": 34182, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007877", - "question_id": 34186, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001864", - "question_id": 34189, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000468", - "question_id": 34190, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005735", - "question_id": 34191, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008009", - "question_id": 34192, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006884", - "question_id": 34193, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000110", - "question_id": 34195, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00007930", - "question_id": 34197, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "va00004868", - "question_id": 34198, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004096", - "question_id": 34200, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006528", - "question_id": 34201, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"tuba\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001305", - "question_id": 34205, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008242", - "question_id": 34206, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003604", - "question_id": 34208, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005663", - "question_id": 34209, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005791", - "question_id": 34210, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002206", - "question_id": 34211, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003814", - "question_id": 34212, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00006791", - "question_id": 34213, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008740", - "question_id": 34215, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001159", - "question_id": 34216, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006815", - "question_id": 34217, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007387", - "question_id": 34219, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003556", - "question_id": 34220, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007272", - "question_id": 34221, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004941", - "question_id": 34222, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005801", - "question_id": 34223, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "va00004717", - "question_id": 34224, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008223", - "question_id": 34225, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006625", - "question_id": 34226, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005427", - "question_id": 34227, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004420", - "question_id": 34228, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007424", - "question_id": 34229, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006278", - "question_id": 34230, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003192", - "question_id": 34231, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004265", - "question_id": 34233, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002543", - "question_id": 34234, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007403", - "question_id": 34235, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006980", - "question_id": 34236, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006905", - "question_id": 34238, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006197", - "question_id": 34239, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000908", - "question_id": 34241, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005939", - "question_id": 34244, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003189", - "question_id": 34245, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "more than ten" - }, - { - "video_id": "sa00007407", - "question_id": 34246, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003419", - "question_id": 34247, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002131", - "question_id": 34248, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00000789", - "question_id": 34249, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002056", - "question_id": 34250, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004326", - "question_id": 34252, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "vv00002429", - "question_id": 34253, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001167", - "question_id": 34254, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001270", - "question_id": 34256, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005922", - "question_id": 34257, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003338", - "question_id": 34258, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "sa00006833", - "question_id": 34259, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004156", - "question_id": 34260, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004804", - "question_id": 34261, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007866", - "question_id": 34262, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005118", - "question_id": 34264, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006750", - "question_id": 34265, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000503", - "question_id": 34266, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005320", - "question_id": 34267, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002668", - "question_id": 34268, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007589", - "question_id": 34269, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007186", - "question_id": 34270, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004130", - "question_id": 34271, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006621", - "question_id": 34272, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007719", - "question_id": 34276, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003301", - "question_id": 34277, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000473", - "question_id": 34279, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005130", - "question_id": 34282, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003692", - "question_id": 34283, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004921", - "question_id": 34284, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005120", - "question_id": 34285, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00007019", - "question_id": 34289, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "vv00002774", - "question_id": 34290, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00003688", - "question_id": 34292, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002807", - "question_id": 34293, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000819", - "question_id": 34294, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008732", - "question_id": 34295, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003435", - "question_id": 34297, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001973", - "question_id": 34298, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003362", - "question_id": 34299, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006043", - "question_id": 34300, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "more than ten" - }, - { - "video_id": "00003786", - "question_id": 34301, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005289", - "question_id": 34302, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006769", - "question_id": 34303, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000841", - "question_id": 34304, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00006558", - "question_id": 34305, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004948", - "question_id": 34306, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005763", - "question_id": 34307, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000487", - "question_id": 34308, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008011", - "question_id": 34309, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007410", - "question_id": 34313, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005175", - "question_id": 34314, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007609", - "question_id": 34315, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006880", - "question_id": 34319, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004594", - "question_id": 34321, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008774", - "question_id": 34322, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00008429", - "question_id": 34324, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000735", - "question_id": 34325, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"tuba\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00004512", - "question_id": 34326, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001289", - "question_id": 34327, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00002992", - "question_id": 34328, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00004746", - "question_id": 34331, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003255", - "question_id": 34334, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006618", - "question_id": 34335, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005639", - "question_id": 34337, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004516", - "question_id": 34339, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004190", - "question_id": 34340, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008611", - "question_id": 34342, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007371", - "question_id": 34343, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002322", - "question_id": 34344, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006317", - "question_id": 34346, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008751", - "question_id": 34347, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005032", - "question_id": 34348, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004168", - "question_id": 34350, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007345", - "question_id": 34351, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008187", - "question_id": 34352, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008972", - "question_id": 34355, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006077", - "question_id": 34357, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003007", - "question_id": 34359, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007849", - "question_id": 34360, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001625", - "question_id": 34362, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008210", - "question_id": 34363, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006747", - "question_id": 34364, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005383", - "question_id": 34365, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00003593", - "question_id": 34366, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000391", - "question_id": 34367, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007599", - "question_id": 34370, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006241", - "question_id": 34371, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007823", - "question_id": 34372, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005880", - "question_id": 34374, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005315", - "question_id": 34375, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008914", - "question_id": 34376, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004295", - "question_id": 34378, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005061", - "question_id": 34379, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005072", - "question_id": 34380, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00006847", - "question_id": 34382, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005998", - "question_id": 34386, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007191", - "question_id": 34387, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005086", - "question_id": 34388, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000853", - "question_id": 34391, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"middle\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006868", - "question_id": 34393, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004415", - "question_id": 34394, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004040", - "question_id": 34395, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005013", - "question_id": 34396, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002724", - "question_id": 34397, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008043", - "question_id": 34398, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005119", - "question_id": 34399, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008903", - "question_id": 34400, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004798", - "question_id": 34401, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008837", - "question_id": 34402, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000790", - "question_id": 34403, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002933", - "question_id": 34404, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00000756", - "question_id": 34405, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008274", - "question_id": 34406, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002886", - "question_id": 34407, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002037", - "question_id": 34408, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00000692", - "question_id": 34409, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006792", - "question_id": 34410, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003301", - "question_id": 34412, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000584", - "question_id": 34414, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"xylophone\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00004682", - "question_id": 34415, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006468", - "question_id": 34416, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002788", - "question_id": 34418, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004236", - "question_id": 34420, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "va00005351", - "question_id": 34421, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00007118", - "question_id": 34423, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000721", - "question_id": 34424, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007234", - "question_id": 34426, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006720", - "question_id": 34427, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007823", - "question_id": 34428, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "va00003409", - "question_id": 34430, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006561", - "question_id": 34431, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006326", - "question_id": 34432, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007262", - "question_id": 34433, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00002416", - "question_id": 34434, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"right\", \"pipa\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004604", - "question_id": 34435, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002693", - "question_id": 34436, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00002162", - "question_id": 34437, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003930", - "question_id": 34439, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006690", - "question_id": 34440, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000415", - "question_id": 34441, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006570", - "question_id": 34443, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007084", - "question_id": 34444, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008835", - "question_id": 34446, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004099", - "question_id": 34447, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00006173", - "question_id": 34449, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002755", - "question_id": 34451, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00006844", - "question_id": 34452, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002036", - "question_id": 34453, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002002", - "question_id": 34454, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004593", - "question_id": 34455, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005690", - "question_id": 34456, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00004754", - "question_id": 34458, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004754", - "question_id": 34458, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001626", - "question_id": 34459, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002677", - "question_id": 34461, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008772", - "question_id": 34462, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003137", - "question_id": 34463, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008658", - "question_id": 34465, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00003046", - "question_id": 34467, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005783", - "question_id": 34468, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008904", - "question_id": 34469, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007102", - "question_id": 34470, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003941", - "question_id": 34471, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000303", - "question_id": 34473, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"guzheng\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008787", - "question_id": 34474, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007501", - "question_id": 34476, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003629", - "question_id": 34478, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006661", - "question_id": 34479, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002082", - "question_id": 34480, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "vv00000484", - "question_id": 34481, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006091", - "question_id": 34482, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006519", - "question_id": 34484, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001824", - "question_id": 34485, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004997", - "question_id": 34487, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008028", - "question_id": 34488, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000011", - "question_id": 34490, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007223", - "question_id": 34491, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "seven" - }, - { - "video_id": "sa00007166", - "question_id": 34493, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001242", - "question_id": 34494, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007432", - "question_id": 34495, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007396", - "question_id": 34497, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002924", - "question_id": 34498, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008742", - "question_id": 34499, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00004255", - "question_id": 34500, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002159", - "question_id": 34501, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000455", - "question_id": 34504, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003123", - "question_id": 34505, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004633", - "question_id": 34507, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002319", - "question_id": 34508, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008611", - "question_id": 34509, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006101", - "question_id": 34510, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000720", - "question_id": 34512, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002199", - "question_id": 34513, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004489", - "question_id": 34514, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "va00003696", - "question_id": 34515, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001508", - "question_id": 34516, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008775", - "question_id": 34517, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004051", - "question_id": 34518, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003591", - "question_id": 34520, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003510", - "question_id": 34522, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007732", - "question_id": 34523, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000614", - "question_id": 34524, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002730", - "question_id": 34526, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004847", - "question_id": 34527, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006803", - "question_id": 34528, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "sa00007089", - "question_id": 34529, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004329", - "question_id": 34530, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003642", - "question_id": 34531, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00004033", - "question_id": 34533, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005646", - "question_id": 34534, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000041", - "question_id": 34535, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005373", - "question_id": 34537, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006910", - "question_id": 34538, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003429", - "question_id": 34539, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000482", - "question_id": 34540, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000602", - "question_id": 34546, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004405", - "question_id": 34547, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "sa00008654", - "question_id": 34549, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004810", - "question_id": 34550, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00003360", - "question_id": 34551, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008432", - "question_id": 34552, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002427", - "question_id": 34553, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001533", - "question_id": 34554, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007531", - "question_id": 34555, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007531", - "question_id": 34555, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003063", - "question_id": 34557, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007993", - "question_id": 34558, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002963", - "question_id": 34559, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003622", - "question_id": 34560, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004563", - "question_id": 34561, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006042", - "question_id": 34562, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005094", - "question_id": 34563, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005294", - "question_id": 34564, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00001377", - "question_id": 34565, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007554", - "question_id": 34567, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"drum\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00001539", - "question_id": 34570, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001958", - "question_id": 34572, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004561", - "question_id": 34573, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005070", - "question_id": 34574, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000365", - "question_id": 34576, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00003709", - "question_id": 34578, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00007016", - "question_id": 34579, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007016", - "question_id": 34579, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001017", - "question_id": 34582, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006690", - "question_id": 34583, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003214", - "question_id": 34588, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001045", - "question_id": 34589, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "sa00008640", - "question_id": 34590, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001448", - "question_id": 34591, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006959", - "question_id": 34592, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00002769", - "question_id": 34593, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004008", - "question_id": 34595, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "sa00007693", - "question_id": 34596, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008588", - "question_id": 34597, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003144", - "question_id": 34598, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00005494", - "question_id": 34599, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00006569", - "question_id": 34601, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007535", - "question_id": 34602, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004827", - "question_id": 34603, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003741", - "question_id": 34605, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007010", - "question_id": 34607, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004609", - "question_id": 34608, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006848", - "question_id": 34612, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003774", - "question_id": 34613, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007646", - "question_id": 34614, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "vv00000257", - "question_id": 34617, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "sa00006738", - "question_id": 34619, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003354", - "question_id": 34620, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00007331", - "question_id": 34621, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004438", - "question_id": 34622, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006237", - "question_id": 34623, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004957", - "question_id": 34624, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007710", - "question_id": 34625, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008621", - "question_id": 34626, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004170", - "question_id": 34627, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "vv00000173", - "question_id": 34628, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005206", - "question_id": 34629, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002496", - "question_id": 34630, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "vv00002785", - "question_id": 34631, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005624", - "question_id": 34632, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005765", - "question_id": 34633, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004725", - "question_id": 34634, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007317", - "question_id": 34635, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005969", - "question_id": 34637, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005008", - "question_id": 34640, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006720", - "question_id": 34642, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007092", - "question_id": 34643, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00003751", - "question_id": 34644, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007736", - "question_id": 34645, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001123", - "question_id": 34646, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000175", - "question_id": 34647, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004160", - "question_id": 34648, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000704", - "question_id": 34649, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001858", - "question_id": 34650, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006921", - "question_id": 34651, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008287", - "question_id": 34655, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001701", - "question_id": 34657, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001243", - "question_id": 34658, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "va00005391", - "question_id": 34660, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002428", - "question_id": 34661, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00003579", - "question_id": 34663, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005469", - "question_id": 34666, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005469", - "question_id": 34666, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001190", - "question_id": 34667, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000179", - "question_id": 34668, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000531", - "question_id": 34670, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00002508", - "question_id": 34671, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001353", - "question_id": 34673, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "va00004526", - "question_id": 34674, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006229", - "question_id": 34676, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007558", - "question_id": 34680, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006411", - "question_id": 34681, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003460", - "question_id": 34682, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006054", - "question_id": 34683, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004745", - "question_id": 34684, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005458", - "question_id": 34685, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007680", - "question_id": 34686, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006444", - "question_id": 34687, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000037", - "question_id": 34689, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004080", - "question_id": 34690, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003554", - "question_id": 34691, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"xylophone\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00003779", - "question_id": 34692, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00004495", - "question_id": 34693, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008758", - "question_id": 34694, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003441", - "question_id": 34696, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00008149", - "question_id": 34697, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003974", - "question_id": 34704, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002344", - "question_id": 34706, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005687", - "question_id": 34707, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007822", - "question_id": 34709, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002369", - "question_id": 34710, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001892", - "question_id": 34713, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00003046", - "question_id": 34714, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003699", - "question_id": 34717, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006799", - "question_id": 34718, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002009", - "question_id": 34720, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00008682", - "question_id": 34723, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"banjo\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00004725", - "question_id": 34724, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000306", - "question_id": 34727, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007880", - "question_id": 34728, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004947", - "question_id": 34732, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004238", - "question_id": 34733, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00007200", - "question_id": 34737, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004038", - "question_id": 34738, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007443", - "question_id": 34739, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002392", - "question_id": 34740, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004300", - "question_id": 34742, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00002365", - "question_id": 34743, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006575", - "question_id": 34744, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006436", - "question_id": 34745, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002169", - "question_id": 34747, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000656", - "question_id": 34749, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008456", - "question_id": 34751, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005026", - "question_id": 34752, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006495", - "question_id": 34753, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003453", - "question_id": 34755, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006556", - "question_id": 34757, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000003", - "question_id": 34758, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007484", - "question_id": 34760, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004799", - "question_id": 34761, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004581", - "question_id": 34762, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007585", - "question_id": 34763, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008074", - "question_id": 34764, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001306", - "question_id": 34765, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002295", - "question_id": 34766, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00003884", - "question_id": 34768, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001377", - "question_id": 34770, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007434", - "question_id": 34771, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007591", - "question_id": 34772, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006472", - "question_id": 34773, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004443", - "question_id": 34774, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006508", - "question_id": 34775, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002374", - "question_id": 34777, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000191", - "question_id": 34778, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "seven" - }, - { - "video_id": "sa00008795", - "question_id": 34779, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001912", - "question_id": 34780, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004226", - "question_id": 34783, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005157", - "question_id": 34784, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008943", - "question_id": 34785, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007603", - "question_id": 34786, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00002882", - "question_id": 34788, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "sa00008198", - "question_id": 34789, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006435", - "question_id": 34790, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006972", - "question_id": 34792, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004516", - "question_id": 34794, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005028", - "question_id": 34797, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008718", - "question_id": 34798, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00002692", - "question_id": 34799, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002072", - "question_id": 34801, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008631", - "question_id": 34803, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002668", - "question_id": 34804, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "sa00008429", - "question_id": 34806, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002416", - "question_id": 34808, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004317", - "question_id": 34810, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001734", - "question_id": 34813, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002753", - "question_id": 34814, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005180", - "question_id": 34815, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006454", - "question_id": 34816, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001716", - "question_id": 34818, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00003945", - "question_id": 34819, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005159", - "question_id": 34823, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004326", - "question_id": 34824, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00000173", - "question_id": 34825, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"pipa\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00001003", - "question_id": 34826, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00008837", - "question_id": 34827, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008159", - "question_id": 34829, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008000", - "question_id": 34830, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008000", - "question_id": 34830, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007993", - "question_id": 34831, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007632", - "question_id": 34832, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004601", - "question_id": 34834, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001595", - "question_id": 34835, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008528", - "question_id": 34837, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005439", - "question_id": 34838, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007177", - "question_id": 34839, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003029", - "question_id": 34840, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007503", - "question_id": 34842, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006725", - "question_id": 34843, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006196", - "question_id": 34845, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005548", - "question_id": 34846, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005199", - "question_id": 34847, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00001293", - "question_id": 34848, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004963", - "question_id": 34849, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006425", - "question_id": 34850, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006800", - "question_id": 34851, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "vv00000375", - "question_id": 34852, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001377", - "question_id": 34854, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007421", - "question_id": 34856, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"pipa\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "vv00000373", - "question_id": 34858, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002110", - "question_id": 34860, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006920", - "question_id": 34862, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007926", - "question_id": 34863, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007211", - "question_id": 34864, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00004541", - "question_id": 34865, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005835", - "question_id": 34868, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003607", - "question_id": 34869, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008322", - "question_id": 34870, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"ukulele\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "sa00006780", - "question_id": 34871, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005710", - "question_id": 34872, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008868", - "question_id": 34873, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008969", - "question_id": 34877, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005235", - "question_id": 34878, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008829", - "question_id": 34879, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"tuba\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00007959", - "question_id": 34880, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006984", - "question_id": 34882, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006223", - "question_id": 34884, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"cello\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004269", - "question_id": 34885, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005363", - "question_id": 34886, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008404", - "question_id": 34887, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005648", - "question_id": 34888, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007235", - "question_id": 34889, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005321", - "question_id": 34890, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006315", - "question_id": 34892, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002436", - "question_id": 34893, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "vv00000196", - "question_id": 34897, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003690", - "question_id": 34898, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"pipa\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003162", - "question_id": 34900, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "vv00002588", - "question_id": 34901, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00008936", - "question_id": 34902, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004786", - "question_id": 34903, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003488", - "question_id": 34904, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005786", - "question_id": 34905, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00005149", - "question_id": 34906, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "sa00007799", - "question_id": 34908, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006613", - "question_id": 34909, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008353", - "question_id": 34910, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001835", - "question_id": 34912, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00004531", - "question_id": 34913, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001410", - "question_id": 34914, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "vv00000460", - "question_id": 34916, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003301", - "question_id": 34918, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008818", - "question_id": 34919, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002050", - "question_id": 34921, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002778", - "question_id": 34922, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00005734", - "question_id": 34923, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000922", - "question_id": 34924, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00003926", - "question_id": 34925, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007004", - "question_id": 34926, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000301", - "question_id": 34927, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001592", - "question_id": 34929, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002939", - "question_id": 34930, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "va00004617", - "question_id": 34931, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006495", - "question_id": 34932, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001156", - "question_id": 34933, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008226", - "question_id": 34934, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003646", - "question_id": 34935, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004123", - "question_id": 34938, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005819", - "question_id": 34941, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006173", - "question_id": 34942, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000720", - "question_id": 34944, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002349", - "question_id": 34945, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006842", - "question_id": 34946, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004998", - "question_id": 34947, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005022", - "question_id": 34948, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002322", - "question_id": 34950, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001486", - "question_id": 34951, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002257", - "question_id": 34952, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005410", - "question_id": 34953, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "sa00008284", - "question_id": 34954, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000407", - "question_id": 34956, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004760", - "question_id": 34957, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000180", - "question_id": 34961, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003871", - "question_id": 34963, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004508", - "question_id": 34964, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002030", - "question_id": 34965, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001220", - "question_id": 34967, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "vv00002988", - "question_id": 34968, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"trumpet\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00006587", - "question_id": 34969, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00003337", - "question_id": 34970, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005188", - "question_id": 34971, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008358", - "question_id": 34974, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001851", - "question_id": 34975, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008377", - "question_id": 34976, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "sa00006240", - "question_id": 34977, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000932", - "question_id": 34979, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008376", - "question_id": 34980, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008043", - "question_id": 34983, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006455", - "question_id": 34985, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006638", - "question_id": 34986, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007609", - "question_id": 34987, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000380", - "question_id": 34988, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "vv00000580", - "question_id": 34989, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"banjo\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00002921", - "question_id": 34991, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006174", - "question_id": 34992, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00004204", - "question_id": 34993, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007068", - "question_id": 34994, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003378", - "question_id": 34995, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003694", - "question_id": 34996, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002655", - "question_id": 34997, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006967", - "question_id": 34998, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "va00004902", - "question_id": 35003, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002200", - "question_id": 35006, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008589", - "question_id": 35007, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003911", - "question_id": 35011, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "va00005816", - "question_id": 35015, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002279", - "question_id": 35016, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002756", - "question_id": 35018, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001679", - "question_id": 35019, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003569", - "question_id": 35020, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004828", - "question_id": 35021, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00000147", - "question_id": 35022, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00005074", - "question_id": 35023, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000289", - "question_id": 35024, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005626", - "question_id": 35025, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003807", - "question_id": 35027, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002156", - "question_id": 35029, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "va00003186", - "question_id": 35030, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001727", - "question_id": 35032, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00004565", - "question_id": 35033, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000568", - "question_id": 35035, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00006086", - "question_id": 35036, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"middle\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006017", - "question_id": 35037, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"banjo\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00004962", - "question_id": 35038, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001278", - "question_id": 35040, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000295", - "question_id": 35041, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006196", - "question_id": 35042, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007841", - "question_id": 35043, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002437", - "question_id": 35044, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003495", - "question_id": 35045, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000203", - "question_id": 35046, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001458", - "question_id": 35047, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005674", - "question_id": 35048, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005370", - "question_id": 35049, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004316", - "question_id": 35052, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003515", - "question_id": 35054, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00003244", - "question_id": 35055, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004699", - "question_id": 35056, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001982", - "question_id": 35057, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003780", - "question_id": 35059, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00005727", - "question_id": 35061, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006251", - "question_id": 35062, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00004773", - "question_id": 35063, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004404", - "question_id": 35064, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006368", - "question_id": 35065, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000430", - "question_id": 35067, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006638", - "question_id": 35068, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002594", - "question_id": 35069, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003343", - "question_id": 35070, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003358", - "question_id": 35071, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "sa00005983", - "question_id": 35072, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000896", - "question_id": 35073, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000452", - "question_id": 35074, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001879", - "question_id": 35075, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002681", - "question_id": 35077, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000546", - "question_id": 35080, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001870", - "question_id": 35082, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001241", - "question_id": 35083, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "sa00006093", - "question_id": 35084, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003710", - "question_id": 35086, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "va00003267", - "question_id": 35087, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007796", - "question_id": 35089, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007502", - "question_id": 35092, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003895", - "question_id": 35095, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004978", - "question_id": 35096, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005161", - "question_id": 35101, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003121", - "question_id": 35104, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006407", - "question_id": 35106, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "sa00006224", - "question_id": 35107, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005537", - "question_id": 35108, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006787", - "question_id": 35109, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "va00005533", - "question_id": 35110, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007369", - "question_id": 35111, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002640", - "question_id": 35112, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006244", - "question_id": 35113, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001660", - "question_id": 35114, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004335", - "question_id": 35115, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005560", - "question_id": 35117, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003830", - "question_id": 35118, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005624", - "question_id": 35119, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "sa00008194", - "question_id": 35120, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006894", - "question_id": 35122, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005486", - "question_id": 35123, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007686", - "question_id": 35124, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003437", - "question_id": 35125, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000178", - "question_id": 35126, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000792", - "question_id": 35127, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003928", - "question_id": 35128, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008922", - "question_id": 35130, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007441", - "question_id": 35132, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002105", - "question_id": 35133, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001401", - "question_id": 35134, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001976", - "question_id": 35136, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004279", - "question_id": 35139, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00006424", - "question_id": 35140, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002257", - "question_id": 35141, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"erhu\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "sa00007330", - "question_id": 35142, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004434", - "question_id": 35144, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005849", - "question_id": 35145, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00003404", - "question_id": 35147, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002396", - "question_id": 35148, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002871", - "question_id": 35149, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007633", - "question_id": 35150, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005953", - "question_id": 35153, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002984", - "question_id": 35154, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00006305", - "question_id": 35155, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002295", - "question_id": 35156, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004558", - "question_id": 35157, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002315", - "question_id": 35159, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008068", - "question_id": 35160, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007435", - "question_id": 35161, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006198", - "question_id": 35162, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008872", - "question_id": 35164, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002719", - "question_id": 35165, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007894", - "question_id": 35166, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000593", - "question_id": 35167, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008332", - "question_id": 35168, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008011", - "question_id": 35169, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006595", - "question_id": 35170, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004220", - "question_id": 35171, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004596", - "question_id": 35172, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001078", - "question_id": 35173, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002392", - "question_id": 35175, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003613", - "question_id": 35177, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "sa00007937", - "question_id": 35178, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008522", - "question_id": 35179, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005340", - "question_id": 35180, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003758", - "question_id": 35182, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007920", - "question_id": 35183, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007271", - "question_id": 35184, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000930", - "question_id": 35185, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006910", - "question_id": 35186, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002909", - "question_id": 35187, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003622", - "question_id": 35188, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005453", - "question_id": 35189, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004827", - "question_id": 35190, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008171", - "question_id": 35191, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000080", - "question_id": 35193, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004322", - "question_id": 35195, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008969", - "question_id": 35196, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006747", - "question_id": 35198, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004080", - "question_id": 35199, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006405", - "question_id": 35201, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000015", - "question_id": 35202, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002668", - "question_id": 35203, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006785", - "question_id": 35204, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000444", - "question_id": 35206, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005583", - "question_id": 35207, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002661", - "question_id": 35209, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000085", - "question_id": 35210, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003614", - "question_id": 35211, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001340", - "question_id": 35212, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001979", - "question_id": 35214, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004059", - "question_id": 35220, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008533", - "question_id": 35221, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006649", - "question_id": 35222, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005719", - "question_id": 35225, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001593", - "question_id": 35226, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000635", - "question_id": 35228, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004440", - "question_id": 35229, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008927", - "question_id": 35231, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003016", - "question_id": 35232, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005964", - "question_id": 35235, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006551", - "question_id": 35238, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00007785", - "question_id": 35239, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003051", - "question_id": 35241, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003804", - "question_id": 35242, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004487", - "question_id": 35243, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002153", - "question_id": 35244, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004195", - "question_id": 35246, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004491", - "question_id": 35247, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005590", - "question_id": 35248, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005407", - "question_id": 35249, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001313", - "question_id": 35250, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "more than ten" - }, - { - "video_id": "00003984", - "question_id": 35251, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006371", - "question_id": 35252, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007930", - "question_id": 35253, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002755", - "question_id": 35255, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008609", - "question_id": 35258, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005589", - "question_id": 35260, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008589", - "question_id": 35262, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003101", - "question_id": 35263, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002994", - "question_id": 35264, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "va00003531", - "question_id": 35268, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001463", - "question_id": 35269, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001348", - "question_id": 35270, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008442", - "question_id": 35272, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000322", - "question_id": 35274, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005573", - "question_id": 35276, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00003065", - "question_id": 35277, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002461", - "question_id": 35278, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006895", - "question_id": 35279, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008741", - "question_id": 35280, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002617", - "question_id": 35284, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"pipa\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005771", - "question_id": 35285, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006651", - "question_id": 35286, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005851", - "question_id": 35287, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007796", - "question_id": 35288, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008164", - "question_id": 35290, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008713", - "question_id": 35291, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000600", - "question_id": 35292, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007983", - "question_id": 35293, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004502", - "question_id": 35294, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005303", - "question_id": 35295, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004142", - "question_id": 35298, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000445", - "question_id": 35299, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001047", - "question_id": 35300, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "sa00006477", - "question_id": 35302, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003581", - "question_id": 35303, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001541", - "question_id": 35304, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006452", - "question_id": 35308, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003140", - "question_id": 35311, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00007238", - "question_id": 35313, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007127", - "question_id": 35314, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005241", - "question_id": 35316, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004415", - "question_id": 35317, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004931", - "question_id": 35318, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003872", - "question_id": 35319, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "va00005042", - "question_id": 35320, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008375", - "question_id": 35321, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007207", - "question_id": 35325, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003887", - "question_id": 35326, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007674", - "question_id": 35327, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004729", - "question_id": 35328, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000829", - "question_id": 35331, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000178", - "question_id": 35333, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "sa00006763", - "question_id": 35336, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007948", - "question_id": 35338, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002050", - "question_id": 35340, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008813", - "question_id": 35342, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001487", - "question_id": 35343, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003793", - "question_id": 35344, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00002866", - "question_id": 35345, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004949", - "question_id": 35347, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004521", - "question_id": 35350, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000096", - "question_id": 35353, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001570", - "question_id": 35354, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003886", - "question_id": 35355, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008682", - "question_id": 35356, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003517", - "question_id": 35357, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005832", - "question_id": 35358, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00006962", - "question_id": 35359, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006462", - "question_id": 35360, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007974", - "question_id": 35362, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001767", - "question_id": 35364, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003141", - "question_id": 35365, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00007746", - "question_id": 35366, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004956", - "question_id": 35367, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006970", - "question_id": 35368, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002970", - "question_id": 35369, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000161", - "question_id": 35370, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"tuba\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00007864", - "question_id": 35371, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004665", - "question_id": 35372, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000586", - "question_id": 35375, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001230", - "question_id": 35376, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00003536", - "question_id": 35377, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000755", - "question_id": 35379, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005303", - "question_id": 35382, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005227", - "question_id": 35383, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002344", - "question_id": 35386, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003327", - "question_id": 35387, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005676", - "question_id": 35388, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006784", - "question_id": 35390, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007904", - "question_id": 35391, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000671", - "question_id": 35394, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004418", - "question_id": 35395, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000978", - "question_id": 35397, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008366", - "question_id": 35398, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006060", - "question_id": 35399, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005211", - "question_id": 35400, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000659", - "question_id": 35402, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bassoon\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008448", - "question_id": 35403, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006378", - "question_id": 35404, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00002418", - "question_id": 35406, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007536", - "question_id": 35407, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002529", - "question_id": 35408, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006428", - "question_id": 35409, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "sa00008101", - "question_id": 35411, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003094", - "question_id": 35412, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002567", - "question_id": 35413, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008967", - "question_id": 35415, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001388", - "question_id": 35416, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007781", - "question_id": 35417, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002036", - "question_id": 35419, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006811", - "question_id": 35422, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005651", - "question_id": 35423, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002458", - "question_id": 35426, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003880", - "question_id": 35427, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008515", - "question_id": 35428, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002894", - "question_id": 35429, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006372", - "question_id": 35430, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004122", - "question_id": 35431, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005193", - "question_id": 35432, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000775", - "question_id": 35434, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006273", - "question_id": 35435, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"tuba\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00008313", - "question_id": 35436, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005642", - "question_id": 35437, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002360", - "question_id": 35439, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004419", - "question_id": 35440, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003186", - "question_id": 35442, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000064", - "question_id": 35443, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002544", - "question_id": 35444, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003255", - "question_id": 35445, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00002841", - "question_id": 35446, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000855", - "question_id": 35447, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007860", - "question_id": 35448, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007672", - "question_id": 35449, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006388", - "question_id": 35450, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007330", - "question_id": 35451, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003718", - "question_id": 35452, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "va00005289", - "question_id": 35454, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001998", - "question_id": 35458, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005786", - "question_id": 35460, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00008937", - "question_id": 35462, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004943", - "question_id": 35463, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"tuba\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00002618", - "question_id": 35466, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007422", - "question_id": 35468, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001663", - "question_id": 35470, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003253", - "question_id": 35472, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005958", - "question_id": 35473, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00005184", - "question_id": 35474, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001639", - "question_id": 35475, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008105", - "question_id": 35476, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006759", - "question_id": 35477, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007032", - "question_id": 35478, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005594", - "question_id": 35479, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002297", - "question_id": 35482, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001285", - "question_id": 35486, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004779", - "question_id": 35488, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008742", - "question_id": 35489, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002825", - "question_id": 35491, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00005943", - "question_id": 35492, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003350", - "question_id": 35493, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003320", - "question_id": 35496, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006465", - "question_id": 35497, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00005654", - "question_id": 35500, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006932", - "question_id": 35501, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"drum\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "vv00002308", - "question_id": 35502, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007171", - "question_id": 35503, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00000417", - "question_id": 35504, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001676", - "question_id": 35505, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000862", - "question_id": 35506, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008941", - "question_id": 35507, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003550", - "question_id": 35508, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001078", - "question_id": 35509, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006232", - "question_id": 35511, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007421", - "question_id": 35514, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001201", - "question_id": 35515, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003725", - "question_id": 35516, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004612", - "question_id": 35517, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005858", - "question_id": 35518, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003894", - "question_id": 35520, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006332", - "question_id": 35522, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001225", - "question_id": 35523, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005467", - "question_id": 35524, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003920", - "question_id": 35525, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004046", - "question_id": 35528, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006508", - "question_id": 35530, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000691", - "question_id": 35531, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008398", - "question_id": 35534, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001941", - "question_id": 35535, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004827", - "question_id": 35536, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00002594", - "question_id": 35537, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008072", - "question_id": 35538, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004195", - "question_id": 35539, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008579", - "question_id": 35541, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005566", - "question_id": 35542, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "sa00007531", - "question_id": 35543, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004525", - "question_id": 35544, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005073", - "question_id": 35545, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006756", - "question_id": 35546, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004479", - "question_id": 35547, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007363", - "question_id": 35548, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006957", - "question_id": 35549, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007873", - "question_id": 35551, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002936", - "question_id": 35552, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"electric_bass\", \"left\", \"bagpipe\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004822", - "question_id": 35553, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004887", - "question_id": 35555, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006701", - "question_id": 35556, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000661", - "question_id": 35557, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001010", - "question_id": 35558, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002996", - "question_id": 35559, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006103", - "question_id": 35560, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002656", - "question_id": 35561, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005766", - "question_id": 35562, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005858", - "question_id": 35565, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002727", - "question_id": 35566, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005548", - "question_id": 35570, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002457", - "question_id": 35573, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006336", - "question_id": 35574, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007719", - "question_id": 35575, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005027", - "question_id": 35576, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00003075", - "question_id": 35577, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008305", - "question_id": 35581, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004331", - "question_id": 35582, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008890", - "question_id": 35583, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00003081", - "question_id": 35584, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002009", - "question_id": 35591, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008852", - "question_id": 35593, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001570", - "question_id": 35594, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002987", - "question_id": 35595, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004563", - "question_id": 35596, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007449", - "question_id": 35597, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007766", - "question_id": 35598, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000345", - "question_id": 35602, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004630", - "question_id": 35604, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005682", - "question_id": 35606, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000373", - "question_id": 35607, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00002774", - "question_id": 35610, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000598", - "question_id": 35611, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004767", - "question_id": 35612, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "sa00007782", - "question_id": 35613, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002873", - "question_id": 35614, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006412", - "question_id": 35615, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000525", - "question_id": 35616, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000488", - "question_id": 35617, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008665", - "question_id": 35618, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007308", - "question_id": 35619, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003955", - "question_id": 35621, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008235", - "question_id": 35623, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004830", - "question_id": 35624, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"pipa\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007502", - "question_id": 35626, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "va00005594", - "question_id": 35628, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002978", - "question_id": 35629, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000649", - "question_id": 35630, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006974", - "question_id": 35632, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000998", - "question_id": 35633, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008314", - "question_id": 35634, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006823", - "question_id": 35635, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001597", - "question_id": 35636, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004134", - "question_id": 35638, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"accordion\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001265", - "question_id": 35641, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004697", - "question_id": 35644, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000780", - "question_id": 35645, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000099", - "question_id": 35649, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001306", - "question_id": 35651, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00003078", - "question_id": 35652, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008263", - "question_id": 35654, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006796", - "question_id": 35655, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000079", - "question_id": 35656, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001719", - "question_id": 35661, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00007117", - "question_id": 35662, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002993", - "question_id": 35664, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007217", - "question_id": 35666, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "sa00005988", - "question_id": 35667, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002420", - "question_id": 35669, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005241", - "question_id": 35671, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007894", - "question_id": 35672, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001530", - "question_id": 35673, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002249", - "question_id": 35674, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00005972", - "question_id": 35676, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001314", - "question_id": 35677, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001734", - "question_id": 35678, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000864", - "question_id": 35680, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003934", - "question_id": 35682, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007544", - "question_id": 35683, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007077", - "question_id": 35684, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007170", - "question_id": 35685, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002595", - "question_id": 35687, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00006667", - "question_id": 35689, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001581", - "question_id": 35690, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007276", - "question_id": 35691, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004222", - "question_id": 35693, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006009", - "question_id": 35696, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004791", - "question_id": 35698, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005470", - "question_id": 35699, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003102", - "question_id": 35701, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005854", - "question_id": 35702, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008052", - "question_id": 35703, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000127", - "question_id": 35704, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00005869", - "question_id": 35706, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00002147", - "question_id": 35707, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00003814", - "question_id": 35708, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005192", - "question_id": 35711, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005105", - "question_id": 35712, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002438", - "question_id": 35715, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002978", - "question_id": 35716, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "sa00007103", - "question_id": 35717, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006088", - "question_id": 35718, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003662", - "question_id": 35719, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007576", - "question_id": 35720, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004451", - "question_id": 35722, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000538", - "question_id": 35723, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007495", - "question_id": 35725, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007150", - "question_id": 35726, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001451", - "question_id": 35727, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006306", - "question_id": 35729, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000576", - "question_id": 35730, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "vv00000239", - "question_id": 35732, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008180", - "question_id": 35733, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005230", - "question_id": 35734, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005390", - "question_id": 35736, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001311", - "question_id": 35737, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007555", - "question_id": 35738, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000469", - "question_id": 35739, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00007795", - "question_id": 35742, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00006930", - "question_id": 35743, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005103", - "question_id": 35747, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004163", - "question_id": 35748, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001362", - "question_id": 35749, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00005681", - "question_id": 35751, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00008936", - "question_id": 35754, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "va00004431", - "question_id": 35755, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003497", - "question_id": 35756, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00007817", - "question_id": 35757, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008725", - "question_id": 35759, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006191", - "question_id": 35762, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008042", - "question_id": 35767, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002928", - "question_id": 35769, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006956", - "question_id": 35770, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008697", - "question_id": 35771, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00002169", - "question_id": 35772, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007512", - "question_id": 35773, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008278", - "question_id": 35775, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003705", - "question_id": 35776, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002948", - "question_id": 35777, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003914", - "question_id": 35778, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "va00003465", - "question_id": 35779, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007509", - "question_id": 35780, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005119", - "question_id": 35782, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "vv00000091", - "question_id": 35783, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003403", - "question_id": 35784, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006487", - "question_id": 35786, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004279", - "question_id": 35789, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002920", - "question_id": 35790, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002747", - "question_id": 35791, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00000712", - "question_id": 35792, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "sa00008827", - "question_id": 35793, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003279", - "question_id": 35794, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "va00003883", - "question_id": 35795, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008501", - "question_id": 35796, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006103", - "question_id": 35800, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"tuba\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "sa00006432", - "question_id": 35801, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002597", - "question_id": 35802, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003212", - "question_id": 35804, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007491", - "question_id": 35805, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00008674", - "question_id": 35806, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00004227", - "question_id": 35807, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"erhu\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "va00005165", - "question_id": 35808, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004805", - "question_id": 35810, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005519", - "question_id": 35811, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000681", - "question_id": 35813, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007952", - "question_id": 35814, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007524", - "question_id": 35816, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004033", - "question_id": 35817, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"piano\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003843", - "question_id": 35818, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002762", - "question_id": 35821, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "seven" - }, - { - "video_id": "00006800", - "question_id": 35822, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006853", - "question_id": 35823, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "sa00006738", - "question_id": 35826, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003516", - "question_id": 35827, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006965", - "question_id": 35828, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00002894", - "question_id": 35831, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00006140", - "question_id": 35832, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "vv00000455", - "question_id": 35833, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00005052", - "question_id": 35834, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005679", - "question_id": 35835, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003908", - "question_id": 35836, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "sa00006905", - "question_id": 35837, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005295", - "question_id": 35838, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003418", - "question_id": 35839, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "vv00002774", - "question_id": 35841, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003147", - "question_id": 35842, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003993", - "question_id": 35844, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005572", - "question_id": 35845, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000572", - "question_id": 35846, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"tuba\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001097", - "question_id": 35847, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"trumpet\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007537", - "question_id": 35848, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000335", - "question_id": 35849, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004800", - "question_id": 35853, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005738", - "question_id": 35854, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "vv00000409", - "question_id": 35855, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002498", - "question_id": 35859, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"xylophone\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "vv00002948", - "question_id": 35861, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"xylophone\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00001492", - "question_id": 35863, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00005900", - "question_id": 35864, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006785", - "question_id": 35865, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00003053", - "question_id": 35867, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005935", - "question_id": 35868, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006224", - "question_id": 35869, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008908", - "question_id": 35870, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003250", - "question_id": 35871, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001075", - "question_id": 35872, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003386", - "question_id": 35873, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005414", - "question_id": 35874, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00001448", - "question_id": 35875, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003720", - "question_id": 35878, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"tuba\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005822", - "question_id": 35879, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007266", - "question_id": 35880, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003295", - "question_id": 35882, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006856", - "question_id": 35884, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00005308", - "question_id": 35885, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008849", - "question_id": 35887, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004978", - "question_id": 35888, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008508", - "question_id": 35889, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002418", - "question_id": 35890, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "va00004188", - "question_id": 35891, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005786", - "question_id": 35892, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002420", - "question_id": 35893, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003476", - "question_id": 35894, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002750", - "question_id": 35895, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008436", - "question_id": 35899, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007901", - "question_id": 35900, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000356", - "question_id": 35901, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "sa00007262", - "question_id": 35902, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004248", - "question_id": 35903, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00005211", - "question_id": 35904, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006462", - "question_id": 35905, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006442", - "question_id": 35906, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005340", - "question_id": 35907, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004006", - "question_id": 35908, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "sa00008588", - "question_id": 35910, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005849", - "question_id": 35911, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00000044", - "question_id": 35912, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"trumpet\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00006113", - "question_id": 35913, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00001390", - "question_id": 35914, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004858", - "question_id": 35915, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00004259", - "question_id": 35916, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001779", - "question_id": 35919, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "sa00007585", - "question_id": 35921, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007939", - "question_id": 35922, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00007170", - "question_id": 35923, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004264", - "question_id": 35924, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00008372", - "question_id": 35926, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006627", - "question_id": 35928, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006618", - "question_id": 35929, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000815", - "question_id": 35930, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00005181", - "question_id": 35931, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005349", - "question_id": 35935, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005387", - "question_id": 35936, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007769", - "question_id": 35937, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00005710", - "question_id": 35939, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000219", - "question_id": 35940, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005624", - "question_id": 35942, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006376", - "question_id": 35945, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003131", - "question_id": 35946, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008218", - "question_id": 35947, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007937", - "question_id": 35950, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002088", - "question_id": 35952, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00003159", - "question_id": 35953, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007977", - "question_id": 35954, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005580", - "question_id": 35955, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001605", - "question_id": 35956, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"drum\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006855", - "question_id": 35957, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003968", - "question_id": 35958, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001451", - "question_id": 35959, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004231", - "question_id": 35960, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008506", - "question_id": 35961, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005602", - "question_id": 35962, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00005455", - "question_id": 35963, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004823", - "question_id": 35966, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003828", - "question_id": 35968, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008541", - "question_id": 35969, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000901", - "question_id": 35971, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005189", - "question_id": 35973, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002943", - "question_id": 35974, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004714", - "question_id": 35976, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006650", - "question_id": 35977, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"pipa\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "vv00002749", - "question_id": 35979, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00005497", - "question_id": 35980, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"trumpet\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003005", - "question_id": 35981, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003708", - "question_id": 35982, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "sa00006462", - "question_id": 35983, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008934", - "question_id": 35984, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002255", - "question_id": 35985, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003903", - "question_id": 35987, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004958", - "question_id": 35989, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003386", - "question_id": 35990, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006081", - "question_id": 35991, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00006808", - "question_id": 35992, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005158", - "question_id": 35993, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005401", - "question_id": 35994, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005554", - "question_id": 35995, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00005508", - "question_id": 35996, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008256", - "question_id": 35997, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002639", - "question_id": 35998, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"congas\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00002735", - "question_id": 36000, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "va00003284", - "question_id": 36004, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006870", - "question_id": 36005, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000704", - "question_id": 36006, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007692", - "question_id": 36007, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000422", - "question_id": 36009, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00004935", - "question_id": 36010, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003817", - "question_id": 36011, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004693", - "question_id": 36012, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004295", - "question_id": 36013, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"banjo\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "sa00007932", - "question_id": 36014, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005771", - "question_id": 36016, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006032", - "question_id": 36017, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003135", - "question_id": 36018, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000276", - "question_id": 36020, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004975", - "question_id": 36022, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00003800", - "question_id": 36023, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004465", - "question_id": 36024, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002398", - "question_id": 36025, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006229", - "question_id": 36026, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007874", - "question_id": 36028, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006467", - "question_id": 36029, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00002322", - "question_id": 36030, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00000401", - "question_id": 36032, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006519", - "question_id": 36033, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000134", - "question_id": 36034, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008191", - "question_id": 36035, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002788", - "question_id": 36037, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007257", - "question_id": 36038, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003962", - "question_id": 36039, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00008829", - "question_id": 36040, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006509", - "question_id": 36041, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "va00005578", - "question_id": 36042, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003844", - "question_id": 36043, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001479", - "question_id": 36044, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003481", - "question_id": 36045, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00002752", - "question_id": 36046, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006248", - "question_id": 36047, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001446", - "question_id": 36050, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00007055", - "question_id": 36051, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005400", - "question_id": 36052, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"banjo\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003514", - "question_id": 36053, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005785", - "question_id": 36054, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008410", - "question_id": 36055, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"congas\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00001995", - "question_id": 36057, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002541", - "question_id": 36059, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003095", - "question_id": 36060, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"clarinet\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "va00004717", - "question_id": 36062, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"congas\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "vv00002404", - "question_id": 36063, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004931", - "question_id": 36064, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004149", - "question_id": 36066, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005916", - "question_id": 36067, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002169", - "question_id": 36068, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000831", - "question_id": 36069, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "sa00008841", - "question_id": 36071, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008748", - "question_id": 36072, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003992", - "question_id": 36073, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002040", - "question_id": 36074, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001584", - "question_id": 36075, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "va00004708", - "question_id": 36080, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007112", - "question_id": 36081, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"congas\", \"left\", \"congas\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002885", - "question_id": 36085, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005146", - "question_id": 36087, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005303", - "question_id": 36088, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007101", - "question_id": 36089, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007155", - "question_id": 36092, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006058", - "question_id": 36093, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007664", - "question_id": 36094, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007730", - "question_id": 36098, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005827", - "question_id": 36100, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004528", - "question_id": 36101, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002198", - "question_id": 36102, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"banjo\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004647", - "question_id": 36104, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "sa00007139", - "question_id": 36105, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002781", - "question_id": 36106, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003182", - "question_id": 36109, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000965", - "question_id": 36110, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008420", - "question_id": 36111, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007105", - "question_id": 36112, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005914", - "question_id": 36113, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"flute\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008439", - "question_id": 36114, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002197", - "question_id": 36115, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001170", - "question_id": 36118, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007362", - "question_id": 36120, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005772", - "question_id": 36122, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001740", - "question_id": 36124, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00003093", - "question_id": 36125, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006735", - "question_id": 36128, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"saxophone\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "va00004304", - "question_id": 36129, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001603", - "question_id": 36130, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006024", - "question_id": 36133, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002759", - "question_id": 36134, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007186", - "question_id": 36138, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006301", - "question_id": 36140, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "vv00000127", - "question_id": 36142, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000791", - "question_id": 36143, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"pipa\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "vv00002322", - "question_id": 36145, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000330", - "question_id": 36146, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003141", - "question_id": 36148, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002571", - "question_id": 36149, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00005199", - "question_id": 36152, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008053", - "question_id": 36153, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005496", - "question_id": 36154, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000705", - "question_id": 36155, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002455", - "question_id": 36156, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006033", - "question_id": 36157, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008382", - "question_id": 36158, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008913", - "question_id": 36159, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004464", - "question_id": 36161, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001344", - "question_id": 36162, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00005131", - "question_id": 36163, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008194", - "question_id": 36165, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003888", - "question_id": 36166, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "sa00006200", - "question_id": 36167, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008603", - "question_id": 36168, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005243", - "question_id": 36169, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002051", - "question_id": 36170, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008044", - "question_id": 36171, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"drum\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "vv00002786", - "question_id": 36172, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005602", - "question_id": 36174, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004255", - "question_id": 36175, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002286", - "question_id": 36176, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006092", - "question_id": 36177, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000482", - "question_id": 36182, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006779", - "question_id": 36183, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006464", - "question_id": 36184, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "va00004626", - "question_id": 36185, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000565", - "question_id": 36187, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004665", - "question_id": 36188, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005478", - "question_id": 36190, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005659", - "question_id": 36191, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008039", - "question_id": 36196, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004532", - "question_id": 36197, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00000469", - "question_id": 36198, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000350", - "question_id": 36199, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000169", - "question_id": 36200, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00002452", - "question_id": 36202, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "vv00000406", - "question_id": 36203, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "sa00007774", - "question_id": 36204, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005795", - "question_id": 36205, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001640", - "question_id": 36206, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006822", - "question_id": 36207, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006551", - "question_id": 36211, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001614", - "question_id": 36212, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001931", - "question_id": 36213, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007107", - "question_id": 36214, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003872", - "question_id": 36215, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00003006", - "question_id": 36218, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008158", - "question_id": 36219, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007375", - "question_id": 36220, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007638", - "question_id": 36221, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005587", - "question_id": 36223, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005110", - "question_id": 36224, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002046", - "question_id": 36225, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003294", - "question_id": 36226, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008897", - "question_id": 36228, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002066", - "question_id": 36232, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001772", - "question_id": 36233, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006032", - "question_id": 36235, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002944", - "question_id": 36236, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006459", - "question_id": 36237, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00000395", - "question_id": 36238, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003245", - "question_id": 36239, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006906", - "question_id": 36240, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00003088", - "question_id": 36241, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007584", - "question_id": 36243, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008154", - "question_id": 36244, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00003923", - "question_id": 36245, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008431", - "question_id": 36246, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004365", - "question_id": 36251, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002832", - "question_id": 36252, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004134", - "question_id": 36253, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00001982", - "question_id": 36254, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006042", - "question_id": 36258, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002373", - "question_id": 36259, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000231", - "question_id": 36260, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003153", - "question_id": 36261, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004061", - "question_id": 36262, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003719", - "question_id": 36263, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002803", - "question_id": 36265, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00008291", - "question_id": 36266, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002588", - "question_id": 36268, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007577", - "question_id": 36269, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006937", - "question_id": 36270, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007307", - "question_id": 36271, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006920", - "question_id": 36274, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005977", - "question_id": 36275, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007876", - "question_id": 36276, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"xylophone\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00001705", - "question_id": 36277, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007749", - "question_id": 36278, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004906", - "question_id": 36279, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007266", - "question_id": 36280, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007924", - "question_id": 36281, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002147", - "question_id": 36282, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007968", - "question_id": 36283, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004508", - "question_id": 36285, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000005", - "question_id": 36286, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002810", - "question_id": 36287, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005872", - "question_id": 36289, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"congas\", \"right\", \"congas\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005266", - "question_id": 36290, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005522", - "question_id": 36291, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002851", - "question_id": 36292, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00007828", - "question_id": 36293, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008518", - "question_id": 36294, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005662", - "question_id": 36295, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003747", - "question_id": 36296, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"tuba\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004096", - "question_id": 36297, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008672", - "question_id": 36298, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008347", - "question_id": 36299, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004872", - "question_id": 36301, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006337", - "question_id": 36302, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002282", - "question_id": 36303, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000675", - "question_id": 36305, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001129", - "question_id": 36306, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001156", - "question_id": 36308, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00000361", - "question_id": 36309, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006306", - "question_id": 36310, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005798", - "question_id": 36311, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008035", - "question_id": 36312, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006197", - "question_id": 36313, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007501", - "question_id": 36314, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003488", - "question_id": 36315, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002752", - "question_id": 36316, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "va00004443", - "question_id": 36317, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007484", - "question_id": 36318, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005317", - "question_id": 36319, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004970", - "question_id": 36320, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002968", - "question_id": 36322, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"banjo\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006063", - "question_id": 36323, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005978", - "question_id": 36324, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00000409", - "question_id": 36325, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004514", - "question_id": 36326, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003147", - "question_id": 36330, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007784", - "question_id": 36331, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"electric_bass\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001631", - "question_id": 36334, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001502", - "question_id": 36336, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004581", - "question_id": 36337, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00003020", - "question_id": 36338, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"bagpipe\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006326", - "question_id": 36339, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001725", - "question_id": 36341, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000154", - "question_id": 36342, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00000091", - "question_id": 36344, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008842", - "question_id": 36345, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"middle\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000572", - "question_id": 36347, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00008780", - "question_id": 36349, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006548", - "question_id": 36350, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005727", - "question_id": 36351, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008653", - "question_id": 36352, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003778", - "question_id": 36353, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005781", - "question_id": 36354, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00002046", - "question_id": 36356, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004984", - "question_id": 36357, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008180", - "question_id": 36358, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004019", - "question_id": 36359, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003522", - "question_id": 36360, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "sa00008596", - "question_id": 36361, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008970", - "question_id": 36362, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003041", - "question_id": 36366, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000099", - "question_id": 36367, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00001521", - "question_id": 36368, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004249", - "question_id": 36369, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003600", - "question_id": 36370, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "sa00008037", - "question_id": 36371, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007747", - "question_id": 36373, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005864", - "question_id": 36374, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008746", - "question_id": 36376, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001306", - "question_id": 36377, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00001244", - "question_id": 36380, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007819", - "question_id": 36381, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "vv00002858", - "question_id": 36382, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00003259", - "question_id": 36384, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004495", - "question_id": 36385, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008899", - "question_id": 36386, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00002691", - "question_id": 36387, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005163", - "question_id": 36388, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "sa00008772", - "question_id": 36390, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004008", - "question_id": 36391, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004776", - "question_id": 36393, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"drum\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "sa00006880", - "question_id": 36395, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"flute\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008931", - "question_id": 36397, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00002419", - "question_id": 36398, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007452", - "question_id": 36399, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005828", - "question_id": 36400, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005227", - "question_id": 36401, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001322", - "question_id": 36402, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000657", - "question_id": 36404, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004817", - "question_id": 36406, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007933", - "question_id": 36410, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000765", - "question_id": 36413, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00004789", - "question_id": 36415, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008091", - "question_id": 36416, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006344", - "question_id": 36417, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000161", - "question_id": 36418, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002720", - "question_id": 36420, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00006683", - "question_id": 36423, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "va00005551", - "question_id": 36429, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004800", - "question_id": 36430, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008909", - "question_id": 36431, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001161", - "question_id": 36434, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007751", - "question_id": 36435, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006323", - "question_id": 36438, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007178", - "question_id": 36441, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001556", - "question_id": 36442, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001438", - "question_id": 36443, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000322", - "question_id": 36445, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00001016", - "question_id": 36446, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006917", - "question_id": 36448, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003926", - "question_id": 36449, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00004712", - "question_id": 36451, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000338", - "question_id": 36455, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003276", - "question_id": 36457, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007279", - "question_id": 36460, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00008451", - "question_id": 36461, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005297", - "question_id": 36462, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00001604", - "question_id": 36463, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001809", - "question_id": 36464, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007776", - "question_id": 36465, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000434", - "question_id": 36466, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008425", - "question_id": 36467, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007210", - "question_id": 36469, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005434", - "question_id": 36470, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005105", - "question_id": 36471, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00007142", - "question_id": 36472, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "vv00000302", - "question_id": 36474, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001011", - "question_id": 36477, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007481", - "question_id": 36478, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003207", - "question_id": 36479, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000031", - "question_id": 36480, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00005015", - "question_id": 36481, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006337", - "question_id": 36482, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002052", - "question_id": 36483, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000276", - "question_id": 36484, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00007499", - "question_id": 36485, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008177", - "question_id": 36488, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006823", - "question_id": 36489, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004933", - "question_id": 36490, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00004231", - "question_id": 36491, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004997", - "question_id": 36492, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001735", - "question_id": 36494, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00004118", - "question_id": 36496, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00002524", - "question_id": 36497, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005155", - "question_id": 36498, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001458", - "question_id": 36499, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002837", - "question_id": 36500, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000391", - "question_id": 36501, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003661", - "question_id": 36502, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008889", - "question_id": 36508, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004755", - "question_id": 36511, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002156", - "question_id": 36512, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005501", - "question_id": 36515, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005378", - "question_id": 36516, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002591", - "question_id": 36517, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002837", - "question_id": 36518, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002777", - "question_id": 36521, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005134", - "question_id": 36522, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008321", - "question_id": 36523, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006237", - "question_id": 36524, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008146", - "question_id": 36525, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003880", - "question_id": 36526, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003864", - "question_id": 36527, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006538", - "question_id": 36528, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00001477", - "question_id": 36529, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005848", - "question_id": 36531, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005625", - "question_id": 36532, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006352", - "question_id": 36533, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008433", - "question_id": 36534, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "va00005332", - "question_id": 36535, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002618", - "question_id": 36536, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006054", - "question_id": 36537, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005729", - "question_id": 36538, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005360", - "question_id": 36539, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003917", - "question_id": 36543, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003936", - "question_id": 36544, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00003614", - "question_id": 36545, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004105", - "question_id": 36546, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006871", - "question_id": 36547, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000580", - "question_id": 36550, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006390", - "question_id": 36551, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000683", - "question_id": 36552, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000508", - "question_id": 36553, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"electric_bass\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007242", - "question_id": 36554, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"bassoon\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005472", - "question_id": 36555, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001140", - "question_id": 36556, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004824", - "question_id": 36560, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "sa00008893", - "question_id": 36561, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002692", - "question_id": 36562, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006811", - "question_id": 36563, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006755", - "question_id": 36564, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002270", - "question_id": 36565, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003474", - "question_id": 36566, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005725", - "question_id": 36568, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008715", - "question_id": 36570, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004381", - "question_id": 36571, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"drum\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007245", - "question_id": 36574, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006632", - "question_id": 36576, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006165", - "question_id": 36577, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "vv00000256", - "question_id": 36578, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005189", - "question_id": 36579, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008624", - "question_id": 36581, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005306", - "question_id": 36582, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006122", - "question_id": 36584, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007156", - "question_id": 36585, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007151", - "question_id": 36588, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008229", - "question_id": 36590, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004061", - "question_id": 36591, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003976", - "question_id": 36592, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00008762", - "question_id": 36593, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008622", - "question_id": 36595, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001092", - "question_id": 36600, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004338", - "question_id": 36602, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006252", - "question_id": 36603, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004779", - "question_id": 36605, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"pipa\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00004377", - "question_id": 36610, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "va00003334", - "question_id": 36611, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007267", - "question_id": 36613, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004280", - "question_id": 36615, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004280", - "question_id": 36615, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007778", - "question_id": 36616, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001180", - "question_id": 36618, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002663", - "question_id": 36619, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00003822", - "question_id": 36620, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"drum\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00006582", - "question_id": 36621, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008477", - "question_id": 36622, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002454", - "question_id": 36623, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001267", - "question_id": 36624, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000345", - "question_id": 36625, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008182", - "question_id": 36626, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004284", - "question_id": 36632, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001685", - "question_id": 36633, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004449", - "question_id": 36634, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001570", - "question_id": 36635, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003215", - "question_id": 36636, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006252", - "question_id": 36637, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003524", - "question_id": 36639, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004982", - "question_id": 36641, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00008788", - "question_id": 36642, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007064", - "question_id": 36643, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005925", - "question_id": 36644, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003204", - "question_id": 36645, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000631", - "question_id": 36646, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006949", - "question_id": 36647, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004304", - "question_id": 36648, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005320", - "question_id": 36649, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004672", - "question_id": 36650, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "sa00007918", - "question_id": 36651, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007083", - "question_id": 36652, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004374", - "question_id": 36653, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004230", - "question_id": 36654, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008281", - "question_id": 36655, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005407", - "question_id": 36656, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007262", - "question_id": 36657, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00000292", - "question_id": 36658, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001451", - "question_id": 36659, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"bassoon\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00000896", - "question_id": 36660, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008760", - "question_id": 36661, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007795", - "question_id": 36662, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005567", - "question_id": 36663, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003605", - "question_id": 36664, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "sa00006475", - "question_id": 36665, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002385", - "question_id": 36668, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00007753", - "question_id": 36671, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "vv00002577", - "question_id": 36672, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003398", - "question_id": 36673, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002270", - "question_id": 36674, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00004211", - "question_id": 36678, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008108", - "question_id": 36679, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007789", - "question_id": 36680, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004960", - "question_id": 36681, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007920", - "question_id": 36682, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005008", - "question_id": 36685, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001014", - "question_id": 36686, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"banjo\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004764", - "question_id": 36687, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "vv00000345", - "question_id": 36688, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008434", - "question_id": 36691, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004300", - "question_id": 36692, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004334", - "question_id": 36693, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006930", - "question_id": 36694, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006952", - "question_id": 36695, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007000", - "question_id": 36696, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003203", - "question_id": 36697, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008556", - "question_id": 36698, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001184", - "question_id": 36699, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005274", - "question_id": 36700, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000681", - "question_id": 36702, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003390", - "question_id": 36703, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006787", - "question_id": 36704, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007327", - "question_id": 36705, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000896", - "question_id": 36706, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008754", - "question_id": 36707, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006005", - "question_id": 36711, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "va00003137", - "question_id": 36712, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005870", - "question_id": 36713, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000574", - "question_id": 36715, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007253", - "question_id": 36716, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "vv00000308", - "question_id": 36717, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007083", - "question_id": 36718, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003184", - "question_id": 36720, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007729", - "question_id": 36721, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006137", - "question_id": 36722, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00001005", - "question_id": 36724, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004969", - "question_id": 36725, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003060", - "question_id": 36726, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001840", - "question_id": 36727, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005413", - "question_id": 36728, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "vv00000353", - "question_id": 36730, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"xylophone\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001281", - "question_id": 36731, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00002334", - "question_id": 36732, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000646", - "question_id": 36733, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000958", - "question_id": 36734, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00005991", - "question_id": 36735, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006007", - "question_id": 36736, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004498", - "question_id": 36737, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006672", - "question_id": 36738, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004395", - "question_id": 36739, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002911", - "question_id": 36740, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004078", - "question_id": 36742, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006672", - "question_id": 36744, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003865", - "question_id": 36745, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008512", - "question_id": 36747, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003276", - "question_id": 36749, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008041", - "question_id": 36752, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"middle\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000611", - "question_id": 36753, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"trumpet\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00007257", - "question_id": 36754, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004851", - "question_id": 36755, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004274", - "question_id": 36756, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005734", - "question_id": 36760, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003915", - "question_id": 36762, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004603", - "question_id": 36763, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008696", - "question_id": 36764, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006605", - "question_id": 36765, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008847", - "question_id": 36766, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00002752", - "question_id": 36768, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002669", - "question_id": 36772, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002206", - "question_id": 36774, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001589", - "question_id": 36775, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006643", - "question_id": 36776, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000259", - "question_id": 36777, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004701", - "question_id": 36779, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005707", - "question_id": 36781, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "va00005385", - "question_id": 36783, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004210", - "question_id": 36785, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00005031", - "question_id": 36786, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004536", - "question_id": 36787, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007908", - "question_id": 36788, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008532", - "question_id": 36789, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005851", - "question_id": 36790, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008293", - "question_id": 36791, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000484", - "question_id": 36794, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"xylophone\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00003183", - "question_id": 36796, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00004675", - "question_id": 36798, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002444", - "question_id": 36799, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004967", - "question_id": 36800, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005110", - "question_id": 36801, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002388", - "question_id": 36803, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00000437", - "question_id": 36804, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000417", - "question_id": 36806, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00006420", - "question_id": 36808, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001857", - "question_id": 36809, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008674", - "question_id": 36810, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006340", - "question_id": 36811, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006728", - "question_id": 36814, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008258", - "question_id": 36815, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008543", - "question_id": 36817, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008959", - "question_id": 36818, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000691", - "question_id": 36821, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002772", - "question_id": 36823, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "va00005342", - "question_id": 36824, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005798", - "question_id": 36829, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003795", - "question_id": 36830, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005545", - "question_id": 36831, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001391", - "question_id": 36832, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00001211", - "question_id": 36833, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001211", - "question_id": 36833, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000047", - "question_id": 36834, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008432", - "question_id": 36835, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000396", - "question_id": 36837, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004780", - "question_id": 36839, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008817", - "question_id": 36840, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003839", - "question_id": 36843, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005492", - "question_id": 36844, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005167", - "question_id": 36845, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "sa00007635", - "question_id": 36846, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007925", - "question_id": 36848, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"pipa\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00000363", - "question_id": 36849, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "va00004324", - "question_id": 36851, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "vv00000353", - "question_id": 36852, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007666", - "question_id": 36854, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00008570", - "question_id": 36855, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007507", - "question_id": 36856, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008787", - "question_id": 36857, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006896", - "question_id": 36858, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004418", - "question_id": 36860, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004150", - "question_id": 36862, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007932", - "question_id": 36863, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000056", - "question_id": 36864, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008102", - "question_id": 36865, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000533", - "question_id": 36867, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000731", - "question_id": 36868, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008066", - "question_id": 36869, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005046", - "question_id": 36870, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00007118", - "question_id": 36871, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005575", - "question_id": 36872, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001932", - "question_id": 36876, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006396", - "question_id": 36878, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "sa00008497", - "question_id": 36880, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003663", - "question_id": 36881, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000613", - "question_id": 36884, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004822", - "question_id": 36885, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004835", - "question_id": 36886, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"electric_bass\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004687", - "question_id": 36887, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007577", - "question_id": 36888, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000011", - "question_id": 36889, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004208", - "question_id": 36890, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004543", - "question_id": 36892, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005879", - "question_id": 36893, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003169", - "question_id": 36895, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006724", - "question_id": 36896, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "vv00000567", - "question_id": 36897, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003216", - "question_id": 36898, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000628", - "question_id": 36900, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "vv00002846", - "question_id": 36901, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"trumpet\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001530", - "question_id": 36902, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000926", - "question_id": 36906, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"xylophone\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00000739", - "question_id": 36909, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00006161", - "question_id": 36910, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005859", - "question_id": 36913, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000239", - "question_id": 36915, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006679", - "question_id": 36918, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "sa00008442", - "question_id": 36919, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007424", - "question_id": 36920, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006586", - "question_id": 36921, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008608", - "question_id": 36922, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000255", - "question_id": 36923, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "vv00000088", - "question_id": 36925, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004363", - "question_id": 36926, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006734", - "question_id": 36928, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006569", - "question_id": 36931, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001042", - "question_id": 36932, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"violin\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "vv00000173", - "question_id": 36933, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004547", - "question_id": 36936, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000089", - "question_id": 36937, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004539", - "question_id": 36938, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000556", - "question_id": 36939, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006366", - "question_id": 36940, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005745", - "question_id": 36941, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00003145", - "question_id": 36944, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004898", - "question_id": 36945, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002340", - "question_id": 36946, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000491", - "question_id": 36947, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"congas\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "vv00002776", - "question_id": 36949, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"xylophone\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00005725", - "question_id": 36950, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004032", - "question_id": 36951, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00005449", - "question_id": 36954, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00005987", - "question_id": 36955, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001305", - "question_id": 36956, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00006584", - "question_id": 36957, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"banjo\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00007158", - "question_id": 36958, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003754", - "question_id": 36959, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002878", - "question_id": 36960, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00007288", - "question_id": 36961, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003267", - "question_id": 36963, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006296", - "question_id": 36964, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003387", - "question_id": 36965, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005031", - "question_id": 36966, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"tuba\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005944", - "question_id": 36968, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004451", - "question_id": 36969, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007371", - "question_id": 36970, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004163", - "question_id": 36971, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002969", - "question_id": 36972, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"tuba\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00001605", - "question_id": 36974, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000257", - "question_id": 36975, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008836", - "question_id": 36978, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003251", - "question_id": 36979, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003096", - "question_id": 36980, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007829", - "question_id": 36984, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00003815", - "question_id": 36987, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005213", - "question_id": 36988, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005002", - "question_id": 36991, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005854", - "question_id": 36992, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001356", - "question_id": 36993, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "sa00006625", - "question_id": 36994, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006793", - "question_id": 36995, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007151", - "question_id": 36996, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003483", - "question_id": 37002, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002297", - "question_id": 37003, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006502", - "question_id": 37004, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"banjo\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002186", - "question_id": 37005, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005973", - "question_id": 37006, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005931", - "question_id": 37009, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000580", - "question_id": 37010, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001510", - "question_id": 37012, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000395", - "question_id": 37015, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008207", - "question_id": 37016, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00008678", - "question_id": 37017, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002197", - "question_id": 37018, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003251", - "question_id": 37019, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000888", - "question_id": 37020, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00001878", - "question_id": 37021, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00003398", - "question_id": 37022, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002272", - "question_id": 37023, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006205", - "question_id": 37024, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00001569", - "question_id": 37025, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "sa00006635", - "question_id": 37026, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003442", - "question_id": 37028, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002902", - "question_id": 37032, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000976", - "question_id": 37034, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000628", - "question_id": 37035, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006059", - "question_id": 37036, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007864", - "question_id": 37037, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006207", - "question_id": 37038, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002585", - "question_id": 37041, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "vv00002308", - "question_id": 37042, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002509", - "question_id": 37044, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005719", - "question_id": 37045, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"congas\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005171", - "question_id": 37047, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002229", - "question_id": 37048, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008672", - "question_id": 37049, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005409", - "question_id": 37050, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "vv00000102", - "question_id": 37052, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003219", - "question_id": 37053, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002943", - "question_id": 37054, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00004864", - "question_id": 37055, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001044", - "question_id": 37056, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "vv00000558", - "question_id": 37057, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002374", - "question_id": 37058, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00002299", - "question_id": 37060, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00005307", - "question_id": 37061, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008250", - "question_id": 37062, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005969", - "question_id": 37063, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"banjo\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00007406", - "question_id": 37064, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008630", - "question_id": 37067, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002146", - "question_id": 37069, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003725", - "question_id": 37070, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"trumpet\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008899", - "question_id": 37071, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00000927", - "question_id": 37073, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00005213", - "question_id": 37074, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005763", - "question_id": 37075, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003767", - "question_id": 37076, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003955", - "question_id": 37077, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004349", - "question_id": 37078, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007068", - "question_id": 37079, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002989", - "question_id": 37080, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008425", - "question_id": 37082, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006770", - "question_id": 37083, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005935", - "question_id": 37085, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"xylophone\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "va00005568", - "question_id": 37087, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002447", - "question_id": 37088, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008189", - "question_id": 37090, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "sa00006627", - "question_id": 37093, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008917", - "question_id": 37094, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00003621", - "question_id": 37095, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008184", - "question_id": 37096, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002319", - "question_id": 37099, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000089", - "question_id": 37103, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006556", - "question_id": 37105, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"bassoon\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00007463", - "question_id": 37106, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001211", - "question_id": 37108, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000927", - "question_id": 37110, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007234", - "question_id": 37112, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007178", - "question_id": 37115, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004136", - "question_id": 37116, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007701", - "question_id": 37117, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "vv00000649", - "question_id": 37119, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004300", - "question_id": 37120, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005274", - "question_id": 37121, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004830", - "question_id": 37122, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"last\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00001362", - "question_id": 37123, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005277", - "question_id": 37124, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00002944", - "question_id": 37126, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005478", - "question_id": 37129, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007053", - "question_id": 37130, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004107", - "question_id": 37131, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007943", - "question_id": 37134, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000647", - "question_id": 37135, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002004", - "question_id": 37136, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00002379", - "question_id": 37137, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003156", - "question_id": 37139, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007088", - "question_id": 37140, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00007419", - "question_id": 37141, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002953", - "question_id": 37142, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"guzheng\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00006161", - "question_id": 37143, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007524", - "question_id": 37146, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"erhu\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004698", - "question_id": 37147, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "vv00000221", - "question_id": 37148, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004038", - "question_id": 37149, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006616", - "question_id": 37150, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008876", - "question_id": 37153, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007794", - "question_id": 37154, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000386", - "question_id": 37155, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00001977", - "question_id": 37156, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000594", - "question_id": 37159, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002781", - "question_id": 37161, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00007536", - "question_id": 37162, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008377", - "question_id": 37167, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006451", - "question_id": 37169, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003521", - "question_id": 37170, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003347", - "question_id": 37172, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "vv00000121", - "question_id": 37174, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008330", - "question_id": 37176, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004377", - "question_id": 37177, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00001521", - "question_id": 37178, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005643", - "question_id": 37179, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002049", - "question_id": 37180, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008657", - "question_id": 37181, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005630", - "question_id": 37182, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007331", - "question_id": 37183, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "sa00006476", - "question_id": 37184, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002797", - "question_id": 37185, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002882", - "question_id": 37186, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005298", - "question_id": 37187, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002896", - "question_id": 37188, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00001649", - "question_id": 37189, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00005020", - "question_id": 37190, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002900", - "question_id": 37191, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007287", - "question_id": 37192, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007784", - "question_id": 37193, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00002935", - "question_id": 37195, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006006", - "question_id": 37196, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005205", - "question_id": 37197, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008301", - "question_id": 37198, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008146", - "question_id": 37199, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "va00004887", - "question_id": 37200, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003284", - "question_id": 37201, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006177", - "question_id": 37204, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003306", - "question_id": 37205, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004211", - "question_id": 37211, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008835", - "question_id": 37212, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002733", - "question_id": 37213, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006224", - "question_id": 37215, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007221", - "question_id": 37217, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000557", - "question_id": 37218, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"xylophone\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00004099", - "question_id": 37219, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001022", - "question_id": 37220, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007716", - "question_id": 37221, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004822", - "question_id": 37222, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002679", - "question_id": 37223, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003988", - "question_id": 37224, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007533", - "question_id": 37225, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004230", - "question_id": 37227, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003670", - "question_id": 37229, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004122", - "question_id": 37230, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"electric_bass\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001293", - "question_id": 37231, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008322", - "question_id": 37232, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00003649", - "question_id": 37233, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004779", - "question_id": 37234, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008494", - "question_id": 37235, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004440", - "question_id": 37236, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00002826", - "question_id": 37237, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004627", - "question_id": 37238, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00007419", - "question_id": 37239, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000392", - "question_id": 37240, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006482", - "question_id": 37241, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001243", - "question_id": 37242, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"last\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005283", - "question_id": 37243, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006142", - "question_id": 37244, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "nine" - }, - { - "video_id": "va00004569", - "question_id": 37245, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00000356", - "question_id": 37246, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000932", - "question_id": 37247, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "va00005700", - "question_id": 37248, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006717", - "question_id": 37250, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00003645", - "question_id": 37251, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003764", - "question_id": 37252, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005424", - "question_id": 37253, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006113", - "question_id": 37254, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003738", - "question_id": 37255, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008860", - "question_id": 37258, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008756", - "question_id": 37260, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007207", - "question_id": 37264, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"last\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "va00004125", - "question_id": 37265, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004705", - "question_id": 37266, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "vv00002738", - "question_id": 37268, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007160", - "question_id": 37269, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003142", - "question_id": 37270, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007215", - "question_id": 37272, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001860", - "question_id": 37273, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008661", - "question_id": 37275, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008609", - "question_id": 37277, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005859", - "question_id": 37278, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004928", - "question_id": 37279, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005465", - "question_id": 37280, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00007749", - "question_id": 37282, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008433", - "question_id": 37286, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000558", - "question_id": 37287, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008225", - "question_id": 37288, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001816", - "question_id": 37290, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "sa00006781", - "question_id": 37291, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001761", - "question_id": 37292, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003781", - "question_id": 37294, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "sa00008242", - "question_id": 37295, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "sa00007032", - "question_id": 37297, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004220", - "question_id": 37298, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003631", - "question_id": 37301, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000306", - "question_id": 37302, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000306", - "question_id": 37302, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003527", - "question_id": 37304, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004049", - "question_id": 37306, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001877", - "question_id": 37309, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002859", - "question_id": 37310, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002075", - "question_id": 37311, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003113", - "question_id": 37313, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000994", - "question_id": 37314, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000775", - "question_id": 37315, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00006784", - "question_id": 37318, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006016", - "question_id": 37320, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005295", - "question_id": 37321, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"accordion\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005907", - "question_id": 37322, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003914", - "question_id": 37323, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002203", - "question_id": 37324, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003276", - "question_id": 37326, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008278", - "question_id": 37327, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "sa00008639", - "question_id": 37328, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006962", - "question_id": 37329, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005160", - "question_id": 37330, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001356", - "question_id": 37331, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003279", - "question_id": 37332, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005830", - "question_id": 37334, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00000538", - "question_id": 37335, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00002703", - "question_id": 37336, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007354", - "question_id": 37338, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002401", - "question_id": 37341, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008263", - "question_id": 37342, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008406", - "question_id": 37343, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001613", - "question_id": 37345, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"suona\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002419", - "question_id": 37347, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006651", - "question_id": 37348, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008075", - "question_id": 37349, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001410", - "question_id": 37352, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008881", - "question_id": 37353, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004237", - "question_id": 37355, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001099", - "question_id": 37358, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006054", - "question_id": 37359, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005551", - "question_id": 37360, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007580", - "question_id": 37362, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002136", - "question_id": 37363, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00001617", - "question_id": 37364, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001851", - "question_id": 37365, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000716", - "question_id": 37367, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005438", - "question_id": 37368, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "va00005528", - "question_id": 37369, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008466", - "question_id": 37370, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00005002", - "question_id": 37371, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008640", - "question_id": 37372, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001030", - "question_id": 37375, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001748", - "question_id": 37378, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00003683", - "question_id": 37379, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002557", - "question_id": 37380, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000397", - "question_id": 37382, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000088", - "question_id": 37383, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002019", - "question_id": 37384, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004420", - "question_id": 37387, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006799", - "question_id": 37389, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002830", - "question_id": 37390, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002309", - "question_id": 37391, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"xylophone\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002493", - "question_id": 37392, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006492", - "question_id": 37393, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00008963", - "question_id": 37394, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002239", - "question_id": 37396, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002970", - "question_id": 37397, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003729", - "question_id": 37398, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "sa00008696", - "question_id": 37399, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008874", - "question_id": 37401, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004041", - "question_id": 37402, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007756", - "question_id": 37403, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004698", - "question_id": 37406, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004137", - "question_id": 37407, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004137", - "question_id": 37407, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008827", - "question_id": 37409, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003235", - "question_id": 37410, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008478", - "question_id": 37411, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00000239", - "question_id": 37412, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006218", - "question_id": 37414, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008699", - "question_id": 37415, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00004349", - "question_id": 37417, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005122", - "question_id": 37418, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005151", - "question_id": 37420, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003728", - "question_id": 37422, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006713", - "question_id": 37424, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007697", - "question_id": 37425, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004772", - "question_id": 37426, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004808", - "question_id": 37428, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004808", - "question_id": 37428, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002595", - "question_id": 37429, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003369", - "question_id": 37431, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002162", - "question_id": 37432, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002642", - "question_id": 37433, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002921", - "question_id": 37437, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007152", - "question_id": 37438, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00002548", - "question_id": 37439, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001695", - "question_id": 37440, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005756", - "question_id": 37441, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005517", - "question_id": 37442, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003372", - "question_id": 37443, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004313", - "question_id": 37444, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001712", - "question_id": 37445, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001822", - "question_id": 37446, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004762", - "question_id": 37447, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002131", - "question_id": 37449, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006683", - "question_id": 37451, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006097", - "question_id": 37452, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006751", - "question_id": 37455, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000577", - "question_id": 37457, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004019", - "question_id": 37458, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008248", - "question_id": 37459, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "sa00007576", - "question_id": 37460, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00002556", - "question_id": 37461, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005350", - "question_id": 37462, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008028", - "question_id": 37463, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002738", - "question_id": 37464, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002736", - "question_id": 37466, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006493", - "question_id": 37468, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "va00005859", - "question_id": 37469, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006868", - "question_id": 37472, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00005413", - "question_id": 37473, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003890", - "question_id": 37474, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006148", - "question_id": 37475, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004522", - "question_id": 37477, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006559", - "question_id": 37478, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00004993", - "question_id": 37480, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006751", - "question_id": 37481, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002993", - "question_id": 37482, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008490", - "question_id": 37484, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003728", - "question_id": 37486, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00002728", - "question_id": 37487, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008679", - "question_id": 37489, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000932", - "question_id": 37491, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "vv00000611", - "question_id": 37493, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005248", - "question_id": 37495, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003570", - "question_id": 37497, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007188", - "question_id": 37499, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008760", - "question_id": 37500, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004645", - "question_id": 37501, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008751", - "question_id": 37503, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006432", - "question_id": 37504, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007305", - "question_id": 37505, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004905", - "question_id": 37506, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003448", - "question_id": 37509, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006676", - "question_id": 37510, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005248", - "question_id": 37511, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004694", - "question_id": 37512, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005314", - "question_id": 37513, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001743", - "question_id": 37514, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008080", - "question_id": 37515, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"xylophone\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008343", - "question_id": 37517, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006227", - "question_id": 37518, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005095", - "question_id": 37519, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003396", - "question_id": 37520, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007170", - "question_id": 37521, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"suona\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00008452", - "question_id": 37522, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008425", - "question_id": 37523, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00008715", - "question_id": 37524, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00008607", - "question_id": 37525, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007445", - "question_id": 37526, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008970", - "question_id": 37527, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003715", - "question_id": 37528, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00000357", - "question_id": 37529, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003412", - "question_id": 37530, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"accordion\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008826", - "question_id": 37531, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003503", - "question_id": 37532, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00005772", - "question_id": 37533, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005356", - "question_id": 37537, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007973", - "question_id": 37538, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002953", - "question_id": 37539, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008243", - "question_id": 37540, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000484", - "question_id": 37541, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000938", - "question_id": 37542, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005594", - "question_id": 37544, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007390", - "question_id": 37546, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00005946", - "question_id": 37548, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008293", - "question_id": 37549, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004733", - "question_id": 37550, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008641", - "question_id": 37551, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004682", - "question_id": 37555, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00000558", - "question_id": 37556, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004285", - "question_id": 37558, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00007004", - "question_id": 37561, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001876", - "question_id": 37563, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00000574", - "question_id": 37565, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007612", - "question_id": 37566, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006097", - "question_id": 37567, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00005466", - "question_id": 37570, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004399", - "question_id": 37571, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003481", - "question_id": 37572, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"tuba\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00002418", - "question_id": 37573, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008438", - "question_id": 37576, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008157", - "question_id": 37578, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "sa00005991", - "question_id": 37579, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002571", - "question_id": 37581, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007318", - "question_id": 37582, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004735", - "question_id": 37583, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "sa00006684", - "question_id": 37584, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004453", - "question_id": 37586, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000694", - "question_id": 37587, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006012", - "question_id": 37588, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000351", - "question_id": 37589, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001594", - "question_id": 37591, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006915", - "question_id": 37592, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002485", - "question_id": 37593, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007406", - "question_id": 37594, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005307", - "question_id": 37596, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007783", - "question_id": 37597, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002902", - "question_id": 37598, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "sa00005983", - "question_id": 37599, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007141", - "question_id": 37600, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008191", - "question_id": 37602, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000934", - "question_id": 37603, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004329", - "question_id": 37604, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002585", - "question_id": 37605, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006520", - "question_id": 37606, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004341", - "question_id": 37608, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004526", - "question_id": 37609, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003652", - "question_id": 37610, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006879", - "question_id": 37613, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007911", - "question_id": 37615, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002429", - "question_id": 37616, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00008116", - "question_id": 37617, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001445", - "question_id": 37618, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007813", - "question_id": 37619, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00000406", - "question_id": 37620, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004057", - "question_id": 37621, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005224", - "question_id": 37622, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003251", - "question_id": 37626, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008451", - "question_id": 37627, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00004736", - "question_id": 37628, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006615", - "question_id": 37629, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006976", - "question_id": 37630, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008520", - "question_id": 37633, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003132", - "question_id": 37635, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003589", - "question_id": 37636, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005750", - "question_id": 37637, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001184", - "question_id": 37639, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00008519", - "question_id": 37641, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001060", - "question_id": 37643, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003756", - "question_id": 37645, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00005584", - "question_id": 37646, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00003791", - "question_id": 37647, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008600", - "question_id": 37649, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005702", - "question_id": 37650, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001527", - "question_id": 37651, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000505", - "question_id": 37652, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002441", - "question_id": 37654, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002914", - "question_id": 37656, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "sa00008323", - "question_id": 37657, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000492", - "question_id": 37661, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004612", - "question_id": 37664, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000871", - "question_id": 37665, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005461", - "question_id": 37666, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006493", - "question_id": 37667, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007902", - "question_id": 37668, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007643", - "question_id": 37669, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002642", - "question_id": 37672, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "va00003585", - "question_id": 37673, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002385", - "question_id": 37674, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00002309", - "question_id": 37675, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003241", - "question_id": 37676, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004937", - "question_id": 37678, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005880", - "question_id": 37679, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005313", - "question_id": 37680, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00004770", - "question_id": 37682, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005622", - "question_id": 37683, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "va00004443", - "question_id": 37684, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005828", - "question_id": 37685, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00005494", - "question_id": 37686, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005796", - "question_id": 37687, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005457", - "question_id": 37688, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00000613", - "question_id": 37689, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007084", - "question_id": 37690, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005870", - "question_id": 37692, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007854", - "question_id": 37694, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006061", - "question_id": 37695, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005500", - "question_id": 37696, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006372", - "question_id": 37697, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00006600", - "question_id": 37698, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00008264", - "question_id": 37699, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004042", - "question_id": 37702, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00005379", - "question_id": 37703, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007608", - "question_id": 37704, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006195", - "question_id": 37706, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008773", - "question_id": 37707, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003145", - "question_id": 37709, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000955", - "question_id": 37713, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000439", - "question_id": 37714, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "sa00008158", - "question_id": 37715, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006172", - "question_id": 37717, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007333", - "question_id": 37719, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007091", - "question_id": 37720, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000876", - "question_id": 37721, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000536", - "question_id": 37722, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006103", - "question_id": 37724, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006560", - "question_id": 37726, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007418", - "question_id": 37728, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005426", - "question_id": 37730, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005228", - "question_id": 37732, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008281", - "question_id": 37734, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000278", - "question_id": 37737, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004070", - "question_id": 37738, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006688", - "question_id": 37739, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00005791", - "question_id": 37740, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004461", - "question_id": 37741, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"tuba\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006976", - "question_id": 37742, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004608", - "question_id": 37743, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005921", - "question_id": 37744, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004920", - "question_id": 37745, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "va00004968", - "question_id": 37746, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001108", - "question_id": 37747, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000236", - "question_id": 37748, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005269", - "question_id": 37749, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "vv00000611", - "question_id": 37750, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007026", - "question_id": 37751, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003929", - "question_id": 37752, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003945", - "question_id": 37753, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007540", - "question_id": 37754, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007540", - "question_id": 37754, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004477", - "question_id": 37756, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000381", - "question_id": 37759, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000653", - "question_id": 37760, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00007751", - "question_id": 37761, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006820", - "question_id": 37762, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006821", - "question_id": 37764, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008138", - "question_id": 37765, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006324", - "question_id": 37768, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001735", - "question_id": 37769, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005422", - "question_id": 37771, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006756", - "question_id": 37773, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008650", - "question_id": 37775, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002787", - "question_id": 37776, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002328", - "question_id": 37779, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004258", - "question_id": 37781, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003992", - "question_id": 37782, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008225", - "question_id": 37784, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007854", - "question_id": 37786, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008578", - "question_id": 37788, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "nine" - }, - { - "video_id": "vv00002669", - "question_id": 37789, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002858", - "question_id": 37791, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003126", - "question_id": 37793, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "sa00007909", - "question_id": 37794, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005945", - "question_id": 37795, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002384", - "question_id": 37797, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005267", - "question_id": 37798, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "va00005859", - "question_id": 37799, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bagpipe\", \"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002700", - "question_id": 37801, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003241", - "question_id": 37803, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "sa00008785", - "question_id": 37804, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002875", - "question_id": 37805, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003844", - "question_id": 37806, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007371", - "question_id": 37809, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005122", - "question_id": 37810, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "va00005391", - "question_id": 37811, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008122", - "question_id": 37812, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000555", - "question_id": 37813, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003915", - "question_id": 37816, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007882", - "question_id": 37817, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004317", - "question_id": 37818, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00008252", - "question_id": 37819, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007064", - "question_id": 37820, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003177", - "question_id": 37821, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001362", - "question_id": 37822, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008500", - "question_id": 37823, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001139", - "question_id": 37826, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007973", - "question_id": 37827, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000314", - "question_id": 37829, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004675", - "question_id": 37832, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00004626", - "question_id": 37833, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006762", - "question_id": 37834, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00003052", - "question_id": 37837, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001242", - "question_id": 37839, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005411", - "question_id": 37840, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00005040", - "question_id": 37841, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008963", - "question_id": 37842, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00005791", - "question_id": 37844, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008237", - "question_id": 37845, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000444", - "question_id": 37847, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004804", - "question_id": 37848, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008314", - "question_id": 37849, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003758", - "question_id": 37850, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000370", - "question_id": 37852, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003150", - "question_id": 37853, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006479", - "question_id": 37855, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000638", - "question_id": 37856, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004512", - "question_id": 37857, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003051", - "question_id": 37858, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"tuba\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006811", - "question_id": 37859, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007123", - "question_id": 37860, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003791", - "question_id": 37861, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007400", - "question_id": 37862, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "more than ten" - }, - { - "video_id": "sa00006364", - "question_id": 37863, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007598", - "question_id": 37865, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000243", - "question_id": 37867, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000790", - "question_id": 37868, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004826", - "question_id": 37870, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005909", - "question_id": 37871, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007406", - "question_id": 37873, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"pipa\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00005819", - "question_id": 37875, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "vv00002845", - "question_id": 37879, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007276", - "question_id": 37880, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"congas\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003512", - "question_id": 37881, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002688", - "question_id": 37884, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005568", - "question_id": 37886, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001080", - "question_id": 37887, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005676", - "question_id": 37888, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002364", - "question_id": 37892, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003967", - "question_id": 37893, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002075", - "question_id": 37894, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007143", - "question_id": 37895, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004405", - "question_id": 37897, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008163", - "question_id": 37898, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001108", - "question_id": 37904, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005890", - "question_id": 37906, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "sa00006424", - "question_id": 37909, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004498", - "question_id": 37910, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002973", - "question_id": 37911, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006613", - "question_id": 37912, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005751", - "question_id": 37913, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008327", - "question_id": 37915, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003999", - "question_id": 37917, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005350", - "question_id": 37919, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005643", - "question_id": 37920, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006005", - "question_id": 37921, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001663", - "question_id": 37922, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006207", - "question_id": 37923, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "sa00006833", - "question_id": 37924, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007345", - "question_id": 37925, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008741", - "question_id": 37926, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002081", - "question_id": 37928, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007745", - "question_id": 37932, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000625", - "question_id": 37934, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004984", - "question_id": 37935, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006379", - "question_id": 37938, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "vv00002873", - "question_id": 37941, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"clarinet\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "sa00008700", - "question_id": 37942, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005681", - "question_id": 37943, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008393", - "question_id": 37945, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007697", - "question_id": 37948, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005693", - "question_id": 37951, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00008250", - "question_id": 37952, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004500", - "question_id": 37953, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00002080", - "question_id": 37954, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007725", - "question_id": 37955, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008410", - "question_id": 37957, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008776", - "question_id": 37958, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004259", - "question_id": 37959, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007834", - "question_id": 37960, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001551", - "question_id": 37965, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00007057", - "question_id": 37968, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "va00003345", - "question_id": 37969, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004587", - "question_id": 37970, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00006026", - "question_id": 37972, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003986", - "question_id": 37974, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003776", - "question_id": 37975, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003612", - "question_id": 37976, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007686", - "question_id": 37977, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001410", - "question_id": 37978, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004485", - "question_id": 37979, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005709", - "question_id": 37980, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005414", - "question_id": 37982, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006508", - "question_id": 37983, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001695", - "question_id": 37984, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"trumpet\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002728", - "question_id": 37988, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"tuba\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00000809", - "question_id": 37989, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005483", - "question_id": 37990, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00006863", - "question_id": 37993, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002691", - "question_id": 37994, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001721", - "question_id": 37995, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006796", - "question_id": 37996, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "vv00002752", - "question_id": 37999, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"guzheng\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "vv00002886", - "question_id": 38000, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003845", - "question_id": 38001, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006356", - "question_id": 38003, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00003823", - "question_id": 38004, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005169", - "question_id": 38005, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003899", - "question_id": 38006, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00003076", - "question_id": 38009, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"tuba\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "sa00008963", - "question_id": 38010, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003285", - "question_id": 38011, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005137", - "question_id": 38012, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006156", - "question_id": 38013, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005736", - "question_id": 38014, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003507", - "question_id": 38015, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005553", - "question_id": 38019, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008478", - "question_id": 38020, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002717", - "question_id": 38021, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004213", - "question_id": 38022, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006467", - "question_id": 38023, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "vv00002453", - "question_id": 38024, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "more than ten" - }, - { - "video_id": "va00003298", - "question_id": 38026, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00000460", - "question_id": 38028, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008809", - "question_id": 38029, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00008146", - "question_id": 38030, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007561", - "question_id": 38031, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007811", - "question_id": 38034, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00002968", - "question_id": 38035, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004710", - "question_id": 38036, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00000497", - "question_id": 38037, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003157", - "question_id": 38038, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003200", - "question_id": 38039, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00004013", - "question_id": 38040, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008645", - "question_id": 38042, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003539", - "question_id": 38043, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005415", - "question_id": 38045, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00005356", - "question_id": 38046, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001346", - "question_id": 38047, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "va00005495", - "question_id": 38048, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004965", - "question_id": 38050, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006764", - "question_id": 38051, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003932", - "question_id": 38052, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00003053", - "question_id": 38053, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"tuba\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "va00003836", - "question_id": 38054, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004195", - "question_id": 38055, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005149", - "question_id": 38057, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005100", - "question_id": 38058, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003307", - "question_id": 38059, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "vv00002616", - "question_id": 38060, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006410", - "question_id": 38061, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "vv00000308", - "question_id": 38062, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"xylophone\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00007944", - "question_id": 38064, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008122", - "question_id": 38065, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008286", - "question_id": 38067, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001694", - "question_id": 38069, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002241", - "question_id": 38072, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00000353", - "question_id": 38074, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "vv00000353", - "question_id": 38074, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"piano\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00004295", - "question_id": 38075, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003196", - "question_id": 38076, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "vv00002482", - "question_id": 38078, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00005634", - "question_id": 38079, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"saxophone\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "va00003245", - "question_id": 38080, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007089", - "question_id": 38081, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008547", - "question_id": 38082, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003129", - "question_id": 38084, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004070", - "question_id": 38085, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003137", - "question_id": 38086, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005477", - "question_id": 38087, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004640", - "question_id": 38088, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00004902", - "question_id": 38089, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001549", - "question_id": 38092, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003867", - "question_id": 38093, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004522", - "question_id": 38094, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005830", - "question_id": 38095, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008008", - "question_id": 38096, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"tuba\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "va00004511", - "question_id": 38100, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008538", - "question_id": 38105, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008713", - "question_id": 38106, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"accordion\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004267", - "question_id": 38107, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007349", - "question_id": 38108, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005723", - "question_id": 38109, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004518", - "question_id": 38110, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005782", - "question_id": 38111, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005455", - "question_id": 38114, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005882", - "question_id": 38116, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001104", - "question_id": 38117, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000190", - "question_id": 38118, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005917", - "question_id": 38120, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002611", - "question_id": 38123, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007937", - "question_id": 38125, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004069", - "question_id": 38126, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008807", - "question_id": 38128, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004937", - "question_id": 38131, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"xylophone\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "va00004365", - "question_id": 38139, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005332", - "question_id": 38142, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008495", - "question_id": 38145, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004349", - "question_id": 38146, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005771", - "question_id": 38148, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008716", - "question_id": 38151, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00004587", - "question_id": 38152, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003277", - "question_id": 38153, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008641", - "question_id": 38154, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004601", - "question_id": 38155, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004395", - "question_id": 38158, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004395", - "question_id": 38158, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006229", - "question_id": 38160, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001226", - "question_id": 38161, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008866", - "question_id": 38167, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004078", - "question_id": 38168, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006244", - "question_id": 38169, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005738", - "question_id": 38171, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007118", - "question_id": 38172, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000148", - "question_id": 38173, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "va00004665", - "question_id": 38174, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000765", - "question_id": 38175, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004168", - "question_id": 38176, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000183", - "question_id": 38177, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "sa00006625", - "question_id": 38181, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006001", - "question_id": 38182, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007466", - "question_id": 38183, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001251", - "question_id": 38185, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007645", - "question_id": 38187, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003320", - "question_id": 38188, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000275", - "question_id": 38189, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "va00003584", - "question_id": 38190, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005238", - "question_id": 38192, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007474", - "question_id": 38194, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002992", - "question_id": 38195, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007507", - "question_id": 38196, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00003027", - "question_id": 38200, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001998", - "question_id": 38201, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00008222", - "question_id": 38202, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000066", - "question_id": 38203, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007001", - "question_id": 38205, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008028", - "question_id": 38207, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006645", - "question_id": 38208, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00000478", - "question_id": 38209, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001964", - "question_id": 38212, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"tuba\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00007386", - "question_id": 38215, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006077", - "question_id": 38216, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006232", - "question_id": 38220, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005167", - "question_id": 38221, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001900", - "question_id": 38223, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005041", - "question_id": 38224, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002546", - "question_id": 38225, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003153", - "question_id": 38226, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008760", - "question_id": 38227, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008786", - "question_id": 38229, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003952", - "question_id": 38230, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007117", - "question_id": 38233, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008072", - "question_id": 38234, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004162", - "question_id": 38235, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008157", - "question_id": 38236, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003040", - "question_id": 38237, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005533", - "question_id": 38239, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004419", - "question_id": 38240, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000755", - "question_id": 38241, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007469", - "question_id": 38242, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002041", - "question_id": 38244, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007882", - "question_id": 38245, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003868", - "question_id": 38246, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00006092", - "question_id": 38247, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004809", - "question_id": 38248, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004103", - "question_id": 38249, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000555", - "question_id": 38250, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005308", - "question_id": 38251, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003415", - "question_id": 38252, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006059", - "question_id": 38253, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003988", - "question_id": 38254, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004927", - "question_id": 38255, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"xylophone\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00008411", - "question_id": 38259, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004388", - "question_id": 38261, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "vv00002416", - "question_id": 38262, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007973", - "question_id": 38264, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007512", - "question_id": 38267, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001534", - "question_id": 38268, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "va00003186", - "question_id": 38271, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000069", - "question_id": 38272, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008661", - "question_id": 38273, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006551", - "question_id": 38274, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008806", - "question_id": 38276, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003241", - "question_id": 38277, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003062", - "question_id": 38278, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "sa00008746", - "question_id": 38279, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007151", - "question_id": 38280, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007009", - "question_id": 38281, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"suona\", \"left\", \"pipa\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005241", - "question_id": 38282, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004850", - "question_id": 38284, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006689", - "question_id": 38285, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "vv00002639", - "question_id": 38286, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000301", - "question_id": 38287, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "vv00002769", - "question_id": 38289, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006519", - "question_id": 38290, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000353", - "question_id": 38291, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000353", - "question_id": 38291, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "vv00000081", - "question_id": 38292, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000478", - "question_id": 38294, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004371", - "question_id": 38295, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007417", - "question_id": 38296, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005572", - "question_id": 38297, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001385", - "question_id": 38298, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002803", - "question_id": 38299, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006643", - "question_id": 38300, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008323", - "question_id": 38303, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006206", - "question_id": 38304, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000322", - "question_id": 38305, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004511", - "question_id": 38307, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007759", - "question_id": 38312, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005491", - "question_id": 38314, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007724", - "question_id": 38317, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005453", - "question_id": 38319, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008541", - "question_id": 38320, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004801", - "question_id": 38321, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000554", - "question_id": 38322, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005257", - "question_id": 38324, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003329", - "question_id": 38326, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004781", - "question_id": 38327, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006156", - "question_id": 38328, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003862", - "question_id": 38329, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003333", - "question_id": 38330, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004652", - "question_id": 38331, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00004544", - "question_id": 38332, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007890", - "question_id": 38333, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003522", - "question_id": 38335, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000298", - "question_id": 38336, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002632", - "question_id": 38337, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001694", - "question_id": 38338, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007310", - "question_id": 38339, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003945", - "question_id": 38342, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001760", - "question_id": 38344, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005676", - "question_id": 38345, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008022", - "question_id": 38346, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008883", - "question_id": 38347, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008785", - "question_id": 38348, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004049", - "question_id": 38349, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003062", - "question_id": 38350, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002827", - "question_id": 38351, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008247", - "question_id": 38352, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002503", - "question_id": 38353, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003675", - "question_id": 38356, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008226", - "question_id": 38359, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00005995", - "question_id": 38360, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008374", - "question_id": 38361, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003900", - "question_id": 38362, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002282", - "question_id": 38365, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003886", - "question_id": 38366, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00002919", - "question_id": 38368, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004982", - "question_id": 38369, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008790", - "question_id": 38373, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "sa00007703", - "question_id": 38374, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003760", - "question_id": 38375, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002777", - "question_id": 38376, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004604", - "question_id": 38379, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002049", - "question_id": 38381, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006240", - "question_id": 38382, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002909", - "question_id": 38383, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008359", - "question_id": 38384, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006344", - "question_id": 38386, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002303", - "question_id": 38387, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007804", - "question_id": 38388, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005416", - "question_id": 38390, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002401", - "question_id": 38393, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007484", - "question_id": 38394, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005885", - "question_id": 38395, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004969", - "question_id": 38396, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008545", - "question_id": 38397, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001906", - "question_id": 38398, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006015", - "question_id": 38399, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006422", - "question_id": 38400, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002551", - "question_id": 38401, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00003815", - "question_id": 38402, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004134", - "question_id": 38405, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005528", - "question_id": 38406, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008270", - "question_id": 38408, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00006604", - "question_id": 38409, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007283", - "question_id": 38410, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00005661", - "question_id": 38413, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000587", - "question_id": 38414, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007774", - "question_id": 38417, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007184", - "question_id": 38418, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004211", - "question_id": 38422, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007199", - "question_id": 38423, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00006101", - "question_id": 38425, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00006541", - "question_id": 38427, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003086", - "question_id": 38428, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008245", - "question_id": 38431, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004776", - "question_id": 38432, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008788", - "question_id": 38433, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001900", - "question_id": 38435, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005889", - "question_id": 38436, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003448", - "question_id": 38437, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003162", - "question_id": 38438, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007016", - "question_id": 38439, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006621", - "question_id": 38440, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008541", - "question_id": 38441, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001782", - "question_id": 38442, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005183", - "question_id": 38443, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004516", - "question_id": 38445, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007664", - "question_id": 38447, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006908", - "question_id": 38448, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00008127", - "question_id": 38450, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"erhu\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003345", - "question_id": 38451, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008881", - "question_id": 38452, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004809", - "question_id": 38453, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001651", - "question_id": 38454, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003751", - "question_id": 38456, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006122", - "question_id": 38457, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"saxophone\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "vv00002845", - "question_id": 38459, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008127", - "question_id": 38460, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004114", - "question_id": 38463, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008804", - "question_id": 38465, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006598", - "question_id": 38467, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007054", - "question_id": 38468, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004301", - "question_id": 38469, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005042", - "question_id": 38470, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000476", - "question_id": 38472, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003088", - "question_id": 38473, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002028", - "question_id": 38474, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00007697", - "question_id": 38476, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006998", - "question_id": 38477, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000549", - "question_id": 38478, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007680", - "question_id": 38479, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000817", - "question_id": 38480, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005026", - "question_id": 38481, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003184", - "question_id": 38482, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002574", - "question_id": 38483, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006240", - "question_id": 38484, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005303", - "question_id": 38488, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006649", - "question_id": 38492, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003311", - "question_id": 38495, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "va00005385", - "question_id": 38498, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007760", - "question_id": 38499, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006128", - "question_id": 38500, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00003020", - "question_id": 38501, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003758", - "question_id": 38502, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002914", - "question_id": 38503, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006740", - "question_id": 38504, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005313", - "question_id": 38505, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007967", - "question_id": 38506, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001406", - "question_id": 38508, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004985", - "question_id": 38509, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006698", - "question_id": 38510, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005151", - "question_id": 38512, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002440", - "question_id": 38516, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "more than ten" - }, - { - "video_id": "va00004655", - "question_id": 38517, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006932", - "question_id": 38518, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001722", - "question_id": 38519, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006015", - "question_id": 38520, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008578", - "question_id": 38521, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006467", - "question_id": 38522, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001078", - "question_id": 38523, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006567", - "question_id": 38524, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000550", - "question_id": 38525, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005586", - "question_id": 38527, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003101", - "question_id": 38528, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004073", - "question_id": 38530, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004760", - "question_id": 38533, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006479", - "question_id": 38534, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002062", - "question_id": 38539, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002943", - "question_id": 38541, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007390", - "question_id": 38542, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002253", - "question_id": 38544, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004959", - "question_id": 38547, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007580", - "question_id": 38548, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005291", - "question_id": 38550, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006015", - "question_id": 38551, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006165", - "question_id": 38555, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004763", - "question_id": 38556, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005177", - "question_id": 38559, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00003001", - "question_id": 38561, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002522", - "question_id": 38562, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003500", - "question_id": 38563, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003528", - "question_id": 38564, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008312", - "question_id": 38565, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004366", - "question_id": 38569, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005909", - "question_id": 38573, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006329", - "question_id": 38574, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003278", - "question_id": 38575, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007788", - "question_id": 38576, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003937", - "question_id": 38577, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002700", - "question_id": 38578, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00006847", - "question_id": 38579, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007809", - "question_id": 38580, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004697", - "question_id": 38581, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007864", - "question_id": 38582, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006884", - "question_id": 38583, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004231", - "question_id": 38584, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007848", - "question_id": 38585, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00006296", - "question_id": 38586, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003441", - "question_id": 38588, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"xylophone\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006961", - "question_id": 38589, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000523", - "question_id": 38590, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003460", - "question_id": 38591, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006785", - "question_id": 38592, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007496", - "question_id": 38594, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006055", - "question_id": 38597, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006541", - "question_id": 38598, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005959", - "question_id": 38599, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006337", - "question_id": 38600, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006205", - "question_id": 38602, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004933", - "question_id": 38603, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002490", - "question_id": 38604, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007666", - "question_id": 38605, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000332", - "question_id": 38606, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "sa00006871", - "question_id": 38607, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006684", - "question_id": 38608, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003666", - "question_id": 38609, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00006348", - "question_id": 38610, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005858", - "question_id": 38611, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007322", - "question_id": 38612, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004672", - "question_id": 38614, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007752", - "question_id": 38617, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008081", - "question_id": 38619, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007942", - "question_id": 38620, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006366", - "question_id": 38623, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006879", - "question_id": 38624, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000009", - "question_id": 38626, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005428", - "question_id": 38631, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003396", - "question_id": 38632, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000489", - "question_id": 38633, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "va00005024", - "question_id": 38634, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007337", - "question_id": 38635, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004767", - "question_id": 38636, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003798", - "question_id": 38638, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007582", - "question_id": 38641, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004498", - "question_id": 38642, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004558", - "question_id": 38643, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "va00004954", - "question_id": 38644, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006600", - "question_id": 38645, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008055", - "question_id": 38646, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006548", - "question_id": 38648, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "seven" - }, - { - "video_id": "00006570", - "question_id": 38649, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000989", - "question_id": 38650, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000090", - "question_id": 38651, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004130", - "question_id": 38652, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007560", - "question_id": 38653, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001743", - "question_id": 38654, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005891", - "question_id": 38657, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001777", - "question_id": 38659, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003268", - "question_id": 38660, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007237", - "question_id": 38661, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004397", - "question_id": 38662, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008869", - "question_id": 38664, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003296", - "question_id": 38665, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001953", - "question_id": 38667, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007023", - "question_id": 38669, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004971", - "question_id": 38671, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000469", - "question_id": 38672, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005996", - "question_id": 38673, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006070", - "question_id": 38674, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "sa00007560", - "question_id": 38676, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004061", - "question_id": 38677, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007002", - "question_id": 38678, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "va00005889", - "question_id": 38679, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006547", - "question_id": 38680, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005174", - "question_id": 38681, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007633", - "question_id": 38683, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002455", - "question_id": 38684, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002161", - "question_id": 38685, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008130", - "question_id": 38686, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00001403", - "question_id": 38688, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007754", - "question_id": 38689, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004600", - "question_id": 38690, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00002779", - "question_id": 38691, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006586", - "question_id": 38694, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004397", - "question_id": 38696, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005041", - "question_id": 38698, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007686", - "question_id": 38701, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000476", - "question_id": 38703, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000089", - "question_id": 38704, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003069", - "question_id": 38705, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008723", - "question_id": 38706, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001998", - "question_id": 38707, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003626", - "question_id": 38708, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001240", - "question_id": 38709, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006501", - "question_id": 38710, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007102", - "question_id": 38711, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001565", - "question_id": 38713, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004650", - "question_id": 38714, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007032", - "question_id": 38717, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004284", - "question_id": 38719, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001293", - "question_id": 38720, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003466", - "question_id": 38722, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "vv00002555", - "question_id": 38723, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002147", - "question_id": 38724, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002955", - "question_id": 38726, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002566", - "question_id": 38729, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001543", - "question_id": 38730, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002644", - "question_id": 38731, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005301", - "question_id": 38732, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005205", - "question_id": 38733, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003890", - "question_id": 38735, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006545", - "question_id": 38738, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002137", - "question_id": 38740, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003951", - "question_id": 38743, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001042", - "question_id": 38744, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004118", - "question_id": 38745, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004104", - "question_id": 38747, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00008640", - "question_id": 38748, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003874", - "question_id": 38749, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"bassoon\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007446", - "question_id": 38750, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000685", - "question_id": 38753, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008206", - "question_id": 38755, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003871", - "question_id": 38757, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000780", - "question_id": 38758, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005923", - "question_id": 38759, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008094", - "question_id": 38760, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006496", - "question_id": 38762, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002529", - "question_id": 38763, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006477", - "question_id": 38764, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000031", - "question_id": 38765, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006390", - "question_id": 38766, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004777", - "question_id": 38768, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004968", - "question_id": 38769, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001539", - "question_id": 38771, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"suona\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000368", - "question_id": 38773, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000282", - "question_id": 38774, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003509", - "question_id": 38775, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006432", - "question_id": 38776, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001315", - "question_id": 38777, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007043", - "question_id": 38779, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007984", - "question_id": 38780, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005451", - "question_id": 38781, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007433", - "question_id": 38782, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004672", - "question_id": 38783, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "sa00008566", - "question_id": 38785, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003754", - "question_id": 38786, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005190", - "question_id": 38788, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006609", - "question_id": 38790, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004299", - "question_id": 38791, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007728", - "question_id": 38792, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007728", - "question_id": 38792, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "vv00000646", - "question_id": 38793, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003785", - "question_id": 38795, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004451", - "question_id": 38796, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007750", - "question_id": 38799, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006111", - "question_id": 38800, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006111", - "question_id": 38800, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007257", - "question_id": 38801, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007383", - "question_id": 38802, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004541", - "question_id": 38803, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003541", - "question_id": 38805, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008715", - "question_id": 38807, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000365", - "question_id": 38810, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008080", - "question_id": 38811, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"middle\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006195", - "question_id": 38812, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008836", - "question_id": 38813, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008593", - "question_id": 38815, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000215", - "question_id": 38817, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "vv00002779", - "question_id": 38819, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000788", - "question_id": 38820, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007070", - "question_id": 38821, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002794", - "question_id": 38822, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002547", - "question_id": 38824, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002547", - "question_id": 38824, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001896", - "question_id": 38826, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000513", - "question_id": 38827, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000580", - "question_id": 38828, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"banjo\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000216", - "question_id": 38829, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001617", - "question_id": 38831, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005151", - "question_id": 38832, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007921", - "question_id": 38833, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00008963", - "question_id": 38835, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001445", - "question_id": 38836, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00005889", - "question_id": 38837, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008119", - "question_id": 38838, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002987", - "question_id": 38839, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006222", - "question_id": 38841, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002878", - "question_id": 38842, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007601", - "question_id": 38846, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006372", - "question_id": 38847, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002453", - "question_id": 38849, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003919", - "question_id": 38850, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003482", - "question_id": 38851, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"middle\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000267", - "question_id": 38853, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006611", - "question_id": 38854, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00008937", - "question_id": 38857, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004627", - "question_id": 38858, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005766", - "question_id": 38860, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003083", - "question_id": 38862, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002633", - "question_id": 38863, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"guzheng\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00004032", - "question_id": 38864, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "seven" - }, - { - "video_id": "va00005385", - "question_id": 38867, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"erhu\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "va00004040", - "question_id": 38869, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001448", - "question_id": 38870, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005413", - "question_id": 38872, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008207", - "question_id": 38873, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005501", - "question_id": 38874, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008244", - "question_id": 38875, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005875", - "question_id": 38876, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "sa00008372", - "question_id": 38877, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00006095", - "question_id": 38878, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006880", - "question_id": 38879, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003621", - "question_id": 38880, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003091", - "question_id": 38881, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006968", - "question_id": 38883, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "vv00000550", - "question_id": 38884, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003069", - "question_id": 38885, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005365", - "question_id": 38886, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002886", - "question_id": 38889, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005918", - "question_id": 38891, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005520", - "question_id": 38892, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005872", - "question_id": 38893, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008852", - "question_id": 38894, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004475", - "question_id": 38895, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00007976", - "question_id": 38896, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004293", - "question_id": 38897, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006023", - "question_id": 38898, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003736", - "question_id": 38899, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000044", - "question_id": 38900, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003092", - "question_id": 38901, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007577", - "question_id": 38902, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002973", - "question_id": 38903, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000383", - "question_id": 38904, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008870", - "question_id": 38905, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005379", - "question_id": 38906, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007053", - "question_id": 38909, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006356", - "question_id": 38910, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006602", - "question_id": 38912, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004851", - "question_id": 38914, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008311", - "question_id": 38915, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"banjo\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008387", - "question_id": 38916, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001003", - "question_id": 38917, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005476", - "question_id": 38918, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"suona\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000684", - "question_id": 38919, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008291", - "question_id": 38922, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004593", - "question_id": 38923, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005882", - "question_id": 38924, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007832", - "question_id": 38925, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001309", - "question_id": 38926, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00005171", - "question_id": 38928, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001052", - "question_id": 38929, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006662", - "question_id": 38931, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006200", - "question_id": 38932, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004405", - "question_id": 38933, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004613", - "question_id": 38936, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"guzheng\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "sa00007768", - "question_id": 38937, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007149", - "question_id": 38938, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008599", - "question_id": 38939, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00004888", - "question_id": 38940, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003383", - "question_id": 38941, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003370", - "question_id": 38942, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000605", - "question_id": 38945, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008460", - "question_id": 38947, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003390", - "question_id": 38948, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004996", - "question_id": 38949, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003122", - "question_id": 38951, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008329", - "question_id": 38952, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007920", - "question_id": 38953, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007790", - "question_id": 38954, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008158", - "question_id": 38956, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008264", - "question_id": 38957, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006616", - "question_id": 38958, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004349", - "question_id": 38960, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007085", - "question_id": 38961, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006642", - "question_id": 38963, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000196", - "question_id": 38964, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007549", - "question_id": 38965, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003429", - "question_id": 38966, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001118", - "question_id": 38968, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006833", - "question_id": 38969, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006972", - "question_id": 38970, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004609", - "question_id": 38972, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000148", - "question_id": 38974, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "va00003363", - "question_id": 38975, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001220", - "question_id": 38977, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005349", - "question_id": 38979, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007807", - "question_id": 38985, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004491", - "question_id": 38986, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007069", - "question_id": 38988, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "sa00006219", - "question_id": 38989, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003306", - "question_id": 38990, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004875", - "question_id": 38992, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"pipa\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "sa00008237", - "question_id": 38995, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008937", - "question_id": 38996, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008713", - "question_id": 38997, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006042", - "question_id": 38998, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008079", - "question_id": 39001, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00000384", - "question_id": 39002, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001553", - "question_id": 39006, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001630", - "question_id": 39007, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003828", - "question_id": 39008, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002669", - "question_id": 39010, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007455", - "question_id": 39012, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000084", - "question_id": 39014, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004567", - "question_id": 39015, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001079", - "question_id": 39016, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003105", - "question_id": 39017, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003764", - "question_id": 39018, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006083", - "question_id": 39019, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002046", - "question_id": 39020, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007783", - "question_id": 39022, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005161", - "question_id": 39023, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003591", - "question_id": 39024, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000625", - "question_id": 39025, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004335", - "question_id": 39026, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003278", - "question_id": 39027, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005642", - "question_id": 39030, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004701", - "question_id": 39031, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002786", - "question_id": 39032, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00008130", - "question_id": 39033, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008462", - "question_id": 39036, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002328", - "question_id": 39037, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007586", - "question_id": 39038, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008028", - "question_id": 39039, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003502", - "question_id": 39043, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000497", - "question_id": 39044, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007181", - "question_id": 39045, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001631", - "question_id": 39047, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005334", - "question_id": 39048, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001994", - "question_id": 39052, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004281", - "question_id": 39053, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "vv00000614", - "question_id": 39054, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008303", - "question_id": 39056, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002107", - "question_id": 39059, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003243", - "question_id": 39060, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008307", - "question_id": 39061, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003967", - "question_id": 39062, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005664", - "question_id": 39063, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008113", - "question_id": 39066, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005364", - "question_id": 39067, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000689", - "question_id": 39069, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003383", - "question_id": 39070, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003769", - "question_id": 39071, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008171", - "question_id": 39072, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007842", - "question_id": 39073, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001994", - "question_id": 39074, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004945", - "question_id": 39075, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003435", - "question_id": 39076, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000565", - "question_id": 39078, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003262", - "question_id": 39079, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00004207", - "question_id": 39081, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006369", - "question_id": 39083, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007507", - "question_id": 39085, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003091", - "question_id": 39086, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006534", - "question_id": 39088, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002496", - "question_id": 39089, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004851", - "question_id": 39090, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007854", - "question_id": 39091, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003626", - "question_id": 39092, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002522", - "question_id": 39093, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "va00004708", - "question_id": 39095, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006796", - "question_id": 39097, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008757", - "question_id": 39098, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002954", - "question_id": 39099, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002135", - "question_id": 39102, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "sa00008222", - "question_id": 39104, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002045", - "question_id": 39105, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00000821", - "question_id": 39107, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005299", - "question_id": 39108, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007665", - "question_id": 39109, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00005982", - "question_id": 39110, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00008538", - "question_id": 39111, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004835", - "question_id": 39112, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000344", - "question_id": 39113, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "vv00003061", - "question_id": 39114, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007661", - "question_id": 39115, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007407", - "question_id": 39116, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004714", - "question_id": 39118, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007900", - "question_id": 39119, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000284", - "question_id": 39120, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006540", - "question_id": 39122, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001988", - "question_id": 39124, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003674", - "question_id": 39125, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005279", - "question_id": 39126, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006455", - "question_id": 39128, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004282", - "question_id": 39130, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000786", - "question_id": 39133, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003224", - "question_id": 39135, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005881", - "question_id": 39139, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001045", - "question_id": 39140, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005084", - "question_id": 39141, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007693", - "question_id": 39142, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008108", - "question_id": 39143, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002327", - "question_id": 39144, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001942", - "question_id": 39145, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000503", - "question_id": 39151, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000373", - "question_id": 39152, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006305", - "question_id": 39155, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007500", - "question_id": 39156, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007886", - "question_id": 39157, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "more than ten" - }, - { - "video_id": "va00003439", - "question_id": 39158, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004312", - "question_id": 39159, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006824", - "question_id": 39160, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007400", - "question_id": 39162, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003817", - "question_id": 39163, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000434", - "question_id": 39165, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007890", - "question_id": 39170, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002548", - "question_id": 39171, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "va00004436", - "question_id": 39172, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003746", - "question_id": 39173, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"middle\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006268", - "question_id": 39174, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006859", - "question_id": 39176, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002253", - "question_id": 39177, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "vv00000447", - "question_id": 39178, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002524", - "question_id": 39180, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002798", - "question_id": 39181, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006764", - "question_id": 39182, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005577", - "question_id": 39183, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006674", - "question_id": 39184, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008451", - "question_id": 39185, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002388", - "question_id": 39186, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000490", - "question_id": 39187, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007319", - "question_id": 39188, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000327", - "question_id": 39189, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002024", - "question_id": 39190, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005831", - "question_id": 39192, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00005831", - "question_id": 39192, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008953", - "question_id": 39193, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002813", - "question_id": 39195, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001825", - "question_id": 39196, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007983", - "question_id": 39197, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001723", - "question_id": 39198, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000329", - "question_id": 39199, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00005044", - "question_id": 39200, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002751", - "question_id": 39201, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00006781", - "question_id": 39202, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005594", - "question_id": 39203, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00006344", - "question_id": 39204, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008859", - "question_id": 39205, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "vv00002878", - "question_id": 39206, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005282", - "question_id": 39207, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001826", - "question_id": 39211, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004200", - "question_id": 39212, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000256", - "question_id": 39213, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007937", - "question_id": 39214, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005147", - "question_id": 39216, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006000", - "question_id": 39218, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000283", - "question_id": 39219, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000568", - "question_id": 39221, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005519", - "question_id": 39222, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000392", - "question_id": 39223, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007085", - "question_id": 39224, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00000457", - "question_id": 39225, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00005734", - "question_id": 39226, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006197", - "question_id": 39227, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003159", - "question_id": 39228, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002093", - "question_id": 39230, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "va00005912", - "question_id": 39231, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005332", - "question_id": 39233, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002556", - "question_id": 39234, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006351", - "question_id": 39235, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004017", - "question_id": 39236, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006417", - "question_id": 39239, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003016", - "question_id": 39240, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"congas\", \"middle\", \"drum\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007661", - "question_id": 39241, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00002059", - "question_id": 39242, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002107", - "question_id": 39243, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00005975", - "question_id": 39245, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003943", - "question_id": 39246, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007463", - "question_id": 39247, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"pipa\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "va00004255", - "question_id": 39248, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003032", - "question_id": 39249, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000389", - "question_id": 39250, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "sa00006785", - "question_id": 39251, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001964", - "question_id": 39252, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "sa00008769", - "question_id": 39253, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004954", - "question_id": 39256, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003585", - "question_id": 39257, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004913", - "question_id": 39258, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00000107", - "question_id": 39259, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "vv00003052", - "question_id": 39260, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003069", - "question_id": 39261, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006048", - "question_id": 39262, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004511", - "question_id": 39265, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005630", - "question_id": 39266, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007973", - "question_id": 39267, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008039", - "question_id": 39268, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004947", - "question_id": 39269, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007870", - "question_id": 39270, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "vv00002548", - "question_id": 39271, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "sa00007029", - "question_id": 39272, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002062", - "question_id": 39273, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000517", - "question_id": 39274, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004994", - "question_id": 39276, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007319", - "question_id": 39277, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006835", - "question_id": 39278, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00006610", - "question_id": 39279, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000584", - "question_id": 39280, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004370", - "question_id": 39281, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002373", - "question_id": 39282, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"left\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001099", - "question_id": 39283, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005707", - "question_id": 39284, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00005506", - "question_id": 39287, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001458", - "question_id": 39288, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005062", - "question_id": 39290, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006698", - "question_id": 39291, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007918", - "question_id": 39292, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008770", - "question_id": 39293, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "sa00008000", - "question_id": 39295, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000410", - "question_id": 39296, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003900", - "question_id": 39298, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000306", - "question_id": 39300, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008775", - "question_id": 39301, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002017", - "question_id": 39302, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00006396", - "question_id": 39304, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005348", - "question_id": 39305, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000081", - "question_id": 39309, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002787", - "question_id": 39312, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"clarinet\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00000629", - "question_id": 39313, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001892", - "question_id": 39315, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005146", - "question_id": 39316, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007108", - "question_id": 39317, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005572", - "question_id": 39319, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004818", - "question_id": 39320, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006588", - "question_id": 39322, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002081", - "question_id": 39323, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "vv00002643", - "question_id": 39325, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007238", - "question_id": 39327, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008323", - "question_id": 39328, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005875", - "question_id": 39330, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008494", - "question_id": 39332, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000452", - "question_id": 39334, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007311", - "question_id": 39335, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008084", - "question_id": 39336, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008870", - "question_id": 39337, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00007603", - "question_id": 39338, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004843", - "question_id": 39339, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006456", - "question_id": 39340, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001333", - "question_id": 39341, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003273", - "question_id": 39344, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007842", - "question_id": 39345, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001797", - "question_id": 39346, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003705", - "question_id": 39350, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008097", - "question_id": 39351, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005072", - "question_id": 39356, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006352", - "question_id": 39357, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002676", - "question_id": 39358, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003891", - "question_id": 39360, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008282", - "question_id": 39364, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008171", - "question_id": 39365, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006627", - "question_id": 39368, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006664", - "question_id": 39369, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008008", - "question_id": 39370, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "va00004000", - "question_id": 39371, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006168", - "question_id": 39372, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006550", - "question_id": 39373, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008893", - "question_id": 39375, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002508", - "question_id": 39376, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002956", - "question_id": 39377, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006460", - "question_id": 39378, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"pipa\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00000412", - "question_id": 39380, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "vv00002440", - "question_id": 39382, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00006694", - "question_id": 39384, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008450", - "question_id": 39385, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007790", - "question_id": 39386, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005117", - "question_id": 39388, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007055", - "question_id": 39391, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008543", - "question_id": 39392, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006941", - "question_id": 39393, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004492", - "question_id": 39394, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004822", - "question_id": 39396, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004817", - "question_id": 39398, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004223", - "question_id": 39400, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004132", - "question_id": 39401, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "eight" - }, - { - "video_id": "sa00006257", - "question_id": 39402, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002906", - "question_id": 39403, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007259", - "question_id": 39405, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008343", - "question_id": 39406, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006076", - "question_id": 39408, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002391", - "question_id": 39409, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003091", - "question_id": 39412, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006090", - "question_id": 39413, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006036", - "question_id": 39414, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "va00005337", - "question_id": 39415, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008081", - "question_id": 39419, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002482", - "question_id": 39420, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008291", - "question_id": 39422, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005660", - "question_id": 39424, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008689", - "question_id": 39425, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002581", - "question_id": 39426, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000179", - "question_id": 39427, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008693", - "question_id": 39428, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007771", - "question_id": 39430, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007751", - "question_id": 39431, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007433", - "question_id": 39432, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007719", - "question_id": 39433, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004359", - "question_id": 39435, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008388", - "question_id": 39436, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005573", - "question_id": 39437, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002878", - "question_id": 39438, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000309", - "question_id": 39440, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00005480", - "question_id": 39441, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007164", - "question_id": 39442, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008915", - "question_id": 39443, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008893", - "question_id": 39444, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003494", - "question_id": 39446, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000110", - "question_id": 39447, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002505", - "question_id": 39448, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008153", - "question_id": 39450, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006963", - "question_id": 39451, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00005298", - "question_id": 39452, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004645", - "question_id": 39454, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005802", - "question_id": 39457, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "vv00002547", - "question_id": 39458, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"ukulele\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00002547", - "question_id": 39458, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"ukulele\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006476", - "question_id": 39460, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002637", - "question_id": 39461, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005024", - "question_id": 39462, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008184", - "question_id": 39463, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004304", - "question_id": 39464, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004680", - "question_id": 39471, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00005909", - "question_id": 39472, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006172", - "question_id": 39473, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006717", - "question_id": 39475, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00006364", - "question_id": 39476, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000856", - "question_id": 39478, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004547", - "question_id": 39479, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000525", - "question_id": 39480, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006137", - "question_id": 39482, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000267", - "question_id": 39483, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007216", - "question_id": 39486, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007594", - "question_id": 39488, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003162", - "question_id": 39491, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000713", - "question_id": 39494, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006093", - "question_id": 39495, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005779", - "question_id": 39496, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008264", - "question_id": 39497, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006455", - "question_id": 39498, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004488", - "question_id": 39500, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001553", - "question_id": 39501, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008723", - "question_id": 39502, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007843", - "question_id": 39503, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002935", - "question_id": 39504, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005683", - "question_id": 39505, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000791", - "question_id": 39506, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005403", - "question_id": 39507, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002206", - "question_id": 39509, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004269", - "question_id": 39510, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003113", - "question_id": 39511, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008744", - "question_id": 39512, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004313", - "question_id": 39513, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003705", - "question_id": 39514, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004829", - "question_id": 39515, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006643", - "question_id": 39516, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004404", - "question_id": 39519, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005426", - "question_id": 39520, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006550", - "question_id": 39522, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000521", - "question_id": 39524, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "va00005238", - "question_id": 39526, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004938", - "question_id": 39527, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003088", - "question_id": 39529, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006233", - "question_id": 39530, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008596", - "question_id": 39531, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00007474", - "question_id": 39536, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004322", - "question_id": 39538, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003396", - "question_id": 39539, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "more than ten" - }, - { - "video_id": "va00005070", - "question_id": 39540, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003702", - "question_id": 39541, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004223", - "question_id": 39543, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005945", - "question_id": 39545, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008763", - "question_id": 39547, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005780", - "question_id": 39549, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007319", - "question_id": 39553, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00006232", - "question_id": 39554, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003113", - "question_id": 39555, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007264", - "question_id": 39556, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004814", - "question_id": 39557, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001716", - "question_id": 39558, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003702", - "question_id": 39563, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008678", - "question_id": 39564, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004042", - "question_id": 39565, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007259", - "question_id": 39568, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005843", - "question_id": 39569, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004945", - "question_id": 39570, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004125", - "question_id": 39571, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008265", - "question_id": 39574, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005151", - "question_id": 39575, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00003984", - "question_id": 39577, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006678", - "question_id": 39578, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003936", - "question_id": 39580, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006143", - "question_id": 39581, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002679", - "question_id": 39582, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004541", - "question_id": 39583, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008647", - "question_id": 39585, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00006002", - "question_id": 39586, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006870", - "question_id": 39587, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008052", - "question_id": 39588, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002397", - "question_id": 39589, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004226", - "question_id": 39590, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003366", - "question_id": 39592, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005659", - "question_id": 39593, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"xylophone\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "va00004002", - "question_id": 39594, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004837", - "question_id": 39595, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007987", - "question_id": 39596, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "vv00002748", - "question_id": 39597, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001404", - "question_id": 39599, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005634", - "question_id": 39601, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003574", - "question_id": 39602, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000457", - "question_id": 39603, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006685", - "question_id": 39604, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005134", - "question_id": 39606, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008388", - "question_id": 39608, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005501", - "question_id": 39609, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001844", - "question_id": 39611, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003882", - "question_id": 39612, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005154", - "question_id": 39613, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007266", - "question_id": 39619, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002657", - "question_id": 39622, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004623", - "question_id": 39623, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004639", - "question_id": 39625, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007659", - "question_id": 39626, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004069", - "question_id": 39627, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008488", - "question_id": 39629, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002949", - "question_id": 39630, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008460", - "question_id": 39631, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006262", - "question_id": 39632, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000335", - "question_id": 39633, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004898", - "question_id": 39635, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002969", - "question_id": 39637, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007407", - "question_id": 39639, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000971", - "question_id": 39641, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007404", - "question_id": 39642, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003687", - "question_id": 39645, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004617", - "question_id": 39646, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006763", - "question_id": 39650, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000998", - "question_id": 39651, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000490", - "question_id": 39652, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007908", - "question_id": 39653, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007881", - "question_id": 39654, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000660", - "question_id": 39656, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00000178", - "question_id": 39657, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004269", - "question_id": 39658, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "va00005320", - "question_id": 39659, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002742", - "question_id": 39660, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006578", - "question_id": 39662, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005720", - "question_id": 39663, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002927", - "question_id": 39664, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "va00005642", - "question_id": 39666, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002794", - "question_id": 39667, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000386", - "question_id": 39669, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005682", - "question_id": 39670, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007832", - "question_id": 39671, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007621", - "question_id": 39672, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004724", - "question_id": 39673, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008969", - "question_id": 39675, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "vv00000487", - "question_id": 39676, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008818", - "question_id": 39678, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005945", - "question_id": 39679, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005787", - "question_id": 39680, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000086", - "question_id": 39682, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000331", - "question_id": 39683, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "va00003113", - "question_id": 39684, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004242", - "question_id": 39687, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004073", - "question_id": 39689, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005816", - "question_id": 39692, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006599", - "question_id": 39694, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006404", - "question_id": 39695, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000752", - "question_id": 39696, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007494", - "question_id": 39697, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006694", - "question_id": 39698, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002328", - "question_id": 39700, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008774", - "question_id": 39701, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008544", - "question_id": 39702, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002594", - "question_id": 39704, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005802", - "question_id": 39710, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "vv00000515", - "question_id": 39711, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000906", - "question_id": 39712, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005890", - "question_id": 39713, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004335", - "question_id": 39715, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007145", - "question_id": 39716, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002183", - "question_id": 39717, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00005682", - "question_id": 39718, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002907", - "question_id": 39719, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004312", - "question_id": 39720, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004059", - "question_id": 39721, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00002934", - "question_id": 39722, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007070", - "question_id": 39723, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000492", - "question_id": 39725, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004751", - "question_id": 39726, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008316", - "question_id": 39727, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006614", - "question_id": 39728, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003296", - "question_id": 39729, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004618", - "question_id": 39731, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003514", - "question_id": 39732, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003405", - "question_id": 39733, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000417", - "question_id": 39734, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006528", - "question_id": 39735, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004995", - "question_id": 39736, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001750", - "question_id": 39737, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000742", - "question_id": 39738, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "vv00000638", - "question_id": 39739, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007210", - "question_id": 39740, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008715", - "question_id": 39742, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "sa00008462", - "question_id": 39743, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006645", - "question_id": 39746, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005279", - "question_id": 39747, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008316", - "question_id": 39748, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00007326", - "question_id": 39749, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007752", - "question_id": 39750, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000013", - "question_id": 39751, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000837", - "question_id": 39752, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005864", - "question_id": 39754, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007993", - "question_id": 39756, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000227", - "question_id": 39757, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00007026", - "question_id": 39760, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002709", - "question_id": 39762, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004223", - "question_id": 39763, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"pipa\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00007028", - "question_id": 39764, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004823", - "question_id": 39767, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002328", - "question_id": 39768, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004454", - "question_id": 39770, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002792", - "question_id": 39774, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008166", - "question_id": 39775, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006755", - "question_id": 39776, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003476", - "question_id": 39777, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006241", - "question_id": 39781, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008599", - "question_id": 39782, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004163", - "question_id": 39786, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008852", - "question_id": 39787, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000346", - "question_id": 39790, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006154", - "question_id": 39792, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006456", - "question_id": 39794, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003125", - "question_id": 39795, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004655", - "question_id": 39796, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005765", - "question_id": 39797, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007310", - "question_id": 39798, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004968", - "question_id": 39799, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004824", - "question_id": 39800, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001533", - "question_id": 39801, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004080", - "question_id": 39804, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003868", - "question_id": 39805, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00003743", - "question_id": 39807, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006300", - "question_id": 39810, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001244", - "question_id": 39811, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00003507", - "question_id": 39812, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003315", - "question_id": 39813, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00008665", - "question_id": 39815, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005051", - "question_id": 39818, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"right\", \"trumpet\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008908", - "question_id": 39819, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000200", - "question_id": 39820, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "sa00008291", - "question_id": 39821, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005698", - "question_id": 39823, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002399", - "question_id": 39824, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000600", - "question_id": 39825, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005720", - "question_id": 39826, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007326", - "question_id": 39828, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006486", - "question_id": 39829, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00006961", - "question_id": 39831, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005772", - "question_id": 39832, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008865", - "question_id": 39833, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "eight" - }, - { - "video_id": "00001966", - "question_id": 39834, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004172", - "question_id": 39835, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005266", - "question_id": 39836, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005917", - "question_id": 39837, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008113", - "question_id": 39838, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003502", - "question_id": 39839, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000775", - "question_id": 39840, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008375", - "question_id": 39841, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002852", - "question_id": 39843, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003276", - "question_id": 39844, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003743", - "question_id": 39845, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008066", - "question_id": 39846, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004322", - "question_id": 39847, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005677", - "question_id": 39849, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007342", - "question_id": 39850, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "more than ten" - }, - { - "video_id": "sa00007134", - "question_id": 39851, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002749", - "question_id": 39853, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000309", - "question_id": 39854, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006547", - "question_id": 39855, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008953", - "question_id": 39856, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00004330", - "question_id": 39858, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005002", - "question_id": 39862, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00006007", - "question_id": 39864, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003473", - "question_id": 39866, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007406", - "question_id": 39869, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000447", - "question_id": 39870, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"pipa\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00003469", - "question_id": 39871, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003273", - "question_id": 39872, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005192", - "question_id": 39873, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006260", - "question_id": 39875, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007079", - "question_id": 39876, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002344", - "question_id": 39877, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005944", - "question_id": 39879, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003871", - "question_id": 39880, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000505", - "question_id": 39881, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003955", - "question_id": 39882, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"trumpet\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00005518", - "question_id": 39883, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"guzheng\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "va00003597", - "question_id": 39885, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000102", - "question_id": 39887, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003926", - "question_id": 39892, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00004801", - "question_id": 39894, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000444", - "question_id": 39896, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"xylophone\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008357", - "question_id": 39897, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001527", - "question_id": 39898, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007421", - "question_id": 39899, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000396", - "question_id": 39901, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006918", - "question_id": 39904, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008596", - "question_id": 39905, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007435", - "question_id": 39907, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007525", - "question_id": 39908, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000066", - "question_id": 39909, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005086", - "question_id": 39911, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bagpipe\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008746", - "question_id": 39912, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003267", - "question_id": 39914, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003466", - "question_id": 39915, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008393", - "question_id": 39917, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002223", - "question_id": 39918, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000154", - "question_id": 39919, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000484", - "question_id": 39920, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000484", - "question_id": 39920, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005040", - "question_id": 39921, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005483", - "question_id": 39922, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004034", - "question_id": 39923, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003581", - "question_id": 39931, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005552", - "question_id": 39932, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004617", - "question_id": 39935, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007354", - "question_id": 39936, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"suona\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006244", - "question_id": 39939, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"cello\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007110", - "question_id": 39940, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001549", - "question_id": 39941, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005005", - "question_id": 39942, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008498", - "question_id": 39943, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007047", - "question_id": 39944, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001056", - "question_id": 39945, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004736", - "question_id": 39946, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003350", - "question_id": 39951, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"congas\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008322", - "question_id": 39955, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006772", - "question_id": 39956, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006341", - "question_id": 39959, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003951", - "question_id": 39961, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001595", - "question_id": 39964, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000906", - "question_id": 39965, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005725", - "question_id": 39967, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"xylophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000262", - "question_id": 39968, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "sa00008092", - "question_id": 39969, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"bassoon\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "vv00002656", - "question_id": 39972, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002618", - "question_id": 39973, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008313", - "question_id": 39974, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008786", - "question_id": 39976, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007070", - "question_id": 39977, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004593", - "question_id": 39978, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002792", - "question_id": 39979, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001403", - "question_id": 39980, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006503", - "question_id": 39981, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008508", - "question_id": 39982, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007033", - "question_id": 39983, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006816", - "question_id": 39987, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003333", - "question_id": 39988, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "vv00000491", - "question_id": 39990, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004157", - "question_id": 39991, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"tuba\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004157", - "question_id": 39991, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"tuba\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001800", - "question_id": 39994, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006014", - "question_id": 40000, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"trumpet\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004965", - "question_id": 40001, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"accordion\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00001353", - "question_id": 40002, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000084", - "question_id": 40006, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "vv00000647", - "question_id": 40008, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"trumpet\", \"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002872", - "question_id": 40009, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001815", - "question_id": 40010, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008563", - "question_id": 40011, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"accordion\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005412", - "question_id": 40012, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007328", - "question_id": 40013, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007101", - "question_id": 40014, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004866", - "question_id": 40016, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003400", - "question_id": 40017, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00003047", - "question_id": 40018, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"banjo\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "va00005341", - "question_id": 40019, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005723", - "question_id": 40020, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001806", - "question_id": 40024, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003192", - "question_id": 40025, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002136", - "question_id": 40026, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"electric_bass\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006705", - "question_id": 40027, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00005373", - "question_id": 40028, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002942", - "question_id": 40029, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006678", - "question_id": 40031, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008872", - "question_id": 40033, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00006357", - "question_id": 40034, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002599", - "question_id": 40036, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"banjo\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003026", - "question_id": 40037, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00002738", - "question_id": 40038, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"congas\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000417", - "question_id": 40039, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003815", - "question_id": 40040, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00002622", - "question_id": 40041, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000606", - "question_id": 40043, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00006331", - "question_id": 40044, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004794", - "question_id": 40045, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003121", - "question_id": 40046, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005336", - "question_id": 40047, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"xylophone\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00001028", - "question_id": 40049, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00002105", - "question_id": 40051, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"ukulele\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001597", - "question_id": 40052, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "va00004498", - "question_id": 40053, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "sa00008640", - "question_id": 40054, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001179", - "question_id": 40060, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003134", - "question_id": 40061, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002539", - "question_id": 40062, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"tuba\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "vv00002858", - "question_id": 40063, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000233", - "question_id": 40065, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006027", - "question_id": 40067, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008552", - "question_id": 40069, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003564", - "question_id": 40070, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004735", - "question_id": 40071, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002021", - "question_id": 40073, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00007611", - "question_id": 40074, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006033", - "question_id": 40075, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00000008", - "question_id": 40076, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "sa00006187", - "question_id": 40077, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"tuba\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "vv00000177", - "question_id": 40079, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007872", - "question_id": 40080, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005385", - "question_id": 40082, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002425", - "question_id": 40083, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "va00004701", - "question_id": 40084, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000855", - "question_id": 40085, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00000370", - "question_id": 40086, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004125", - "question_id": 40088, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003444", - "question_id": 40089, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006768", - "question_id": 40091, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005047", - "question_id": 40092, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007237", - "question_id": 40095, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001145", - "question_id": 40096, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007455", - "question_id": 40097, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008539", - "question_id": 40105, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000752", - "question_id": 40106, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00004349", - "question_id": 40109, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "vv00002656", - "question_id": 40110, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002824", - "question_id": 40112, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000523", - "question_id": 40113, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00008716", - "question_id": 40114, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000013", - "question_id": 40115, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004571", - "question_id": 40116, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002583", - "question_id": 40117, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00007561", - "question_id": 40121, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003812", - "question_id": 40122, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001356", - "question_id": 40123, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007006", - "question_id": 40124, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "sa00008937", - "question_id": 40125, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008313", - "question_id": 40126, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004962", - "question_id": 40128, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004515", - "question_id": 40129, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006731", - "question_id": 40130, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00004444", - "question_id": 40131, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005758", - "question_id": 40134, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007918", - "question_id": 40136, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002175", - "question_id": 40139, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006257", - "question_id": 40141, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005493", - "question_id": 40143, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"middle\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008113", - "question_id": 40146, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "va00004282", - "question_id": 40147, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005399", - "question_id": 40148, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001581", - "question_id": 40150, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003179", - "question_id": 40151, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "vv00003020", - "question_id": 40154, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002691", - "question_id": 40155, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "sa00007659", - "question_id": 40157, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006529", - "question_id": 40159, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000191", - "question_id": 40160, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004614", - "question_id": 40165, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002090", - "question_id": 40166, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "vv00000180", - "question_id": 40167, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007834", - "question_id": 40168, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00002630", - "question_id": 40170, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003612", - "question_id": 40172, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007267", - "question_id": 40175, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00006410", - "question_id": 40176, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003960", - "question_id": 40178, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "vv00000468", - "question_id": 40180, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"trumpet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002072", - "question_id": 40181, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008052", - "question_id": 40182, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006422", - "question_id": 40183, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005579", - "question_id": 40185, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007806", - "question_id": 40186, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002889", - "question_id": 40189, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007347", - "question_id": 40191, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008221", - "question_id": 40194, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004280", - "question_id": 40195, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00007726", - "question_id": 40196, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"clarinet\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "sa00007726", - "question_id": 40196, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"clarinet\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003605", - "question_id": 40197, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008847", - "question_id": 40199, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00000470", - "question_id": 40201, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00000566", - "question_id": 40202, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005275", - "question_id": 40203, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001804", - "question_id": 40206, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "vv00000183", - "question_id": 40208, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00002797", - "question_id": 40209, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"guzheng\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "sa00008242", - "question_id": 40213, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004082", - "question_id": 40214, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00005166", - "question_id": 40216, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"xylophone\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008880", - "question_id": 40217, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"cello\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "vv00000409", - "question_id": 40218, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005931", - "question_id": 40220, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00002465", - "question_id": 40221, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00002045", - "question_id": 40224, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005679", - "question_id": 40226, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002782", - "question_id": 40232, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"clarinet\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003070", - "question_id": 40234, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003004", - "question_id": 40235, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "va00003955", - "question_id": 40236, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006627", - "question_id": 40237, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005175", - "question_id": 40238, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"pipa\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "vv00000447", - "question_id": 40243, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004888", - "question_id": 40244, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005630", - "question_id": 40247, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "sa00008652", - "question_id": 40248, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004740", - "question_id": 40253, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"tuba\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00008689", - "question_id": 40254, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005347", - "question_id": 40258, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "vv00000523", - "question_id": 40259, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002846", - "question_id": 40261, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006682", - "question_id": 40263, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005634", - "question_id": 40265, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008442", - "question_id": 40268, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004600", - "question_id": 40269, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004996", - "question_id": 40270, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005564", - "question_id": 40271, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007243", - "question_id": 40273, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004257", - "question_id": 40274, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00004238", - "question_id": 40275, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006063", - "question_id": 40278, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003633", - "question_id": 40279, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005981", - "question_id": 40280, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003101", - "question_id": 40282, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008632", - "question_id": 40283, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"saxophone\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003527", - "question_id": 40285, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00007565", - "question_id": 40287, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007622", - "question_id": 40290, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000568", - "question_id": 40293, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bagpipe\", \"right\", \"erhu\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007500", - "question_id": 40295, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006410", - "question_id": 40296, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00001490", - "question_id": 40297, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003988", - "question_id": 40298, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002548", - "question_id": 40300, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00006842", - "question_id": 40304, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00003061", - "question_id": 40305, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001510", - "question_id": 40307, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "sa00006326", - "question_id": 40308, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"congas\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "vv00000044", - "question_id": 40311, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000386", - "question_id": 40314, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008542", - "question_id": 40315, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004028", - "question_id": 40316, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000562", - "question_id": 40317, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001190", - "question_id": 40319, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004619", - "question_id": 40320, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"banjo\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003183", - "question_id": 40324, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"xylophone\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003675", - "question_id": 40328, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001965", - "question_id": 40329, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006127", - "question_id": 40330, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008612", - "question_id": 40331, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"accordion\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "sa00008413", - "question_id": 40332, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "vv00002750", - "question_id": 40336, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000490", - "question_id": 40338, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001240", - "question_id": 40340, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"xylophone\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "vv00000233", - "question_id": 40341, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003368", - "question_id": 40342, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003294", - "question_id": 40343, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005722", - "question_id": 40344, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005461", - "question_id": 40347, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003460", - "question_id": 40349, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003631", - "question_id": 40351, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006156", - "question_id": 40361, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000980", - "question_id": 40362, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007739", - "question_id": 40363, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007900", - "question_id": 40364, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00000846", - "question_id": 40365, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003115", - "question_id": 40372, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002748", - "question_id": 40374, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006906", - "question_id": 40379, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008915", - "question_id": 40381, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"pipa\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002966", - "question_id": 40383, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005024", - "question_id": 40385, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007589", - "question_id": 40387, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000323", - "question_id": 40388, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"last\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000546", - "question_id": 40389, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"drum\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00003050", - "question_id": 40391, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00003771", - "question_id": 40393, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "sa00006863", - "question_id": 40394, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"pipa\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004043", - "question_id": 40395, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004036", - "question_id": 40396, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002826", - "question_id": 40399, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006369", - "question_id": 40400, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008184", - "question_id": 40401, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000664", - "question_id": 40402, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000952", - "question_id": 40406, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002329", - "question_id": 40410, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "va00005501", - "question_id": 40411, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003507", - "question_id": 40414, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000595", - "question_id": 40415, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006331", - "question_id": 40418, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008612", - "question_id": 40422, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002146", - "question_id": 40424, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00006671", - "question_id": 40425, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004080", - "question_id": 40429, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "va00004682", - "question_id": 40432, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002257", - "question_id": 40434, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003993", - "question_id": 40435, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00007337", - "question_id": 40437, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001167", - "question_id": 40439, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004212", - "question_id": 40443, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004753", - "question_id": 40444, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006511", - "question_id": 40445, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006141", - "question_id": 40447, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00005153", - "question_id": 40451, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008883", - "question_id": 40454, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"guzheng\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "va00005746", - "question_id": 40455, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003568", - "question_id": 40456, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"banjo\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00003899", - "question_id": 40457, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005266", - "question_id": 40460, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00002327", - "question_id": 40462, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00001391", - "question_id": 40463, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"right\", \"erhu\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006324", - "question_id": 40467, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "vv00002373", - "question_id": 40468, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004069", - "question_id": 40469, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007383", - "question_id": 40473, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008286", - "question_id": 40475, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"suona\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008976", - "question_id": 40476, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00007112", - "question_id": 40478, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"congas\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00002760", - "question_id": 40480, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007347", - "question_id": 40489, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004468", - "question_id": 40492, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005678", - "question_id": 40496, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"xylophone\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00007432", - "question_id": 40497, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"pipa\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "va00004868", - "question_id": 40498, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000062", - "question_id": 40499, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001815", - "question_id": 40500, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "sa00008243", - "question_id": 40501, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006059", - "question_id": 40503, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002017", - "question_id": 40504, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006210", - "question_id": 40507, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"congas\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00002208", - "question_id": 40511, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"xylophone\", \"left\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003290", - "question_id": 40515, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000215", - "question_id": 40517, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006252", - "question_id": 40518, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004920", - "question_id": 40520, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000978", - "question_id": 40523, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"xylophone\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "va00004002", - "question_id": 40524, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000598", - "question_id": 40525, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003781", - "question_id": 40526, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008101", - "question_id": 40529, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003677", - "question_id": 40530, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00002122", - "question_id": 40536, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00006468", - "question_id": 40538, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002135", - "question_id": 40540, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00004748", - "question_id": 40542, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"congas\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00004990", - "question_id": 40543, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"xylophone\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006655", - "question_id": 40544, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"flute\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "sa00006417", - "question_id": 40547, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"piano\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001104", - "question_id": 40549, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006114", - "question_id": 40550, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"trumpet\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00002719", - "question_id": 40551, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007416", - "question_id": 40552, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007904", - "question_id": 40553, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002330", - "question_id": 40554, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000179", - "question_id": 40555, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00004058", - "question_id": 40556, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007743", - "question_id": 40561, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"suona\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "va00004926", - "question_id": 40562, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"guzheng\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00002490", - "question_id": 40564, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006705", - "question_id": 40565, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006448", - "question_id": 40566, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"last\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00003674", - "question_id": 40567, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003435", - "question_id": 40568, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"pipa\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00007864", - "question_id": 40572, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"xylophone\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00001477", - "question_id": 40577, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007330", - "question_id": 40578, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001748", - "question_id": 40579, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008639", - "question_id": 40581, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00002755", - "question_id": 40582, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"banjo\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003240", - "question_id": 40586, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005576", - "question_id": 40587, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"last\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00007535", - "question_id": 40592, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007666", - "question_id": 40594, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002146", - "question_id": 40595, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "sa00006200", - "question_id": 40600, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007692", - "question_id": 40602, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005428", - "question_id": 40603, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000632", - "question_id": 40604, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"suona\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003474", - "question_id": 40605, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"ukulele\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001513", - "question_id": 40616, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"last\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00008570", - "question_id": 40617, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007927", - "question_id": 40618, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "va00004069", - "question_id": 40619, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007759", - "question_id": 40620, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"xylophone\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "va00005272", - "question_id": 40622, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"suona\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00005019", - "question_id": 40624, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001477", - "question_id": 40625, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003854", - "question_id": 40627, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003838", - "question_id": 40628, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004223", - "question_id": 40629, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008937", - "question_id": 40633, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00003044", - "question_id": 40634, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003770", - "question_id": 40635, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"erhu\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00005897", - "question_id": 40640, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003500", - "question_id": 40641, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003219", - "question_id": 40643, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001804", - "question_id": 40644, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004036", - "question_id": 40645, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006467", - "question_id": 40648, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008372", - "question_id": 40649, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"banjo\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00008055", - "question_id": 40652, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002769", - "question_id": 40657, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004589", - "question_id": 40659, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "vv00000102", - "question_id": 40660, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006978", - "question_id": 40661, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005511", - "question_id": 40664, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007756", - "question_id": 40666, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003236", - "question_id": 40667, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008229", - "question_id": 40670, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006252", - "question_id": 40672, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005854", - "question_id": 40673, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004431", - "question_id": 40674, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003899", - "question_id": 40676, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006172", - "question_id": 40677, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002077", - "question_id": 40678, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004470", - "question_id": 40679, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007029", - "question_id": 40683, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007769", - "question_id": 40684, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000561", - "question_id": 40685, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004872", - "question_id": 40687, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "vv00000079", - "question_id": 40688, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008678", - "question_id": 40690, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006734", - "question_id": 40691, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005695", - "question_id": 40694, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004528", - "question_id": 40695, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007033", - "question_id": 40696, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007137", - "question_id": 40697, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00008371", - "question_id": 40698, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005215", - "question_id": 40700, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00003047", - "question_id": 40701, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"right\", \"suona\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003949", - "question_id": 40702, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "va00005391", - "question_id": 40703, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006949", - "question_id": 40706, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "sa00006364", - "question_id": 40707, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005342", - "question_id": 40709, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005764", - "question_id": 40710, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001161", - "question_id": 40711, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006793", - "question_id": 40715, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006187", - "question_id": 40718, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005308", - "question_id": 40720, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004279", - "question_id": 40721, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"saxophone\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00001346", - "question_id": 40722, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "sa00006937", - "question_id": 40724, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006907", - "question_id": 40725, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"suona\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00007753", - "question_id": 40726, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005457", - "question_id": 40728, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003683", - "question_id": 40730, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005273", - "question_id": 40733, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002343", - "question_id": 40734, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"clarinet\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00004054", - "question_id": 40735, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008224", - "question_id": 40736, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005823", - "question_id": 40737, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008970", - "question_id": 40740, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005191", - "question_id": 40741, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000256", - "question_id": 40743, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004731", - "question_id": 40744, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004259", - "question_id": 40746, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "vv00000284", - "question_id": 40749, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00003237", - "question_id": 40750, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003306", - "question_id": 40751, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007507", - "question_id": 40752, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006857", - "question_id": 40753, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00007910", - "question_id": 40754, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002527", - "question_id": 40755, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "va00005298", - "question_id": 40757, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004547", - "question_id": 40758, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008744", - "question_id": 40759, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000614", - "question_id": 40760, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "va00004868", - "question_id": 40761, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002539", - "question_id": 40765, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007716", - "question_id": 40767, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005588", - "question_id": 40769, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005397", - "question_id": 40771, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "vv00002713", - "question_id": 40772, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "sa00007967", - "question_id": 40774, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007234", - "question_id": 40776, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005279", - "question_id": 40777, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004640", - "question_id": 40779, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004882", - "question_id": 40781, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "va00004324", - "question_id": 40782, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004066", - "question_id": 40783, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006154", - "question_id": 40786, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008287", - "question_id": 40788, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007594", - "question_id": 40790, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004287", - "question_id": 40792, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00006348", - "question_id": 40793, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002536", - "question_id": 40794, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002249", - "question_id": 40795, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00004996", - "question_id": 40796, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002700", - "question_id": 40799, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "vv00000491", - "question_id": 40801, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"congas\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003135", - "question_id": 40802, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"piano\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000142", - "question_id": 40803, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004640", - "question_id": 40805, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004751", - "question_id": 40806, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003022", - "question_id": 40807, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00008043", - "question_id": 40808, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00007282", - "question_id": 40811, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005854", - "question_id": 40812, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005383", - "question_id": 40813, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005823", - "question_id": 40817, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "sa00006093", - "question_id": 40818, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00002888", - "question_id": 40821, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006783", - "question_id": 40822, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008869", - "question_id": 40825, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000498", - "question_id": 40826, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00005791", - "question_id": 40827, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000278", - "question_id": 40828, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006679", - "question_id": 40829, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000369", - "question_id": 40831, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005881", - "question_id": 40832, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008094", - "question_id": 40835, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"suona\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00006374", - "question_id": 40836, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002844", - "question_id": 40838, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "vv00000515", - "question_id": 40839, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003330", - "question_id": 40841, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005027", - "question_id": 40842, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "va00004462", - "question_id": 40843, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003379", - "question_id": 40844, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002736", - "question_id": 40845, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006690", - "question_id": 40846, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004745", - "question_id": 40848, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001899", - "question_id": 40852, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004114", - "question_id": 40855, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00006871", - "question_id": 40856, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004380", - "question_id": 40866, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007931", - "question_id": 40869, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006480", - "question_id": 40870, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00005912", - "question_id": 40871, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"xylophone\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "sa00008224", - "question_id": 40873, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004324", - "question_id": 40875, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003350", - "question_id": 40876, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008500", - "question_id": 40879, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003601", - "question_id": 40880, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00007015", - "question_id": 40881, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006464", - "question_id": 40882, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008665", - "question_id": 40883, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004441", - "question_id": 40884, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000882", - "question_id": 40886, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "va00005042", - "question_id": 40887, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007055", - "question_id": 40888, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004789", - "question_id": 40889, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008138", - "question_id": 40890, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008757", - "question_id": 40891, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006306", - "question_id": 40892, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005174", - "question_id": 40893, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007108", - "question_id": 40894, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008695", - "question_id": 40895, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00007083", - "question_id": 40896, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006323", - "question_id": 40897, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008089", - "question_id": 40899, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008323", - "question_id": 40900, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003236", - "question_id": 40901, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"piano\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00005787", - "question_id": 40902, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002024", - "question_id": 40903, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002186", - "question_id": 40905, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "va00005945", - "question_id": 40907, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002616", - "question_id": 40908, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"trumpet\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005584", - "question_id": 40909, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"congas\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007494", - "question_id": 40910, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00005872", - "question_id": 40913, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000966", - "question_id": 40915, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004591", - "question_id": 40917, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008164", - "question_id": 40919, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005005", - "question_id": 40920, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00006205", - "question_id": 40921, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006884", - "question_id": 40922, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006786", - "question_id": 40923, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"banjo\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00003844", - "question_id": 40925, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"tuba\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00005383", - "question_id": 40927, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "vv00002833", - "question_id": 40930, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00005480", - "question_id": 40931, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002510", - "question_id": 40932, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00004473", - "question_id": 40934, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008479", - "question_id": 40935, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00003052", - "question_id": 40937, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"xylophone\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003096", - "question_id": 40939, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007729", - "question_id": 40940, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005154", - "question_id": 40943, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002291", - "question_id": 40944, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003926", - "question_id": 40946, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00005399", - "question_id": 40949, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00006984", - "question_id": 40951, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004984", - "question_id": 40952, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001046", - "question_id": 40954, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006671", - "question_id": 40957, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000375", - "question_id": 40958, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007602", - "question_id": 40959, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008588", - "question_id": 40960, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000406", - "question_id": 40961, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"xylophone\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003884", - "question_id": 40962, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004341", - "question_id": 40964, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000561", - "question_id": 40966, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"bassoon\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "vv00000062", - "question_id": 40968, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008083", - "question_id": 40972, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002461", - "question_id": 40974, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002667", - "question_id": 40975, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004597", - "question_id": 40976, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"banjo\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "vv00000336", - "question_id": 40977, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002482", - "question_id": 40979, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005769", - "question_id": 40982, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003153", - "question_id": 40989, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005925", - "question_id": 40990, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003123", - "question_id": 40991, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006972", - "question_id": 40994, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00006811", - "question_id": 40995, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003259", - "question_id": 40996, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "va00003461", - "question_id": 40997, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007331", - "question_id": 41000, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"xylophone\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "vv00000497", - "question_id": 41001, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007742", - "question_id": 41002, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000685", - "question_id": 41005, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008876", - "question_id": 41007, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008874", - "question_id": 41008, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008942", - "question_id": 41011, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "vv00000262", - "question_id": 41012, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002291", - "question_id": 41013, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002709", - "question_id": 41014, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004249", - "question_id": 41016, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004431", - "question_id": 41018, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007068", - "question_id": 41024, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005364", - "question_id": 41026, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006105", - "question_id": 41028, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "va00003614", - "question_id": 41030, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002374", - "question_id": 41031, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003743", - "question_id": 41035, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "sa00006296", - "question_id": 41036, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003376", - "question_id": 41042, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008488", - "question_id": 41044, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007728", - "question_id": 41050, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005314", - "question_id": 41052, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002183", - "question_id": 41053, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "sa00007412", - "question_id": 41054, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003370", - "question_id": 41057, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002334", - "question_id": 41059, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007942", - "question_id": 41061, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008050", - "question_id": 41062, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"clarinet\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00006870", - "question_id": 41063, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007565", - "question_id": 41065, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"last\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001860", - "question_id": 41067, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005536", - "question_id": 41069, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002762", - "question_id": 41070, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000518", - "question_id": 41071, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "vv00000268", - "question_id": 41073, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007756", - "question_id": 41075, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005509", - "question_id": 41076, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00007312", - "question_id": 41077, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004384", - "question_id": 41078, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005529", - "question_id": 41079, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00005341", - "question_id": 41082, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "va00004130", - "question_id": 41083, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000118", - "question_id": 41087, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004447", - "question_id": 41090, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00000276", - "question_id": 41091, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005299", - "question_id": 41092, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005192", - "question_id": 41093, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000096", - "question_id": 41097, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"last\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00006616", - "question_id": 41100, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006838", - "question_id": 41102, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006863", - "question_id": 41103, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00000177", - "question_id": 41104, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003771", - "question_id": 41106, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006706", - "question_id": 41108, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008903", - "question_id": 41109, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001995", - "question_id": 41110, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008030", - "question_id": 41113, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004580", - "question_id": 41114, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007747", - "question_id": 41115, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005507", - "question_id": 41117, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007531", - "question_id": 41119, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007687", - "question_id": 41121, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006584", - "question_id": 41122, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003704", - "question_id": 41123, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003785", - "question_id": 41124, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001391", - "question_id": 41127, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003415", - "question_id": 41128, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007873", - "question_id": 41130, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006027", - "question_id": 41132, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007196", - "question_id": 41139, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008646", - "question_id": 41141, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007509", - "question_id": 41142, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005408", - "question_id": 41143, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008905", - "question_id": 41144, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008494", - "question_id": 41146, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005186", - "question_id": 41147, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00007134", - "question_id": 41148, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005428", - "question_id": 41151, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "sa00007272", - "question_id": 41152, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000301", - "question_id": 41153, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00002866", - "question_id": 41154, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005579", - "question_id": 41155, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00001295", - "question_id": 41158, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006241", - "question_id": 41161, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004546", - "question_id": 41162, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00008937", - "question_id": 41163, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"pipa\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008136", - "question_id": 41169, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003601", - "question_id": 41170, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002082", - "question_id": 41173, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002556", - "question_id": 41174, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"trumpet\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003672", - "question_id": 41175, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00003603", - "question_id": 41176, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "vv00002548", - "question_id": 41177, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006114", - "question_id": 41178, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006221", - "question_id": 41179, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00006133", - "question_id": 41180, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007047", - "question_id": 41181, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000142", - "question_id": 41182, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "va00004627", - "question_id": 41183, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003343", - "question_id": 41184, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002663", - "question_id": 41185, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00005923", - "question_id": 41186, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008741", - "question_id": 41187, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001677", - "question_id": 41188, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003690", - "question_id": 41195, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008529", - "question_id": 41196, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004926", - "question_id": 41203, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002888", - "question_id": 41204, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00001613", - "question_id": 41207, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008529", - "question_id": 41209, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"last\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008221", - "question_id": 41211, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"cello\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001190", - "question_id": 41212, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005770", - "question_id": 41213, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003823", - "question_id": 41215, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "vv00000513", - "question_id": 41218, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002482", - "question_id": 41219, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "va00003453", - "question_id": 41220, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005130", - "question_id": 41222, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000747", - "question_id": 41223, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005817", - "question_id": 41224, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007724", - "question_id": 41225, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00003236", - "question_id": 41226, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006884", - "question_id": 41227, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "va00005213", - "question_id": 41231, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006503", - "question_id": 41232, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005042", - "question_id": 41234, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008208", - "question_id": 41235, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008138", - "question_id": 41236, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007730", - "question_id": 41237, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004512", - "question_id": 41238, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000597", - "question_id": 41239, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007282", - "question_id": 41240, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002889", - "question_id": 41242, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006141", - "question_id": 41245, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000052", - "question_id": 41246, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003614", - "question_id": 41247, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000595", - "question_id": 41248, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008387", - "question_id": 41249, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004188", - "question_id": 41252, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006838", - "question_id": 41254, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002992", - "question_id": 41255, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007158", - "question_id": 41256, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003822", - "question_id": 41257, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001287", - "question_id": 41258, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000236", - "question_id": 41259, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004257", - "question_id": 41260, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003096", - "question_id": 41261, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00005775", - "question_id": 41263, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005564", - "question_id": 41265, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "va00005933", - "question_id": 41269, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008463", - "question_id": 41272, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00007842", - "question_id": 41274, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007884", - "question_id": 41275, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002388", - "question_id": 41276, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007622", - "question_id": 41277, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002692", - "question_id": 41278, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006833", - "question_id": 41282, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005052", - "question_id": 41283, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004469", - "question_id": 41284, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004824", - "question_id": 41285, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000099", - "question_id": 41286, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006743", - "question_id": 41288, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"trumpet\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005466", - "question_id": 41289, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007110", - "question_id": 41291, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003343", - "question_id": 41294, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00003080", - "question_id": 41295, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00000624", - "question_id": 41296, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007037", - "question_id": 41300, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006755", - "question_id": 41301, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004921", - "question_id": 41304, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008119", - "question_id": 41307, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008210", - "question_id": 41310, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006084", - "question_id": 41311, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007873", - "question_id": 41312, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"tuba\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00008402", - "question_id": 41314, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004773", - "question_id": 41315, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"guzheng\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "vv00000614", - "question_id": 41316, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000812", - "question_id": 41318, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005914", - "question_id": 41319, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00005507", - "question_id": 41320, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002693", - "question_id": 41323, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "sa00007693", - "question_id": 41325, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00002037", - "question_id": 41327, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005805", - "question_id": 41328, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003781", - "question_id": 41330, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008570", - "question_id": 41331, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002084", - "question_id": 41333, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000499", - "question_id": 41334, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000873", - "question_id": 41336, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000121", - "question_id": 41337, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006764", - "question_id": 41339, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003095", - "question_id": 41341, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00007075", - "question_id": 41342, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004030", - "question_id": 41344, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006625", - "question_id": 41347, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007885", - "question_id": 41348, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00002711", - "question_id": 41349, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004123", - "question_id": 41351, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002889", - "question_id": 41352, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003446", - "question_id": 41353, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004971", - "question_id": 41358, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004066", - "question_id": 41360, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"guzheng\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "va00003988", - "question_id": 41361, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "vv00002858", - "question_id": 41363, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007710", - "question_id": 41365, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002581", - "question_id": 41368, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003926", - "question_id": 41369, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006540", - "question_id": 41371, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"clarinet\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "sa00007234", - "question_id": 41373, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00004137", - "question_id": 41374, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000837", - "question_id": 41375, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"pipa\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00005023", - "question_id": 41376, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "va00003727", - "question_id": 41377, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003295", - "question_id": 41380, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000613", - "question_id": 41385, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007687", - "question_id": 41386, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008615", - "question_id": 41388, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003890", - "question_id": 41392, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003340", - "question_id": 41394, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "vv00002633", - "question_id": 41398, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005753", - "question_id": 41401, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007931", - "question_id": 41404, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006763", - "question_id": 41406, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002867", - "question_id": 41407, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004058", - "question_id": 41408, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"drum\", \"middle\", \"trumpet\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008928", - "question_id": 41413, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007137", - "question_id": 41414, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00004395", - "question_id": 41415, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004395", - "question_id": 41415, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003652", - "question_id": 41417, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "vv00000452", - "question_id": 41421, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002270", - "question_id": 41422, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000295", - "question_id": 41423, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005745", - "question_id": 41424, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006838", - "question_id": 41427, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004745", - "question_id": 41428, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000351", - "question_id": 41429, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007262", - "question_id": 41431, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002577", - "question_id": 41435, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005882", - "question_id": 41437, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"xylophone\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006141", - "question_id": 41439, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003511", - "question_id": 41442, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006921", - "question_id": 41444, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008545", - "question_id": 41448, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008332", - "question_id": 41449, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "sa00007154", - "question_id": 41450, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006956", - "question_id": 41452, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007972", - "question_id": 41453, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004193", - "question_id": 41454, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004526", - "question_id": 41455, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000575", - "question_id": 41459, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"suona\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004896", - "question_id": 41460, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005308", - "question_id": 41461, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"congas\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006341", - "question_id": 41462, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"xylophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004530", - "question_id": 41465, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"cello\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "vv00002749", - "question_id": 41466, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006020", - "question_id": 41469, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003243", - "question_id": 41470, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007338", - "question_id": 41471, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00005157", - "question_id": 41472, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000736", - "question_id": 41473, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005627", - "question_id": 41474, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "vv00000118", - "question_id": 41478, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"suona\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "vv00000468", - "question_id": 41479, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002391", - "question_id": 41481, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"accordion\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00007562", - "question_id": 41482, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005683", - "question_id": 41483, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "va00004515", - "question_id": 41484, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00007732", - "question_id": 41488, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"banjo\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "vv00002935", - "question_id": 41489, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008829", - "question_id": 41491, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "sa00008398", - "question_id": 41492, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000099", - "question_id": 41493, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"congas\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005700", - "question_id": 41494, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008395", - "question_id": 41497, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006409", - "question_id": 41498, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002567", - "question_id": 41499, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004114", - "question_id": 41501, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"violin\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00006556", - "question_id": 41502, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005946", - "question_id": 41505, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000544", - "question_id": 41509, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006192", - "question_id": 41511, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004968", - "question_id": 41512, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006460", - "question_id": 41513, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003278", - "question_id": 41514, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006142", - "question_id": 41516, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006142", - "question_id": 41517, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"pipa\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00003824", - "question_id": 41518, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "sa00007544", - "question_id": 41519, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000262", - "question_id": 41520, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00003027", - "question_id": 41521, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bagpipe\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003636", - "question_id": 41524, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000928", - "question_id": 41525, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006417", - "question_id": 41526, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001900", - "question_id": 41527, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "va00003982", - "question_id": 41529, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005693", - "question_id": 41531, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002399", - "question_id": 41532, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006381", - "question_id": 41534, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"flute\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003362", - "question_id": 41537, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007948", - "question_id": 41540, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00006779", - "question_id": 41541, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007323", - "question_id": 41542, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005504", - "question_id": 41543, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004187", - "question_id": 41544, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007623", - "question_id": 41545, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"tuba\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002040", - "question_id": 41546, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007234", - "question_id": 41548, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"tuba\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "vv00002785", - "question_id": 41550, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003932", - "question_id": 41551, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005843", - "question_id": 41553, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"violin\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00008243", - "question_id": 41554, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000311", - "question_id": 41558, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007582", - "question_id": 41560, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008030", - "question_id": 41561, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"piano\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00005504", - "question_id": 41563, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00007814", - "question_id": 41565, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005940", - "question_id": 41566, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"bassoon\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "va00003115", - "question_id": 41568, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008442", - "question_id": 41569, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002588", - "question_id": 41571, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006685", - "question_id": 41572, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004631", - "question_id": 41576, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003972", - "question_id": 41577, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000062", - "question_id": 41580, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "va00005291", - "question_id": 41583, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008929", - "question_id": 41584, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000847", - "question_id": 41585, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "va00003932", - "question_id": 41587, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00006520", - "question_id": 41590, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006062", - "question_id": 41591, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002779", - "question_id": 41593, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "va00005750", - "question_id": 41594, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"drum\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "va00004046", - "question_id": 41596, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000344", - "question_id": 41597, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000525", - "question_id": 41598, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"trumpet\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00002398", - "question_id": 41599, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"guzheng\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00004514", - "question_id": 41600, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003822", - "question_id": 41608, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"congas\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00002943", - "question_id": 41609, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005401", - "question_id": 41611, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003934", - "question_id": 41612, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00002713", - "question_id": 41616, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003162", - "question_id": 41618, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004620", - "question_id": 41620, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007926", - "question_id": 41621, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006658", - "question_id": 41622, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005027", - "question_id": 41624, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001804", - "question_id": 41626, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000443", - "question_id": 41627, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008755", - "question_id": 41628, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003525", - "question_id": 41630, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003685", - "question_id": 41631, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004898", - "question_id": 41635, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008393", - "question_id": 41636, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004629", - "question_id": 41637, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001239", - "question_id": 41640, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007739", - "question_id": 41641, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "vv00002956", - "question_id": 41642, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bagpipe\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00003046", - "question_id": 41645, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007156", - "question_id": 41647, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001220", - "question_id": 41649, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"middle\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007543", - "question_id": 41652, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004413", - "question_id": 41653, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007449", - "question_id": 41654, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008578", - "question_id": 41655, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000088", - "question_id": 41656, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"tuba\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00004392", - "question_id": 41657, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007783", - "question_id": 41658, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006635", - "question_id": 41659, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002105", - "question_id": 41660, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001324", - "question_id": 41661, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004916", - "question_id": 41662, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "vv00000257", - "question_id": 41663, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004955", - "question_id": 41664, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"banjo\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008786", - "question_id": 41665, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007739", - "question_id": 41666, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008479", - "question_id": 41668, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "vv00000567", - "question_id": 41670, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006984", - "question_id": 41671, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003368", - "question_id": 41672, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000084", - "question_id": 41674, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005062", - "question_id": 41677, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002969", - "question_id": 41678, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005912", - "question_id": 41679, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005222", - "question_id": 41681, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005266", - "question_id": 41684, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"xylophone\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00005784", - "question_id": 41686, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000422", - "question_id": 41692, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006148", - "question_id": 41694, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "sa00007560", - "question_id": 41695, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004559", - "question_id": 41697, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bagpipe\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007322", - "question_id": 41698, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "sa00006454", - "question_id": 41699, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001932", - "question_id": 41702, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007753", - "question_id": 41703, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006210", - "question_id": 41704, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004932", - "question_id": 41705, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008544", - "question_id": 41706, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003225", - "question_id": 41707, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00005973", - "question_id": 41708, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000788", - "question_id": 41713, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002713", - "question_id": 41714, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000523", - "question_id": 41716, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00003044", - "question_id": 41721, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "sa00006154", - "question_id": 41723, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000677", - "question_id": 41725, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007968", - "question_id": 41728, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003130", - "question_id": 41729, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"congas\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00008755", - "question_id": 41732, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004019", - "question_id": 41733, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004454", - "question_id": 41734, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "va00005552", - "question_id": 41737, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003900", - "question_id": 41739, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008652", - "question_id": 41741, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00003001", - "question_id": 41745, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006772", - "question_id": 41746, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "va00004888", - "question_id": 41747, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005930", - "question_id": 41748, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"congas\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "sa00006533", - "question_id": 41749, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00000119", - "question_id": 41751, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00003050", - "question_id": 41752, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008777", - "question_id": 41754, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000791", - "question_id": 41755, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005843", - "question_id": 41756, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008942", - "question_id": 41758, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007663", - "question_id": 41759, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003823", - "question_id": 41760, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007721", - "question_id": 41762, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002527", - "question_id": 41763, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000261", - "question_id": 41764, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008287", - "question_id": 41765, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"pipa\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "va00003105", - "question_id": 41767, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00005988", - "question_id": 41769, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002518", - "question_id": 41770, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00002878", - "question_id": 41771, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005583", - "question_id": 41772, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005348", - "question_id": 41773, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002122", - "question_id": 41774, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002270", - "question_id": 41775, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000229", - "question_id": 41776, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004954", - "question_id": 41777, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006262", - "question_id": 41781, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005816", - "question_id": 41782, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002508", - "question_id": 41783, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006151", - "question_id": 41785, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008450", - "question_id": 41787, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004241", - "question_id": 41788, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006195", - "question_id": 41791, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006409", - "question_id": 41796, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000001", - "question_id": 41798, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"suona\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "vv00002948", - "question_id": 41799, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005759", - "question_id": 41800, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008497", - "question_id": 41801, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007462", - "question_id": 41802, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004366", - "question_id": 41803, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00004932", - "question_id": 41805, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001179", - "question_id": 41807, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005378", - "question_id": 41808, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007693", - "question_id": 41809, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"violin\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "vv00000227", - "question_id": 41813, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000369", - "question_id": 41814, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"suona\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00008206", - "question_id": 41821, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000551", - "question_id": 41824, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006458", - "question_id": 41826, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005391", - "question_id": 41828, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"congas\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002833", - "question_id": 41831, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003556", - "question_id": 41832, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006305", - "question_id": 41834, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005086", - "question_id": 41835, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005087", - "question_id": 41836, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000001", - "question_id": 41838, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006027", - "question_id": 41839, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002327", - "question_id": 41843, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"congas\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007166", - "question_id": 41844, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006207", - "question_id": 41847, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006493", - "question_id": 41848, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007160", - "question_id": 41849, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004710", - "question_id": 41850, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005736", - "question_id": 41851, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006200", - "question_id": 41853, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004326", - "question_id": 41854, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007834", - "question_id": 41855, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000361", - "question_id": 41857, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "sa00008532", - "question_id": 41858, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006548", - "question_id": 41859, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00005763", - "question_id": 41860, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005763", - "question_id": 41860, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003401", - "question_id": 41861, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000518", - "question_id": 41862, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"right\", \"congas\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000086", - "question_id": 41864, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001056", - "question_id": 41866, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006236", - "question_id": 41867, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003256", - "question_id": 41869, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008164", - "question_id": 41870, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00002713", - "question_id": 41871, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bagpipe\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008195", - "question_id": 41872, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003929", - "question_id": 41873, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007325", - "question_id": 41874, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000499", - "question_id": 41875, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "va00004946", - "question_id": 41876, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007015", - "question_id": 41877, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008893", - "question_id": 41878, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000598", - "question_id": 41880, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00006458", - "question_id": 41881, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003584", - "question_id": 41884, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002736", - "question_id": 41886, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00006393", - "question_id": 41887, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007405", - "question_id": 41888, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007405", - "question_id": 41888, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002093", - "question_id": 41890, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00002934", - "question_id": 41893, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007635", - "question_id": 41895, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005679", - "question_id": 41896, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002518", - "question_id": 41898, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008697", - "question_id": 41899, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008319", - "question_id": 41900, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004052", - "question_id": 41902, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "sa00008165", - "question_id": 41903, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00000395", - "question_id": 41905, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008866", - "question_id": 41906, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008187", - "question_id": 41908, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005870", - "question_id": 41909, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007735", - "question_id": 41911, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005113", - "question_id": 41912, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003727", - "question_id": 41913, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004488", - "question_id": 41914, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007027", - "question_id": 41915, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006871", - "question_id": 41916, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003533", - "question_id": 41917, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007747", - "question_id": 41919, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005483", - "question_id": 41922, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004269", - "question_id": 41924, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00006818", - "question_id": 41925, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008718", - "question_id": 41926, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"drum\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "va00003123", - "question_id": 41927, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004525", - "question_id": 41928, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007788", - "question_id": 41933, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008528", - "question_id": 41934, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "va00005627", - "question_id": 41935, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000158", - "question_id": 41938, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008410", - "question_id": 41939, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00004462", - "question_id": 41940, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "sa00007993", - "question_id": 41941, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007355", - "question_id": 41942, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "sa00007759", - "question_id": 41944, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004697", - "question_id": 41945, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006340", - "question_id": 41948, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007594", - "question_id": 41950, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"guzheng\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "va00003284", - "question_id": 41951, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000503", - "question_id": 41954, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003368", - "question_id": 41955, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001569", - "question_id": 41956, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "va00004808", - "question_id": 41958, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007667", - "question_id": 41966, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005238", - "question_id": 41967, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001098", - "question_id": 41968, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000650", - "question_id": 41969, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "sa00008242", - "question_id": 41972, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005426", - "question_id": 41974, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008059", - "question_id": 41975, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005153", - "question_id": 41977, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000741", - "question_id": 41978, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005576", - "question_id": 41980, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000158", - "question_id": 41981, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"trumpet\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "va00004322", - "question_id": 41982, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006571", - "question_id": 41983, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008459", - "question_id": 41984, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "seven" - }, - { - "video_id": "va00005720", - "question_id": 41985, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"pipa\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00004872", - "question_id": 41986, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000846", - "question_id": 41987, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00007703", - "question_id": 41989, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000606", - "question_id": 41991, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004843", - "question_id": 41992, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001016", - "question_id": 41994, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005470", - "question_id": 41996, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008395", - "question_id": 41997, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"pipa\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00006609", - "question_id": 41998, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "va00005449", - "question_id": 42000, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007037", - "question_id": 42003, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008319", - "question_id": 42005, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006906", - "question_id": 42009, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001513", - "question_id": 42011, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001942", - "question_id": 42012, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001251", - "question_id": 42013, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "sa00008372", - "question_id": 42014, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005047", - "question_id": 42015, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000567", - "question_id": 42016, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "va00003333", - "question_id": 42018, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004040", - "question_id": 42020, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007799", - "question_id": 42021, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007688", - "question_id": 42022, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00006278", - "question_id": 42023, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006372", - "question_id": 42024, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006982", - "question_id": 42025, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "vv00002772", - "question_id": 42027, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007496", - "question_id": 42031, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008697", - "question_id": 42032, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006172", - "question_id": 42033, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00005186", - "question_id": 42035, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001056", - "question_id": 42036, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "vv00003080", - "question_id": 42037, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000010", - "question_id": 42038, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006019", - "question_id": 42039, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000584", - "question_id": 42041, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001878", - "question_id": 42046, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004384", - "question_id": 42047, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003584", - "question_id": 42049, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"suona\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000125", - "question_id": 42050, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00000013", - "question_id": 42052, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001514", - "question_id": 42053, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001681", - "question_id": 42054, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007921", - "question_id": 42058, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005030", - "question_id": 42059, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "seven" - }, - { - "video_id": "sa00007026", - "question_id": 42060, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"accordion\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "vv00000595", - "question_id": 42061, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008936", - "question_id": 42064, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008936", - "question_id": 42064, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007182", - "question_id": 42065, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"congas\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "vv00002533", - "question_id": 42066, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003621", - "question_id": 42067, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006210", - "question_id": 42068, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"congas\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008347", - "question_id": 42072, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"accordion\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006750", - "question_id": 42076, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00006558", - "question_id": 42077, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005494", - "question_id": 42078, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000386", - "question_id": 42079, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00005995", - "question_id": 42080, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"congas\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00001952", - "question_id": 42081, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "va00005203", - "question_id": 42083, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000421", - "question_id": 42087, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005044", - "question_id": 42088, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003499", - "question_id": 42089, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00007582", - "question_id": 42091, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005719", - "question_id": 42092, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "va00005299", - "question_id": 42094, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003150", - "question_id": 42096, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005537", - "question_id": 42097, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008665", - "question_id": 42098, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007997", - "question_id": 42099, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001665", - "question_id": 42100, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007251", - "question_id": 42101, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002776", - "question_id": 42104, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"xylophone\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007178", - "question_id": 42105, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005137", - "question_id": 42107, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007561", - "question_id": 42108, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"cello\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004731", - "question_id": 42109, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00000635", - "question_id": 42110, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005040", - "question_id": 42111, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008215", - "question_id": 42114, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00008195", - "question_id": 42115, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "sa00005988", - "question_id": 42117, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000639", - "question_id": 42119, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005053", - "question_id": 42124, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "seven" - }, - { - "video_id": "va00003919", - "question_id": 42125, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"xylophone\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "va00005349", - "question_id": 42127, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008042", - "question_id": 42129, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004413", - "question_id": 42131, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "va00004443", - "question_id": 42132, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003093", - "question_id": 42134, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000989", - "question_id": 42136, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008942", - "question_id": 42138, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00008609", - "question_id": 42140, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002193", - "question_id": 42141, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004148", - "question_id": 42148, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000613", - "question_id": 42151, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00006619", - "question_id": 42152, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "vv00000650", - "question_id": 42153, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000938", - "question_id": 42155, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003032", - "question_id": 42156, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007715", - "question_id": 42159, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008462", - "question_id": 42160, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00002748", - "question_id": 42161, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00007675", - "question_id": 42162, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008248", - "question_id": 42163, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"middle\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004969", - "question_id": 42165, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008243", - "question_id": 42169, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "sa00007500", - "question_id": 42171, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008868", - "question_id": 42174, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "sa00008079", - "question_id": 42175, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "sa00008646", - "question_id": 42176, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001552", - "question_id": 42177, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001552", - "question_id": 42178, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00005027", - "question_id": 42179, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003531", - "question_id": 42182, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002508", - "question_id": 42183, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008500", - "question_id": 42184, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"tuba\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "va00004905", - "question_id": 42186, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008113", - "question_id": 42188, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007286", - "question_id": 42189, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002465", - "question_id": 42190, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007363", - "question_id": 42192, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003934", - "question_id": 42193, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004740", - "question_id": 42194, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003350", - "question_id": 42195, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"congas\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006941", - "question_id": 42197, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002942", - "question_id": 42198, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002674", - "question_id": 42201, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004515", - "question_id": 42202, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "vv00000361", - "question_id": 42203, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008388", - "question_id": 42206, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007233", - "question_id": 42207, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008156", - "question_id": 42211, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00003572", - "question_id": 42212, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "va00003240", - "question_id": 42213, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "vv00002453", - "question_id": 42214, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00002844", - "question_id": 42215, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004538", - "question_id": 42216, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005113", - "question_id": 42218, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002049", - "question_id": 42220, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "va00004902", - "question_id": 42221, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004971", - "question_id": 42222, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005098", - "question_id": 42223, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007758", - "question_id": 42226, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004687", - "question_id": 42227, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00007902", - "question_id": 42228, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00005862", - "question_id": 42229, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "va00003313", - "question_id": 42230, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001220", - "question_id": 42231, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00003130", - "question_id": 42233, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"congas\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005249", - "question_id": 42237, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "sa00008785", - "question_id": 42238, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008859", - "question_id": 42240, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007761", - "question_id": 42242, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00005988", - "question_id": 42243, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006133", - "question_id": 42244, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007279", - "question_id": 42245, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "vv00000523", - "question_id": 42247, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004111", - "question_id": 42248, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008376", - "question_id": 42249, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005553", - "question_id": 42250, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "sa00007828", - "question_id": 42251, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00003044", - "question_id": 42253, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006350", - "question_id": 42254, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006059", - "question_id": 42255, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005413", - "question_id": 42256, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007602", - "question_id": 42257, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "vv00002630", - "question_id": 42258, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006588", - "question_id": 42259, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "vv00003052", - "question_id": 42260, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005942", - "question_id": 42261, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "vv00002689", - "question_id": 42262, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "va00003760", - "question_id": 42264, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003049", - "question_id": 42270, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00006122", - "question_id": 42272, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005970", - "question_id": 42273, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "vv00000127", - "question_id": 42275, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002585", - "question_id": 42279, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003362", - "question_id": 42280, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003094", - "question_id": 42281, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00008588", - "question_id": 42282, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003601", - "question_id": 42283, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00002063", - "question_id": 42285, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "va00003216", - "question_id": 42287, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008367", - "question_id": 42288, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002645", - "question_id": 42289, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004473", - "question_id": 42291, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002308", - "question_id": 42292, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00002674", - "question_id": 42293, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005729", - "question_id": 42297, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006824", - "question_id": 42298, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003240", - "question_id": 42303, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000731", - "question_id": 42304, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "sa00007091", - "question_id": 42306, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006127", - "question_id": 42307, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004366", - "question_id": 42308, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00006405", - "question_id": 42309, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007997", - "question_id": 42310, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "vv00002867", - "question_id": 42311, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005079", - "question_id": 42313, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006753", - "question_id": 42314, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006502", - "question_id": 42315, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000338", - "question_id": 42316, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004591", - "question_id": 42321, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "vv00003044", - "question_id": 42323, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005434", - "question_id": 42324, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000566", - "question_id": 42327, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "va00003500", - "question_id": 42328, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00002633", - "question_id": 42329, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008108", - "question_id": 42330, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "vv00002633", - "question_id": 42331, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002943", - "question_id": 42332, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004299", - "question_id": 42335, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005537", - "question_id": 42336, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"drum\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00005292", - "question_id": 42337, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001514", - "question_id": 42338, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "sa00007276", - "question_id": 42340, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "va00005206", - "question_id": 42342, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "sa00006973", - "question_id": 42344, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008264", - "question_id": 42347, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00003032", - "question_id": 42348, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004515", - "question_id": 42349, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003231", - "question_id": 42350, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "sa00007885", - "question_id": 42351, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "va00004025", - "question_id": 42356, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004990", - "question_id": 42358, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005099", - "question_id": 42359, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000938", - "question_id": 42360, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004111", - "question_id": 42362, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002538", - "question_id": 42364, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006818", - "question_id": 42365, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "vv00000453", - "question_id": 42366, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006336", - "question_id": 42369, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004025", - "question_id": 42370, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00005996", - "question_id": 42371, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002239", - "question_id": 42374, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "vv00002975", - "question_id": 42375, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008936", - "question_id": 42377, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007640", - "question_id": 42381, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003186", - "question_id": 42382, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007795", - "question_id": 42384, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001750", - "question_id": 42385, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "va00003439", - "question_id": 42386, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006658", - "question_id": 42388, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "sa00008039", - "question_id": 42391, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000634", - "question_id": 42392, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001784", - "question_id": 42393, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006667", - "question_id": 42394, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004814", - "question_id": 42395, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00004559", - "question_id": 42396, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00004313", - "question_id": 42398, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00007873", - "question_id": 42399, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000308", - "question_id": 42400, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002607", - "question_id": 42401, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005308", - "question_id": 42403, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00006077", - "question_id": 42405, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "sa00008347", - "question_id": 42406, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000837", - "question_id": 42407, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006783", - "question_id": 42408, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007635", - "question_id": 42411, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004051", - "question_id": 42413, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002453", - "question_id": 42414, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006046", - "question_id": 42416, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007613", - "question_id": 42418, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00007921", - "question_id": 42419, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "va00005584", - "question_id": 42420, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00006393", - "question_id": 42422, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00003622", - "question_id": 42424, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00003446", - "question_id": 42425, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007750", - "question_id": 42427, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007215", - "question_id": 42428, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00004712", - "question_id": 42429, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "sa00007726", - "question_id": 42430, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008320", - "question_id": 42431, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00006017", - "question_id": 42432, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005668", - "question_id": 42434, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004955", - "question_id": 42436, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005723", - "question_id": 42438, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007542", - "question_id": 42439, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003337", - "question_id": 42441, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "va00004561", - "question_id": 42442, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004680", - "question_id": 42443, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006295", - "question_id": 42444, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00005584", - "question_id": 42446, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "vv00000421", - "question_id": 42447, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004452", - "question_id": 42448, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "va00005759", - "question_id": 42449, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006944", - "question_id": 42451, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00005746", - "question_id": 42458, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005770", - "question_id": 42459, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00007732", - "question_id": 42460, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008314", - "question_id": 42462, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "vv00000395", - "question_id": 42465, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00005203", - "question_id": 42466, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"piano\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "sa00008393", - "question_id": 42467, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005729", - "question_id": 42468, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "sa00008936", - "question_id": 42470, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "sa00006783", - "question_id": 42471, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "sa00006241", - "question_id": 42472, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "sa00007710", - "question_id": 42473, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008493", - "question_id": 42475, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005791", - "question_id": 42476, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "vv00000499", - "question_id": 42477, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003569", - "question_id": 42480, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "vv00000369", - "question_id": 42482, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000369", - "question_id": 42482, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004448", - "question_id": 42488, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "sa00007016", - "question_id": 42489, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00003363", - "question_id": 42490, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00005985", - "question_id": 42492, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00002647", - "question_id": 42494, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006606", - "question_id": 42496, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "sa00007033", - "question_id": 42498, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "vv00002507", - "question_id": 42500, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003883", - "question_id": 42502, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "sa00007139", - "question_id": 42504, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003453", - "question_id": 42505, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "va00003363", - "question_id": 42510, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000047", - "question_id": 42512, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007854", - "question_id": 42513, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005192", - "question_id": 42515, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "va00005341", - "question_id": 42517, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004561", - "question_id": 42518, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00008883", - "question_id": 42520, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "sa00006921", - "question_id": 42522, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "va00004623", - "question_id": 42523, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "va00004717", - "question_id": 42529, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00005560", - "question_id": 42531, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003525", - "question_id": 42532, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000370", - "question_id": 42534, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00002779", - "question_id": 42535, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "va00004921", - "question_id": 42536, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00000193", - "question_id": 42538, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005698", - "question_id": 42540, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000452", - "question_id": 42541, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "va00005044", - "question_id": 42543, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00006173", - "question_id": 42544, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002553", - "question_id": 42546, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "va00004640", - "question_id": 42548, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006685", - "question_id": 42549, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00005661", - "question_id": 42551, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002906", - "question_id": 42555, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00003574", - "question_id": 42557, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003597", - "question_id": 42561, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "sa00008371", - "question_id": 42562, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "va00003961", - "question_id": 42563, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002911", - "question_id": 42567, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00005053", - "question_id": 42568, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006450", - "question_id": 42570, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00006042", - "question_id": 42571, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "sa00007768", - "question_id": 42572, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005087", - "question_id": 42573, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "va00005506", - "question_id": 42574, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00008320", - "question_id": 42576, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "va00004591", - "question_id": 42577, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005812", - "question_id": 42578, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00002430", - "question_id": 42579, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00008367", - "question_id": 42580, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008367", - "question_id": 42580, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007112", - "question_id": 42581, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005166", - "question_id": 42582, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "vv00002527", - "question_id": 42584, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000568", - "question_id": 42585, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00004366", - "question_id": 42586, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "sa00008755", - "question_id": 42587, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00001510", - "question_id": 42588, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "va00005403", - "question_id": 42590, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005661", - "question_id": 42592, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "sa00008037", - "question_id": 42593, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008654", - "question_id": 42594, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00007621", - "question_id": 42595, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003219", - "question_id": 42597, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000513", - "question_id": 42598, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00000605", - "question_id": 42601, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007774", - "question_id": 42602, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008593", - "question_id": 42603, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "sa00006625", - "question_id": 42604, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "va00004452", - "question_id": 42605, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "sa00006006", - "question_id": 42608, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006568", - "question_id": 42610, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007199", - "question_id": 42612, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00005737", - "question_id": 42614, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "sa00007170", - "question_id": 42616, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "va00005656", - "question_id": 42618, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005117", - "question_id": 42621, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007321", - "question_id": 42623, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005715", - "question_id": 42625, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006062", - "question_id": 42627, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "va00004305", - "question_id": 42628, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006673", - "question_id": 42629, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "vv00002797", - "question_id": 42631, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005013", - "question_id": 42633, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "va00004515", - "question_id": 42634, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"drum\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00001173", - "question_id": 42635, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004259", - "question_id": 42636, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002047", - "question_id": 42637, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005345", - "question_id": 42639, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "va00003378", - "question_id": 42642, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003883", - "question_id": 42643, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003511", - "question_id": 42645, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "vv00002440", - "question_id": 42646, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004009", - "question_id": 42647, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004826", - "question_id": 42654, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "sa00008654", - "question_id": 42655, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002833", - "question_id": 42656, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "sa00008286", - "question_id": 42657, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004469", - "question_id": 42658, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004725", - "question_id": 42659, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001510", - "question_id": 42660, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006983", - "question_id": 42663, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004513", - "question_id": 42665, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006475", - "question_id": 42669, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004377", - "question_id": 42670, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "sa00007594", - "question_id": 42671, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00008219", - "question_id": 42674, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"drum\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "va00005970", - "question_id": 42675, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003030", - "question_id": 42678, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00002404", - "question_id": 42679, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "sa00006558", - "question_id": 42681, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007814", - "question_id": 42682, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "va00004499", - "question_id": 42683, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"suona\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "va00003268", - "question_id": 42684, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003156", - "question_id": 42686, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006341", - "question_id": 42687, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "va00005942", - "question_id": 42689, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00002518", - "question_id": 42690, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "sa00007186", - "question_id": 42692, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007635", - "question_id": 42694, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "va00004163", - "question_id": 42695, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "va00005068", - "question_id": 42696, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "sa00008312", - "question_id": 42697, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000499", - "question_id": 42699, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00002959", - "question_id": 42700, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000646", - "question_id": 42702, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002705", - "question_id": 42705, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00004413", - "question_id": 42706, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"clarinet\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "vv00000524", - "question_id": 42707, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007445", - "question_id": 42708, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002442", - "question_id": 42709, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008286", - "question_id": 42710, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008544", - "question_id": 42713, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00004993", - "question_id": 42714, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00004548", - "question_id": 42718, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005627", - "question_id": 42719, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00007373", - "question_id": 42720, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004997", - "question_id": 42721, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007993", - "question_id": 42722, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00003906", - "question_id": 42724, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00005615", - "question_id": 42725, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005518", - "question_id": 42726, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "vv00002597", - "question_id": 42727, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "va00005763", - "question_id": 42729, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00005763", - "question_id": 42729, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "sa00008286", - "question_id": 42731, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00007029", - "question_id": 42733, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004188", - "question_id": 42735, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005701", - "question_id": 42736, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"ukulele\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003768", - "question_id": 42737, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008463", - "question_id": 42738, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00001482", - "question_id": 42739, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "va00005805", - "question_id": 42741, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "va00004025", - "question_id": 42742, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "sa00006198", - "question_id": 42744, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006088", - "question_id": 42747, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "va00003900", - "question_id": 42748, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "sa00006685", - "question_id": 42749, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00004999", - "question_id": 42750, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007432", - "question_id": 42751, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "va00003727", - "question_id": 42752, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004294", - "question_id": 42753, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005117", - "question_id": 42754, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003727", - "question_id": 42755, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "sa00007118", - "question_id": 42756, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"accordion\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "sa00007544", - "question_id": 42758, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00005099", - "question_id": 42759, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007544", - "question_id": 42760, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "sa00007371", - "question_id": 42761, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "va00004762", - "question_id": 42762, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001750", - "question_id": 42763, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "va00005037", - "question_id": 42766, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "sa00007272", - "question_id": 42770, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00006336", - "question_id": 42773, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00007577", - "question_id": 42775, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004380", - "question_id": 42777, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00003465", - "question_id": 42778, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008795", - "question_id": 42779, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008513", - "question_id": 42781, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "sa00008374", - "question_id": 42782, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "va00005909", - "question_id": 42783, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00003006", - "question_id": 42784, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "sa00006973", - "question_id": 42786, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00005656", - "question_id": 42787, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00007705", - "question_id": 42788, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00001677", - "question_id": 42790, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "sa00008321", - "question_id": 42792, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "va00004531", - "question_id": 42793, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006162", - "question_id": 42794, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00005378", - "question_id": 42795, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004377", - "question_id": 42797, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "va00004239", - "question_id": 42799, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005879", - "question_id": 42800, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "va00005098", - "question_id": 42803, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00008746", - "question_id": 42804, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "va00005519", - "question_id": 42805, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004687", - "question_id": 42807, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008187", - "question_id": 42809, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00005027", - "question_id": 42811, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "sa00006198", - "question_id": 42813, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00004141", - "question_id": 42814, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00005994", - "question_id": 42815, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "sa00006154", - "question_id": 42816, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "sa00008700", - "question_id": 42817, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006521", - "question_id": 42818, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "va00005345", - "question_id": 42819, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006611", - "question_id": 42821, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00004197", - "question_id": 42822, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "va00004212", - "question_id": 42824, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "va00004365", - "question_id": 42826, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007663", - "question_id": 42828, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "va00003906", - "question_id": 42829, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005040", - "question_id": 42832, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00006764", - "question_id": 42833, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002527", - "question_id": 42835, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00008079", - "question_id": 42836, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "sa00008079", - "question_id": 42836, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00002037", - "question_id": 42837, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "sa00007531", - "question_id": 42838, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "va00005817", - "question_id": 42839, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007670", - "question_id": 42840, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002929", - "question_id": 42844, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006781", - "question_id": 42846, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00005586", - "question_id": 42847, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "sa00008255", - "question_id": 42850, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003244", - "question_id": 42855, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004470", - "question_id": 42857, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00004762", - "question_id": 42858, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00006393", - "question_id": 42859, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "vv00000119", - "question_id": 42860, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "sa00005988", - "question_id": 42862, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005414", - "question_id": 42863, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003256", - "question_id": 42865, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00002583", - "question_id": 42867, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000193", - "question_id": 42868, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006458", - "question_id": 42869, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00005659", - "question_id": 42870, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00007917", - "question_id": 42873, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "vv00000118", - "question_id": 42875, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"pipa\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00004256", - "question_id": 42876, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004547", - "question_id": 42877, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00004771", - "question_id": 42878, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "va00004962", - "question_id": 42879, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"accordion\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "sa00006956", - "question_id": 42881, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "vv00003064", - "question_id": 42882, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006046", - "question_id": 42883, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004041", - "question_id": 42884, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001823", - "question_id": 42887, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "sa00006381", - "question_id": 42889, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001677", - "question_id": 42890, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "sa00007091", - "question_id": 42891, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "va00004329", - "question_id": 42892, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "sa00007729", - "question_id": 42899, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003290", - "question_id": 42900, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "sa00008256", - "question_id": 42901, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007311", - "question_id": 42903, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "sa00008263", - "question_id": 42905, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00003478", - "question_id": 42907, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00002703", - "question_id": 42911, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "vv00000183", - "question_id": 42912, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002742", - "question_id": 42913, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00003705", - "question_id": 42914, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "sa00008116", - "question_id": 42916, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "sa00008375", - "question_id": 42918, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "va00005079", - "question_id": 42920, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "sa00006602", - "question_id": 42921, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006162", - "question_id": 42922, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "sa00005985", - "question_id": 42923, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005154", - "question_id": 42925, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "va00003464", - "question_id": 42926, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007589", - "question_id": 42929, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003379", - "question_id": 42930, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "vv00002404", - "question_id": 42932, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "sa00006296", - "question_id": 42934, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "va00004569", - "question_id": 42935, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008679", - "question_id": 42936, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "va00005508", - "question_id": 42937, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"cello\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001818", - "question_id": 42938, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00003044", - "question_id": 42939, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "vv00003006", - "question_id": 42940, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004929", - "question_id": 42941, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "sa00008255", - "question_id": 42943, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00003760", - "question_id": 42944, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "sa00006062", - "question_id": 42945, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "vv00000140", - "question_id": 42946, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004499", - "question_id": 42947, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004200", - "question_id": 42949, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "va00005700", - "question_id": 42952, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "va00005504", - "question_id": 42953, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00008513", - "question_id": 42954, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004770", - "question_id": 42955, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001514", - "question_id": 42956, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008387", - "question_id": 42957, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007663", - "question_id": 42961, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003434", - "question_id": 42963, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004623", - "question_id": 42964, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "sa00006781", - "question_id": 42966, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004293", - "question_id": 42967, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "sa00006475", - "question_id": 42968, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007338", - "question_id": 42970, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007667", - "question_id": 42972, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "sa00006983", - "question_id": 42974, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00003715", - "question_id": 42976, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008163", - "question_id": 42980, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00008215", - "question_id": 42981, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "va00004374", - "question_id": 42983, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "va00005660", - "question_id": 42984, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00000160", - "question_id": 42985, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "va00004702", - "question_id": 42988, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "sa00006781", - "question_id": 42989, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008936", - "question_id": 42992, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "sa00008497", - "question_id": 42994, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00005683", - "question_id": 42995, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "sa00006857", - "question_id": 42996, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005511", - "question_id": 42997, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00006899", - "question_id": 42998, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"violin\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001611", - "question_id": 42999, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004932", - "question_id": 43000, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "vv00002647", - "question_id": 43001, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "va00005529", - "question_id": 43002, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00005553", - "question_id": 43003, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "sa00006268", - "question_id": 43004, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"tuba\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "sa00006381", - "question_id": 43007, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "vv00002732", - "question_id": 43012, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00008764", - "question_id": 43013, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "vv00000140", - "question_id": 43014, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "vv00000183", - "question_id": 43020, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002104", - "question_id": 43021, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "va00003461", - "question_id": 43022, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00001069", - "question_id": 43025, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00004896", - "question_id": 43028, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "va00003284", - "question_id": 43029, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004141", - "question_id": 43033, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004931", - "question_id": 43034, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "sa00007203", - "question_id": 43035, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "sa00006685", - "question_id": 43038, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "sa00006556", - "question_id": 43039, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007328", - "question_id": 43041, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"suona\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "va00003627", - "question_id": 43045, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001665", - "question_id": 43046, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "va00005734", - "question_id": 43047, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "sa00007286", - "question_id": 43053, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "sa00008566", - "question_id": 43056, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004544", - "question_id": 43058, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "vv00002969", - "question_id": 43059, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004702", - "question_id": 43061, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00005378", - "question_id": 43064, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "va00004488", - "question_id": 43066, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005668", - "question_id": 43067, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "sa00008866", - "question_id": 43068, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00001179", - "question_id": 43070, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "va00003853", - "question_id": 43073, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00003434", - "question_id": 43076, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "sa00007208", - "question_id": 43077, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00006023", - "question_id": 43078, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004046", - "question_id": 43079, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "sa00007215", - "question_id": 43080, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002929", - "question_id": 43081, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008400", - "question_id": 43082, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "sa00007747", - "question_id": 43083, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "sa00006006", - "question_id": 43084, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"bassoon\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "sa00006006", - "question_id": 43084, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"bassoon\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001069", - "question_id": 43086, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003296", - "question_id": 43087, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "sa00008165", - "question_id": 43088, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"xylophone\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "va00005750", - "question_id": 43090, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00007417", - "question_id": 43091, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "va00005220", - "question_id": 43092, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008165", - "question_id": 43093, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006207", - "question_id": 43094, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "sa00007562", - "question_id": 43095, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "sa00006477", - "question_id": 43098, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00005466", - "question_id": 43104, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00005418", - "question_id": 43105, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00006658", - "question_id": 43106, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006567", - "question_id": 43107, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00007742", - "question_id": 43108, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "sa00008723", - "question_id": 43111, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008470", - "question_id": 43114, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "va00005111", - "question_id": 43115, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003207", - "question_id": 43117, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005347", - "question_id": 43118, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005166", - "question_id": 43121, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006312", - "question_id": 43122, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003898", - "question_id": 43125, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"accordion\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "va00003356", - "question_id": 43128, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "sa00007417", - "question_id": 43131, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004727", - "question_id": 43132, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "sa00006007", - "question_id": 43135, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00000668", - "question_id": 43136, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003186", - "question_id": 43139, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "va00003898", - "question_id": 43140, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005737", - "question_id": 43141, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007613", - "question_id": 43143, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005476", - "question_id": 43146, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "sa00008868", - "question_id": 43147, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004702", - "question_id": 43149, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001069", - "question_id": 43150, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "sa00008400", - "question_id": 43151, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006944", - "question_id": 43152, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004546", - "question_id": 43158, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00008776", - "question_id": 43159, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "va00003271", - "question_id": 43160, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00005243", - "question_id": 43161, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002674", - "question_id": 43165, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "sa00007543", - "question_id": 43167, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007543", - "question_id": 43167, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004808", - "question_id": 43173, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "va00004182", - "question_id": 43177, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "sa00007525", - "question_id": 43179, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "vv00000118", - "question_id": 43180, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "sa00007695", - "question_id": 43184, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008164", - "question_id": 43185, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "vv00000284", - "question_id": 43186, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005225", - "question_id": 43187, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"banjo\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00006159", - "question_id": 43188, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"piano\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "sa00006133", - "question_id": 43189, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00004365", - "question_id": 43192, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "sa00007540", - "question_id": 43195, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007540", - "question_id": 43195, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004888", - "question_id": 43196, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00003150", - "question_id": 43197, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "sa00006364", - "question_id": 43199, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008690", - "question_id": 43200, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00006311", - "question_id": 43201, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "va00005476", - "question_id": 43202, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "va00003273", - "question_id": 43205, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "sa00008795", - "question_id": 43206, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "vv00003075", - "question_id": 43207, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003670", - "question_id": 43208, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "sa00007788", - "question_id": 43209, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00007758", - "question_id": 43210, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "sa00006477", - "question_id": 43211, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003271", - "question_id": 43212, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00004212", - "question_id": 43214, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003219", - "question_id": 43217, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "va00003785", - "question_id": 43219, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00006909", - "question_id": 43220, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "va00003091", - "question_id": 43221, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003378", - "question_id": 43223, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005996", - "question_id": 43225, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"guzheng\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "va00005649", - "question_id": 43227, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "va00003477", - "question_id": 43228, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005508", - "question_id": 43229, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001324", - "question_id": 43232, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007190", - "question_id": 43233, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00007171", - "question_id": 43234, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003670", - "question_id": 43236, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006571", - "question_id": 43238, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "vv00002630", - "question_id": 43242, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "sa00006451", - "question_id": 43244, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "vv00002934", - "question_id": 43245, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "sa00007667", - "question_id": 43246, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001720", - "question_id": 43247, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "va00003446", - "question_id": 43250, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "sa00007373", - "question_id": 43251, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "sa00006240", - "question_id": 43253, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00004712", - "question_id": 43254, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "sa00008072", - "question_id": 43255, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004921", - "question_id": 43257, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"flute\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "va00003173", - "question_id": 43261, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007311", - "question_id": 43262, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008566", - "question_id": 43263, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00007705", - "question_id": 43266, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003293", - "question_id": 43267, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004931", - "question_id": 43270, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007750", - "question_id": 43273, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000261", - "question_id": 43276, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "sa00007729", - "question_id": 43278, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"flute\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "vv00002742", - "question_id": 43280, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008904", - "question_id": 43281, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "va00005291", - "question_id": 43286, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00003785", - "question_id": 43288, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "vv00002630", - "question_id": 43291, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "sa00007171", - "question_id": 43292, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "sa00006867", - "question_id": 43295, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00003683", - "question_id": 43296, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000646", - "question_id": 43299, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008646", - "question_id": 43301, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "va00005273", - "question_id": 43302, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "va00003961", - "question_id": 43305, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00004114", - "question_id": 43307, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00004773", - "question_id": 43308, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008470", - "question_id": 43311, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006753", - "question_id": 43312, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "va00004546", - "question_id": 43313, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00007709", - "question_id": 43315, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00004525", - "question_id": 43316, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00001487", - "question_id": 43317, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006326", - "question_id": 43318, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "vv00003064", - "question_id": 43319, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008279", - "question_id": 43322, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "sa00008413", - "question_id": 43324, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "sa00006983", - "question_id": 43326, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006403", - "question_id": 43328, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "va00005507", - "question_id": 43331, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "va00003334", - "question_id": 43333, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "vv00002588", - "question_id": 43335, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"banjo\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "sa00007158", - "question_id": 43337, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003173", - "question_id": 43338, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00004665", - "question_id": 43341, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004046", - "question_id": 43343, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002988", - "question_id": 43344, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002583", - "question_id": 43345, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "va00004239", - "question_id": 43347, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "va00005668", - "question_id": 43348, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00005148", - "question_id": 43351, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004187", - "question_id": 43352, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "vv00002597", - "question_id": 43356, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002451", - "question_id": 43359, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001942", - "question_id": 43360, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008497", - "question_id": 43363, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00005215", - "question_id": 43364, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00007695", - "question_id": 43366, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "vv00002588", - "question_id": 43375, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"right\", \"bagpipe\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008538", - "question_id": 43376, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007755", - "question_id": 43378, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00005656", - "question_id": 43381, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003677", - "question_id": 43383, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00003245", - "question_id": 43387, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006606", - "question_id": 43388, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "vv00002742", - "question_id": 43390, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004060", - "question_id": 43391, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00003477", - "question_id": 43392, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008055", - "question_id": 43400, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001900", - "question_id": 43404, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "vv00000140", - "question_id": 43406, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004341", - "question_id": 43407, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004339", - "question_id": 43411, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "va00005817", - "question_id": 43412, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00004805", - "question_id": 43413, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "vv00000386", - "question_id": 43415, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "vv00000284", - "question_id": 43416, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "va00004413", - "question_id": 43419, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "vv00002975", - "question_id": 43420, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006606", - "question_id": 43422, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00005536", - "question_id": 43427, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000010", - "question_id": 43429, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "va00004789", - "question_id": 43431, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006159", - "question_id": 43432, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00005477", - "question_id": 43437, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00005148", - "question_id": 43439, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00007709", - "question_id": 43441, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00002644", - "question_id": 43442, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"ukulele\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005477", - "question_id": 43444, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00005737", - "question_id": 43446, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00005148", - "question_id": 43447, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00004805", - "question_id": 43450, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "va00005224", - "question_id": 43452, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004293", - "question_id": 43454, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00005349", - "question_id": 43455, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00006921", - "question_id": 43456, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005364", - "question_id": 43457, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00005656", - "question_id": 43458, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001168", - "question_id": 43459, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006083", - "question_id": 43460, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00007256", - "question_id": 43465, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00004826", - "question_id": 43467, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "va00003295", - "question_id": 43468, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00004436", - "question_id": 43470, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"saxophone\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "va00003853", - "question_id": 43472, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00005729", - "question_id": 43473, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00008374", - "question_id": 43474, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "sa00007412", - "question_id": 43475, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00004024", - "question_id": 43476, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00008194", - "question_id": 43478, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003293", - "question_id": 43480, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000575", - "question_id": 43485, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "va00003150", - "question_id": 43494, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "vv00003001", - "question_id": 43497, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "va00005942", - "question_id": 43498, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005660", - "question_id": 43501, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00008776", - "question_id": 43504, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "sa00006020", - "question_id": 43505, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004452", - "question_id": 43506, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005215", - "question_id": 43507, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00006268", - "question_id": 43509, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00003677", - "question_id": 43511, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00002526", - "question_id": 43512, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005904", - "question_id": 43514, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00005494", - "question_id": 43516, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003772", - "question_id": 43522, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003345", - "question_id": 43527, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00006515", - "question_id": 43534, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"erhu\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00005709", - "question_id": 43535, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005709", - "question_id": 43536, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005812", - "question_id": 43542, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007848", - "question_id": 43552, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "va00003293", - "question_id": 43554, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "vv00002388", - "question_id": 43557, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "sa00008255", - "question_id": 43566, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007709", - "question_id": 43570, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003379", - "question_id": 43571, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"suona\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004024", - "question_id": 43573, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"pipa\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00002975", - "question_id": 43575, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001738", - "question_id": 43578, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "sa00007310", - "question_id": 43584, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003898", - "question_id": 43585, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00007310", - "question_id": 43586, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000605", - "question_id": 43587, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007848", - "question_id": 43589, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "va00005393", - "question_id": 43593, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008219", - "question_id": 43594, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00003115", - "question_id": 43596, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00006027", - "question_id": 43597, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005904", - "question_id": 43599, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00003785", - "question_id": 43602, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "vv00000460", - "question_id": 43604, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"tuba\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00006403", - "question_id": 43606, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00000261", - "question_id": 43607, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00007328", - "question_id": 43608, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003836", - "question_id": 43610, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004727", - "question_id": 43612, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "vv00000468", - "question_id": 43618, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006103", - "question_id": 43620, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00006973", - "question_id": 43621, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007799", - "question_id": 43622, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"clarinet\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "va00004546", - "question_id": 43623, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007768", - "question_id": 43625, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00008769", - "question_id": 43626, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"guzheng\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00008524", - "question_id": 43627, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005272", - "question_id": 43630, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004024", - "question_id": 43631, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000154", - "question_id": 43634, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000369", - "question_id": 43638, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008350", - "question_id": 43643, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004931", - "question_id": 43646, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"tuba\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007814", - "question_id": 43647, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00005994", - "question_id": 43648, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00006706", - "question_id": 43654, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008072", - "question_id": 43658, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004727", - "question_id": 43659, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00005272", - "question_id": 43660, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"suona\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00005005", - "question_id": 43661, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00007194", - "question_id": 43665, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bagpipe\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002388", - "question_id": 43668, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005812", - "question_id": 43669, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"congas\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004405", - "question_id": 43671, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"ukulele\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004608", - "question_id": 43674, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00008269", - "question_id": 43675, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004405", - "question_id": 43677, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003360", - "question_id": 43679, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008901", - "question_id": 43681, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008901", - "question_id": 43686, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007922", - "question_id": 43688, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007922", - "question_id": 43691, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006695", - "question_id": 43694, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006023", - "question_id": 43696, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001782", - "question_id": 43699, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005853", - "question_id": 43700, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"banjo\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "evv00001372", - "question_id": 43701, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "eva00000723", - "question_id": 43705, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000475", - "question_id": 43707, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001427", - "question_id": 43708, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000770", - "question_id": 43709, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000917", - "question_id": 43710, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001358", - "question_id": 43711, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001458", - "question_id": 43714, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000356", - "question_id": 43717, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "evv00001358", - "question_id": 43720, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001114", - "question_id": 43721, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000204", - "question_id": 43722, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000799", - "question_id": 43724, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000566", - "question_id": 43726, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"electric_bass\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000645", - "question_id": 43728, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007746", - "question_id": 43730, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000725", - "question_id": 43733, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"guzheng\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "eva00000809", - "question_id": 43735, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000622", - "question_id": 43736, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001173", - "question_id": 43738, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000843", - "question_id": 43739, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "eva00001210", - "question_id": 43740, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000718", - "question_id": 43748, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001264", - "question_id": 43749, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000472", - "question_id": 43751, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001353", - "question_id": 43753, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"banjo\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000880", - "question_id": 43754, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00000713", - "question_id": 43755, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000321", - "question_id": 43756, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006650", - "question_id": 43757, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"pipa\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001150", - "question_id": 43758, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00001129", - "question_id": 43759, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001293", - "question_id": 43760, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000470", - "question_id": 43761, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001070", - "question_id": 43763, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00001195", - "question_id": 43764, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00001094", - "question_id": 43769, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000539", - "question_id": 43770, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000419", - "question_id": 43771, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000543", - "question_id": 43772, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000300", - "question_id": 43773, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000549", - "question_id": 43774, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001256", - "question_id": 43775, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006889", - "question_id": 43777, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001297", - "question_id": 43779, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001145", - "question_id": 43780, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000792", - "question_id": 43781, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001272", - "question_id": 43787, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000405", - "question_id": 43789, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001025", - "question_id": 43790, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "eva00001173", - "question_id": 43791, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"electric_bass\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000875", - "question_id": 43792, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "eva00000875", - "question_id": 43792, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "evv00001353", - "question_id": 43793, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000471", - "question_id": 43794, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00000699", - "question_id": 43795, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000529", - "question_id": 43799, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000976", - "question_id": 43800, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001477", - "question_id": 43803, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000500", - "question_id": 43804, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001145", - "question_id": 43805, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000462", - "question_id": 43806, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001367", - "question_id": 43807, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000865", - "question_id": 43809, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000865", - "question_id": 43809, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001329", - "question_id": 43812, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001340", - "question_id": 43814, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000349", - "question_id": 43815, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000224", - "question_id": 43816, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004516", - "question_id": 43819, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000718", - "question_id": 43823, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001174", - "question_id": 43824, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001385", - "question_id": 43831, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008971", - "question_id": 43832, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000913", - "question_id": 43834, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "evv00001408", - "question_id": 43836, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001186", - "question_id": 43837, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000281", - "question_id": 43838, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"right\", \"bassoon\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000927", - "question_id": 43839, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000811", - "question_id": 43843, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000462", - "question_id": 43845, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000680", - "question_id": 43848, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000254", - "question_id": 43850, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000332", - "question_id": 43852, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001010", - "question_id": 43853, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00001064", - "question_id": 43855, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000842", - "question_id": 43860, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"bassoon\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001228", - "question_id": 43861, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001324", - "question_id": 43863, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001188", - "question_id": 43864, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000424", - "question_id": 43865, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000330", - "question_id": 43866, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001387", - "question_id": 43871, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000194", - "question_id": 43874, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001446", - "question_id": 43875, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"last\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "eva00000865", - "question_id": 43876, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000865", - "question_id": 43876, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000235", - "question_id": 43879, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001485", - "question_id": 43881, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"drum\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000791", - "question_id": 43882, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000791", - "question_id": 43882, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001046", - "question_id": 43884, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "esa00000350", - "question_id": 43885, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "evv00001454", - "question_id": 43886, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002719", - "question_id": 43887, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001340", - "question_id": 43896, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001182", - "question_id": 43897, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000883", - "question_id": 43898, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001469", - "question_id": 43899, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000301", - "question_id": 43901, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000840", - "question_id": 43905, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000845", - "question_id": 43907, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000753", - "question_id": 43908, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000440", - "question_id": 43910, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "evv00001415", - "question_id": 43913, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000232", - "question_id": 43915, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001273", - "question_id": 43916, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"drum\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000731", - "question_id": 43920, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000248", - "question_id": 43921, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001435", - "question_id": 43922, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000277", - "question_id": 43924, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001108", - "question_id": 43928, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000366", - "question_id": 43931, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000259", - "question_id": 43937, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001468", - "question_id": 43939, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000897", - "question_id": 43940, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000294", - "question_id": 43941, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000765", - "question_id": 43943, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000204", - "question_id": 43946, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000182", - "question_id": 43948, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000493", - "question_id": 43950, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000224", - "question_id": 43951, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00001112", - "question_id": 43954, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000240", - "question_id": 43956, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001154", - "question_id": 43957, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"ukulele\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000605", - "question_id": 43962, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000896", - "question_id": 43964, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000626", - "question_id": 43966, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000765", - "question_id": 43967, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "evv00001256", - "question_id": 43974, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000901", - "question_id": 43981, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000307", - "question_id": 43982, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00001125", - "question_id": 43985, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00001207", - "question_id": 43988, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000250", - "question_id": 43991, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000232", - "question_id": 43997, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000547", - "question_id": 44000, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00001201", - "question_id": 44001, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001453", - "question_id": 44005, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00000891", - "question_id": 44007, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000016", - "question_id": 44008, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001080", - "question_id": 44012, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000756", - "question_id": 44013, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000668", - "question_id": 44014, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000217", - "question_id": 44016, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000018", - "question_id": 44018, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000475", - "question_id": 44025, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000812", - "question_id": 44027, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000197", - "question_id": 44028, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000940", - "question_id": 44029, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000398", - "question_id": 44031, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001393", - "question_id": 44033, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000259", - "question_id": 44035, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001241", - "question_id": 44039, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000501", - "question_id": 44041, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001143", - "question_id": 44043, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001021", - "question_id": 44047, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001298", - "question_id": 44048, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001308", - "question_id": 44052, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001161", - "question_id": 44055, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001208", - "question_id": 44057, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001392", - "question_id": 44058, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001442", - "question_id": 44059, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001217", - "question_id": 44061, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000982", - "question_id": 44062, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001424", - "question_id": 44063, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000666", - "question_id": 44066, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000696", - "question_id": 44067, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"saxophone\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "sa00008679", - "question_id": 44068, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001027", - "question_id": 44070, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00001210", - "question_id": 44071, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"bassoon\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "eva00001084", - "question_id": 44073, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006739", - "question_id": 44078, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000700", - "question_id": 44079, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007824", - "question_id": 44080, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000223", - "question_id": 44081, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000366", - "question_id": 44084, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000927", - "question_id": 44085, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000866", - "question_id": 44090, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004074", - "question_id": 44091, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000683", - "question_id": 44092, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000157", - "question_id": 44093, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000204", - "question_id": 44094, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007518", - "question_id": 44095, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000172", - "question_id": 44096, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000814", - "question_id": 44099, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000732", - "question_id": 44100, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000615", - "question_id": 44101, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008467", - "question_id": 44102, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001356", - "question_id": 44104, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007423", - "question_id": 44108, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000852", - "question_id": 44109, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001055", - "question_id": 44111, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"banjo\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001740", - "question_id": 44113, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001116", - "question_id": 44114, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000390", - "question_id": 44115, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006770", - "question_id": 44116, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"electric_bass\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000981", - "question_id": 44120, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000508", - "question_id": 44121, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000384", - "question_id": 44122, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000458", - "question_id": 44123, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000780", - "question_id": 44125, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000921", - "question_id": 44126, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000541", - "question_id": 44129, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001381", - "question_id": 44130, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001377", - "question_id": 44131, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006665", - "question_id": 44132, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002341", - "question_id": 44134, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000883", - "question_id": 44135, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003808", - "question_id": 44136, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000923", - "question_id": 44139, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"electric_bass\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000273", - "question_id": 44140, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001218", - "question_id": 44141, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001173", - "question_id": 44144, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"electric_bass\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000650", - "question_id": 44145, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000732", - "question_id": 44146, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000842", - "question_id": 44148, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000426", - "question_id": 44149, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001347", - "question_id": 44153, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000269", - "question_id": 44154, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004946", - "question_id": 44155, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001203", - "question_id": 44156, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"banjo\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002701", - "question_id": 44159, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001402", - "question_id": 44160, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000485", - "question_id": 44164, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001145", - "question_id": 44166, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000250", - "question_id": 44167, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001161", - "question_id": 44168, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001028", - "question_id": 44170, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001044", - "question_id": 44176, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000422", - "question_id": 44177, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005905", - "question_id": 44178, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001453", - "question_id": 44179, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000285", - "question_id": 44183, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000327", - "question_id": 44185, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000911", - "question_id": 44186, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001290", - "question_id": 44191, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008834", - "question_id": 44192, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000759", - "question_id": 44193, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000545", - "question_id": 44194, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001390", - "question_id": 44195, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000980", - "question_id": 44196, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000588", - "question_id": 44197, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001385", - "question_id": 44202, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000494", - "question_id": 44204, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000459", - "question_id": 44206, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000397", - "question_id": 44207, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001399", - "question_id": 44208, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006110", - "question_id": 44210, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"electric_bass\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000651", - "question_id": 44212, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005343", - "question_id": 44214, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006987", - "question_id": 44215, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"electric_bass\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000439", - "question_id": 44216, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005780", - "question_id": 44217, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000449", - "question_id": 44219, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001308", - "question_id": 44220, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000697", - "question_id": 44221, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000770", - "question_id": 44225, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000718", - "question_id": 44228, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003924", - "question_id": 44229, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000930", - "question_id": 44230, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "evv00001340", - "question_id": 44232, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000560", - "question_id": 44233, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000560", - "question_id": 44233, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000829", - "question_id": 44234, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000442", - "question_id": 44238, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000812", - "question_id": 44239, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001327", - "question_id": 44240, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000725", - "question_id": 44241, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000540", - "question_id": 44242, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000498", - "question_id": 44245, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001187", - "question_id": 44246, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007667", - "question_id": 44251, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001030", - "question_id": 44252, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"electric_bass\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006890", - "question_id": 44253, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000507", - "question_id": 44254, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000475", - "question_id": 44255, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001239", - "question_id": 44257, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001041", - "question_id": 44259, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001412", - "question_id": 44260, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"pipa\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003286", - "question_id": 44261, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000689", - "question_id": 44262, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000143", - "question_id": 44263, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008834", - "question_id": 44267, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"banjo\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000189", - "question_id": 44268, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001197", - "question_id": 44269, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001306", - "question_id": 44270, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008231", - "question_id": 44272, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000307", - "question_id": 44273, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000795", - "question_id": 44274, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000843", - "question_id": 44277, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000843", - "question_id": 44277, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001244", - "question_id": 44278, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001278", - "question_id": 44279, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001666", - "question_id": 44280, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001251", - "question_id": 44282, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004799", - "question_id": 44283, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000822", - "question_id": 44284, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000599", - "question_id": 44285, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001289", - "question_id": 44286, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000896", - "question_id": 44287, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002353", - "question_id": 44289, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003808", - "question_id": 44290, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000462", - "question_id": 44292, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001385", - "question_id": 44294, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001385", - "question_id": 44294, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001457", - "question_id": 44296, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000511", - "question_id": 44297, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000472", - "question_id": 44298, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001344", - "question_id": 44301, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001159", - "question_id": 44302, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003525", - "question_id": 44303, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "evv00001239", - "question_id": 44304, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001014", - "question_id": 44305, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000414", - "question_id": 44307, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000021", - "question_id": 44311, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007323", - "question_id": 44312, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000427", - "question_id": 44314, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001243", - "question_id": 44319, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00000806", - "question_id": 44320, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00001047", - "question_id": 44321, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001197", - "question_id": 44322, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001007", - "question_id": 44323, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000895", - "question_id": 44325, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000418", - "question_id": 44327, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000772", - "question_id": 44328, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001147", - "question_id": 44330, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001252", - "question_id": 44332, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001212", - "question_id": 44333, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000149", - "question_id": 44334, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000593", - "question_id": 44335, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001129", - "question_id": 44336, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001014", - "question_id": 44337, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001440", - "question_id": 44339, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00001102", - "question_id": 44340, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000414", - "question_id": 44341, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004927", - "question_id": 44342, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000511", - "question_id": 44343, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000979", - "question_id": 44345, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"suona\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000433", - "question_id": 44346, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000220", - "question_id": 44348, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"trumpet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001228", - "question_id": 44349, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000293", - "question_id": 44351, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008191", - "question_id": 44352, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000880", - "question_id": 44353, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001750", - "question_id": 44354, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001262", - "question_id": 44355, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000751", - "question_id": 44356, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000617", - "question_id": 44358, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001352", - "question_id": 44359, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008679", - "question_id": 44360, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00001156", - "question_id": 44362, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001392", - "question_id": 44363, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"congas\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000628", - "question_id": 44364, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000605", - "question_id": 44365, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000899", - "question_id": 44367, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00001189", - "question_id": 44368, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000149", - "question_id": 44372, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000333", - "question_id": 44377, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000695", - "question_id": 44379, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001204", - "question_id": 44381, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000947", - "question_id": 44382, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000924", - "question_id": 44384, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000202", - "question_id": 44386, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000155", - "question_id": 44390, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001740", - "question_id": 44391, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"middle\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001113", - "question_id": 44393, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000623", - "question_id": 44395, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000363", - "question_id": 44396, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00000700", - "question_id": 44397, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001334", - "question_id": 44399, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000301", - "question_id": 44402, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000473", - "question_id": 44404, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "esa00000549", - "question_id": 44405, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001021", - "question_id": 44407, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000215", - "question_id": 44408, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"middle\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000339", - "question_id": 44409, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001435", - "question_id": 44411, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000846", - "question_id": 44412, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001474", - "question_id": 44413, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000632", - "question_id": 44414, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001249", - "question_id": 44415, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001099", - "question_id": 44417, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"drum\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "esa00000543", - "question_id": 44419, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000945", - "question_id": 44421, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000945", - "question_id": 44421, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008938", - "question_id": 44422, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001037", - "question_id": 44423, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000815", - "question_id": 44424, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001030", - "question_id": 44426, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"electric_bass\", \"middle\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000800", - "question_id": 44427, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000516", - "question_id": 44428, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001407", - "question_id": 44429, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000934", - "question_id": 44430, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000809", - "question_id": 44431, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000753", - "question_id": 44433, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001007", - "question_id": 44435, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000645", - "question_id": 44436, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00001216", - "question_id": 44438, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001252", - "question_id": 44439, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000924", - "question_id": 44440, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000960", - "question_id": 44441, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"middle\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001166", - "question_id": 44442, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001094", - "question_id": 44443, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001043", - "question_id": 44445, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"middle\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001315", - "question_id": 44446, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001413", - "question_id": 44452, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000799", - "question_id": 44453, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001208", - "question_id": 44454, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bassoon\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000623", - "question_id": 44457, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000349", - "question_id": 44458, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000822", - "question_id": 44459, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000832", - "question_id": 44460, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000975", - "question_id": 44463, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001188", - "question_id": 44464, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000263", - "question_id": 44466, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001358", - "question_id": 44467, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003504", - "question_id": 44468, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000696", - "question_id": 44469, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"electric_bass\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001488", - "question_id": 44470, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000727", - "question_id": 44471, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000254", - "question_id": 44472, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001485", - "question_id": 44473, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000640", - "question_id": 44474, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000901", - "question_id": 44475, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007060", - "question_id": 44477, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000805", - "question_id": 44478, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001331", - "question_id": 44479, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001466", - "question_id": 44480, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000897", - "question_id": 44485, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000792", - "question_id": 44486, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008047", - "question_id": 44488, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000700", - "question_id": 44489, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006311", - "question_id": 44491, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001425", - "question_id": 44492, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001205", - "question_id": 44493, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001238", - "question_id": 44494, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001164", - "question_id": 44499, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000562", - "question_id": 44500, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001201", - "question_id": 44501, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000726", - "question_id": 44502, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000756", - "question_id": 44503, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"tuba\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000224", - "question_id": 44505, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000636", - "question_id": 44506, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "esa00000398", - "question_id": 44507, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001457", - "question_id": 44508, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001457", - "question_id": 44508, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000014", - "question_id": 44513, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00001085", - "question_id": 44516, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000539", - "question_id": 44517, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001203", - "question_id": 44520, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"banjo\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001068", - "question_id": 44522, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000433", - "question_id": 44524, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001102", - "question_id": 44529, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008834", - "question_id": 44530, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001305", - "question_id": 44532, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001084", - "question_id": 44533, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000818", - "question_id": 44534, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000237", - "question_id": 44536, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001445", - "question_id": 44537, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"xylophone\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000694", - "question_id": 44538, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000425", - "question_id": 44539, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001117", - "question_id": 44540, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"banjo\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "eva00000883", - "question_id": 44541, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000331", - "question_id": 44542, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006215", - "question_id": 44543, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000312", - "question_id": 44544, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000287", - "question_id": 44545, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "esa00000281", - "question_id": 44546, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"tuba\", \"right\", \"bassoon\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001112", - "question_id": 44547, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006399", - "question_id": 44548, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000307", - "question_id": 44549, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000917", - "question_id": 44551, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003477", - "question_id": 44554, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001117", - "question_id": 44555, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"electric_bass\", \"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001016", - "question_id": 44557, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000660", - "question_id": 44559, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004634", - "question_id": 44560, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000327", - "question_id": 44561, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000713", - "question_id": 44562, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001218", - "question_id": 44563, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "evv00001248", - "question_id": 44566, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"drum\", \"left\", \"erhu\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001203", - "question_id": 44567, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000312", - "question_id": 44569, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000835", - "question_id": 44572, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000333", - "question_id": 44574, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000470", - "question_id": 44577, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007827", - "question_id": 44578, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "evv00001250", - "question_id": 44579, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000628", - "question_id": 44581, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001485", - "question_id": 44582, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000529", - "question_id": 44585, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000965", - "question_id": 44588, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000644", - "question_id": 44589, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001666", - "question_id": 44590, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001363", - "question_id": 44591, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000752", - "question_id": 44592, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000018", - "question_id": 44593, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001010", - "question_id": 44595, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000809", - "question_id": 44597, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001076", - "question_id": 44598, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000552", - "question_id": 44602, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000472", - "question_id": 44603, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000524", - "question_id": 44605, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001458", - "question_id": 44606, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000927", - "question_id": 44607, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000493", - "question_id": 44608, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001297", - "question_id": 44609, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000324", - "question_id": 44610, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004899", - "question_id": 44611, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000732", - "question_id": 44613, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000770", - "question_id": 44614, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001310", - "question_id": 44615, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001432", - "question_id": 44616, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001038", - "question_id": 44617, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000576", - "question_id": 44619, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001418", - "question_id": 44621, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008938", - "question_id": 44624, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "eva00000751", - "question_id": 44625, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001584", - "question_id": 44626, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000725", - "question_id": 44628, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001194", - "question_id": 44629, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001468", - "question_id": 44630, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000508", - "question_id": 44633, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007964", - "question_id": 44635, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000254", - "question_id": 44637, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000238", - "question_id": 44638, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001906", - "question_id": 44640, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "esa00000174", - "question_id": 44641, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000617", - "question_id": 44643, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000645", - "question_id": 44644, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001180", - "question_id": 44645, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000786", - "question_id": 44646, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007754", - "question_id": 44647, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006130", - "question_id": 44649, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001338", - "question_id": 44652, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000669", - "question_id": 44653, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000167", - "question_id": 44654, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005755", - "question_id": 44655, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001264", - "question_id": 44656, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001481", - "question_id": 44657, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000405", - "question_id": 44659, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000291", - "question_id": 44661, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001408", - "question_id": 44662, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001352", - "question_id": 44663, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000936", - "question_id": 44667, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "esa00000277", - "question_id": 44670, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001014", - "question_id": 44674, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000309", - "question_id": 44675, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000810", - "question_id": 44676, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "evv00001273", - "question_id": 44678, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000827", - "question_id": 44680, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000635", - "question_id": 44681, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"electric_bass\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007228", - "question_id": 44682, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "evv00001362", - "question_id": 44684, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001327", - "question_id": 44685, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001064", - "question_id": 44686, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008176", - "question_id": 44687, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"xylophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000144", - "question_id": 44688, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"electric_bass\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000440", - "question_id": 44689, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008572", - "question_id": 44690, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001350", - "question_id": 44691, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000189", - "question_id": 44694, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000759", - "question_id": 44695, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008587", - "question_id": 44696, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003565", - "question_id": 44697, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001238", - "question_id": 44698, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001272", - "question_id": 44699, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007518", - "question_id": 44700, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001273", - "question_id": 44701, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001302", - "question_id": 44703, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000913", - "question_id": 44704, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000400", - "question_id": 44706, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006130", - "question_id": 44707, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000210", - "question_id": 44710, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000668", - "question_id": 44712, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001319", - "question_id": 44713, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000319", - "question_id": 44714, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000272", - "question_id": 44715, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001055", - "question_id": 44716, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000228", - "question_id": 44717, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005726", - "question_id": 44719, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000713", - "question_id": 44721, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008231", - "question_id": 44724, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00005085", - "question_id": 44727, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001385", - "question_id": 44730, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001190", - "question_id": 44732, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001190", - "question_id": 44732, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001156", - "question_id": 44733, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001469", - "question_id": 44734, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001363", - "question_id": 44735, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001477", - "question_id": 44736, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003699", - "question_id": 44737, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001262", - "question_id": 44740, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000820", - "question_id": 44741, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000521", - "question_id": 44742, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001174", - "question_id": 44743, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001466", - "question_id": 44745, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000559", - "question_id": 44746, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"pipa\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001377", - "question_id": 44747, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001292", - "question_id": 44748, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000832", - "question_id": 44750, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000984", - "question_id": 44751, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000541", - "question_id": 44754, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001168", - "question_id": 44755, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000701", - "question_id": 44757, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000694", - "question_id": 44759, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001186", - "question_id": 44761, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000470", - "question_id": 44762, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000825", - "question_id": 44764, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000783", - "question_id": 44771, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000498", - "question_id": 44774, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"congas\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001445", - "question_id": 44775, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001302", - "question_id": 44776, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004858", - "question_id": 44778, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007955", - "question_id": 44781, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001071", - "question_id": 44782, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000294", - "question_id": 44785, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005716", - "question_id": 44786, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001112", - "question_id": 44787, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001239", - "question_id": 44788, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000416", - "question_id": 44789, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001666", - "question_id": 44791, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000393", - "question_id": 44792, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000562", - "question_id": 44793, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000792", - "question_id": 44794, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000151", - "question_id": 44795, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00000982", - "question_id": 44796, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005231", - "question_id": 44797, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "eva00000706", - "question_id": 44798, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000855", - "question_id": 44801, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"electric_bass\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000797", - "question_id": 44804, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002350", - "question_id": 44805, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006101", - "question_id": 44806, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001385", - "question_id": 44807, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001385", - "question_id": 44807, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003765", - "question_id": 44810, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "esa00000642", - "question_id": 44813, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"suona\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001184", - "question_id": 44817, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"tuba\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000500", - "question_id": 44819, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000399", - "question_id": 44820, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000266", - "question_id": 44821, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001009", - "question_id": 44823, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "esa00000464", - "question_id": 44825, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000703", - "question_id": 44826, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"middle\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000955", - "question_id": 44828, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000981", - "question_id": 44831, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001334", - "question_id": 44832, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001344", - "question_id": 44835, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000188", - "question_id": 44838, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000952", - "question_id": 44839, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00000867", - "question_id": 44840, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007424", - "question_id": 44841, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "eva00001080", - "question_id": 44842, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000689", - "question_id": 44844, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001281", - "question_id": 44845, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000397", - "question_id": 44847, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "esa00000347", - "question_id": 44848, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004939", - "question_id": 44849, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "eva00001189", - "question_id": 44855, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "sa00006062", - "question_id": 44858, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000437", - "question_id": 44860, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006215", - "question_id": 44862, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "eva00000890", - "question_id": 44863, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00007423", - "question_id": 44864, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000984", - "question_id": 44866, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000658", - "question_id": 44867, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "sa00008470", - "question_id": 44868, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001331", - "question_id": 44869, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "evv00001325", - "question_id": 44870, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "evv00001476", - "question_id": 44871, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000931", - "question_id": 44873, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000703", - "question_id": 44878, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008077", - "question_id": 44879, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000791", - "question_id": 44882, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "va00005551", - "question_id": 44883, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000014", - "question_id": 44886, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"tuba\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000399", - "question_id": 44888, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004634", - "question_id": 44890, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003832", - "question_id": 44891, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000889", - "question_id": 44893, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000889", - "question_id": 44893, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000193", - "question_id": 44895, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000443", - "question_id": 44897, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007189", - "question_id": 44898, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006184", - "question_id": 44899, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000799", - "question_id": 44906, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005505", - "question_id": 44908, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001102", - "question_id": 44909, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000310", - "question_id": 44910, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000427", - "question_id": 44911, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001405", - "question_id": 44912, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000866", - "question_id": 44915, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00001097", - "question_id": 44916, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001038", - "question_id": 44918, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008352", - "question_id": 44919, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00001089", - "question_id": 44920, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001374", - "question_id": 44921, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001170", - "question_id": 44922, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001145", - "question_id": 44923, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000237", - "question_id": 44926, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000366", - "question_id": 44927, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001190", - "question_id": 44929, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00001190", - "question_id": 44929, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000151", - "question_id": 44930, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000018", - "question_id": 44931, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000494", - "question_id": 44934, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"saxophone\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "eva00001020", - "question_id": 44935, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008577", - "question_id": 44937, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007073", - "question_id": 44940, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00001005", - "question_id": 44943, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001304", - "question_id": 44944, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000966", - "question_id": 44945, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007674", - "question_id": 44947, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003059", - "question_id": 44951, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000265", - "question_id": 44952, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000765", - "question_id": 44953, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001270", - "question_id": 44956, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001114", - "question_id": 44957, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001070", - "question_id": 44958, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000193", - "question_id": 44959, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000677", - "question_id": 44961, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000941", - "question_id": 44964, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000327", - "question_id": 44966, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000805", - "question_id": 44967, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001304", - "question_id": 44968, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"tuba\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000940", - "question_id": 44970, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000767", - "question_id": 44971, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "sa00006891", - "question_id": 44972, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001043", - "question_id": 44976, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001488", - "question_id": 44977, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005737", - "question_id": 44978, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001027", - "question_id": 44979, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001350", - "question_id": 44980, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001303", - "question_id": 44983, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008352", - "question_id": 44986, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000994", - "question_id": 44990, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002265", - "question_id": 44991, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "evv00001243", - "question_id": 44992, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001468", - "question_id": 44998, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "evv00001262", - "question_id": 44999, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000911", - "question_id": 45000, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "esa00000414", - "question_id": 45001, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001474", - "question_id": 45003, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "eva00000913", - "question_id": 45004, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000623", - "question_id": 45005, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000811", - "question_id": 45006, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000226", - "question_id": 45007, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005429", - "question_id": 45009, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006154", - "question_id": 45010, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001343", - "question_id": 45012, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006146", - "question_id": 45013, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000258", - "question_id": 45014, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001140", - "question_id": 45015, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001129", - "question_id": 45016, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000910", - "question_id": 45018, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000976", - "question_id": 45019, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000919", - "question_id": 45020, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005505", - "question_id": 45025, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "esa00000299", - "question_id": 45027, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000636", - "question_id": 45029, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000990", - "question_id": 45030, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000626", - "question_id": 45031, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001402", - "question_id": 45033, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001415", - "question_id": 45034, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000896", - "question_id": 45035, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003082", - "question_id": 45037, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000906", - "question_id": 45040, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000723", - "question_id": 45043, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000149", - "question_id": 45044, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000360", - "question_id": 45045, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001175", - "question_id": 45047, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000401", - "question_id": 45048, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008328", - "question_id": 45050, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000927", - "question_id": 45051, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006739", - "question_id": 45052, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000143", - "question_id": 45053, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"electric_bass\", \"middle\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001215", - "question_id": 45054, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000507", - "question_id": 45055, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bagpipe\", \"left\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001116", - "question_id": 45057, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000415", - "question_id": 45061, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000973", - "question_id": 45062, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000398", - "question_id": 45065, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00001000", - "question_id": 45066, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008003", - "question_id": 45067, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004853", - "question_id": 45068, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "eva00001184", - "question_id": 45069, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000551", - "question_id": 45070, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"electric_bass\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001424", - "question_id": 45075, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006018", - "question_id": 45076, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000772", - "question_id": 45077, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "eva00001195", - "question_id": 45078, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000631", - "question_id": 45081, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001118", - "question_id": 45082, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007964", - "question_id": 45083, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "evv00001230", - "question_id": 45085, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000448", - "question_id": 45087, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000809", - "question_id": 45089, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001014", - "question_id": 45090, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005170", - "question_id": 45093, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000765", - "question_id": 45096, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001261", - "question_id": 45098, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007518", - "question_id": 45099, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00001041", - "question_id": 45100, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001289", - "question_id": 45102, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bagpipe\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000340", - "question_id": 45103, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000818", - "question_id": 45104, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001009", - "question_id": 45106, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004865", - "question_id": 45108, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"middle\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001202", - "question_id": 45109, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001186", - "question_id": 45111, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008935", - "question_id": 45116, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001256", - "question_id": 45117, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001027", - "question_id": 45120, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000297", - "question_id": 45121, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000164", - "question_id": 45122, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001453", - "question_id": 45124, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "esa00000366", - "question_id": 45125, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001012", - "question_id": 45126, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"congas\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000875", - "question_id": 45127, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000557", - "question_id": 45130, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"xylophone\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006946", - "question_id": 45131, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"pipa\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001202", - "question_id": 45132, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000903", - "question_id": 45135, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001170", - "question_id": 45136, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006130", - "question_id": 45138, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000618", - "question_id": 45139, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"ukulele\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001244", - "question_id": 45140, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "esa00000659", - "question_id": 45142, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bassoon\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000289", - "question_id": 45143, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005032", - "question_id": 45144, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001399", - "question_id": 45145, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bagpipe\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000792", - "question_id": 45146, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000292", - "question_id": 45147, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000601", - "question_id": 45149, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000815", - "question_id": 45151, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000363", - "question_id": 45152, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001164", - "question_id": 45154, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000248", - "question_id": 45155, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000973", - "question_id": 45156, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000329", - "question_id": 45157, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000900", - "question_id": 45158, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001043", - "question_id": 45160, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000962", - "question_id": 45161, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000839", - "question_id": 45162, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007457", - "question_id": 45164, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002265", - "question_id": 45165, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001180", - "question_id": 45168, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000865", - "question_id": 45170, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000281", - "question_id": 45172, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000313", - "question_id": 45174, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001046", - "question_id": 45176, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001636", - "question_id": 45178, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000715", - "question_id": 45179, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008352", - "question_id": 45180, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "eva00000976", - "question_id": 45181, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001188", - "question_id": 45182, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000947", - "question_id": 45183, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000873", - "question_id": 45184, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006146", - "question_id": 45185, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000446", - "question_id": 45186, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001045", - "question_id": 45187, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000799", - "question_id": 45191, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001137", - "question_id": 45192, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000853", - "question_id": 45193, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001289", - "question_id": 45196, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003465", - "question_id": 45199, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000199", - "question_id": 45200, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000616", - "question_id": 45201, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"electric_bass\", \"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000483", - "question_id": 45204, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001217", - "question_id": 45205, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000587", - "question_id": 45206, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001427", - "question_id": 45207, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001413", - "question_id": 45208, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "eva00001073", - "question_id": 45211, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "esa00000202", - "question_id": 45213, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000309", - "question_id": 45214, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000330", - "question_id": 45217, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000846", - "question_id": 45219, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"electric_bass\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000897", - "question_id": 45220, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001381", - "question_id": 45221, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"drum\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000829", - "question_id": 45222, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001319", - "question_id": 45223, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001216", - "question_id": 45224, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bassoon\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007530", - "question_id": 45225, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000718", - "question_id": 45226, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00000911", - "question_id": 45228, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001080", - "question_id": 45229, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000780", - "question_id": 45230, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003832", - "question_id": 45231, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000980", - "question_id": 45232, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000202", - "question_id": 45233, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "evv00001435", - "question_id": 45235, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000748", - "question_id": 45240, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000605", - "question_id": 45242, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000726", - "question_id": 45243, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000696", - "question_id": 45245, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00001027", - "question_id": 45246, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"clarinet\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "eva00000963", - "question_id": 45247, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002463", - "question_id": 45249, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000795", - "question_id": 45250, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00001117", - "question_id": 45251, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"suona\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001102", - "question_id": 45252, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000270", - "question_id": 45253, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001044", - "question_id": 45254, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00001027", - "question_id": 45255, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"electric_bass\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001032", - "question_id": 45256, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005343", - "question_id": 45258, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001085", - "question_id": 45259, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001157", - "question_id": 45260, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002814", - "question_id": 45263, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000752", - "question_id": 45264, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"electric_bass\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007674", - "question_id": 45265, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001084", - "question_id": 45272, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001448", - "question_id": 45274, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008107", - "question_id": 45276, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001361", - "question_id": 45277, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001261", - "question_id": 45279, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000545", - "question_id": 45280, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001353", - "question_id": 45281, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000009", - "question_id": 45282, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"middle\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001399", - "question_id": 45285, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"middle\", \"bagpipe\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000500", - "question_id": 45286, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "evv00001277", - "question_id": 45290, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"right\", \"erhu\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003082", - "question_id": 45291, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000388", - "question_id": 45293, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005726", - "question_id": 45294, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000726", - "question_id": 45296, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000917", - "question_id": 45297, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000599", - "question_id": 45300, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000873", - "question_id": 45304, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000934", - "question_id": 45307, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000398", - "question_id": 45308, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000384", - "question_id": 45311, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000494", - "question_id": 45313, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000267", - "question_id": 45314, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000169", - "question_id": 45315, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000331", - "question_id": 45316, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000223", - "question_id": 45317, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000162", - "question_id": 45318, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000541", - "question_id": 45319, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "eva00001140", - "question_id": 45320, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001154", - "question_id": 45322, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001442", - "question_id": 45323, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"xylophone\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001132", - "question_id": 45324, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001418", - "question_id": 45326, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"middle\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001206", - "question_id": 45327, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000865", - "question_id": 45329, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000178", - "question_id": 45330, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000566", - "question_id": 45331, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000610", - "question_id": 45332, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001660", - "question_id": 45339, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "evv00001361", - "question_id": 45342, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001032", - "question_id": 45344, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00000738", - "question_id": 45351, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000021", - "question_id": 45353, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001347", - "question_id": 45356, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004082", - "question_id": 45357, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001011", - "question_id": 45358, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007540", - "question_id": 45359, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "evv00001305", - "question_id": 45362, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "eva00001018", - "question_id": 45366, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000630", - "question_id": 45368, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002355", - "question_id": 45369, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001180", - "question_id": 45371, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000340", - "question_id": 45374, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000432", - "question_id": 45376, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000846", - "question_id": 45378, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"electric_bass\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001363", - "question_id": 45379, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001144", - "question_id": 45380, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000825", - "question_id": 45382, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001440", - "question_id": 45385, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000014", - "question_id": 45387, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"clarinet\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "esa00000680", - "question_id": 45389, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000799", - "question_id": 45390, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007454", - "question_id": 45391, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005388", - "question_id": 45392, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000738", - "question_id": 45395, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00008717", - "question_id": 45397, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001212", - "question_id": 45398, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006627", - "question_id": 45399, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000368", - "question_id": 45403, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008077", - "question_id": 45404, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001249", - "question_id": 45405, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000549", - "question_id": 45406, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001372", - "question_id": 45408, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001113", - "question_id": 45409, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00000994", - "question_id": 45410, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "esa00000354", - "question_id": 45411, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000960", - "question_id": 45413, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000958", - "question_id": 45414, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001230", - "question_id": 45416, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"electric_bass\", \"middle\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000300", - "question_id": 45418, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"suona\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003987", - "question_id": 45419, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "evv00001273", - "question_id": 45420, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000703", - "question_id": 45421, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001267", - "question_id": 45422, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007713", - "question_id": 45423, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002447", - "question_id": 45424, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001290", - "question_id": 45427, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001109", - "question_id": 45430, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "eva00001038", - "question_id": 45431, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "eva00000973", - "question_id": 45434, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001243", - "question_id": 45435, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000615", - "question_id": 45436, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007518", - "question_id": 45437, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000660", - "question_id": 45438, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003009", - "question_id": 45439, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00008928", - "question_id": 45443, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000380", - "question_id": 45444, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000832", - "question_id": 45445, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00000805", - "question_id": 45448, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00001063", - "question_id": 45449, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000707", - "question_id": 45450, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001476", - "question_id": 45451, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008005", - "question_id": 45452, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004592", - "question_id": 45455, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000981", - "question_id": 45456, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000748", - "question_id": 45458, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000839", - "question_id": 45459, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001338", - "question_id": 45460, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000516", - "question_id": 45462, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000254", - "question_id": 45465, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006216", - "question_id": 45469, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00000823", - "question_id": 45473, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001251", - "question_id": 45474, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000831", - "question_id": 45477, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000390", - "question_id": 45482, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001420", - "question_id": 45483, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00000951", - "question_id": 45484, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000461", - "question_id": 45490, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "esa00000169", - "question_id": 45491, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000845", - "question_id": 45493, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000368", - "question_id": 45496, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001466", - "question_id": 45499, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00001108", - "question_id": 45500, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001347", - "question_id": 45504, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007454", - "question_id": 45506, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "esa00000401", - "question_id": 45515, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000996", - "question_id": 45518, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000401", - "question_id": 45519, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000312", - "question_id": 45521, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000174", - "question_id": 45524, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001238", - "question_id": 45525, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00000818", - "question_id": 45527, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000378", - "question_id": 45531, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001037", - "question_id": 45532, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002341", - "question_id": 45533, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000958", - "question_id": 45534, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005964", - "question_id": 45537, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00000940", - "question_id": 45538, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001283", - "question_id": 45539, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000736", - "question_id": 45540, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001474", - "question_id": 45541, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000324", - "question_id": 45547, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000204", - "question_id": 45549, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001366", - "question_id": 45550, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"guzheng\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00001182", - "question_id": 45551, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000949", - "question_id": 45553, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001289", - "question_id": 45555, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "evv00001297", - "question_id": 45556, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00001083", - "question_id": 45557, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000424", - "question_id": 45558, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001237", - "question_id": 45559, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000623", - "question_id": 45561, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"trumpet\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001080", - "question_id": 45564, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001281", - "question_id": 45565, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000972", - "question_id": 45569, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001283", - "question_id": 45570, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001207", - "question_id": 45571, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000725", - "question_id": 45572, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000309", - "question_id": 45573, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006031", - "question_id": 45575, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000127", - "question_id": 45577, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000970", - "question_id": 45578, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "evv00001367", - "question_id": 45579, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000883", - "question_id": 45582, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001636", - "question_id": 45583, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001399", - "question_id": 45585, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001116", - "question_id": 45587, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001455", - "question_id": 45588, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000823", - "question_id": 45589, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000752", - "question_id": 45590, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001395", - "question_id": 45591, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000287", - "question_id": 45595, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"clarinet\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000800", - "question_id": 45596, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001612", - "question_id": 45598, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000162", - "question_id": 45600, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00001094", - "question_id": 45602, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000339", - "question_id": 45603, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000740", - "question_id": 45605, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001306", - "question_id": 45607, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008075", - "question_id": 45609, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001488", - "question_id": 45610, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00000855", - "question_id": 45614, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002463", - "question_id": 45615, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"congas\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "evv00001377", - "question_id": 45618, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"suona\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000384", - "question_id": 45620, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001267", - "question_id": 45621, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000014", - "question_id": 45622, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000390", - "question_id": 45625, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000169", - "question_id": 45626, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001041", - "question_id": 45627, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008005", - "question_id": 45630, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001457", - "question_id": 45632, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001249", - "question_id": 45635, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001466", - "question_id": 45639, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000651", - "question_id": 45641, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000461", - "question_id": 45642, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"cello\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "eva00000951", - "question_id": 45643, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001382", - "question_id": 45644, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001362", - "question_id": 45645, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001440", - "question_id": 45646, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001032", - "question_id": 45648, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001336", - "question_id": 45649, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"middle\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000699", - "question_id": 45651, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001272", - "question_id": 45655, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"right\", \"drum\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001583", - "question_id": 45656, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000622", - "question_id": 45657, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001159", - "question_id": 45660, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001310", - "question_id": 45661, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001393", - "question_id": 45663, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "esa00000461", - "question_id": 45664, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000906", - "question_id": 45665, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000620", - "question_id": 45666, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000975", - "question_id": 45667, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"middle\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000930", - "question_id": 45668, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"drum\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000940", - "question_id": 45669, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000797", - "question_id": 45672, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001239", - "question_id": 45674, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000896", - "question_id": 45675, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001372", - "question_id": 45676, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000485", - "question_id": 45678, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"bassoon\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001217", - "question_id": 45680, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002526", - "question_id": 45682, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003987", - "question_id": 45683, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "eva00001140", - "question_id": 45684, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "evv00001391", - "question_id": 45685, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000463", - "question_id": 45687, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001121", - "question_id": 45690, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001353", - "question_id": 45694, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001237", - "question_id": 45695, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "vv00000453", - "question_id": 45698, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001069", - "question_id": 45699, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000516", - "question_id": 45700, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001343", - "question_id": 45701, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"right\", \"suona\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000226", - "question_id": 45702, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "eva00000973", - "question_id": 45703, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"middle\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000313", - "question_id": 45705, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000822", - "question_id": 45706, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000424", - "question_id": 45707, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"ukulele\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001071", - "question_id": 45710, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001233", - "question_id": 45711, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"pipa\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000910", - "question_id": 45712, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "esa00000599", - "question_id": 45713, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000178", - "question_id": 45715, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "eva00001181", - "question_id": 45716, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000146", - "question_id": 45717, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "evv00001485", - "question_id": 45718, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"congas\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000271", - "question_id": 45719, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000770", - "question_id": 45720, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00001161", - "question_id": 45722, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"pipa\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000405", - "question_id": 45727, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006680", - "question_id": 45729, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000960", - "question_id": 45730, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000996", - "question_id": 45731, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000211", - "question_id": 45732, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001660", - "question_id": 45733, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005429", - "question_id": 45734, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000564", - "question_id": 45735, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000564", - "question_id": 45736, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00001016", - "question_id": 45737, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000987", - "question_id": 45740, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00000827", - "question_id": 45741, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000987", - "question_id": 45743, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000441", - "question_id": 45745, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001267", - "question_id": 45746, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001210", - "question_id": 45747, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004802", - "question_id": 45748, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "esa00000402", - "question_id": 45751, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001143", - "question_id": 45753, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00001150", - "question_id": 45754, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000723", - "question_id": 45756, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001092", - "question_id": 45759, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000984", - "question_id": 45760, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001990", - "question_id": 45762, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "evv00001414", - "question_id": 45763, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "va00003951", - "question_id": 45764, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00000797", - "question_id": 45765, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000777", - "question_id": 45767, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"suona\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007955", - "question_id": 45769, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "eva00000855", - "question_id": 45770, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "eva00001085", - "question_id": 45771, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001312", - "question_id": 45772, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"trumpet\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001432", - "question_id": 45773, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000155", - "question_id": 45774, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001433", - "question_id": 45778, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000248", - "question_id": 45779, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"clarinet\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "esa00000422", - "question_id": 45784, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000425", - "question_id": 45785, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000007", - "question_id": 45788, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000243", - "question_id": 45789, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000945", - "question_id": 45790, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00001212", - "question_id": 45792, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00000752", - "question_id": 45793, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"drum\", \"middle\", \"electric_bass\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000464", - "question_id": 45794, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000630", - "question_id": 45795, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008047", - "question_id": 45796, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005615", - "question_id": 45797, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000620", - "question_id": 45798, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005091", - "question_id": 45800, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "esa00000683", - "question_id": 45801, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001393", - "question_id": 45803, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001372", - "question_id": 45804, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000516", - "question_id": 45805, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001102", - "question_id": 45807, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000360", - "question_id": 45808, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000853", - "question_id": 45811, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00001125", - "question_id": 45812, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001166", - "question_id": 45815, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008107", - "question_id": 45816, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001340", - "question_id": 45820, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "eva00001114", - "question_id": 45821, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001272", - "question_id": 45823, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000765", - "question_id": 45831, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000947", - "question_id": 45836, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001237", - "question_id": 45837, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00001098", - "question_id": 45838, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001241", - "question_id": 45839, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "esa00000238", - "question_id": 45841, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "evv00001305", - "question_id": 45845, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"right\", \"pipa\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008563", - "question_id": 45846, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "evv00001446", - "question_id": 45847, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001424", - "question_id": 45848, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "evv00001306", - "question_id": 45849, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00001109", - "question_id": 45850, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000367", - "question_id": 45851, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00001164", - "question_id": 45854, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000901", - "question_id": 45857, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004492", - "question_id": 45858, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00001113", - "question_id": 45860, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "esa00000415", - "question_id": 45865, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001477", - "question_id": 45868, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "sa00006220", - "question_id": 45870, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00000843", - "question_id": 45871, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000921", - "question_id": 45872, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001251", - "question_id": 45874, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000182", - "question_id": 45875, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000923", - "question_id": 45879, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00000982", - "question_id": 45880, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001218", - "question_id": 45881, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000767", - "question_id": 45882, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00001063", - "question_id": 45884, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00001067", - "question_id": 45885, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000535", - "question_id": 45891, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00000737", - "question_id": 45893, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001212", - "question_id": 45894, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001372", - "question_id": 45895, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001427", - "question_id": 45896, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00001157", - "question_id": 45897, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001248", - "question_id": 45903, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000005", - "question_id": 45905, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000636", - "question_id": 45906, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001230", - "question_id": 45907, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000564", - "question_id": 45909, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00000695", - "question_id": 45910, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000493", - "question_id": 45911, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000422", - "question_id": 45912, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00000952", - "question_id": 45913, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "esa00000655", - "question_id": 45914, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000565", - "question_id": 45915, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007394", - "question_id": 45917, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001206", - "question_id": 45919, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000224", - "question_id": 45921, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000516", - "question_id": 45922, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000795", - "question_id": 45923, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000651", - "question_id": 45924, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001244", - "question_id": 45925, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000217", - "question_id": 45926, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "esa00000400", - "question_id": 45927, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000184", - "question_id": 45928, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00000829", - "question_id": 45930, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008005", - "question_id": 45936, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000738", - "question_id": 45938, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00001133", - "question_id": 45939, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00000840", - "question_id": 45940, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000759", - "question_id": 45941, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000162", - "question_id": 45942, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"middle\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000324", - "question_id": 45944, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001350", - "question_id": 45945, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001324", - "question_id": 45947, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000924", - "question_id": 45948, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005242", - "question_id": 45951, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001292", - "question_id": 45953, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"xylophone\", \"middle\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007021", - "question_id": 45954, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002472", - "question_id": 45955, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006718", - "question_id": 45957, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005515", - "question_id": 45962, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001474", - "question_id": 45964, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"banjo\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000007", - "question_id": 45966, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001382", - "question_id": 45968, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001477", - "question_id": 45969, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000331", - "question_id": 45970, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001413", - "question_id": 45973, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000226", - "question_id": 45974, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001990", - "question_id": 45975, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001433", - "question_id": 45978, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001698", - "question_id": 45980, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001450", - "question_id": 45981, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000197", - "question_id": 45982, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00000934", - "question_id": 45983, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000979", - "question_id": 45984, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003965", - "question_id": 45985, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000987", - "question_id": 45986, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006763", - "question_id": 45987, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001098", - "question_id": 45988, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000541", - "question_id": 45989, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000667", - "question_id": 45991, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000259", - "question_id": 45992, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000526", - "question_id": 45993, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001164", - "question_id": 45995, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000384", - "question_id": 45998, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000987", - "question_id": 45999, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001274", - "question_id": 46000, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000678", - "question_id": 46001, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007000", - "question_id": 46004, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001612", - "question_id": 46006, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000393", - "question_id": 46007, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"piano\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "eva00001094", - "question_id": 46012, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001335", - "question_id": 46013, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000441", - "question_id": 46015, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "esa00000224", - "question_id": 46016, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "esa00000585", - "question_id": 46019, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000440", - "question_id": 46020, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001458", - "question_id": 46022, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006328", - "question_id": 46023, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001070", - "question_id": 46026, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001205", - "question_id": 46027, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000897", - "question_id": 46028, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"bassoon\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006665", - "question_id": 46030, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001335", - "question_id": 46034, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "esa00000021", - "question_id": 46035, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001208", - "question_id": 46036, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000577", - "question_id": 46037, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001205", - "question_id": 46039, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000805", - "question_id": 46041, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000867", - "question_id": 46042, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000976", - "question_id": 46043, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00000980", - "question_id": 46046, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007885", - "question_id": 46048, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00001055", - "question_id": 46050, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001363", - "question_id": 46052, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "evv00001395", - "question_id": 46053, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000601", - "question_id": 46055, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001248", - "question_id": 46056, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000333", - "question_id": 46059, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000347", - "question_id": 46060, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001144", - "question_id": 46061, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007834", - "question_id": 46065, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001025", - "question_id": 46068, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000952", - "question_id": 46073, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001413", - "question_id": 46075, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"drum\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000799", - "question_id": 46076, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "sa00006409", - "question_id": 46077, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "evv00001412", - "question_id": 46078, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "esa00000566", - "question_id": 46079, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "evv00001485", - "question_id": 46080, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000641", - "question_id": 46081, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001414", - "question_id": 46082, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000464", - "question_id": 46083, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00001150", - "question_id": 46086, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000845", - "question_id": 46089, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "evv00001412", - "question_id": 46090, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007588", - "question_id": 46091, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"suona\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006890", - "question_id": 46093, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00000705", - "question_id": 46095, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "evv00001234", - "question_id": 46102, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008436", - "question_id": 46106, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "eva00000917", - "question_id": 46107, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005552", - "question_id": 46108, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"pipa\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "esa00000222", - "question_id": 46109, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001137", - "question_id": 46111, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"xylophone\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000800", - "question_id": 46113, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000163", - "question_id": 46114, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007379", - "question_id": 46115, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "evv00001458", - "question_id": 46116, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003736", - "question_id": 46118, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000299", - "question_id": 46119, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001029", - "question_id": 46122, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008502", - "question_id": 46123, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000468", - "question_id": 46125, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"trumpet\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000885", - "question_id": 46126, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000463", - "question_id": 46127, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001450", - "question_id": 46128, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000696", - "question_id": 46129, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00000970", - "question_id": 46131, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000169", - "question_id": 46132, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001458", - "question_id": 46133, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001277", - "question_id": 46138, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000401", - "question_id": 46140, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000581", - "question_id": 46144, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000908", - "question_id": 46145, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001133", - "question_id": 46148, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"middle\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000742", - "question_id": 46150, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004811", - "question_id": 46151, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007543", - "question_id": 46152, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "evv00001397", - "question_id": 46154, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001440", - "question_id": 46155, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000911", - "question_id": 46156, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001016", - "question_id": 46157, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000540", - "question_id": 46158, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001201", - "question_id": 46160, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000464", - "question_id": 46161, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000919", - "question_id": 46162, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001112", - "question_id": 46164, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000313", - "question_id": 46165, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000812", - "question_id": 46167, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001415", - "question_id": 46168, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "esa00000670", - "question_id": 46169, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000936", - "question_id": 46174, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000931", - "question_id": 46177, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00001194", - "question_id": 46178, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001353", - "question_id": 46179, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "evv00001324", - "question_id": 46184, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001158", - "question_id": 46187, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000433", - "question_id": 46188, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "esa00000640", - "question_id": 46189, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000511", - "question_id": 46190, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00000933", - "question_id": 46191, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00000806", - "question_id": 46192, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000880", - "question_id": 46193, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000658", - "question_id": 46198, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "eva00001083", - "question_id": 46200, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000443", - "question_id": 46204, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "evv00001420", - "question_id": 46205, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000934", - "question_id": 46206, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000458", - "question_id": 46209, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007462", - "question_id": 46210, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00005806", - "question_id": 46214, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001249", - "question_id": 46215, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000287", - "question_id": 46217, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000017", - "question_id": 46218, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "evv00001446", - "question_id": 46219, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"middle\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000356", - "question_id": 46221, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000316", - "question_id": 46225, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000330", - "question_id": 46226, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "evv00001457", - "question_id": 46227, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000215", - "question_id": 46228, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005388", - "question_id": 46229, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"electric_bass\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001007", - "question_id": 46230, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000689", - "question_id": 46231, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "eva00000783", - "question_id": 46232, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000493", - "question_id": 46233, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006094", - "question_id": 46234, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006330", - "question_id": 46239, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003319", - "question_id": 46242, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001256", - "question_id": 46243, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "eva00000720", - "question_id": 46245, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "esa00000672", - "question_id": 46248, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000737", - "question_id": 46254, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001000", - "question_id": 46256, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000399", - "question_id": 46258, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002608", - "question_id": 46259, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000742", - "question_id": 46262, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00001098", - "question_id": 46263, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001381", - "question_id": 46264, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000767", - "question_id": 46266, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"last\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004140", - "question_id": 46267, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "eva00001126", - "question_id": 46269, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001358", - "question_id": 46270, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"banjo\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001021", - "question_id": 46272, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "eva00000965", - "question_id": 46276, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001264", - "question_id": 46278, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00001100", - "question_id": 46280, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000861", - "question_id": 46281, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000630", - "question_id": 46282, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001250", - "question_id": 46283, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000897", - "question_id": 46284, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00001182", - "question_id": 46286, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003765", - "question_id": 46287, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001046", - "question_id": 46288, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "evv00001358", - "question_id": 46289, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004771", - "question_id": 46290, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00000949", - "question_id": 46291, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000585", - "question_id": 46292, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000350", - "question_id": 46295, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00001161", - "question_id": 46297, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000941", - "question_id": 46299, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "esa00000694", - "question_id": 46300, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005623", - "question_id": 46301, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001304", - "question_id": 46303, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00001081", - "question_id": 46306, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00001025", - "question_id": 46308, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000955", - "question_id": 46309, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001488", - "question_id": 46310, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "evv00001432", - "question_id": 46312, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000842", - "question_id": 46314, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001302", - "question_id": 46315, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"congas\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000644", - "question_id": 46316, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004468", - "question_id": 46318, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00007598", - "question_id": 46320, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000416", - "question_id": 46321, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000559", - "question_id": 46322, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001319", - "question_id": 46323, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00001083", - "question_id": 46328, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001083", - "question_id": 46328, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000313", - "question_id": 46332, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001032", - "question_id": 46333, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001432", - "question_id": 46335, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00001206", - "question_id": 46338, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000965", - "question_id": 46345, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005769", - "question_id": 46346, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "evv00001367", - "question_id": 46347, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001071", - "question_id": 46348, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "esa00000146", - "question_id": 46354, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001230", - "question_id": 46355, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "eva00001118", - "question_id": 46356, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000963", - "question_id": 46358, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000727", - "question_id": 46359, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008338", - "question_id": 46362, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000321", - "question_id": 46363, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "eva00000736", - "question_id": 46364, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000827", - "question_id": 46365, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000807", - "question_id": 46366, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000829", - "question_id": 46367, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"banjo\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000303", - "question_id": 46369, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001308", - "question_id": 46371, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00001154", - "question_id": 46372, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008683", - "question_id": 46377, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006555", - "question_id": 46378, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000230", - "question_id": 46380, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001156", - "question_id": 46383, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001293", - "question_id": 46388, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00001021", - "question_id": 46390, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000727", - "question_id": 46391, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00001005", - "question_id": 46395, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000144", - "question_id": 46396, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"electric_bass\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001241", - "question_id": 46397, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001143", - "question_id": 46399, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008603", - "question_id": 46400, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000873", - "question_id": 46401, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "evv00001303", - "question_id": 46404, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00001099", - "question_id": 46410, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000220", - "question_id": 46412, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000327", - "question_id": 46414, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007265", - "question_id": 46418, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"xylophone\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001308", - "question_id": 46419, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001467", - "question_id": 46420, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "evv00001435", - "question_id": 46421, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"middle\", \"drum\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000947", - "question_id": 46422, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000017", - "question_id": 46423, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001067", - "question_id": 46424, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002350", - "question_id": 46426, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000791", - "question_id": 46427, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000965", - "question_id": 46429, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000301", - "question_id": 46430, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000416", - "question_id": 46431, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00001000", - "question_id": 46432, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "esa00000628", - "question_id": 46435, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001218", - "question_id": 46440, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000852", - "question_id": 46442, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000565", - "question_id": 46443, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001959", - "question_id": 46444, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"banjo\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000815", - "question_id": 46448, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000890", - "question_id": 46449, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001188", - "question_id": 46450, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000599", - "question_id": 46454, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000949", - "question_id": 46455, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002887", - "question_id": 46458, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001395", - "question_id": 46459, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000378", - "question_id": 46460, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "eva00000738", - "question_id": 46462, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000990", - "question_id": 46463, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "evv00001418", - "question_id": 46464, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001202", - "question_id": 46465, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006394", - "question_id": 46467, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "esa00000319", - "question_id": 46469, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001331", - "question_id": 46470, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000799", - "question_id": 46471, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000740", - "question_id": 46472, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"tuba\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000235", - "question_id": 46474, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000529", - "question_id": 46478, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001329", - "question_id": 46480, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001207", - "question_id": 46481, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000535", - "question_id": 46482, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001298", - "question_id": 46484, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000796", - "question_id": 46485, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000859", - "question_id": 46490, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000223", - "question_id": 46498, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000910", - "question_id": 46499, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001408", - "question_id": 46503, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000979", - "question_id": 46504, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"suona\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000908", - "question_id": 46505, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000547", - "question_id": 46508, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "esa00000521", - "question_id": 46511, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"electric_bass\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000157", - "question_id": 46512, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000330", - "question_id": 46513, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000526", - "question_id": 46515, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001071", - "question_id": 46516, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00001100", - "question_id": 46517, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001387", - "question_id": 46518, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "esa00000641", - "question_id": 46519, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00000781", - "question_id": 46524, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001044", - "question_id": 46525, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008939", - "question_id": 46526, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"accordion\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "evv00001252", - "question_id": 46529, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005503", - "question_id": 46530, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000301", - "question_id": 46532, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00005586", - "question_id": 46536, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000986", - "question_id": 46538, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000986", - "question_id": 46539, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001045", - "question_id": 46541, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000560", - "question_id": 46544, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"trumpet\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001331", - "question_id": 46545, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"right\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000737", - "question_id": 46546, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001446", - "question_id": 46547, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000482", - "question_id": 46551, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001454", - "question_id": 46553, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000725", - "question_id": 46555, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001140", - "question_id": 46556, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00001201", - "question_id": 46558, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000810", - "question_id": 46562, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000931", - "question_id": 46563, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001405", - "question_id": 46568, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001018", - "question_id": 46571, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "esa00000539", - "question_id": 46572, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000668", - "question_id": 46573, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001238", - "question_id": 46574, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "evv00001319", - "question_id": 46575, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002163", - "question_id": 46576, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000701", - "question_id": 46580, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000972", - "question_id": 46581, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001012", - "question_id": 46582, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"middle\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000475", - "question_id": 46583, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00001126", - "question_id": 46584, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001126", - "question_id": 46584, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001277", - "question_id": 46587, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00000731", - "question_id": 46588, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004367", - "question_id": 46591, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000868", - "question_id": 46592, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007297", - "question_id": 46593, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "esa00000683", - "question_id": 46594, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007537", - "question_id": 46596, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000547", - "question_id": 46598, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001010", - "question_id": 46600, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000266", - "question_id": 46601, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "esa00000356", - "question_id": 46603, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000012", - "question_id": 46604, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003538", - "question_id": 46606, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001047", - "question_id": 46607, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "esa00000299", - "question_id": 46611, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008551", - "question_id": 46616, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001180", - "question_id": 46617, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001100", - "question_id": 46618, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000740", - "question_id": 46619, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001336", - "question_id": 46620, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "evv00001481", - "question_id": 46629, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000463", - "question_id": 46632, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000891", - "question_id": 46633, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005085", - "question_id": 46634, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001408", - "question_id": 46636, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000215", - "question_id": 46638, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000172", - "question_id": 46639, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001291", - "question_id": 46642, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001408", - "question_id": 46643, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00001170", - "question_id": 46645, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000759", - "question_id": 46646, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000012", - "question_id": 46652, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001424", - "question_id": 46653, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00001140", - "question_id": 46654, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004592", - "question_id": 46656, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000602", - "question_id": 46658, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000350", - "question_id": 46659, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000826", - "question_id": 46660, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001442", - "question_id": 46665, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"bassoon\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001469", - "question_id": 46667, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000309", - "question_id": 46668, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001234", - "question_id": 46670, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "evv00001344", - "question_id": 46671, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001250", - "question_id": 46672, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"middle\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000866", - "question_id": 46674, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000278", - "question_id": 46675, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001092", - "question_id": 46676, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000142", - "question_id": 46677, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000689", - "question_id": 46681, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "evv00001424", - "question_id": 46682, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000752", - "question_id": 46684, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "evv00001366", - "question_id": 46687, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "eva00000700", - "question_id": 46688, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"xylophone\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000605", - "question_id": 46689, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "evv00001267", - "question_id": 46693, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001097", - "question_id": 46694, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "esa00000297", - "question_id": 46695, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00001175", - "question_id": 46697, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001402", - "question_id": 46699, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"middle\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001005", - "question_id": 46700, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000811", - "question_id": 46705, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008047", - "question_id": 46706, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001476", - "question_id": 46707, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000628", - "question_id": 46708, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00001187", - "question_id": 46709, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000707", - "question_id": 46710, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "eva00000910", - "question_id": 46711, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000288", - "question_id": 46712, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001073", - "question_id": 46714, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000861", - "question_id": 46715, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001382", - "question_id": 46716, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007323", - "question_id": 46717, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00000853", - "question_id": 46720, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006797", - "question_id": 46723, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "esa00000486", - "question_id": 46724, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000791", - "question_id": 46726, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "esa00000535", - "question_id": 46727, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001144", - "question_id": 46728, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007509", - "question_id": 46730, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001274", - "question_id": 46734, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "evv00001481", - "question_id": 46736, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001390", - "question_id": 46738, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000297", - "question_id": 46739, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000271", - "question_id": 46742, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000866", - "question_id": 46745, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"electric_bass\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001143", - "question_id": 46746, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000705", - "question_id": 46748, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "esa00000333", - "question_id": 46751, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000547", - "question_id": 46752, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"violin\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001068", - "question_id": 46753, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000826", - "question_id": 46761, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000890", - "question_id": 46764, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001450", - "question_id": 46765, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000249", - "question_id": 46767, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "evv00001295", - "question_id": 46768, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001435", - "question_id": 46769, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007635", - "question_id": 46771, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "esa00000004", - "question_id": 46775, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000974", - "question_id": 46779, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"congas\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001020", - "question_id": 46780, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000680", - "question_id": 46781, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007027", - "question_id": 46785, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "esa00000678", - "question_id": 46787, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001290", - "question_id": 46789, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"accordion\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000594", - "question_id": 46791, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001011", - "question_id": 46798, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "esa00000618", - "question_id": 46799, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005810", - "question_id": 46801, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00001166", - "question_id": 46802, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "esa00000280", - "question_id": 46803, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000402", - "question_id": 46805, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002831", - "question_id": 46807, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001170", - "question_id": 46808, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00001115", - "question_id": 46810, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000576", - "question_id": 46816, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00001204", - "question_id": 46817, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000825", - "question_id": 46818, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000504", - "question_id": 46821, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000896", - "question_id": 46822, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000213", - "question_id": 46826, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000243", - "question_id": 46829, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"trumpet\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007342", - "question_id": 46830, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001274", - "question_id": 46831, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001184", - "question_id": 46832, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001393", - "question_id": 46833, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00000840", - "question_id": 46835, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000378", - "question_id": 46836, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000706", - "question_id": 46837, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001283", - "question_id": 46838, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00001112", - "question_id": 46839, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001186", - "question_id": 46840, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000932", - "question_id": 46842, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000896", - "question_id": 46844, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000324", - "question_id": 46846, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001334", - "question_id": 46848, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"middle\", \"tuba\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000250", - "question_id": 46851, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00001104", - "question_id": 46852, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bagpipe\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001104", - "question_id": 46852, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bagpipe\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000178", - "question_id": 46854, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000222", - "question_id": 46855, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "sa00008237", - "question_id": 46856, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001063", - "question_id": 46858, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000071", - "question_id": 46859, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001044", - "question_id": 46860, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006050", - "question_id": 46861, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000891", - "question_id": 46862, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00000930", - "question_id": 46865, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000071", - "question_id": 46870, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000705", - "question_id": 46873, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000705", - "question_id": 46873, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000700", - "question_id": 46874, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00001175", - "question_id": 46878, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001029", - "question_id": 46879, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000249", - "question_id": 46880, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000211", - "question_id": 46884, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001420", - "question_id": 46885, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000974", - "question_id": 46889, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"congas\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000343", - "question_id": 46895, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001241", - "question_id": 46896, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"middle\", \"drum\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001215", - "question_id": 46897, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000731", - "question_id": 46898, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007360", - "question_id": 46900, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"bassoon\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "esa00000601", - "question_id": 46901, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000620", - "question_id": 46905, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001395", - "question_id": 46906, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001425", - "question_id": 46907, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000763", - "question_id": 46908, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001067", - "question_id": 46909, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001107", - "question_id": 46910, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"drum\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000511", - "question_id": 46911, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000243", - "question_id": 46912, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "sa00006097", - "question_id": 46914, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000442", - "question_id": 46916, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000388", - "question_id": 46920, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001174", - "question_id": 46921, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "evv00001312", - "question_id": 46922, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "esa00000593", - "question_id": 46923, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001041", - "question_id": 46928, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001335", - "question_id": 46929, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "eva00001100", - "question_id": 46932, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000962", - "question_id": 46934, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000728", - "question_id": 46936, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000767", - "question_id": 46937, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001055", - "question_id": 46938, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "esa00000641", - "question_id": 46939, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "esa00000465", - "question_id": 46940, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000632", - "question_id": 46941, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000146", - "question_id": 46942, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001020", - "question_id": 46944, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00001045", - "question_id": 46945, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001233", - "question_id": 46947, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006636", - "question_id": 46948, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000996", - "question_id": 46949, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000823", - "question_id": 46951, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000986", - "question_id": 46956, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "evv00001295", - "question_id": 46957, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000994", - "question_id": 46959, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "evv00001391", - "question_id": 46965, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001108", - "question_id": 46966, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000868", - "question_id": 46967, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000331", - "question_id": 46968, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001445", - "question_id": 46972, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000728", - "question_id": 46974, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000486", - "question_id": 46978, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000697", - "question_id": 46979, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005967", - "question_id": 46981, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001420", - "question_id": 46982, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"xylophone\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001293", - "question_id": 46983, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "eva00000835", - "question_id": 46985, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "va00005068", - "question_id": 46987, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001170", - "question_id": 46988, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "eva00001150", - "question_id": 46990, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000263", - "question_id": 46994, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001399", - "question_id": 46995, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000310", - "question_id": 46996, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000786", - "question_id": 46998, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000333", - "question_id": 46999, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003494", - "question_id": 47000, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"congas\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001361", - "question_id": 47001, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "evv00001391", - "question_id": 47003, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000197", - "question_id": 47004, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001488", - "question_id": 47007, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"middle\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001295", - "question_id": 47011, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000936", - "question_id": 47013, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001295", - "question_id": 47014, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000556", - "question_id": 47016, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001317", - "question_id": 47018, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001336", - "question_id": 47021, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006369", - "question_id": 47023, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001047", - "question_id": 47024, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000835", - "question_id": 47027, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000806", - "question_id": 47028, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008485", - "question_id": 47029, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001056", - "question_id": 47030, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000620", - "question_id": 47032, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001125", - "question_id": 47033, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001362", - "question_id": 47035, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"middle\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000617", - "question_id": 47037, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000807", - "question_id": 47040, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "evv00001263", - "question_id": 47041, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"tuba\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001144", - "question_id": 47042, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "evv00001347", - "question_id": 47045, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000391", - "question_id": 47047, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001056", - "question_id": 47052, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001116", - "question_id": 47053, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000207", - "question_id": 47056, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000071", - "question_id": 47058, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000482", - "question_id": 47059, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001362", - "question_id": 47060, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000556", - "question_id": 47062, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000679", - "question_id": 47065, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000007", - "question_id": 47066, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001148", - "question_id": 47067, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000827", - "question_id": 47072, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006983", - "question_id": 47074, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000632", - "question_id": 47075, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "eva00000979", - "question_id": 47078, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "esa00000293", - "question_id": 47081, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008380", - "question_id": 47082, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001197", - "question_id": 47083, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"pipa\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001310", - "question_id": 47084, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000814", - "question_id": 47085, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "esa00000207", - "question_id": 47087, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "esa00000288", - "question_id": 47095, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007194", - "question_id": 47096, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000618", - "question_id": 47097, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001263", - "question_id": 47098, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000946", - "question_id": 47099, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001373", - "question_id": 47100, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000056", - "question_id": 47101, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005342", - "question_id": 47102, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00005342", - "question_id": 47103, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "esa00000267", - "question_id": 47105, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "evv00001341", - "question_id": 47106, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001168", - "question_id": 47108, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000285", - "question_id": 47110, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000292", - "question_id": 47111, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000188", - "question_id": 47112, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000174", - "question_id": 47113, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00001159", - "question_id": 47115, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000655", - "question_id": 47116, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000859", - "question_id": 47118, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000938", - "question_id": 47121, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000552", - "question_id": 47122, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000440", - "question_id": 47125, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "eva00000763", - "question_id": 47126, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000720", - "question_id": 47129, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001010", - "question_id": 47130, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "eva00000700", - "question_id": 47132, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000658", - "question_id": 47133, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001190", - "question_id": 47135, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005764", - "question_id": 47136, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "esa00000397", - "question_id": 47138, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001338", - "question_id": 47139, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007817", - "question_id": 47141, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001148", - "question_id": 47143, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008005", - "question_id": 47146, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00000955", - "question_id": 47150, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000543", - "question_id": 47151, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "esa00000270", - "question_id": 47152, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000610", - "question_id": 47153, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001092", - "question_id": 47154, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001281", - "question_id": 47157, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000593", - "question_id": 47158, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000751", - "question_id": 47161, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000974", - "question_id": 47162, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00001148", - "question_id": 47165, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000669", - "question_id": 47167, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "esa00000556", - "question_id": 47170, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000209", - "question_id": 47171, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000986", - "question_id": 47172, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000799", - "question_id": 47175, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001356", - "question_id": 47177, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000908", - "question_id": 47178, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001292", - "question_id": 47180, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000201", - "question_id": 47182, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000498", - "question_id": 47183, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000439", - "question_id": 47185, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000768", - "question_id": 47186, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001327", - "question_id": 47187, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00000960", - "question_id": 47188, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000163", - "question_id": 47190, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "esa00000477", - "question_id": 47192, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001373", - "question_id": 47193, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"middle\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000756", - "question_id": 47194, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001137", - "question_id": 47195, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000238", - "question_id": 47198, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006797", - "question_id": 47200, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000840", - "question_id": 47202, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000932", - "question_id": 47204, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00000815", - "question_id": 47205, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000990", - "question_id": 47206, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001208", - "question_id": 47207, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007238", - "question_id": 47208, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000945", - "question_id": 47210, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000965", - "question_id": 47211, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00000968", - "question_id": 47213, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000551", - "question_id": 47214, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004628", - "question_id": 47215, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000276", - "question_id": 47220, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000511", - "question_id": 47221, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001234", - "question_id": 47223, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001073", - "question_id": 47224, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000215", - "question_id": 47225, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000350", - "question_id": 47226, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000701", - "question_id": 47228, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "esa00000688", - "question_id": 47229, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bagpipe\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000237", - "question_id": 47232, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "esa00000593", - "question_id": 47233, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008380", - "question_id": 47235, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00000780", - "question_id": 47240, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000340", - "question_id": 47241, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000296", - "question_id": 47242, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000806", - "question_id": 47243, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001343", - "question_id": 47246, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000630", - "question_id": 47255, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "esa00000644", - "question_id": 47258, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001335", - "question_id": 47261, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000288", - "question_id": 47262, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000966", - "question_id": 47268, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000667", - "question_id": 47273, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"electric_bass\", \"left\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000715", - "question_id": 47277, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00001190", - "question_id": 47279, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000751", - "question_id": 47280, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000071", - "question_id": 47286, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "eva00001011", - "question_id": 47287, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000569", - "question_id": 47289, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000356", - "question_id": 47290, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00001073", - "question_id": 47292, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000594", - "question_id": 47296, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001081", - "question_id": 47297, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000868", - "question_id": 47298, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000397", - "question_id": 47301, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000938", - "question_id": 47302, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "evv00001391", - "question_id": 47304, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000328", - "question_id": 47305, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00001027", - "question_id": 47308, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00001028", - "question_id": 47312, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000209", - "question_id": 47313, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001341", - "question_id": 47319, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "evv00001450", - "question_id": 47320, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"violin\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000780", - "question_id": 47323, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000328", - "question_id": 47325, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001234", - "question_id": 47328, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000713", - "question_id": 47329, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "eva00000968", - "question_id": 47330, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "eva00000715", - "question_id": 47331, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000289", - "question_id": 47332, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000551", - "question_id": 47339, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"electric_bass\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000269", - "question_id": 47340, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000012", - "question_id": 47342, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000184", - "question_id": 47343, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00000799", - "question_id": 47344, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000882", - "question_id": 47346, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000437", - "question_id": 47347, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001027", - "question_id": 47349, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000652", - "question_id": 47352, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000695", - "question_id": 47356, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000310", - "question_id": 47357, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000367", - "question_id": 47360, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000143", - "question_id": 47361, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001338", - "question_id": 47362, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "esa00000193", - "question_id": 47364, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000955", - "question_id": 47368, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000504", - "question_id": 47369, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "esa00000522", - "question_id": 47375, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002637", - "question_id": 47377, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000001", - "question_id": 47378, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000747", - "question_id": 47382, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000945", - "question_id": 47383, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000945", - "question_id": 47383, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001405", - "question_id": 47385, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004901", - "question_id": 47391, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000556", - "question_id": 47392, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bagpipe\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000933", - "question_id": 47394, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000933", - "question_id": 47394, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000924", - "question_id": 47400, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000310", - "question_id": 47402, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005220", - "question_id": 47403, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000846", - "question_id": 47405, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"electric_bass\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000189", - "question_id": 47407, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008398", - "question_id": 47409, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000249", - "question_id": 47412, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "esa00000498", - "question_id": 47415, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000812", - "question_id": 47417, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000955", - "question_id": 47418, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000846", - "question_id": 47420, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000526", - "question_id": 47423, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005000", - "question_id": 47426, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000963", - "question_id": 47430, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003918", - "question_id": 47431, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "eva00000932", - "question_id": 47432, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000182", - "question_id": 47437, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003581", - "question_id": 47438, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000259", - "question_id": 47440, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001263", - "question_id": 47443, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "esa00000272", - "question_id": 47444, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"trumpet\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000695", - "question_id": 47446, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001261", - "question_id": 47447, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000194", - "question_id": 47451, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "esa00000670", - "question_id": 47453, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000483", - "question_id": 47454, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001147", - "question_id": 47455, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000522", - "question_id": 47457, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "evv00001374", - "question_id": 47458, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000354", - "question_id": 47461, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000919", - "question_id": 47465, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000820", - "question_id": 47466, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000462", - "question_id": 47468, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000459", - "question_id": 47470, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000184", - "question_id": 47471, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00001144", - "question_id": 47472, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000658", - "question_id": 47473, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000265", - "question_id": 47474, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001261", - "question_id": 47475, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00001076", - "question_id": 47480, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001467", - "question_id": 47484, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000919", - "question_id": 47489, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000213", - "question_id": 47490, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000780", - "question_id": 47491, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000573", - "question_id": 47492, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001115", - "question_id": 47493, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000505", - "question_id": 47494, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00001014", - "question_id": 47495, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000201", - "question_id": 47498, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"electric_bass\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000155", - "question_id": 47499, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00001168", - "question_id": 47501, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000669", - "question_id": 47503, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000246", - "question_id": 47505, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"ukulele\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "evv00001291", - "question_id": 47508, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003828", - "question_id": 47511, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003828", - "question_id": 47513, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000419", - "question_id": 47515, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000813", - "question_id": 47516, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000820", - "question_id": 47517, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008976", - "question_id": 47519, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000448", - "question_id": 47521, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"pipa\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "esa00000415", - "question_id": 47523, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001158", - "question_id": 47525, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000494", - "question_id": 47526, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000796", - "question_id": 47527, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "esa00000667", - "question_id": 47531, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001097", - "question_id": 47532, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000889", - "question_id": 47534, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"erhu\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "eva00000889", - "question_id": 47534, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"erhu\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00002105", - "question_id": 47537, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000984", - "question_id": 47538, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001097", - "question_id": 47541, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001797", - "question_id": 47543, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000188", - "question_id": 47544, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000278", - "question_id": 47545, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000707", - "question_id": 47549, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000442", - "question_id": 47554, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000007", - "question_id": 47556, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006169", - "question_id": 47557, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000669", - "question_id": 47559, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"pipa\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "evv00001484", - "question_id": 47560, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"tuba\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006818", - "question_id": 47563, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000889", - "question_id": 47564, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "eva00000889", - "question_id": 47566, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000432", - "question_id": 47567, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001204", - "question_id": 47568, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007451", - "question_id": 47571, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004309", - "question_id": 47573, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000291", - "question_id": 47575, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000587", - "question_id": 47577, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002146", - "question_id": 47578, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000813", - "question_id": 47579, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005203", - "question_id": 47581, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008603", - "question_id": 47582, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00008603", - "question_id": 47583, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001340", - "question_id": 47585, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005807", - "question_id": 47587, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"electric_bass\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001092", - "question_id": 47589, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "eva00000968", - "question_id": 47590, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000472", - "question_id": 47593, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007168", - "question_id": 47597, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000367", - "question_id": 47598, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008120", - "question_id": 47599, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"erhu\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008120", - "question_id": 47600, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000602", - "question_id": 47601, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006066", - "question_id": 47602, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007881", - "question_id": 47604, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"erhu\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005437", - "question_id": 47605, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005437", - "question_id": 47607, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005454", - "question_id": 47608, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004977", - "question_id": 47609, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"middle\", \"piano\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008256", - "question_id": 47611, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006020", - "question_id": 47615, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"tuba\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00007069", - "question_id": 47617, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001157", - "question_id": 47620, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"clarinet\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "evv00001484", - "question_id": 47626, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "sa00007697", - "question_id": 47627, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "esa00000292", - "question_id": 47631, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "eva00001107", - "question_id": 47634, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"cello\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "eva00000873", - "question_id": 47642, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "eva00000728", - "question_id": 47643, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "eva00000777", - "question_id": 47650, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005523", - "question_id": 47655, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "sa00006095", - "question_id": 47662, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00005984", - "question_id": 47666, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "esa00000557", - "question_id": 47667, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00004322", - "question_id": 47668, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005849", - "question_id": 47669, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "sa00007601", - "question_id": 47671, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00007976", - "question_id": 47672, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00007186", - "question_id": 47676, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "va00003296", - "question_id": 47680, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00002172", - "question_id": 47684, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000706", - "question_id": 47686, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001009", - "question_id": 47687, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004889", - "question_id": 47691, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001629", - "question_id": 47693, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005253", - "question_id": 47696, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001806", - "question_id": 47697, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001138", - "question_id": 47701, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "eva00001125", - "question_id": 47702, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001330", - "question_id": 47703, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006404", - "question_id": 47704, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "sa00006477", - "question_id": 47708, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004328", - "question_id": 47709, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "sa00006515", - "question_id": 47712, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003543", - "question_id": 47713, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006119", - "question_id": 47714, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000681", - "question_id": 47716, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007262", - "question_id": 47717, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000058", - "question_id": 47718, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00000038", - "question_id": 47719, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002379", - "question_id": 47720, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003883", - "question_id": 47721, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001200", - "question_id": 47722, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "va00003584", - "question_id": 47723, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006020", - "question_id": 47725, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000913", - "question_id": 47726, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006682", - "question_id": 47727, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008580", - "question_id": 47728, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004299", - "question_id": 47730, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"guzheng\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "sa00007937", - "question_id": 47731, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000199", - "question_id": 47732, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000528", - "question_id": 47733, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001392", - "question_id": 47734, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001392", - "question_id": 47735, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00008798", - "question_id": 47737, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00003064", - "question_id": 47738, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002206", - "question_id": 47741, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "vv00002585", - "question_id": 47742, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002585", - "question_id": 47743, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008287", - "question_id": 47744, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003453", - "question_id": 47745, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004609", - "question_id": 47746, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00004609", - "question_id": 47747, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006956", - "question_id": 47748, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00000820", - "question_id": 47750, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002874", - "question_id": 47751, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001067", - "question_id": 47752, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007140", - "question_id": 47759, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003351", - "question_id": 47762, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "esa00000143", - "question_id": 47763, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00004971", - "question_id": 47764, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "esa00000643", - "question_id": 47767, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "sa00006891", - "question_id": 47769, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00005245", - "question_id": 47772, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"bassoon\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "va00003135", - "question_id": 47774, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00004324", - "question_id": 47780, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "va00004902", - "question_id": 47781, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00007977", - "question_id": 47782, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "esa00000560", - "question_id": 47783, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "va00003115", - "question_id": 47785, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00004929", - "question_id": 47786, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003543", - "question_id": 47791, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "sa00007151", - "question_id": 47793, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "sa00008889", - "question_id": 47795, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00008966", - "question_id": 47797, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00008695", - "question_id": 47798, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00008966", - "question_id": 47799, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "va00003674", - "question_id": 47808, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00003207", - "question_id": 47809, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "sa00007640", - "question_id": 47811, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "esa00000680", - "question_id": 47813, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004966", - "question_id": 47814, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00005047", - "question_id": 47817, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "sa00007354", - "question_id": 47819, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "esa00000328", - "question_id": 47821, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "esa00000498", - "question_id": 47824, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "eva00001180", - "question_id": 47826, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004699", - "question_id": 47827, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000046", - "question_id": 47829, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00003203", - "question_id": 47832, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00002944", - "question_id": 47834, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007037", - "question_id": 47835, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "va00004163", - "question_id": 47836, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "va00004163", - "question_id": 47837, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002456", - "question_id": 47838, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004258", - "question_id": 47843, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00005764", - "question_id": 47847, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "sa00007405", - "question_id": 47848, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "esa00000631", - "question_id": 47849, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004577", - "question_id": 47850, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005396", - "question_id": 47851, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "sa00006381", - "question_id": 47852, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "esa00000194", - "question_id": 47854, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001303", - "question_id": 47855, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"drum\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004413", - "question_id": 47856, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007076", - "question_id": 47858, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "sa00007079", - "question_id": 47859, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002342", - "question_id": 47860, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007731", - "question_id": 47861, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00001217", - "question_id": 47862, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008307", - "question_id": 47863, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002872", - "question_id": 47864, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003936", - "question_id": 47865, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "esa00000240", - "question_id": 47868, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007103", - "question_id": 47870, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004818", - "question_id": 47871, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008099", - "question_id": 47873, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002812", - "question_id": 47874, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "eva00000842", - "question_id": 47876, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003150", - "question_id": 47877, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"congas\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006804", - "question_id": 47878, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005063", - "question_id": 47879, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000157", - "question_id": 47880, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003423", - "question_id": 47881, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005117", - "question_id": 47882, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001211", - "question_id": 47883, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00007230", - "question_id": 47884, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006496", - "question_id": 47885, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "esa00000390", - "question_id": 47887, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006994", - "question_id": 47890, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003439", - "question_id": 47891, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00008096", - "question_id": 47892, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001469", - "question_id": 47893, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"middle\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004038", - "question_id": 47896, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "eva00001168", - "question_id": 47899, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00000407", - "question_id": 47901, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00000307", - "question_id": 47902, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008251", - "question_id": 47903, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"congas\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003035", - "question_id": 47904, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"guzheng\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005890", - "question_id": 47905, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00004797", - "question_id": 47907, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "sa00008053", - "question_id": 47908, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "sa00007976", - "question_id": 47909, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005910", - "question_id": 47911, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "esa00000006", - "question_id": 47912, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"last\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "eva00001133", - "question_id": 47913, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "va00004954", - "question_id": 47915, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00008834", - "question_id": 47917, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00001338", - "question_id": 47919, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00008834", - "question_id": 47920, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"banjo\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008163", - "question_id": 47921, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "va00005677", - "question_id": 47924, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "eva00000958", - "question_id": 47925, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006740", - "question_id": 47927, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "eva00000931", - "question_id": 47928, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00003621", - "question_id": 47929, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00005680", - "question_id": 47930, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007321", - "question_id": 47932, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006490", - "question_id": 47938, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "sa00008928", - "question_id": 47940, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "sa00007783", - "question_id": 47941, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00007058", - "question_id": 47943, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007292", - "question_id": 47945, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007208", - "question_id": 47946, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00002913", - "question_id": 47948, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002913", - "question_id": 47949, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001708", - "question_id": 47950, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00001708", - "question_id": 47951, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003367", - "question_id": 47953, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "esa00000419", - "question_id": 47954, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000902", - "question_id": 47955, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004051", - "question_id": 47957, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00008781", - "question_id": 47958, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008730", - "question_id": 47961, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001989", - "question_id": 47962, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "vv00000119", - "question_id": 47963, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "eva00000820", - "question_id": 47965, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"saxophone\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00003221", - "question_id": 47966, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "esa00000331", - "question_id": 47968, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008162", - "question_id": 47969, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008682", - "question_id": 47970, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "va00003891", - "question_id": 47971, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "sa00006973", - "question_id": 47973, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00006802", - "question_id": 47974, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003609", - "question_id": 47977, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00005724", - "question_id": 47978, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "eva00000861", - "question_id": 47980, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00004893", - "question_id": 47984, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00003282", - "question_id": 47985, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "va00005243", - "question_id": 47986, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00007733", - "question_id": 47988, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00003610", - "question_id": 47989, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002164", - "question_id": 47990, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008227", - "question_id": 47991, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "sa00007540", - "question_id": 47993, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "eva00001203", - "question_id": 47994, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007829", - "question_id": 47996, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "va00003961", - "question_id": 47997, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00005168", - "question_id": 47998, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "esa00000688", - "question_id": 47999, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000201", - "question_id": 48000, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "vv00002546", - "question_id": 48001, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000337", - "question_id": 48002, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "esa00000337", - "question_id": 48003, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "esa00000329", - "question_id": 48004, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007967", - "question_id": 48007, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "sa00007756", - "question_id": 48008, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006979", - "question_id": 48009, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "vv00002785", - "question_id": 48010, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "va00003386", - "question_id": 48011, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "eva00000786", - "question_id": 48012, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008441", - "question_id": 48013, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004580", - "question_id": 48014, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004121", - "question_id": 48015, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "evv00001377", - "question_id": 48017, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"suona\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006831", - "question_id": 48018, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "sa00008269", - "question_id": 48019, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "va00005798", - "question_id": 48020, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "va00003813", - "question_id": 48023, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00001018", - "question_id": 48024, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004250", - "question_id": 48025, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004060", - "question_id": 48026, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "eva00000941", - "question_id": 48028, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "va00004137", - "question_id": 48030, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000094", - "question_id": 48031, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "sa00007531", - "question_id": 48032, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002735", - "question_id": 48033, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000998", - "question_id": 48036, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00008682", - "question_id": 48037, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000296", - "question_id": 48038, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004616", - "question_id": 48039, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004896", - "question_id": 48040, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "vv00000268", - "question_id": 48041, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00007442", - "question_id": 48042, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "va00004034", - "question_id": 48043, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006378", - "question_id": 48046, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006745", - "question_id": 48047, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005619", - "question_id": 48048, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "evv00001283", - "question_id": 48051, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00001681", - "question_id": 48052, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00001681", - "question_id": 48053, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00000187", - "question_id": 48055, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002829", - "question_id": 48057, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000329", - "question_id": 48059, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000329", - "question_id": 48061, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004489", - "question_id": 48062, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "sa00008136", - "question_id": 48064, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "sa00007974", - "question_id": 48068, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00005982", - "question_id": 48069, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00004132", - "question_id": 48070, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "va00004365", - "question_id": 48071, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "sa00006826", - "question_id": 48072, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00006982", - "question_id": 48073, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006216", - "question_id": 48075, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"trumpet\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002788", - "question_id": 48076, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "esa00000380", - "question_id": 48085, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003670", - "question_id": 48086, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00007248", - "question_id": 48087, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003028", - "question_id": 48088, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000832", - "question_id": 48089, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"cello\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008336", - "question_id": 48092, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002004", - "question_id": 48093, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003396", - "question_id": 48095, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00005068", - "question_id": 48096, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "sa00005985", - "question_id": 48097, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "esa00000271", - "question_id": 48101, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000189", - "question_id": 48102, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004367", - "question_id": 48103, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007158", - "question_id": 48104, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "sa00006568", - "question_id": 48105, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00004995", - "question_id": 48106, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000004", - "question_id": 48108, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002096", - "question_id": 48110, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000635", - "question_id": 48111, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005162", - "question_id": 48113, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005162", - "question_id": 48114, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"tuba\", \"middle\", \"tuba\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006515", - "question_id": 48117, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "sa00007640", - "question_id": 48118, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "esa00000309", - "question_id": 48121, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00005633", - "question_id": 48122, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005633", - "question_id": 48123, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005941", - "question_id": 48127, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006497", - "question_id": 48128, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "sa00007405", - "question_id": 48130, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001109", - "question_id": 48131, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "vv00000598", - "question_id": 48133, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003254", - "question_id": 48134, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000431", - "question_id": 48135, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00006122", - "question_id": 48136, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00001665", - "question_id": 48137, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006186", - "question_id": 48138, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00008196", - "question_id": 48140, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006251", - "question_id": 48141, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002706", - "question_id": 48142, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005436", - "question_id": 48144, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005436", - "question_id": 48145, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005635", - "question_id": 48147, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000450", - "question_id": 48148, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00004589", - "question_id": 48149, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004589", - "question_id": 48150, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "sa00007997", - "question_id": 48152, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00003289", - "question_id": 48153, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "sa00007580", - "question_id": 48154, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00001620", - "question_id": 48155, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "va00005642", - "question_id": 48157, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007521", - "question_id": 48160, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006811", - "question_id": 48161, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006594", - "question_id": 48163, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "va00005348", - "question_id": 48164, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "va00005565", - "question_id": 48165, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006347", - "question_id": 48166, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004685", - "question_id": 48167, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008050", - "question_id": 48168, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"ukulele\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001204", - "question_id": 48170, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008097", - "question_id": 48171, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "esa00000679", - "question_id": 48172, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000885", - "question_id": 48174, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "esa00000172", - "question_id": 48175, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000822", - "question_id": 48176, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "sa00007079", - "question_id": 48177, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00007547", - "question_id": 48179, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004168", - "question_id": 48180, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006649", - "question_id": 48182, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00005935", - "question_id": 48184, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "vv00002964", - "question_id": 48185, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006906", - "question_id": 48186, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007560", - "question_id": 48187, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "va00005291", - "question_id": 48189, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008792", - "question_id": 48190, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "vv00003064", - "question_id": 48191, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005960", - "question_id": 48192, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "va00005817", - "question_id": 48193, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"xylophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007966", - "question_id": 48194, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004367", - "question_id": 48195, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001722", - "question_id": 48196, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005655", - "question_id": 48197, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00005656", - "question_id": 48200, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "sa00006042", - "question_id": 48201, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "eva00001114", - "question_id": 48202, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003461", - "question_id": 48204, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00007410", - "question_id": 48206, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "esa00000569", - "question_id": 48207, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00003406", - "question_id": 48212, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002727", - "question_id": 48214, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003634", - "question_id": 48217, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "sa00006364", - "question_id": 48218, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00003765", - "question_id": 48219, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00007300", - "question_id": 48220, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"drum\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "evv00001418", - "question_id": 48221, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001922", - "question_id": 48224, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00004184", - "question_id": 48227, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005368", - "question_id": 48230, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "sa00008470", - "question_id": 48231, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00008752", - "question_id": 48232, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000814", - "question_id": 48233, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000144", - "question_id": 48234, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005406", - "question_id": 48235, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005276", - "question_id": 48238, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003498", - "question_id": 48239, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "evv00001270", - "question_id": 48240, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00008397", - "question_id": 48243, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"middle\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000924", - "question_id": 48244, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001413", - "question_id": 48245, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00005157", - "question_id": 48246, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00007622", - "question_id": 48249, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007261", - "question_id": 48252, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"last\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "va00005649", - "question_id": 48253, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bassoon\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005356", - "question_id": 48254, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "va00005649", - "question_id": 48255, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "sa00008696", - "question_id": 48256, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "esa00000363", - "question_id": 48257, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006078", - "question_id": 48258, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006312", - "question_id": 48259, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000443", - "question_id": 48261, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bagpipe\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000868", - "question_id": 48262, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bagpipe\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008441", - "question_id": 48263, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006261", - "question_id": 48264, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003878", - "question_id": 48265, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "eva00000901", - "question_id": 48267, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008156", - "question_id": 48268, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00002522", - "question_id": 48270, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00006701", - "question_id": 48272, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001453", - "question_id": 48273, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004411", - "question_id": 48274, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004530", - "question_id": 48275, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007312", - "question_id": 48276, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005087", - "question_id": 48277, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bagpipe\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000670", - "question_id": 48278, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000170", - "question_id": 48279, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00002080", - "question_id": 48280, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00004579", - "question_id": 48281, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005155", - "question_id": 48284, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000016", - "question_id": 48285, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006985", - "question_id": 48286, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003118", - "question_id": 48287, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003363", - "question_id": 48288, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "vv00000336", - "question_id": 48289, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00008421", - "question_id": 48290, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00003874", - "question_id": 48293, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bassoon\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005700", - "question_id": 48294, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000644", - "question_id": 48295, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000142", - "question_id": 48297, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "va00003245", - "question_id": 48298, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "sa00007308", - "question_id": 48299, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "va00004182", - "question_id": 48301, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008116", - "question_id": 48303, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003592", - "question_id": 48305, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "esa00000602", - "question_id": 48307, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000643", - "question_id": 48308, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007857", - "question_id": 48310, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001486", - "question_id": 48312, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00000082", - "question_id": 48314, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00004987", - "question_id": 48315, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005715", - "question_id": 48316, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00001853", - "question_id": 48318, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006740", - "question_id": 48319, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "esa00000363", - "question_id": 48320, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004165", - "question_id": 48322, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00006944", - "question_id": 48323, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003577", - "question_id": 48324, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "esa00000576", - "question_id": 48327, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "esa00000576", - "question_id": 48328, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"cello\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "sa00008488", - "question_id": 48329, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "sa00007178", - "question_id": 48330, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002500", - "question_id": 48331, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00003214", - "question_id": 48333, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "va00005052", - "question_id": 48335, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "eva00000697", - "question_id": 48337, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001080", - "question_id": 48338, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "esa00000441", - "question_id": 48340, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00004626", - "question_id": 48341, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000957", - "question_id": 48342, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "eva00000707", - "question_id": 48345, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005314", - "question_id": 48346, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000038", - "question_id": 48348, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002666", - "question_id": 48349, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007106", - "question_id": 48351, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002965", - "question_id": 48354, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00007759", - "question_id": 48357, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00005127", - "question_id": 48358, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007705", - "question_id": 48360, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001165", - "question_id": 48361, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008755", - "question_id": 48364, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002975", - "question_id": 48365, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "esa00000380", - "question_id": 48366, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001268", - "question_id": 48367, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "eva00001068", - "question_id": 48368, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00001643", - "question_id": 48369, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000882", - "question_id": 48371, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005519", - "question_id": 48373, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "eva00000748", - "question_id": 48374, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00003362", - "question_id": 48375, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007248", - "question_id": 48376, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000940", - "question_id": 48378, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006475", - "question_id": 48379, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "esa00000616", - "question_id": 48380, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"trumpet\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006124", - "question_id": 48381, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"electric_bass\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003789", - "question_id": 48384, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "sa00006550", - "question_id": 48385, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00001849", - "question_id": 48386, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00007723", - "question_id": 48387, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005742", - "question_id": 48388, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00003867", - "question_id": 48389, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "va00003386", - "question_id": 48390, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"suona\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006973", - "question_id": 48392, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bagpipe\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007668", - "question_id": 48393, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006909", - "question_id": 48396, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00007104", - "question_id": 48397, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bagpipe\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004770", - "question_id": 48398, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "sa00006219", - "question_id": 48401, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00007756", - "question_id": 48406, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008321", - "question_id": 48408, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "eva00000859", - "question_id": 48410, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005945", - "question_id": 48411, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00005106", - "question_id": 48412, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004753", - "question_id": 48413, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "eva00001084", - "question_id": 48414, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001792", - "question_id": 48416, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000853", - "question_id": 48418, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006601", - "question_id": 48419, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "va00005537", - "question_id": 48420, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00007130", - "question_id": 48421, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00001228", - "question_id": 48422, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003131", - "question_id": 48424, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "va00003500", - "question_id": 48425, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "sa00008224", - "question_id": 48426, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00006358", - "question_id": 48427, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "sa00007817", - "question_id": 48428, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008385", - "question_id": 48429, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003662", - "question_id": 48430, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"congas\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003597", - "question_id": 48431, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00003470", - "question_id": 48432, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"middle\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002848", - "question_id": 48434, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "eva00001068", - "question_id": 48435, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004021", - "question_id": 48439, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000605", - "question_id": 48442, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008594", - "question_id": 48443, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006252", - "question_id": 48444, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "esa00000415", - "question_id": 48445, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005956", - "question_id": 48448, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003756", - "question_id": 48450, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008959", - "question_id": 48451, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007829", - "question_id": 48452, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005809", - "question_id": 48453, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000418", - "question_id": 48454, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "va00003768", - "question_id": 48456, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00005788", - "question_id": 48457, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007147", - "question_id": 48458, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000465", - "question_id": 48459, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "vv00002867", - "question_id": 48461, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007694", - "question_id": 48462, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00000105", - "question_id": 48464, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001986", - "question_id": 48466, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "esa00000643", - "question_id": 48467, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008415", - "question_id": 48470, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "esa00000363", - "question_id": 48472, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006829", - "question_id": 48473, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00004854", - "question_id": 48475, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002850", - "question_id": 48476, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00002413", - "question_id": 48477, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003636", - "question_id": 48480, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "esa00000292", - "question_id": 48485, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000559", - "question_id": 48486, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005101", - "question_id": 48487, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000267", - "question_id": 48488, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005252", - "question_id": 48489, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bassoon\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000501", - "question_id": 48490, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003639", - "question_id": 48491, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "eva00000763", - "question_id": 48492, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004781", - "question_id": 48494, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"tuba\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000277", - "question_id": 48495, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000182", - "question_id": 48496, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000016", - "question_id": 48497, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000726", - "question_id": 48499, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000423", - "question_id": 48500, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00003271", - "question_id": 48501, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "eva00001011", - "question_id": 48504, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00004022", - "question_id": 48505, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00007542", - "question_id": 48506, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "esa00000545", - "question_id": 48508, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"suona\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002046", - "question_id": 48509, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004379", - "question_id": 48510, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"pipa\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008735", - "question_id": 48512, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "sa00006867", - "question_id": 48514, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "evv00001310", - "question_id": 48515, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000167", - "question_id": 48516, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003533", - "question_id": 48518, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "esa00000213", - "question_id": 48520, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002725", - "question_id": 48521, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006002", - "question_id": 48522, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00000292", - "question_id": 48524, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005371", - "question_id": 48525, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00006708", - "question_id": 48526, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00004805", - "question_id": 48527, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "sa00006905", - "question_id": 48528, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00004267", - "question_id": 48529, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "va00005817", - "question_id": 48530, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004346", - "question_id": 48531, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001327", - "question_id": 48532, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007969", - "question_id": 48538, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000557", - "question_id": 48539, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001295", - "question_id": 48541, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00002925", - "question_id": 48543, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "va00005946", - "question_id": 48545, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00001645", - "question_id": 48546, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"ukulele\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "sa00008224", - "question_id": 48547, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"suona\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001390", - "question_id": 48549, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000658", - "question_id": 48550, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000300", - "question_id": 48553, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002437", - "question_id": 48555, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "eva00001132", - "question_id": 48556, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000225", - "question_id": 48558, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000319", - "question_id": 48559, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "eva00000810", - "question_id": 48560, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004194", - "question_id": 48561, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007368", - "question_id": 48562, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00001459", - "question_id": 48563, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000451", - "question_id": 48566, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"fourth\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000008", - "question_id": 48567, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00000579", - "question_id": 48568, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "esa00000238", - "question_id": 48569, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00007648", - "question_id": 48570, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008543", - "question_id": 48572, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00004387", - "question_id": 48575, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00005495", - "question_id": 48577, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"xylophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004688", - "question_id": 48578, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002043", - "question_id": 48579, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008074", - "question_id": 48580, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000423", - "question_id": 48581, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001373", - "question_id": 48582, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "sa00006432", - "question_id": 48583, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "eva00001115", - "question_id": 48584, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000126", - "question_id": 48585, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004206", - "question_id": 48589, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004837", - "question_id": 48590, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000152", - "question_id": 48591, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002605", - "question_id": 48592, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007024", - "question_id": 48593, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000799", - "question_id": 48594, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002708", - "question_id": 48595, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "esa00000017", - "question_id": 48597, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005739", - "question_id": 48598, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "va00005491", - "question_id": 48599, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "vv00000221", - "question_id": 48600, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "evv00001303", - "question_id": 48603, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000825", - "question_id": 48604, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007658", - "question_id": 48605, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003148", - "question_id": 48607, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001230", - "question_id": 48608, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "sa00008165", - "question_id": 48611, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00004283", - "question_id": 48613, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "va00005099", - "question_id": 48615, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "sa00007735", - "question_id": 48617, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "esa00000144", - "question_id": 48619, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006414", - "question_id": 48620, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001032", - "question_id": 48621, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002665", - "question_id": 48623, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004592", - "question_id": 48626, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005045", - "question_id": 48628, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000643", - "question_id": 48629, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003853", - "question_id": 48631, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000347", - "question_id": 48639, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006728", - "question_id": 48640, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00004116", - "question_id": 48641, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "eva00000777", - "question_id": 48642, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "esa00000465", - "question_id": 48644, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002243", - "question_id": 48645, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"xylophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000728", - "question_id": 48646, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001857", - "question_id": 48647, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"right\", \"banjo\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002040", - "question_id": 48650, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"last\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006286", - "question_id": 48651, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005174", - "question_id": 48654, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "sa00007326", - "question_id": 48656, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00004262", - "question_id": 48657, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004952", - "question_id": 48658, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00006123", - "question_id": 48659, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00006593", - "question_id": 48660, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "sa00006942", - "question_id": 48661, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004212", - "question_id": 48662, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00008630", - "question_id": 48663, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00006574", - "question_id": 48665, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004598", - "question_id": 48668, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "esa00000577", - "question_id": 48669, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"ukulele\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000482", - "question_id": 48670, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004529", - "question_id": 48672, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001339", - "question_id": 48675, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000163", - "question_id": 48677, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001317", - "question_id": 48678, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000677", - "question_id": 48679, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00004884", - "question_id": 48681, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004781", - "question_id": 48682, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003950", - "question_id": 48683, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001520", - "question_id": 48684, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002816", - "question_id": 48685, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004548", - "question_id": 48688, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"tuba\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000645", - "question_id": 48689, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002906", - "question_id": 48690, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003556", - "question_id": 48691, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bagpipe\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000655", - "question_id": 48692, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000294", - "question_id": 48693, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "evv00001448", - "question_id": 48695, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00004727", - "question_id": 48696, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "esa00000285", - "question_id": 48697, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "eva00000781", - "question_id": 48698, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000781", - "question_id": 48699, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000593", - "question_id": 48700, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000973", - "question_id": 48703, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000066", - "question_id": 48705, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00000066", - "question_id": 48706, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "esa00000526", - "question_id": 48707, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008313", - "question_id": 48708, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "sa00007332", - "question_id": 48709, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "esa00000520", - "question_id": 48711, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "eva00001159", - "question_id": 48712, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001159", - "question_id": 48713, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "esa00000672", - "question_id": 48714, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"last\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "sa00006712", - "question_id": 48718, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "eva00001147", - "question_id": 48719, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008659", - "question_id": 48720, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00003657", - "question_id": 48721, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006513", - "question_id": 48722, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "eva00001099", - "question_id": 48724, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00002553", - "question_id": 48726, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001290", - "question_id": 48728, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000321", - "question_id": 48729, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00004513", - "question_id": 48730, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"banjo\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008905", - "question_id": 48731, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006604", - "question_id": 48732, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "esa00000641", - "question_id": 48733, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005682", - "question_id": 48734, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "va00005753", - "question_id": 48737, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00006454", - "question_id": 48739, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007427", - "question_id": 48740, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005862", - "question_id": 48742, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003327", - "question_id": 48743, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004032", - "question_id": 48745, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006866", - "question_id": 48750, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001089", - "question_id": 48751, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000642", - "question_id": 48752, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005928", - "question_id": 48753, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00006098", - "question_id": 48754, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "esa00000581", - "question_id": 48755, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004786", - "question_id": 48756, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bagpipe\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000783", - "question_id": 48757, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "esa00000343", - "question_id": 48760, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002914", - "question_id": 48761, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001154", - "question_id": 48763, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"last\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "esa00000577", - "question_id": 48764, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"last\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "sa00007208", - "question_id": 48766, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "evv00001315", - "question_id": 48768, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000446", - "question_id": 48771, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006554", - "question_id": 48772, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007498", - "question_id": 48773, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00000811", - "question_id": 48774, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"trumpet\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "sa00008877", - "question_id": 48775, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "va00003838", - "question_id": 48776, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "va00005222", - "question_id": 48779, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "esa00000291", - "question_id": 48781, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003152", - "question_id": 48782, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007605", - "question_id": 48785, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "va00005273", - "question_id": 48786, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "eva00000975", - "question_id": 48787, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005579", - "question_id": 48789, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"trumpet\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004066", - "question_id": 48790, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006235", - "question_id": 48791, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "sa00007390", - "question_id": 48796, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001405", - "question_id": 48798, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004978", - "question_id": 48800, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "esa00000424", - "question_id": 48803, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000556", - "question_id": 48806, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bagpipe\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003031", - "question_id": 48807, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001457", - "question_id": 48808, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002899", - "question_id": 48809, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002122", - "question_id": 48810, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006285", - "question_id": 48811, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"electric_bass\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003629", - "question_id": 48815, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "esa00000441", - "question_id": 48816, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000451", - "question_id": 48818, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000451", - "question_id": 48818, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005626", - "question_id": 48819, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000903", - "question_id": 48820, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "eva00001029", - "question_id": 48821, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005626", - "question_id": 48822, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000220", - "question_id": 48823, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "esa00000573", - "question_id": 48824, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006941", - "question_id": 48825, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000230", - "question_id": 48827, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"xylophone\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005610", - "question_id": 48829, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00002457", - "question_id": 48830, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000263", - "question_id": 48833, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005943", - "question_id": 48838, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "va00005564", - "question_id": 48840, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006162", - "question_id": 48842, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008544", - "question_id": 48843, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007456", - "question_id": 48847, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001438", - "question_id": 48848, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "eva00000885", - "question_id": 48849, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006177", - "question_id": 48850, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004108", - "question_id": 48851, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"middle\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001296", - "question_id": 48852, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "va00004989", - "question_id": 48853, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008443", - "question_id": 48854, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"electric_bass\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006106", - "question_id": 48855, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "sa00006177", - "question_id": 48856, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001007", - "question_id": 48857, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000658", - "question_id": 48859, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002244", - "question_id": 48861, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00001908", - "question_id": 48862, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00003768", - "question_id": 48863, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"suona\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000279", - "question_id": 48865, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"ukulele\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001086", - "question_id": 48866, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008342", - "question_id": 48869, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"drum\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004911", - "question_id": 48871, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001274", - "question_id": 48872, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003858", - "question_id": 48874, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00007069", - "question_id": 48875, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"last\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001226", - "question_id": 48876, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001341", - "question_id": 48877, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006061", - "question_id": 48880, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003098", - "question_id": 48883, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000246", - "question_id": 48884, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "eva00000908", - "question_id": 48885, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002455", - "question_id": 48887, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "esa00000210", - "question_id": 48893, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002363", - "question_id": 48894, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007069", - "question_id": 48895, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00001483", - "question_id": 48896, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"middle\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000260", - "question_id": 48897, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000451", - "question_id": 48899, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00001982", - "question_id": 48900, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005661", - "question_id": 48902, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bagpipe\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004103", - "question_id": 48904, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "esa00000266", - "question_id": 48905, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001038", - "question_id": 48906, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006491", - "question_id": 48907, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00005972", - "question_id": 48908, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001181", - "question_id": 48909, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005528", - "question_id": 48910, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004585", - "question_id": 48911, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "esa00000573", - "question_id": 48912, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "esa00000459", - "question_id": 48913, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003568", - "question_id": 48914, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001382", - "question_id": 48915, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003634", - "question_id": 48916, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007135", - "question_id": 48917, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004985", - "question_id": 48918, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006508", - "question_id": 48921, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bagpipe\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003987", - "question_id": 48922, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000783", - "question_id": 48923, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004215", - "question_id": 48924, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007289", - "question_id": 48926, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008145", - "question_id": 48927, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000813", - "question_id": 48930, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "esa00000483", - "question_id": 48931, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006597", - "question_id": 48933, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000185", - "question_id": 48934, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008879", - "question_id": 48935, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002273", - "question_id": 48936, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006337", - "question_id": 48937, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004166", - "question_id": 48938, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008277", - "question_id": 48939, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000409", - "question_id": 48940, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00002157", - "question_id": 48944, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006493", - "question_id": 48947, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004180", - "question_id": 48949, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000146", - "question_id": 48950, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "va00004618", - "question_id": 48951, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00004540", - "question_id": 48953, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001501", - "question_id": 48954, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006858", - "question_id": 48955, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000813", - "question_id": 48956, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003144", - "question_id": 48957, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002762", - "question_id": 48961, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003565", - "question_id": 48963, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000254", - "question_id": 48964, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000451", - "question_id": 48966, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000451", - "question_id": 48966, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005005", - "question_id": 48971, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "eva00000736", - "question_id": 48973, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000564", - "question_id": 48975, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003498", - "question_id": 48976, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008110", - "question_id": 48977, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "sa00007276", - "question_id": 48980, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00001969", - "question_id": 48982, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "sa00007613", - "question_id": 48984, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00000537", - "question_id": 48985, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "sa00006859", - "question_id": 48986, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000285", - "question_id": 48989, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "eva00000727", - "question_id": 48990, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000393", - "question_id": 48992, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005468", - "question_id": 48993, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "sa00008768", - "question_id": 48994, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"xylophone\", \"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006968", - "question_id": 48995, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003665", - "question_id": 48999, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "eva00000882", - "question_id": 49001, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000560", - "question_id": 49002, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004948", - "question_id": 49003, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000005", - "question_id": 49006, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006180", - "question_id": 49009, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007043", - "question_id": 49010, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"xylophone\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008327", - "question_id": 49014, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008857", - "question_id": 49016, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00008601", - "question_id": 49023, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "esa00000632", - "question_id": 49024, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002952", - "question_id": 49029, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008053", - "question_id": 49031, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007726", - "question_id": 49034, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005215", - "question_id": 49036, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008817", - "question_id": 49037, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007681", - "question_id": 49038, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001826", - "question_id": 49039, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002315", - "question_id": 49040, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005473", - "question_id": 49041, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000524", - "question_id": 49042, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00000658", - "question_id": 49043, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "esa00000288", - "question_id": 49044, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "eva00000861", - "question_id": 49045, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001094", - "question_id": 49049, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005683", - "question_id": 49050, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "eva00000875", - "question_id": 49051, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003189", - "question_id": 49053, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "sa00008395", - "question_id": 49056, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00005368", - "question_id": 49058, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000439", - "question_id": 49059, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "sa00007194", - "question_id": 49060, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00008032", - "question_id": 49061, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003965", - "question_id": 49062, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007311", - "question_id": 49063, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "sa00006435", - "question_id": 49066, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "sa00008250", - "question_id": 49067, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "sa00007605", - "question_id": 49068, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000651", - "question_id": 49069, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002884", - "question_id": 49070, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006821", - "question_id": 49072, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008091", - "question_id": 49073, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00007982", - "question_id": 49074, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00000892", - "question_id": 49077, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000343", - "question_id": 49078, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007063", - "question_id": 49079, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001190", - "question_id": 49081, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005812", - "question_id": 49085, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00002429", - "question_id": 49086, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008340", - "question_id": 49089, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00008608", - "question_id": 49090, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "esa00000569", - "question_id": 49091, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "esa00000017", - "question_id": 49092, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"xylophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000901", - "question_id": 49093, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005631", - "question_id": 49094, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"ukulele\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000103", - "question_id": 49095, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006605", - "question_id": 49097, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000202", - "question_id": 49100, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000388", - "question_id": 49102, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002017", - "question_id": 49103, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"congas\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004007", - "question_id": 49105, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00006723", - "question_id": 49106, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005596", - "question_id": 49107, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007460", - "question_id": 49108, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007188", - "question_id": 49111, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000354", - "question_id": 49112, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007777", - "question_id": 49113, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005701", - "question_id": 49114, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"ukulele\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00002728", - "question_id": 49115, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001517", - "question_id": 49116, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002088", - "question_id": 49118, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004783", - "question_id": 49120, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001109", - "question_id": 49123, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00000687", - "question_id": 49124, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001339", - "question_id": 49125, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "eva00001129", - "question_id": 49126, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00002338", - "question_id": 49127, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000042", - "question_id": 49128, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000136", - "question_id": 49129, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005778", - "question_id": 49130, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00003485", - "question_id": 49132, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006892", - "question_id": 49134, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007663", - "question_id": 49135, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005147", - "question_id": 49136, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000435", - "question_id": 49139, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00007548", - "question_id": 49140, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"electric_bass\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000801", - "question_id": 49142, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "esa00000303", - "question_id": 49145, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00001690", - "question_id": 49148, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007069", - "question_id": 49152, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000425", - "question_id": 49153, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007140", - "question_id": 49154, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00007600", - "question_id": 49155, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "evv00001454", - "question_id": 49156, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001104", - "question_id": 49157, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000660", - "question_id": 49163, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007413", - "question_id": 49164, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00002462", - "question_id": 49166, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000585", - "question_id": 49169, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"trumpet\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "esa00000157", - "question_id": 49173, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003581", - "question_id": 49174, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000617", - "question_id": 49176, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006256", - "question_id": 49177, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00005991", - "question_id": 49178, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008900", - "question_id": 49182, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001211", - "question_id": 49183, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008508", - "question_id": 49184, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003300", - "question_id": 49185, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006707", - "question_id": 49186, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00004871", - "question_id": 49187, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000414", - "question_id": 49188, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002285", - "question_id": 49190, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00002111", - "question_id": 49191, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"flute\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00001045", - "question_id": 49192, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "vv00002507", - "question_id": 49196, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000528", - "question_id": 49197, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00000313", - "question_id": 49199, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001760", - "question_id": 49200, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001290", - "question_id": 49203, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006816", - "question_id": 49205, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006784", - "question_id": 49208, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00006669", - "question_id": 49210, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "eva00001206", - "question_id": 49211, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "esa00000677", - "question_id": 49212, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006336", - "question_id": 49213, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "sa00008768", - "question_id": 49214, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00000313", - "question_id": 49215, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "evv00001315", - "question_id": 49216, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "sa00007203", - "question_id": 49217, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000659", - "question_id": 49219, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000337", - "question_id": 49221, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "va00003156", - "question_id": 49222, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "esa00000292", - "question_id": 49223, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006241", - "question_id": 49224, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "sa00008827", - "question_id": 49225, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bagpipe\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000520", - "question_id": 49227, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bagpipe\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002703", - "question_id": 49228, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000210", - "question_id": 49229, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006435", - "question_id": 49230, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"congas\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000265", - "question_id": 49231, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000263", - "question_id": 49232, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005900", - "question_id": 49233, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00004486", - "question_id": 49234, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00004263", - "question_id": 49235, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "va00005507", - "question_id": 49236, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004767", - "question_id": 49237, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008600", - "question_id": 49239, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bagpipe\", \"left\", \"bagpipe\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002089", - "question_id": 49241, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000839", - "question_id": 49242, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005094", - "question_id": 49243, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"xylophone\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005365", - "question_id": 49246, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000213", - "question_id": 49247, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000459", - "question_id": 49248, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"tuba\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003165", - "question_id": 49249, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"electric_bass\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000642", - "question_id": 49250, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008206", - "question_id": 49251, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00004754", - "question_id": 49252, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001197", - "question_id": 49253, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"pipa\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000223", - "question_id": 49255, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002193", - "question_id": 49257, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004280", - "question_id": 49258, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "evv00001302", - "question_id": 49259, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000418", - "question_id": 49260, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000698", - "question_id": 49264, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"last\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "esa00000240", - "question_id": 49267, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000569", - "question_id": 49271, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000349", - "question_id": 49272, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006249", - "question_id": 49274, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "esa00000425", - "question_id": 49276, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006064", - "question_id": 49277, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "eva00000814", - "question_id": 49279, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007033", - "question_id": 49280, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "eva00001175", - "question_id": 49283, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002909", - "question_id": 49286, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000626", - "question_id": 49287, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "esa00000240", - "question_id": 49289, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00000168", - "question_id": 49293, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00007321", - "question_id": 49298, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000581", - "question_id": 49299, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000667", - "question_id": 49300, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00003033", - "question_id": 49305, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"suona\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008887", - "question_id": 49308, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007960", - "question_id": 49309, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001358", - "question_id": 49311, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003530", - "question_id": 49317, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002275", - "question_id": 49319, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00003886", - "question_id": 49321, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008029", - "question_id": 49326, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002350", - "question_id": 49327, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007366", - "question_id": 49329, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000372", - "question_id": 49331, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "va00004687", - "question_id": 49334, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00006756", - "question_id": 49335, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "esa00000162", - "question_id": 49342, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00008048", - "question_id": 49343, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004628", - "question_id": 49346, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00007091", - "question_id": 49349, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000272", - "question_id": 49351, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "sa00007997", - "question_id": 49354, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002754", - "question_id": 49356, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bagpipe\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002340", - "question_id": 49357, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005652", - "question_id": 49358, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "eva00001028", - "question_id": 49360, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003337", - "question_id": 49361, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00006819", - "question_id": 49363, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003691", - "question_id": 49367, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00001046", - "question_id": 49368, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006818", - "question_id": 49370, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "eva00000981", - "question_id": 49373, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007209", - "question_id": 49375, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00006931", - "question_id": 49376, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00001912", - "question_id": 49377, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "eva00001056", - "question_id": 49379, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005679", - "question_id": 49381, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007452", - "question_id": 49382, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"suona\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001277", - "question_id": 49384, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000960", - "question_id": 49391, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000222", - "question_id": 49392, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000622", - "question_id": 49393, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006898", - "question_id": 49395, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000360", - "question_id": 49396, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "va00005403", - "question_id": 49397, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "va00003645", - "question_id": 49399, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00004621", - "question_id": 49400, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000041", - "question_id": 49401, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001189", - "question_id": 49403, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006575", - "question_id": 49404, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "esa00000303", - "question_id": 49406, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001121", - "question_id": 49410, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001310", - "question_id": 49412, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000875", - "question_id": 49415, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000477", - "question_id": 49417, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005491", - "question_id": 49419, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002296", - "question_id": 49420, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004387", - "question_id": 49421, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000508", - "question_id": 49423, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007055", - "question_id": 49425, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "esa00000281", - "question_id": 49427, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bassoon\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004175", - "question_id": 49428, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00004722", - "question_id": 49429, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00006945", - "question_id": 49430, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000981", - "question_id": 49432, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "esa00000451", - "question_id": 49433, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002091", - "question_id": 49436, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004905", - "question_id": 49437, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "evv00001325", - "question_id": 49439, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006858", - "question_id": 49440, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bassoon\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003972", - "question_id": 49441, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - } -] \ No newline at end of file diff --git a/data/json/avqa-train_fake.json b/data/json/avqa-train_fake.json deleted file mode 100644 index 96c434d..0000000 --- a/data/json/avqa-train_fake.json +++ /dev/null @@ -1,49865 +0,0 @@ -[{ - "video_id": "va00003770", - "question_id": 28153, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00005991", - "question_id": 28157, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00007804", - "question_id": 28161, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00008538", - "question_id": 28163, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00008488", - "question_id": 28165, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "va00005351", - "question_id": 28167, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "va00005224", - "question_id": 28188, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "sa00008037", - "question_id": 28192, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00007373", - "question_id": 28194, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00006317", - "question_id": 28200, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00006092", - "question_id": 28216, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00008827", - "question_id": 28221, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "va00004030", - "question_id": 28223, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00005983", - "question_id": 28224, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00006684", - "question_id": 28225, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00007117", - "question_id": 28231, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "vv00000572", - "question_id": 28234, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007027", - "question_id": 28235, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "va00005758", - "question_id": 28240, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "va00004993", - "question_id": 28245, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00007474", - "question_id": 28248, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00008937", - "question_id": 28251, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00006962", - "question_id": 28274, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "sa00008757", - "question_id": 28279, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00006569", - "question_id": 28280, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "va00004282", - "question_id": 28285, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "va00003692", - "question_id": 28297, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00006849", - "question_id": 28298, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "vv00000404", - "question_id": 28299, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "va00005545", - "question_id": 28313, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "sa00007354", - "question_id": 28320, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "va00003173", - "question_id": 28328, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "sa00006476", - "question_id": 28342, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "va00003409", - "question_id": 28346, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00006122", - "question_id": 28352, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "sa00006306", - "question_id": 28353, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "va00005215", - "question_id": 28362, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "va00004989", - "question_id": 28369, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "vv00002544", - "question_id": 28371, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00008429", - "question_id": 28389, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "sa00006725", - "question_id": 28398, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "vv00000203", - "question_id": 28402, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "vv00003080", - "question_id": 28403, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "vv00002841", - "question_id": 28407, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000052", - "question_id": 28409, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "va00005831", - "question_id": 28410, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "va00003477", - "question_id": 28416, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "vv00002845", - "question_id": 28420, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00008757", - "question_id": 28433, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "va00005914", - "question_id": 28438, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "sa00006871", - "question_id": 28444, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "vv00002309", - "question_id": 28463, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000558", - "question_id": 28466, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "va00003159", - "question_id": 28491, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "va00003961", - "question_id": 28495, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "va00004639", - "question_id": 28500, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00008866", - "question_id": 28522, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "va00004451", - "question_id": 28525, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "vv00000262", - "question_id": 28531, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"xylophone\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003495", - "question_id": 28556, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "vv00000406", - "question_id": 28566, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "va00004009", - "question_id": 28567, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "sa00008255", - "question_id": 28569, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "va00004040", - "question_id": 28572, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "sa00007029", - "question_id": 28575, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "sa00006747", - "question_id": 28579, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "vv00002429", - "question_id": 28595, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006492", - "question_id": 28598, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004320", - "question_id": 28600, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "vv00002643", - "question_id": 28624, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"trumpet\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000639", - "question_id": 28628, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "vv00003001", - "question_id": 28633, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "vv00000216", - "question_id": 28640, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002909", - "question_id": 28654, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"xylophone\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006533", - "question_id": 28669, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "sa00007068", - "question_id": 28674, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "va00005332", - "question_id": 28679, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007330", - "question_id": 28684, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007496", - "question_id": 28685, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bagpipe\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000515", - "question_id": 28687, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "va00003400", - "question_id": 28692, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "va00003992", - "question_id": 28706, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "va00005796", - "question_id": 28713, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "vv00002752", - "question_id": 28714, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000394", - "question_id": 28719, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007584", - "question_id": 28722, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "sa00006249", - "question_id": 28727, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "vv00002792", - "question_id": 28740, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006237", - "question_id": 28746, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008876", - "question_id": 28762, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "va00004157", - "question_id": 28768, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004543", - "question_id": 28780, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "sa00007060", - "question_id": 28785, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "sa00008089", - "question_id": 28787, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "sa00006937", - "question_id": 28801, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00006930", - "question_id": 28805, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000221", - "question_id": 28814, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "sa00006337", - "question_id": 28818, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "sa00006567", - "question_id": 28825, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004040", - "question_id": 28831, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007697", - "question_id": 28832, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "sa00008165", - "question_id": 28834, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "va00004916", - "question_id": 28845, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003900", - "question_id": 28868, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "va00005203", - "question_id": 28874, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "sa00006972", - "question_id": 28887, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "vv00002728", - "question_id": 28889, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007804", - "question_id": 28893, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000203", - "question_id": 28896, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "sa00008927", - "question_id": 28898, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00008963", - "question_id": 28900, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "vv00002511", - "question_id": 28905, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "va00004294", - "question_id": 28911, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005171", - "question_id": 28915, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00006725", - "question_id": 28917, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008609", - "question_id": 28920, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007602", - "question_id": 28922, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008743", - "question_id": 28927, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "va00004546", - "question_id": 28931, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005578", - "question_id": 28934, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005508", - "question_id": 28938, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "va00003539", - "question_id": 28939, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "vv00000121", - "question_id": 28947, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003409", - "question_id": 28960, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "vv00000383", - "question_id": 28970, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005816", - "question_id": 28972, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "va00003255", - "question_id": 29027, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "va00004149", - "question_id": 29039, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "va00003276", - "question_id": 29043, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "va00005224", - "question_id": 29056, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "va00003229", - "question_id": 29088, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "sa00007890", - "question_id": 29101, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "sa00007648", - "question_id": 29104, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "sa00007155", - "question_id": 29108, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "sa00007194", - "question_id": 29112, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "va00005574", - "question_id": 29142, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "va00005677", - "question_id": 29164, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "va00005453", - "question_id": 29183, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "va00004265", - "question_id": 29185, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "sa00006475", - "question_id": 29196, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007155", - "question_id": 29205, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00007909", - "question_id": 29211, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006547", - "question_id": 29226, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "sa00006095", - "question_id": 29232, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "va00005851", - "question_id": 29234, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005506", - "question_id": 29235, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "va00004249", - "question_id": 29237, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003267", - "question_id": 29238, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006820", - "question_id": 29239, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "sa00007621", - "question_id": 29242, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bagpipe\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007118", - "question_id": 29259, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"xylophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008661", - "question_id": 29264, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00006571", - "question_id": 29267, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003585", - "question_id": 29275, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008608", - "question_id": 29279, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "va00004279", - "question_id": 29290, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "sa00006808", - "question_id": 29291, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "sa00007256", - "question_id": 29299, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "sa00008563", - "question_id": 29302, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "sa00006857", - "question_id": 29303, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "sa00007942", - "question_id": 29309, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "vv00002555", - "question_id": 29311, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00005983", - "question_id": 29314, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004999", - "question_id": 29320, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003473", - "question_id": 29328, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "va00003929", - "question_id": 29330, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "va00003105", - "question_id": 29334, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "sa00007060", - "question_id": 29337, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "vv00002533", - "question_id": 29349, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004451", - "question_id": 29360, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "vv00002750", - "question_id": 29363, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "sa00007154", - "question_id": 29364, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "vv00000336", - "question_id": 29365, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "vv00000255", - "question_id": 29367, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008650", - "question_id": 29369, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "vv00000550", - "question_id": 29370, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000614", - "question_id": 29389, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000282", - "question_id": 29399, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007774", - "question_id": 29415, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "sa00007782", - "question_id": 29421, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "vv00002964", - "question_id": 29429, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00007371", - "question_id": 29438, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007433", - "question_id": 29442, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007585", - "question_id": 29444, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "sa00008905", - "question_id": 29458, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000091", - "question_id": 29465, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003951", - "question_id": 29483, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bagpipe\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004351", - "question_id": 29488, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "va00003585", - "question_id": 29490, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00008456", - "question_id": 29512, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "vv00008937", - "question_id": 29519, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"pipa\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008037", - "question_id": 29540, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "va00004473", - "question_id": 29546, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000365", - "question_id": 29553, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "va00004404", - "question_id": 29564, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "vv00000282", - "question_id": 29568, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "va00003844", - "question_id": 29581, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00007390", - "question_id": 29604, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "vv00002632", - "question_id": 29606, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "sa00008456", - "question_id": 29610, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "va00004906", - "question_id": 29611, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003539", - "question_id": 29616, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006249", - "question_id": 29627, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "va00005537", - "question_id": 29630, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "va00005060", - "question_id": 29634, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00006221", - "question_id": 29641, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "va00005506", - "question_id": 29644, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "va00004801", - "question_id": 29662, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "va00003696", - "question_id": 29667, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"suona\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004469", - "question_id": 29685, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008138", - "question_id": 29690, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003094", - "question_id": 29701, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003531", - "question_id": 29708, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "sa00006910", - "question_id": 29712, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00006545", - "question_id": 29729, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "va00004708", - "question_id": 29739, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005289", - "question_id": 29741, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "va00004655", - "question_id": 29745, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00006295", - "question_id": 29748, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "va00005759", - "question_id": 29752, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007680", - "question_id": 29774, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "sa00007601", - "question_id": 29777, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "vv00000052", - "question_id": 29789, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007308", - "question_id": 29792, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "sa00007083", - "question_id": 29797, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005577", - "question_id": 29799, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000518", - "question_id": 29805, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "va00003494", - "question_id": 29806, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "va00003845", - "question_id": 29808, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "va00004965", - "question_id": 29817, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00006930", - "question_id": 29820, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00007151", - "question_id": 29827, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "vv00000255", - "question_id": 29833, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006221", - "question_id": 29837, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004620", - "question_id": 29839, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "va00004581", - "question_id": 29840, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "va00003692", - "question_id": 29841, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "sa00007974", - "question_id": 29851, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00007585", - "question_id": 29852, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "sa00006590", - "question_id": 29859, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "sa00008532", - "question_id": 29871, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008937", - "question_id": 29873, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "va00003137", - "question_id": 29888, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "va00005713", - "question_id": 29899, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "va00004569", - "question_id": 29909, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002643", - "question_id": 29917, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"trumpet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "vv00000233", - "question_id": 29929, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "sa00008611", - "question_id": 29937, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "sa00008059", - "question_id": 29940, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "va00005373", - "question_id": 29953, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "vv00003080", - "question_id": 29954, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"right\", \"tuba\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000161", - "question_id": 29963, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004002", - "question_id": 29989, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "sa00006533", - "question_id": 29995, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "vv00002633", - "question_id": 30002, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "vv00003065", - "question_id": 30004, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "va00003622", - "question_id": 30017, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "sa00007648", - "question_id": 30019, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "va00005568", - "question_id": 30020, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "va00005909", - "question_id": 30024, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "va00003816", - "question_id": 30027, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "va00004384", - "question_id": 30030, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "sa00006780", - "question_id": 30041, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "va00003229", - "question_id": 30058, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00006879", - "question_id": 30063, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00007455", - "question_id": 30064, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "va00004596", - "question_id": 30073, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "vv00002322", - "question_id": 30080, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "sa00008493", - "question_id": 30082, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "vv00000322", - "question_id": 30083, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003088", - "question_id": 30098, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004299", - "question_id": 30109, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "va00004618", - "question_id": 30116, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "sa00007854", - "question_id": 30118, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "va00005307", - "question_id": 30123, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "vv00003027", - "question_id": 30130, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bagpipe\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004000", - "question_id": 30132, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "va00004863", - "question_id": 30133, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00007680", - "question_id": 30139, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "vv00003065", - "question_id": 30144, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005165", - "question_id": 30162, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "vv00003076", - "question_id": 30166, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006694", - "question_id": 30170, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "va00004030", - "question_id": 30183, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "va00005461", - "question_id": 30190, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "sa00006847", - "question_id": 30193, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00007424", - "question_id": 30195, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00002667", - "question_id": 30208, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005427", - "question_id": 30212, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "va00004531", - "question_id": 30213, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "vv00002935", - "question_id": 30219, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005342", - "question_id": 30223, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "va00004822", - "question_id": 30226, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "vv00000081", - "question_id": 30234, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "va00003951", - "question_id": 30235, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "sa00008646", - "question_id": 30237, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "va00005565", - "question_id": 30245, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006826", - "question_id": 30248, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "sa00007433", - "question_id": 30259, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "vv00003078", - "question_id": 30266, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004962", - "question_id": 30269, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "vv00000203", - "question_id": 30277, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "sa00008869", - "question_id": 30288, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "va00004338", - "question_id": 30318, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "sa00007585", - "question_id": 30329, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "va00005393", - "question_id": 30345, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00005458", - "question_id": 30371, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"xylophone\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "vv00002988", - "question_id": 30393, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "va00005586", - "question_id": 30400, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008743", - "question_id": 30428, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003838", - "question_id": 30429, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00006278", - "question_id": 30436, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "sa00007216", - "question_id": 30444, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "va00005830", - "question_id": 30452, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"ukulele\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "va00005529", - "question_id": 30466, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "sa00007434", - "question_id": 30470, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000336", - "question_id": 30474, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "va00004431", - "question_id": 30477, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00002852", - "question_id": 30489, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "vv00002873", - "question_id": 30491, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "va00005184", - "question_id": 30509, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "vv00000302", - "question_id": 30516, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "sa00006859", - "question_id": 30520, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000396", - "question_id": 30526, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "sa00008795", - "question_id": 30529, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "va00005970", - "question_id": 30554, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "va00003692", - "question_id": 30563, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "sa00007721", - "question_id": 30573, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "va00005553", - "question_id": 30577, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000096", - "question_id": 30581, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "vv00000173", - "question_id": 30590, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "vv00000110", - "question_id": 30610, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000348", - "question_id": 30613, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "va00003767", - "question_id": 30635, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "vv00000646", - "question_id": 30639, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "va00005279", - "question_id": 30641, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "vv00000394", - "question_id": 30642, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003817", - "question_id": 30643, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "sa00008332", - "question_id": 30647, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "vv00002956", - "question_id": 30656, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "sa00006227", - "question_id": 30660, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "vv00002956", - "question_id": 30665, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006409", - "question_id": 30687, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004335", - "question_id": 30689, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "vv00000125", - "question_id": 30696, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "vv00003076", - "question_id": 30710, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "vv00000492", - "question_id": 30720, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "va00004028", - "question_id": 30726, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "sa00008493", - "question_id": 30730, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "vv00008936", - "question_id": 30733, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "vv00003053", - "question_id": 30742, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000518", - "question_id": 30745, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"congas\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "va00004000", - "question_id": 30746, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "vv00000492", - "question_id": 30763, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005295", - "question_id": 30780, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "va00003890", - "question_id": 30782, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "vv00000361", - "question_id": 30788, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "sa00008245", - "question_id": 30798, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "sa00007077", - "question_id": 30803, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "vv00002693", - "question_id": 30816, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006575", - "question_id": 30832, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000554", - "question_id": 30842, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "vv00000011", - "question_id": 30845, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "sa00008841", - "question_id": 30854, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "sa00007332", - "question_id": 30857, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "vv00000196", - "question_id": 30871, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "va00004989", - "question_id": 30880, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"xylophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005351", - "question_id": 30882, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "va00003376", - "question_id": 30890, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "sa00006808", - "question_id": 30932, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "vv00000236", - "question_id": 30945, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "sa00006224", - "question_id": 30951, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "sa00006940", - "question_id": 31001, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006571", - "question_id": 31021, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005970", - "question_id": 31033, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008089", - "question_id": 31035, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007648", - "question_id": 31036, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007817", - "question_id": 31039, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005914", - "question_id": 31054, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00000219", - "question_id": 31055, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00000229", - "question_id": 31057, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004498", - "question_id": 31062, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007373", - "question_id": 31063, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004596", - "question_id": 31070, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005723", - "question_id": 31081, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006235", - "question_id": 31082, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004149", - "question_id": 31092, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000455", - "question_id": 31097, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008395", - "question_id": 31098, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000460", - "question_id": 31101, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00008695", - "question_id": 31106, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002786", - "question_id": 31108, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004351", - "question_id": 31121, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005364", - "question_id": 31123, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007932", - "question_id": 31127, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005518", - "question_id": 31137, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000013", - "question_id": 31138, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003229", - "question_id": 31143, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006880", - "question_id": 31144, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008187", - "question_id": 31145, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006671", - "question_id": 31150, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006026", - "question_id": 31154, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003333", - "question_id": 31172, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008206", - "question_id": 31178, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004620", - "question_id": 31183, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004801", - "question_id": 31185, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006635", - "question_id": 31188, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008420", - "question_id": 31210, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004710", - "question_id": 31219, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006738", - "question_id": 31220, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008092", - "question_id": 31269, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008751", - "question_id": 31274, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003383", - "question_id": 31280, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00008284", - "question_id": 31282, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007134", - "question_id": 31285, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003817", - "question_id": 31288, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004863", - "question_id": 31289, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004627", - "question_id": 31312, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004279", - "question_id": 31318, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005461", - "question_id": 31321, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008156", - "question_id": 31334, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006985", - "question_id": 31335, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002533", - "question_id": 31338, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000125", - "question_id": 31339, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007216", - "question_id": 31341, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008429", - "question_id": 31351, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005052", - "question_id": 31352, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005226", - "question_id": 31354, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008741", - "question_id": 31355, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000282", - "question_id": 31360, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007308", - "question_id": 31365, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004948", - "question_id": 31368, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000255", - "question_id": 31376, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00008652", - "question_id": 31391, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004978", - "question_id": 31392, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005627", - "question_id": 31400, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "vv00002826", - "question_id": 31407, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007178", - "question_id": 31420, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005520", - "question_id": 31432, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008375", - "question_id": 31437, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00002748", - "question_id": 31445, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "va00003495", - "question_id": 31446, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003125", - "question_id": 31450, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000507", - "question_id": 31455, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "sa00007272", - "question_id": 31459, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004103", - "question_id": 31460, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008068", - "question_id": 31461, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000572", - "question_id": 31477, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008841", - "question_id": 31479, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005831", - "question_id": 31484, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002544", - "question_id": 31496, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006002", - "question_id": 31501, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003113", - "question_id": 31505, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000196", - "question_id": 31507, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004627", - "question_id": 31509, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008700", - "question_id": 31514, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008700", - "question_id": 31514, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005891", - "question_id": 31515, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004265", - "question_id": 31527, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004620", - "question_id": 31538, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003791", - "question_id": 31545, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002764", - "question_id": 31546, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "vv00000125", - "question_id": 31557, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004677", - "question_id": 31558, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006119", - "question_id": 31564, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008905", - "question_id": 31572, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00005975", - "question_id": 31579, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006054", - "question_id": 31583, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007561", - "question_id": 31587, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000255", - "question_id": 31596, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008693", - "question_id": 31597, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004374", - "question_id": 31608, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003334", - "question_id": 31610, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00002693", - "question_id": 31619, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004655", - "question_id": 31638, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000638", - "question_id": 31640, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005238", - "question_id": 31642, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005713", - "question_id": 31653, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008110", - "question_id": 31654, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003356", - "question_id": 31658, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005453", - "question_id": 31663, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003464", - "question_id": 31667, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003363", - "question_id": 31672, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005572", - "question_id": 31677, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008039", - "question_id": 31685, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007276", - "question_id": 31689, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008817", - "question_id": 31703, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000089", - "question_id": 31705, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "va00005787", - "question_id": 31707, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003982", - "question_id": 31708, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007326", - "question_id": 31713, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002308", - "question_id": 31715, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00000308", - "question_id": 31735, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "sa00006317", - "question_id": 31736, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007435", - "question_id": 31737, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003306", - "question_id": 31747, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007434", - "question_id": 31748, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008868", - "question_id": 31753, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006941", - "question_id": 31762, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000236", - "question_id": 31763, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"tuba\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "sa00007598", - "question_id": 31769, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006296", - "question_id": 31774, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008654", - "question_id": 31778, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003256", - "question_id": 31781, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005668", - "question_id": 31782, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005226", - "question_id": 31784, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005347", - "question_id": 31800, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005086", - "question_id": 31801, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007216", - "question_id": 31805, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00002616", - "question_id": 31806, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008456", - "question_id": 31808, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000538", - "question_id": 31809, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bagpipe\", \"right\", \"bagpipe\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00005975", - "question_id": 31812, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005299", - "question_id": 31831, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "vv00003080", - "question_id": 31841, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007711", - "question_id": 31847, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004902", - "question_id": 31849, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000653", - "question_id": 31854, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006780", - "question_id": 31855, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002308", - "question_id": 31859, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003654", - "question_id": 31860, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004125", - "question_id": 31869, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007726", - "question_id": 31874, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007726", - "question_id": 31874, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000013", - "question_id": 31880, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00002826", - "question_id": 31885, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000221", - "question_id": 31888, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00002689", - "question_id": 31895, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "va00004137", - "question_id": 31896, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "va00004137", - "question_id": 31896, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00000257", - "question_id": 31906, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003919", - "question_id": 31907, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005574", - "question_id": 31910, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003894", - "question_id": 31912, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004284", - "question_id": 31920, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006824", - "question_id": 31943, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000219", - "question_id": 31952, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007643", - "question_id": 31954, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004762", - "question_id": 31958, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006891", - "question_id": 31963, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007330", - "question_id": 31965, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005912", - "question_id": 31970, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008603", - "question_id": 31976, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006432", - "question_id": 31978, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005040", - "question_id": 31984, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007782", - "question_id": 31991, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006435", - "question_id": 32001, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003654", - "question_id": 32006, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006103", - "question_id": 32014, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004491", - "question_id": 32019, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000525", - "question_id": 32025, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006940", - "question_id": 32028, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "va00005520", - "question_id": 32036, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004491", - "question_id": 32038, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006198", - "question_id": 32048, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006859", - "question_id": 32054, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00005987", - "question_id": 32060, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002873", - "question_id": 32072, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006451", - "question_id": 32080, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003157", - "question_id": 32081, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006667", - "question_id": 32082, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004211", - "question_id": 32088, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004717", - "question_id": 32090, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004887", - "question_id": 32093, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003473", - "question_id": 32094, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006219", - "question_id": 32095, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000173", - "question_id": 32100, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007668", - "question_id": 32104, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006545", - "question_id": 32115, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003376", - "question_id": 32123, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003845", - "question_id": 32127, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004702", - "question_id": 32131, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000323", - "question_id": 32136, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003517", - "question_id": 32138, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003934", - "question_id": 32150, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007139", - "question_id": 32164, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005545", - "question_id": 32165, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008876", - "question_id": 32173, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006747", - "question_id": 32174, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005564", - "question_id": 32177, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005111", - "question_id": 32178, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000491", - "question_id": 32184, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003461", - "question_id": 32186, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003816", - "question_id": 32189, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002978", - "question_id": 32192, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003815", - "question_id": 32196, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007932", - "question_id": 32197, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004473", - "question_id": 32198, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000421", - "question_id": 32204, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003268", - "question_id": 32205, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000447", - "question_id": 32209, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003125", - "question_id": 32213, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005458", - "question_id": 32228, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"suona\", \"left\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003813", - "question_id": 32229, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007711", - "question_id": 32230, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006119", - "question_id": 32235, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005734", - "question_id": 32239, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008679", - "question_id": 32240, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006558", - "question_id": 32241, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004786", - "question_id": 32248, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008768", - "question_id": 32250, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003531", - "question_id": 32257, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005041", - "question_id": 32261, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006111", - "question_id": 32267, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006833", - "question_id": 32277, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006306", - "question_id": 32283, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003383", - "question_id": 32296, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005891", - "question_id": 32301, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000239", - "question_id": 32303, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005130", - "question_id": 32304, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004710", - "question_id": 32310, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003157", - "question_id": 32316, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006891", - "question_id": 32317, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007406", - "question_id": 32321, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006311", - "question_id": 32324, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007785", - "question_id": 32331, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007154", - "question_id": 32343, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003770", - "question_id": 32348, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005780", - "question_id": 32351, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003507", - "question_id": 32352, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003675", - "question_id": 32356, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007768", - "question_id": 32361, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006257", - "question_id": 32365, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008889", - "question_id": 32367, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005753", - "question_id": 32372, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006556", - "question_id": 32374, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006590", - "question_id": 32381, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005923", - "question_id": 32386, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003400", - "question_id": 32391, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "vv00000091", - "question_id": 32392, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003396", - "question_id": 32394, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006738", - "question_id": 32400, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003791", - "question_id": 32405, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004580", - "question_id": 32410, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003891", - "question_id": 32424, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006547", - "question_id": 32429, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006257", - "question_id": 32439, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000345", - "question_id": 32444, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008611", - "question_id": 32449, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006119", - "question_id": 32458, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000369", - "question_id": 32461, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"suona\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008641", - "question_id": 32468, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00002711", - "question_id": 32476, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006503", - "question_id": 32477, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005573", - "question_id": 32488, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000653", - "question_id": 32491, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005174", - "question_id": 32492, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004242", - "question_id": 32495, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003137", - "question_id": 32498, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005891", - "question_id": 32502, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003125", - "question_id": 32505, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002618", - "question_id": 32507, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000302", - "question_id": 32512, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007496", - "question_id": 32515, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006534", - "question_id": 32522, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006088", - "question_id": 32524, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008081", - "question_id": 32526, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000507", - "question_id": 32531, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00003052", - "question_id": 32541, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003376", - "question_id": 32548, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005079", - "question_id": 32550, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007474", - "question_id": 32551, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00002779", - "question_id": 32565, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003284", - "question_id": 32568, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004773", - "question_id": 32572, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005677", - "question_id": 32575, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007576", - "question_id": 32576, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002935", - "question_id": 32577, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007721", - "question_id": 32580, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002841", - "question_id": 32586, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "sa00008772", - "question_id": 32600, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00003065", - "question_id": 32604, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008320", - "question_id": 32609, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007077", - "question_id": 32613, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004901", - "question_id": 32618, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006985", - "question_id": 32623, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005862", - "question_id": 32630, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006340", - "question_id": 32631, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005923", - "question_id": 32637, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004443", - "question_id": 32647, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008136", - "question_id": 32649, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006985", - "question_id": 32650, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004000", - "question_id": 32659, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004025", - "question_id": 32661, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004320", - "question_id": 32662, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003813", - "question_id": 32663, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006295", - "question_id": 32679, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000531", - "question_id": 32682, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00008219", - "question_id": 32691, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008544", - "question_id": 32695, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00002776", - "question_id": 32697, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "va00005577", - "question_id": 32701, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005753", - "question_id": 32705, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008488", - "question_id": 32708, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007785", - "question_id": 32712, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004978", - "question_id": 32721, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004609", - "question_id": 32725, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003845", - "question_id": 32727, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000099", - "question_id": 32731, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004059", - "question_id": 32732, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003882", - "question_id": 32746, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006940", - "question_id": 32757, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008312", - "question_id": 32759, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000216", - "question_id": 32763, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003473", - "question_id": 32771, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008400", - "question_id": 32772, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005584", - "question_id": 32773, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006235", - "question_id": 32785, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008723", - "question_id": 32794, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007746", - "question_id": 32795, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004618", - "question_id": 32798, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005341", - "question_id": 32799, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00000298", - "question_id": 32802, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004436", - "question_id": 32804, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003369", - "question_id": 32805, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007695", - "question_id": 32806, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000177", - "question_id": 32810, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003456", - "question_id": 32816, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006780", - "question_id": 32817, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003609", - "question_id": 32820, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00002421", - "question_id": 32821, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007354", - "question_id": 32823, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003670", - "question_id": 32827, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000219", - "question_id": 32829, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "sa00007117", - "question_id": 32830, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003894", - "question_id": 32832, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003456", - "question_id": 32833, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004034", - "question_id": 32839, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003464", - "question_id": 32846, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004773", - "question_id": 32849, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003465", - "question_id": 32857, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004294", - "question_id": 32859, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007705", - "question_id": 32866, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007383", - "question_id": 32874, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007383", - "question_id": 32878, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004526", - "question_id": 32879, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007149", - "question_id": 32886, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004561", - "question_id": 32896, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002386", - "question_id": 32898, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "sa00008927", - "question_id": 32903, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007166", - "question_id": 32909, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000302", - "question_id": 32910, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006606", - "question_id": 32918, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008751", - "question_id": 32921, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007435", - "question_id": 32922, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002667", - "question_id": 32930, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00000611", - "question_id": 32935, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00008053", - "question_id": 32937, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002964", - "question_id": 32943, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "sa00007154", - "question_id": 32944, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008841", - "question_id": 32952, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002786", - "question_id": 32956, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003313", - "question_id": 32957, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008291", - "question_id": 32961, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007043", - "question_id": 32962, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005796", - "question_id": 32963, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002546", - "question_id": 32971, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00000268", - "question_id": 32973, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003229", - "question_id": 32981, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004125", - "question_id": 32982, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008420", - "question_id": 32986, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00008963", - "question_id": 32996, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "va00003517", - "question_id": 32997, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003409", - "question_id": 33000, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006476", - "question_id": 33013, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006311", - "question_id": 33014, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007544", - "question_id": 33021, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008110", - "question_id": 33022, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005577", - "question_id": 33024, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002416", - "question_id": 33029, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "va00004916", - "question_id": 33032, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005427", - "question_id": 33044, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006602", - "question_id": 33045, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005519", - "question_id": 33048, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005345", - "question_id": 33051, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005068", - "question_id": 33052, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002309", - "question_id": 33057, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004329", - "question_id": 33060, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002774", - "question_id": 33067, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007747", - "question_id": 33070, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007445", - "question_id": 33073, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008367", - "question_id": 33078, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008367", - "question_id": 33078, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005823", - "question_id": 33080, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005964", - "question_id": 33085, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003943", - "question_id": 33092, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003156", - "question_id": 33093, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000011", - "question_id": 33100, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003244", - "question_id": 33103, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007920", - "question_id": 33104, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004462", - "question_id": 33108, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005002", - "question_id": 33113, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006199", - "question_id": 33122, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002978", - "question_id": 33138, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003696", - "question_id": 33141, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006725", - "question_id": 33153, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005037", - "question_id": 33154, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007721", - "question_id": 33155, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007680", - "question_id": 33158, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000469", - "question_id": 33161, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007462", - "question_id": 33163, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003704", - "question_id": 33184, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002639", - "question_id": 33185, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006141", - "question_id": 33186, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005211", - "question_id": 33187, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007184", - "question_id": 33204, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006849", - "question_id": 33211, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005347", - "question_id": 33213, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003429", - "question_id": 33218, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008194", - "question_id": 33223, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004745", - "question_id": 33228, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000322", - "question_id": 33237, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00000227", - "question_id": 33242, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006712", - "question_id": 33254, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005882", - "question_id": 33264, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007598", - "question_id": 33265, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003401", - "question_id": 33273, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000575", - "question_id": 33282, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004525", - "question_id": 33283, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005461", - "question_id": 33284, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006694", - "question_id": 33288, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008695", - "question_id": 33294, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006909", - "question_id": 33305, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004799", - "question_id": 33309, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005098", - "question_id": 33313, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007782", - "question_id": 33330, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005157", - "question_id": 33331, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003313", - "question_id": 33339, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003495", - "question_id": 33344, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006820", - "question_id": 33356, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003767", - "question_id": 33360, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000404", - "question_id": 33362, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007184", - "question_id": 33376, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003409", - "question_id": 33377, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004326", - "question_id": 33380, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004030", - "question_id": 33384, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000375", - "question_id": 33392, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005426", - "question_id": 33394, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008092", - "question_id": 33413, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003882", - "question_id": 33418, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00008068", - "question_id": 33421, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003899", - "question_id": 33422, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "va00004207", - "question_id": 33423, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000421", - "question_id": 33430, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "more than ten" -}, { - "video_id": "sa00007721", - "question_id": 33436, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005289", - "question_id": 33440, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "vv00000351", - "question_id": 33441, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006604", - "question_id": 33442, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005796", - "question_id": 33444, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005291", - "question_id": 33447, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003298", - "question_id": 33451, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004207", - "question_id": 33458, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007107", - "question_id": 33466, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005552", - "question_id": 33473, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008524", - "question_id": 33474, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005130", - "question_id": 33476, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005351", - "question_id": 33477, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00003081", - "question_id": 33478, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00002846", - "question_id": 33482, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005165", - "question_id": 33501, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "va00005449", - "question_id": 33502, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000513", - "question_id": 33503, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006684", - "question_id": 33507, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007589", - "question_id": 33510, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008187", - "question_id": 33513, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002964", - "question_id": 33522, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008661", - "question_id": 33525, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005765", - "question_id": 33535, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003609", - "question_id": 33537, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000404", - "question_id": 33543, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004036", - "question_id": 33544, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00003076", - "question_id": 33546, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003603", - "question_id": 33549, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006762", - "question_id": 33552, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005222", - "question_id": 33560, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007602", - "question_id": 33565, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003401", - "question_id": 33569, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005337", - "question_id": 33577, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007601", - "question_id": 33582, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005171", - "question_id": 33585, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00002511", - "question_id": 33586, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007638", - "question_id": 33594, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006027", - "question_id": 33597, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005024", - "question_id": 33600, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008785", - "question_id": 33604, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007333", - "question_id": 33606, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006545", - "question_id": 33612, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003890", - "question_id": 33615, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002577", - "question_id": 33617, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005572", - "question_id": 33618, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00000567", - "question_id": 33622, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006645", - "question_id": 33634, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008089", - "question_id": 33637, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003768", - "question_id": 33643, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "va00005495", - "question_id": 33646, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003461", - "question_id": 33650, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006097", - "question_id": 33653, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003152", - "question_id": 33654, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00000491", - "question_id": 33655, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002886", - "question_id": 33676, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"pipa\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "va00003105", - "question_id": 33678, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003654", - "question_id": 33681, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00002841", - "question_id": 33682, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008413", - "question_id": 33685, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008630", - "question_id": 33697, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003768", - "question_id": 33715, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005900", - "question_id": 33723, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006961", - "question_id": 33728, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000221", - "question_id": 33729, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00002647", - "question_id": 33731, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005891", - "question_id": 33734, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005765", - "question_id": 33736, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000044", - "question_id": 33737, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006712", - "question_id": 33739, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007710", - "question_id": 33744, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00002546", - "question_id": 33752, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"trumpet\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "vv00003061", - "question_id": 33759, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "vv00002577", - "question_id": 33761, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003915", - "question_id": 33766, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002693", - "question_id": 33770, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006857", - "question_id": 33773, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003621", - "question_id": 33786, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008094", - "question_id": 33795, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000395", - "question_id": 33803, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006753", - "question_id": 33804, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002555", - "question_id": 33807, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "va00005882", - "question_id": 33817, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "sa00006220", - "question_id": 33818, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004009", - "question_id": 33823, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007659", - "question_id": 33825, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008198", - "question_id": 33827, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006747", - "question_id": 33828, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006575", - "question_id": 33838, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004041", - "question_id": 33842, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006026", - "question_id": 33846, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00003020", - "question_id": 33854, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008500", - "question_id": 33862, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002987", - "question_id": 33864, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007500", - "question_id": 33869, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003791", - "question_id": 33884, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002547", - "question_id": 33885, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008695", - "question_id": 33887, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004320", - "question_id": 33888, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005831", - "question_id": 33892, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002691", - "question_id": 33896, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "sa00008456", - "question_id": 33897, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005184", - "question_id": 33898, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003823", - "question_id": 33901, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003494", - "question_id": 33905, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00002989", - "question_id": 33908, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "vv00008936", - "question_id": 33910, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00008936", - "question_id": 33910, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "vv00002667", - "question_id": 33911, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"drum\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "va00004028", - "question_id": 33912, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "va00005830", - "question_id": 33913, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004182", - "question_id": 33917, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "va00003152", - "question_id": 33918, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002841", - "question_id": 33925, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002618", - "question_id": 33927, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008094", - "question_id": 33938, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005520", - "question_id": 33942, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00002421", - "question_id": 33947, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "va00005578", - "question_id": 33953, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006221", - "question_id": 33954, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000001", - "question_id": 33955, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003556", - "question_id": 33962, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005060", - "question_id": 33964, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006318", - "question_id": 33971, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005434", - "question_id": 33972, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004965", - "question_id": 33973, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004710", - "question_id": 33988, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007643", - "question_id": 33996, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003696", - "question_id": 34013, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003094", - "question_id": 34015, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007942", - "question_id": 34016, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003102", - "question_id": 34018, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004249", - "question_id": 34020, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00002742", - "question_id": 34026, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004541", - "question_id": 34033, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005060", - "question_id": 34034, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004518", - "question_id": 34038, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008101", - "question_id": 34042, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007925", - "question_id": 34052, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003645", - "question_id": 34056, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "sa00007407", - "question_id": 34059, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008037", - "question_id": 34076, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008332", - "question_id": 34078, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004639", - "question_id": 34082, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008640", - "question_id": 34090, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "sa00008866", - "question_id": 34096, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002846", - "question_id": 34106, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006054", - "question_id": 34107, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00002711", - "question_id": 34108, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005226", - "question_id": 34109, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004294", - "question_id": 34110, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000568", - "question_id": 34122, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00005995", - "question_id": 34128, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005758", - "question_id": 34130, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006849", - "question_id": 34134, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004863", - "question_id": 34136, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004863", - "question_id": 34136, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002544", - "question_id": 34148, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "sa00008768", - "question_id": 34170, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005403", - "question_id": 34173, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008222", - "question_id": 34178, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008222", - "question_id": 34178, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002639", - "question_id": 34180, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000468", - "question_id": 34190, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000110", - "question_id": 34195, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "va00004868", - "question_id": 34198, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008242", - "question_id": 34206, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005791", - "question_id": 34210, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003556", - "question_id": 34220, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007272", - "question_id": 34221, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004717", - "question_id": 34224, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "sa00006625", - "question_id": 34226, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005427", - "question_id": 34227, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "sa00007424", - "question_id": 34229, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006278", - "question_id": 34230, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004265", - "question_id": 34233, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006905", - "question_id": 34238, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007407", - "question_id": 34246, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004326", - "question_id": 34252, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "vv00002429", - "question_id": 34253, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006833", - "question_id": 34259, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000503", - "question_id": 34266, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005320", - "question_id": 34267, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007589", - "question_id": 34269, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007186", - "question_id": 34270, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004130", - "question_id": 34271, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005130", - "question_id": 34282, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003692", - "question_id": 34283, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004921", - "question_id": 34284, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002774", - "question_id": 34290, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "va00005289", - "question_id": 34302, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006558", - "question_id": 34305, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004948", - "question_id": 34306, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005763", - "question_id": 34307, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000487", - "question_id": 34308, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006880", - "question_id": 34319, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008429", - "question_id": 34324, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004512", - "question_id": 34326, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002992", - "question_id": 34328, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "va00003255", - "question_id": 34334, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004516", - "question_id": 34339, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008611", - "question_id": 34342, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007371", - "question_id": 34343, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002322", - "question_id": 34344, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006317", - "question_id": 34346, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008751", - "question_id": 34347, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008187", - "question_id": 34352, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006077", - "question_id": 34357, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006747", - "question_id": 34364, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000391", - "question_id": 34367, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006241", - "question_id": 34371, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006847", - "question_id": 34382, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005086", - "question_id": 34388, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004040", - "question_id": 34395, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002933", - "question_id": 34404, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "vv00002886", - "question_id": 34407, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000584", - "question_id": 34414, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"xylophone\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "va00004682", - "question_id": 34415, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005351", - "question_id": 34421, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "sa00007118", - "question_id": 34423, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007234", - "question_id": 34426, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003409", - "question_id": 34430, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006326", - "question_id": 34432, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007262", - "question_id": 34433, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00002416", - "question_id": 34434, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"right\", \"pipa\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002693", - "question_id": 34436, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "sa00006690", - "question_id": 34440, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008835", - "question_id": 34446, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006173", - "question_id": 34449, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008772", - "question_id": 34462, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003137", - "question_id": 34463, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00003046", - "question_id": 34467, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000484", - "question_id": 34481, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006519", - "question_id": 34484, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004997", - "question_id": 34487, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008028", - "question_id": 34488, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000011", - "question_id": 34490, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007166", - "question_id": 34493, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004255", - "question_id": 34500, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00000455", - "question_id": 34504, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003123", - "question_id": 34505, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00008611", - "question_id": 34509, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003696", - "question_id": 34515, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008775", - "question_id": 34517, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004051", - "question_id": 34518, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000614", - "question_id": 34524, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007089", - "question_id": 34529, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004329", - "question_id": 34530, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005373", - "question_id": 34537, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006910", - "question_id": 34538, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003429", - "question_id": 34539, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008654", - "question_id": 34549, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007531", - "question_id": 34555, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007531", - "question_id": 34555, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007993", - "question_id": 34558, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003622", - "question_id": 34560, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006042", - "question_id": 34562, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004561", - "question_id": 34573, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005070", - "question_id": 34574, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000365", - "question_id": 34576, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "sa00007016", - "question_id": 34579, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007016", - "question_id": 34579, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006690", - "question_id": 34583, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008640", - "question_id": 34590, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006959", - "question_id": 34592, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00002769", - "question_id": 34593, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007693", - "question_id": 34596, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008588", - "question_id": 34597, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005494", - "question_id": 34599, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "sa00006569", - "question_id": 34601, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004609", - "question_id": 34608, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000257", - "question_id": 34617, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "sa00006738", - "question_id": 34619, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006237", - "question_id": 34623, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007710", - "question_id": 34625, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000173", - "question_id": 34628, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005206", - "question_id": 34629, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00002785", - "question_id": 34631, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "va00005765", - "question_id": 34633, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006921", - "question_id": 34651, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008287", - "question_id": 34655, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005391", - "question_id": 34660, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00000179", - "question_id": 34668, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000531", - "question_id": 34670, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00002508", - "question_id": 34671, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004526", - "question_id": 34674, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003460", - "question_id": 34682, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006054", - "question_id": 34683, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004745", - "question_id": 34684, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005458", - "question_id": 34685, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007680", - "question_id": 34686, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00003046", - "question_id": 34714, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006575", - "question_id": 34744, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008456", - "question_id": 34751, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003453", - "question_id": 34755, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006556", - "question_id": 34757, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007484", - "question_id": 34760, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004799", - "question_id": 34761, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004581", - "question_id": 34762, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007585", - "question_id": 34763, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007434", - "question_id": 34771, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004443", - "question_id": 34774, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006508", - "question_id": 34775, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008795", - "question_id": 34779, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005157", - "question_id": 34784, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008198", - "question_id": 34789, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006435", - "question_id": 34790, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006972", - "question_id": 34792, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004516", - "question_id": 34794, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008429", - "question_id": 34806, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002416", - "question_id": 34808, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006454", - "question_id": 34816, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004326", - "question_id": 34824, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00000173", - "question_id": 34825, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"pipa\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "sa00008000", - "question_id": 34830, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008000", - "question_id": 34830, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007993", - "question_id": 34831, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006725", - "question_id": 34843, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00000375", - "question_id": 34852, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "vv00000373", - "question_id": 34858, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004541", - "question_id": 34865, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006780", - "question_id": 34871, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008868", - "question_id": 34873, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006984", - "question_id": 34882, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "vv00000196", - "question_id": 34897, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00002588", - "question_id": 34901, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00008936", - "question_id": 34902, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004786", - "question_id": 34903, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007799", - "question_id": 34908, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004531", - "question_id": 34913, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000460", - "question_id": 34916, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005734", - "question_id": 34923, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004617", - "question_id": 34931, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006173", - "question_id": 34942, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002322", - "question_id": 34950, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008284", - "question_id": 34954, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000180", - "question_id": 34961, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003871", - "question_id": 34963, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002988", - "question_id": 34968, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"trumpet\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "va00003337", - "question_id": 34970, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006240", - "question_id": 34977, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006455", - "question_id": 34985, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00000580", - "question_id": 34989, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"banjo\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "sa00007068", - "question_id": 34994, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003378", - "question_id": 34995, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004902", - "question_id": 35003, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005816", - "question_id": 35015, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003186", - "question_id": 35030, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00000568", - "question_id": 35035, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "va00004962", - "question_id": 35038, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000295", - "question_id": 35041, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003495", - "question_id": 35045, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000203", - "question_id": 35046, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003244", - "question_id": 35055, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004773", - "question_id": 35063, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004404", - "question_id": 35064, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00005983", - "question_id": 35072, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000452", - "question_id": 35074, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006093", - "question_id": 35084, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003267", - "question_id": 35087, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004978", - "question_id": 35096, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006224", - "question_id": 35107, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005537", - "question_id": 35108, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005533", - "question_id": 35110, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004335", - "question_id": 35115, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00008194", - "question_id": 35120, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004279", - "question_id": 35139, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "sa00006424", - "question_id": 35140, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007330", - "question_id": 35142, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008068", - "question_id": 35160, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007435", - "question_id": 35161, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006198", - "question_id": 35162, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008332", - "question_id": 35168, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004596", - "question_id": 35172, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007937", - "question_id": 35178, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003758", - "question_id": 35182, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007920", - "question_id": 35183, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006910", - "question_id": 35186, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002909", - "question_id": 35187, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003622", - "question_id": 35188, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005453", - "question_id": 35189, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004322", - "question_id": 35195, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006747", - "question_id": 35198, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006785", - "question_id": 35204, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000444", - "question_id": 35206, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005583", - "question_id": 35207, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "va00003614", - "question_id": 35211, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004059", - "question_id": 35220, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008927", - "question_id": 35231, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005964", - "question_id": 35235, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007785", - "question_id": 35239, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004491", - "question_id": 35247, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008609", - "question_id": 35258, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003531", - "question_id": 35268, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008442", - "question_id": 35272, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000322", - "question_id": 35274, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005573", - "question_id": 35276, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00003065", - "question_id": 35277, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00008741", - "question_id": 35280, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005851", - "question_id": 35287, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008164", - "question_id": 35290, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005303", - "question_id": 35295, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006477", - "question_id": 35302, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005042", - "question_id": 35320, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00008375", - "question_id": 35321, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006763", - "question_id": 35336, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00000096", - "question_id": 35353, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003517", - "question_id": 35357, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006962", - "question_id": 35359, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006462", - "question_id": 35360, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007974", - "question_id": 35362, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007746", - "question_id": 35366, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000161", - "question_id": 35370, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"tuba\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "sa00007864", - "question_id": 35371, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004665", - "question_id": 35372, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005303", - "question_id": 35382, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005211", - "question_id": 35400, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008101", - "question_id": 35411, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003094", - "question_id": 35412, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006811", - "question_id": 35422, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005642", - "question_id": 35437, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004419", - "question_id": 35440, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003186", - "question_id": 35442, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002544", - "question_id": 35444, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003255", - "question_id": 35445, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00002841", - "question_id": 35446, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007330", - "question_id": 35451, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005289", - "question_id": 35454, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00008937", - "question_id": 35462, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00002618", - "question_id": 35466, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005184", - "question_id": 35474, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007032", - "question_id": 35478, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005594", - "question_id": 35479, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "va00003350", - "question_id": 35493, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002308", - "question_id": 35502, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007171", - "question_id": 35503, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00000417", - "question_id": 35504, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003894", - "question_id": 35520, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004046", - "question_id": 35528, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006508", - "question_id": 35530, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008398", - "question_id": 35534, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008072", - "question_id": 35538, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007531", - "question_id": 35543, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004525", - "question_id": 35544, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006756", - "question_id": 35546, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004822", - "question_id": 35553, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004887", - "question_id": 35555, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006103", - "question_id": 35560, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002656", - "question_id": 35561, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006336", - "question_id": 35574, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005027", - "question_id": 35576, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00003075", - "question_id": 35577, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00003081", - "question_id": 35584, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008852", - "question_id": 35593, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002987", - "question_id": 35595, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00000345", - "question_id": 35602, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000373", - "question_id": 35607, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00002774", - "question_id": 35610, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000598", - "question_id": 35611, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007782", - "question_id": 35613, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002873", - "question_id": 35614, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00000525", - "question_id": 35616, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00008665", - "question_id": 35618, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007308", - "question_id": 35619, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003955", - "question_id": 35621, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005594", - "question_id": 35628, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002978", - "question_id": 35629, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000649", - "question_id": 35630, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008314", - "question_id": 35634, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000099", - "question_id": 35649, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00003078", - "question_id": 35652, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008263", - "question_id": 35654, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000079", - "question_id": 35656, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007117", - "question_id": 35662, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00005988", - "question_id": 35667, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00005972", - "question_id": 35676, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003934", - "question_id": 35682, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007544", - "question_id": 35683, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007077", - "question_id": 35684, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007170", - "question_id": 35685, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006667", - "question_id": 35689, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007276", - "question_id": 35691, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005470", - "question_id": 35699, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003102", - "question_id": 35701, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005854", - "question_id": 35702, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000127", - "question_id": 35704, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "va00005192", - "question_id": 35711, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00002978", - "question_id": 35716, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "sa00007103", - "question_id": 35717, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006088", - "question_id": 35718, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007576", - "question_id": 35720, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004451", - "question_id": 35722, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000538", - "question_id": 35723, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006306", - "question_id": 35729, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000239", - "question_id": 35732, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008180", - "question_id": 35733, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000469", - "question_id": 35739, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "sa00006930", - "question_id": 35743, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004163", - "question_id": 35748, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00008936", - "question_id": 35754, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "va00004431", - "question_id": 35755, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007817", - "question_id": 35757, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006956", - "question_id": 35770, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00002948", - "question_id": 35777, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003465", - "question_id": 35779, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007509", - "question_id": 35780, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00000091", - "question_id": 35783, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "va00004279", - "question_id": 35789, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008827", - "question_id": 35793, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003883", - "question_id": 35795, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006103", - "question_id": 35800, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"tuba\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "sa00006432", - "question_id": 35801, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002597", - "question_id": 35802, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005165", - "question_id": 35808, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004805", - "question_id": 35810, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005519", - "question_id": 35811, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006738", - "question_id": 35826, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000455", - "question_id": 35833, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "va00005052", - "question_id": 35834, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006905", - "question_id": 35837, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005295", - "question_id": 35838, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00002774", - "question_id": 35841, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005572", - "question_id": 35845, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00000572", - "question_id": 35846, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"tuba\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000409", - "question_id": 35855, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00002948", - "question_id": 35861, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"xylophone\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "va00005900", - "question_id": 35864, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006785", - "question_id": 35865, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00003053", - "question_id": 35867, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006224", - "question_id": 35869, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "va00003386", - "question_id": 35873, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007266", - "question_id": 35880, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003295", - "question_id": 35882, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005308", - "question_id": 35885, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004978", - "question_id": 35888, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004188", - "question_id": 35891, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003476", - "question_id": 35894, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00002750", - "question_id": 35895, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007262", - "question_id": 35902, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005211", - "question_id": 35904, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006462", - "question_id": 35905, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008588", - "question_id": 35910, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "vv00000044", - "question_id": 35912, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"trumpet\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "va00004259", - "question_id": 35916, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007585", - "question_id": 35921, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007170", - "question_id": 35923, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008372", - "question_id": 35926, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006627", - "question_id": 35928, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005349", - "question_id": 35935, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00000219", - "question_id": 35940, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007937", - "question_id": 35950, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003159", - "question_id": 35953, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008541", - "question_id": 35969, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "vv00002943", - "question_id": 35974, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004714", - "question_id": 35976, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00002749", - "question_id": 35979, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "sa00006462", - "question_id": 35983, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003386", - "question_id": 35990, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006808", - "question_id": 35992, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005508", - "question_id": 35996, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00008256", - "question_id": 35997, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002639", - "question_id": 35998, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"congas\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "va00003284", - "question_id": 36004, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003817", - "question_id": 36011, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007932", - "question_id": 36014, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003135", - "question_id": 36018, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00002322", - "question_id": 36030, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "sa00006519", - "question_id": 36033, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007257", - "question_id": 36038, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005578", - "question_id": 36042, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003844", - "question_id": 36043, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00002752", - "question_id": 36046, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007055", - "question_id": 36051, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008410", - "question_id": 36055, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"congas\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "va00004717", - "question_id": 36062, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"congas\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "vv00002404", - "question_id": 36063, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004149", - "question_id": 36066, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008841", - "question_id": 36071, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003992", - "question_id": 36073, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004708", - "question_id": 36080, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "va00005303", - "question_id": 36088, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007155", - "question_id": 36092, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005827", - "question_id": 36100, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007139", - "question_id": 36105, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008420", - "question_id": 36111, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005914", - "question_id": 36113, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"flute\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "va00003093", - "question_id": 36125, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004304", - "question_id": 36129, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007186", - "question_id": 36138, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00000127", - "question_id": 36142, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002322", - "question_id": 36145, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008053", - "question_id": 36153, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008194", - "question_id": 36165, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "sa00006200", - "question_id": 36167, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008603", - "question_id": 36168, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005243", - "question_id": 36169, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002786", - "question_id": 36172, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004255", - "question_id": 36175, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006092", - "question_id": 36177, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006779", - "question_id": 36183, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004626", - "question_id": 36185, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004665", - "question_id": 36188, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008039", - "question_id": 36196, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000469", - "question_id": 36198, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00000406", - "question_id": 36203, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "sa00007774", - "question_id": 36204, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007107", - "question_id": 36214, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00003006", - "question_id": 36218, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008158", - "question_id": 36219, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007638", - "question_id": 36221, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008897", - "question_id": 36228, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00000395", - "question_id": 36238, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003245", - "question_id": 36239, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003088", - "question_id": 36241, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007584", - "question_id": 36243, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004365", - "question_id": 36251, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006042", - "question_id": 36258, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002373", - "question_id": 36259, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003153", - "question_id": 36261, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008291", - "question_id": 36266, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002588", - "question_id": 36268, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006937", - "question_id": 36270, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004906", - "question_id": 36279, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007266", - "question_id": 36280, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005266", - "question_id": 36290, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007828", - "question_id": 36293, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008347", - "question_id": 36299, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006337", - "question_id": 36302, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000361", - "question_id": 36309, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006306", - "question_id": 36310, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005798", - "question_id": 36311, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00002752", - "question_id": 36316, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "va00004443", - "question_id": 36317, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007484", - "question_id": 36318, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006063", - "question_id": 36323, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000409", - "question_id": 36325, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004581", - "question_id": 36337, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00003020", - "question_id": 36338, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"bagpipe\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006326", - "question_id": 36339, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000154", - "question_id": 36342, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00000091", - "question_id": 36344, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000572", - "question_id": 36347, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "sa00008653", - "question_id": 36352, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004984", - "question_id": 36357, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00008180", - "question_id": 36358, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004019", - "question_id": 36359, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00008596", - "question_id": 36361, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000099", - "question_id": 36367, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "va00004249", - "question_id": 36369, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008037", - "question_id": 36371, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007747", - "question_id": 36373, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00008746", - "question_id": 36376, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002858", - "question_id": 36382, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "vv00002691", - "question_id": 36387, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "sa00008772", - "question_id": 36390, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006880", - "question_id": 36395, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"flute\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "va00004789", - "question_id": 36415, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006344", - "question_id": 36417, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000161", - "question_id": 36418, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005551", - "question_id": 36429, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007178", - "question_id": 36441, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000322", - "question_id": 36445, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "va00003276", - "question_id": 36457, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005434", - "question_id": 36470, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00000302", - "question_id": 36474, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003207", - "question_id": 36479, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006337", - "question_id": 36482, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004997", - "question_id": 36492, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00000391", - "question_id": 36501, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008889", - "question_id": 36508, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005501", - "question_id": 36515, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005378", - "question_id": 36516, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008321", - "question_id": 36523, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006237", - "question_id": 36524, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005332", - "question_id": 36535, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00002618", - "question_id": 36536, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006054", - "question_id": 36537, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005729", - "question_id": 36538, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003614", - "question_id": 36545, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006871", - "question_id": 36547, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00000580", - "question_id": 36550, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008893", - "question_id": 36561, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006811", - "question_id": 36563, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006755", - "question_id": 36564, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005725", - "question_id": 36568, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000256", - "question_id": 36578, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006122", - "question_id": 36584, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007151", - "question_id": 36588, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008229", - "question_id": 36590, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004338", - "question_id": 36602, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006252", - "question_id": 36603, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003334", - "question_id": 36611, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "sa00007778", - "question_id": 36616, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003822", - "question_id": 36620, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"drum\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "vv00000345", - "question_id": 36625, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004284", - "question_id": 36632, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "sa00006252", - "question_id": 36637, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006949", - "question_id": 36647, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004304", - "question_id": 36648, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005320", - "question_id": 36649, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007918", - "question_id": 36651, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007083", - "question_id": 36652, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004374", - "question_id": 36653, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007262", - "question_id": 36657, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "sa00006475", - "question_id": 36665, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002577", - "question_id": 36672, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004211", - "question_id": 36678, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007920", - "question_id": 36682, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000345", - "question_id": 36688, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006930", - "question_id": 36694, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003137", - "question_id": 36712, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005870", - "question_id": 36713, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000308", - "question_id": 36717, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007083", - "question_id": 36718, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007729", - "question_id": 36721, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004969", - "question_id": 36725, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "vv00000353", - "question_id": 36730, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"xylophone\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000646", - "question_id": 36733, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00005991", - "question_id": 36735, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006007", - "question_id": 36736, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004498", - "question_id": 36737, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004395", - "question_id": 36739, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003276", - "question_id": 36749, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000611", - "question_id": 36753, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"trumpet\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "sa00007257", - "question_id": 36754, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005734", - "question_id": 36760, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003915", - "question_id": 36762, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008696", - "question_id": 36764, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00002752", - "question_id": 36768, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002669", - "question_id": 36772, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004701", - "question_id": 36779, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005385", - "question_id": 36783, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008532", - "question_id": 36789, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005851", - "question_id": 36790, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00000484", - "question_id": 36794, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"xylophone\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "vv00002388", - "question_id": 36803, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "vv00000417", - "question_id": 36806, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "sa00006340", - "question_id": 36811, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006728", - "question_id": 36814, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002772", - "question_id": 36823, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "va00005342", - "question_id": 36824, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005798", - "question_id": 36829, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005545", - "question_id": 36831, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000396", - "question_id": 36837, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "sa00008817", - "question_id": 36840, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007635", - "question_id": 36846, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007925", - "question_id": 36848, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"pipa\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "va00004324", - "question_id": 36851, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "vv00000353", - "question_id": 36852, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007932", - "question_id": 36863, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007118", - "question_id": 36871, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008497", - "question_id": 36880, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004822", - "question_id": 36885, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "va00004687", - "question_id": 36887, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00000011", - "question_id": 36889, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004543", - "question_id": 36892, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000567", - "question_id": 36897, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003216", - "question_id": 36898, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00002846", - "question_id": 36901, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"trumpet\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "va00005859", - "question_id": 36913, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000239", - "question_id": 36915, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "sa00008442", - "question_id": 36919, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007424", - "question_id": 36920, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006586", - "question_id": 36921, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008608", - "question_id": 36922, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000255", - "question_id": 36923, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "vv00000088", - "question_id": 36925, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006569", - "question_id": 36931, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000173", - "question_id": 36933, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004547", - "question_id": 36936, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000089", - "question_id": 36937, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00000491", - "question_id": 36947, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"congas\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "vv00002776", - "question_id": 36949, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"xylophone\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "va00005725", - "question_id": 36950, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005449", - "question_id": 36954, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00005987", - "question_id": 36955, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007158", - "question_id": 36958, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002878", - "question_id": 36960, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "va00003267", - "question_id": 36963, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006296", - "question_id": 36964, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004451", - "question_id": 36969, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007371", - "question_id": 36970, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004163", - "question_id": 36971, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002969", - "question_id": 36972, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"tuba\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "vv00000257", - "question_id": 36975, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003815", - "question_id": 36987, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005213", - "question_id": 36988, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005002", - "question_id": 36991, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005854", - "question_id": 36992, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006625", - "question_id": 36994, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007151", - "question_id": 36996, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "va00005931", - "question_id": 37009, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000580", - "question_id": 37010, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00000395", - "question_id": 37015, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "sa00006635", - "question_id": 37026, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007864", - "question_id": 37037, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006207", - "question_id": 37038, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00002585", - "question_id": 37041, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "vv00002308", - "question_id": 37042, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005171", - "question_id": 37047, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000102", - "question_id": 37052, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003219", - "question_id": 37053, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002943", - "question_id": 37054, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "vv00000558", - "question_id": 37057, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005307", - "question_id": 37061, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008250", - "question_id": 37062, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007406", - "question_id": 37064, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008630", - "question_id": 37067, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005213", - "question_id": 37074, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005763", - "question_id": 37075, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003767", - "question_id": 37076, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003955", - "question_id": 37077, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004349", - "question_id": 37078, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007068", - "question_id": 37079, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002989", - "question_id": 37080, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005568", - "question_id": 37087, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006627", - "question_id": 37093, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003621", - "question_id": 37095, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00000089", - "question_id": 37103, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006556", - "question_id": 37105, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"bassoon\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "sa00007234", - "question_id": 37112, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007178", - "question_id": 37115, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000649", - "question_id": 37119, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000647", - "question_id": 37135, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003156", - "question_id": 37139, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00002953", - "question_id": 37142, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"guzheng\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "vv00000221", - "question_id": 37148, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00008876", - "question_id": 37153, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000386", - "question_id": 37155, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "sa00006451", - "question_id": 37169, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000121", - "question_id": 37174, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006476", - "question_id": 37184, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00002797", - "question_id": 37185, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005298", - "question_id": 37187, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002935", - "question_id": 37195, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006006", - "question_id": 37196, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004887", - "question_id": 37200, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003284", - "question_id": 37201, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006177", - "question_id": 37204, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003306", - "question_id": 37205, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004211", - "question_id": 37211, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008835", - "question_id": 37212, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006224", - "question_id": 37215, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004822", - "question_id": 37222, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003988", - "question_id": 37224, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003670", - "question_id": 37229, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008494", - "question_id": 37235, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002826", - "question_id": 37237, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004627", - "question_id": 37238, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "va00004569", - "question_id": 37245, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "va00005700", - "question_id": 37248, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003645", - "question_id": 37251, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004125", - "question_id": 37265, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002738", - "question_id": 37268, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007215", - "question_id": 37272, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008661", - "question_id": 37275, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008609", - "question_id": 37277, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005859", - "question_id": 37278, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000558", - "question_id": 37287, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006781", - "question_id": 37291, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008242", - "question_id": 37295, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "sa00007032", - "question_id": 37297, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003113", - "question_id": 37313, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005295", - "question_id": 37321, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"accordion\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "va00003276", - "question_id": 37326, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008639", - "question_id": 37328, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006962", - "question_id": 37329, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005830", - "question_id": 37334, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00000538", - "question_id": 37335, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "sa00007354", - "question_id": 37338, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008263", - "question_id": 37342, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006054", - "question_id": 37359, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005551", - "question_id": 37360, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007580", - "question_id": 37362, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005528", - "question_id": 37369, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005002", - "question_id": 37371, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008640", - "question_id": 37372, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003683", - "question_id": 37379, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00000088", - "question_id": 37383, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00002309", - "question_id": 37391, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"xylophone\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "sa00006492", - "question_id": 37393, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00008963", - "question_id": 37394, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008696", - "question_id": 37399, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004041", - "question_id": 37402, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007756", - "question_id": 37403, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004137", - "question_id": 37407, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004137", - "question_id": 37407, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008827", - "question_id": 37409, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00000239", - "question_id": 37412, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004349", - "question_id": 37417, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005151", - "question_id": 37420, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007697", - "question_id": 37425, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004808", - "question_id": 37428, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004808", - "question_id": 37428, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003369", - "question_id": 37431, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "vv00002548", - "question_id": 37439, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004313", - "question_id": 37444, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004762", - "question_id": 37447, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006097", - "question_id": 37452, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004019", - "question_id": 37458, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007576", - "question_id": 37460, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00002556", - "question_id": 37461, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008028", - "question_id": 37463, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002738", - "question_id": 37464, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006493", - "question_id": 37468, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "va00005859", - "question_id": 37469, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003890", - "question_id": 37474, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004993", - "question_id": 37480, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00002728", - "question_id": 37487, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008679", - "question_id": 37489, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000611", - "question_id": 37493, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008751", - "question_id": 37503, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006432", - "question_id": 37504, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004905", - "question_id": 37506, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005314", - "question_id": 37513, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006227", - "question_id": 37518, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003396", - "question_id": 37520, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007170", - "question_id": 37521, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"suona\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "sa00007445", - "question_id": 37526, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003715", - "question_id": 37528, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "va00005356", - "question_id": 37537, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007973", - "question_id": 37538, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002953", - "question_id": 37539, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008243", - "question_id": 37540, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00000484", - "question_id": 37541, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005594", - "question_id": 37544, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007390", - "question_id": 37546, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "va00005946", - "question_id": 37548, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008641", - "question_id": 37551, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004682", - "question_id": 37555, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00000558", - "question_id": 37556, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006097", - "question_id": 37567, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "va00005466", - "question_id": 37570, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00005991", - "question_id": 37579, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006684", - "question_id": 37584, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000351", - "question_id": 37589, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007406", - "question_id": 37594, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005307", - "question_id": 37596, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007783", - "question_id": 37597, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00005983", - "question_id": 37599, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004329", - "question_id": 37604, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002585", - "question_id": 37605, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004341", - "question_id": 37608, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004526", - "question_id": 37609, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006879", - "question_id": 37613, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00002429", - "question_id": 37616, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "sa00008116", - "question_id": 37617, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000406", - "question_id": 37620, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005224", - "question_id": 37622, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005750", - "question_id": 37637, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005584", - "question_id": 37646, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "va00003791", - "question_id": 37647, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00002914", - "question_id": 37656, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "sa00008323", - "question_id": 37657, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000492", - "question_id": 37661, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005461", - "question_id": 37666, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006493", - "question_id": 37667, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007643", - "question_id": 37669, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003585", - "question_id": 37673, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00002309", - "question_id": 37675, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "va00004770", - "question_id": 37682, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004443", - "question_id": 37684, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005494", - "question_id": 37686, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005796", - "question_id": 37687, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005870", - "question_id": 37692, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007854", - "question_id": 37694, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008264", - "question_id": 37699, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005379", - "question_id": 37703, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006195", - "question_id": 37706, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008158", - "question_id": 37715, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006172", - "question_id": 37717, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007333", - "question_id": 37719, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007091", - "question_id": 37720, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006103", - "question_id": 37724, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005426", - "question_id": 37730, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005791", - "question_id": 37740, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004608", - "question_id": 37743, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004968", - "question_id": 37746, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00000236", - "question_id": 37748, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00000611", - "question_id": 37750, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007026", - "question_id": 37751, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003929", - "question_id": 37752, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007540", - "question_id": 37754, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007540", - "question_id": 37754, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00000653", - "question_id": 37760, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "sa00006820", - "question_id": 37762, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008138", - "question_id": 37765, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006756", - "question_id": 37773, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008650", - "question_id": 37775, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003992", - "question_id": 37782, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007854", - "question_id": 37786, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002669", - "question_id": 37789, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002858", - "question_id": 37791, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007909", - "question_id": 37794, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005945", - "question_id": 37795, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005859", - "question_id": 37799, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bagpipe\", \"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008785", - "question_id": 37804, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003844", - "question_id": 37806, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007371", - "question_id": 37809, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005391", - "question_id": 37811, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003915", - "question_id": 37816, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008500", - "question_id": 37823, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007973", - "question_id": 37827, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004626", - "question_id": 37833, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006762", - "question_id": 37834, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00003052", - "question_id": 37837, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005040", - "question_id": 37841, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008963", - "question_id": 37842, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "va00005791", - "question_id": 37844, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008237", - "question_id": 37845, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000444", - "question_id": 37847, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008314", - "question_id": 37849, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003758", - "question_id": 37850, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003150", - "question_id": 37853, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00000638", - "question_id": 37856, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004512", - "question_id": 37857, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006811", - "question_id": 37859, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003791", - "question_id": 37861, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006364", - "question_id": 37863, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007598", - "question_id": 37865, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004826", - "question_id": 37870, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005909", - "question_id": 37871, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007406", - "question_id": 37873, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"pipa\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "vv00002845", - "question_id": 37879, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007276", - "question_id": 37880, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"congas\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005568", - "question_id": 37886, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008163", - "question_id": 37898, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006424", - "question_id": 37909, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004498", - "question_id": 37910, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008327", - "question_id": 37915, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006207", - "question_id": 37923, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "sa00006833", - "question_id": 37924, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008741", - "question_id": 37926, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004984", - "question_id": 37935, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00002873", - "question_id": 37941, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"clarinet\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "sa00008700", - "question_id": 37942, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008393", - "question_id": 37945, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007697", - "question_id": 37948, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00008250", - "question_id": 37952, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008410", - "question_id": 37957, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008776", - "question_id": 37958, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004259", - "question_id": 37959, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003345", - "question_id": 37969, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006026", - "question_id": 37972, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006508", - "question_id": 37983, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002728", - "question_id": 37988, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"tuba\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "sa00006863", - "question_id": 37993, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00002691", - "question_id": 37994, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002752", - "question_id": 37999, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"guzheng\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "vv00002886", - "question_id": 38000, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003845", - "question_id": 38001, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003823", - "question_id": 38004, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003899", - "question_id": 38006, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00003076", - "question_id": 38009, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"tuba\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "sa00008963", - "question_id": 38010, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006156", - "question_id": 38013, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003507", - "question_id": 38015, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005553", - "question_id": 38019, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00002453", - "question_id": 38024, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "more than ten" -}, { - "video_id": "va00003298", - "question_id": 38026, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00000460", - "question_id": 38028, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007561", - "question_id": 38031, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004710", - "question_id": 38036, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00000497", - "question_id": 38037, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003157", - "question_id": 38038, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003539", - "question_id": 38043, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005356", - "question_id": 38046, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005495", - "question_id": 38048, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004965", - "question_id": 38050, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003932", - "question_id": 38052, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00003053", - "question_id": 38053, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"tuba\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "va00003836", - "question_id": 38054, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00002616", - "question_id": 38060, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000308", - "question_id": 38062, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"xylophone\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "sa00008286", - "question_id": 38067, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000353", - "question_id": 38074, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "vv00000353", - "question_id": 38074, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"piano\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "vv00002482", - "question_id": 38078, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "va00003245", - "question_id": 38080, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007089", - "question_id": 38081, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003137", - "question_id": 38086, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005477", - "question_id": 38087, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004640", - "question_id": 38088, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "va00004902", - "question_id": 38089, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005830", - "question_id": 38095, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004511", - "question_id": 38100, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008538", - "question_id": 38105, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005723", - "question_id": 38109, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004518", - "question_id": 38110, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005882", - "question_id": 38116, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000190", - "question_id": 38118, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007937", - "question_id": 38125, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004069", - "question_id": 38126, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004365", - "question_id": 38139, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005332", - "question_id": 38142, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004349", - "question_id": 38146, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008641", - "question_id": 38154, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004395", - "question_id": 38158, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004395", - "question_id": 38158, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008866", - "question_id": 38167, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007118", - "question_id": 38172, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004665", - "question_id": 38174, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000183", - "question_id": 38177, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "sa00006625", - "question_id": 38181, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003584", - "question_id": 38190, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005238", - "question_id": 38192, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007474", - "question_id": 38194, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002992", - "question_id": 38195, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00003027", - "question_id": 38200, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "sa00008222", - "question_id": 38202, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008028", - "question_id": 38207, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006645", - "question_id": 38208, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00000478", - "question_id": 38209, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006077", - "question_id": 38216, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005041", - "question_id": 38224, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002546", - "question_id": 38225, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003153", - "question_id": 38226, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007117", - "question_id": 38233, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008072", - "question_id": 38234, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005533", - "question_id": 38239, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004419", - "question_id": 38240, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007469", - "question_id": 38242, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006092", - "question_id": 38247, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004103", - "question_id": 38249, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005308", - "question_id": 38251, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003988", - "question_id": 38254, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002416", - "question_id": 38262, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007973", - "question_id": 38264, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003186", - "question_id": 38271, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008661", - "question_id": 38273, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008746", - "question_id": 38279, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007151", - "question_id": 38280, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "vv00002639", - "question_id": 38286, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00002769", - "question_id": 38289, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006519", - "question_id": 38290, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000353", - "question_id": 38291, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00000353", - "question_id": 38291, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "vv00000081", - "question_id": 38292, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000478", - "question_id": 38294, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007417", - "question_id": 38296, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005572", - "question_id": 38297, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00008323", - "question_id": 38303, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000322", - "question_id": 38305, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004511", - "question_id": 38307, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007759", - "question_id": 38312, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005491", - "question_id": 38314, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005453", - "question_id": 38319, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008541", - "question_id": 38320, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004801", - "question_id": 38321, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00000554", - "question_id": 38322, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006156", - "question_id": 38328, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003333", - "question_id": 38330, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004544", - "question_id": 38332, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007890", - "question_id": 38333, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000298", - "question_id": 38336, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002632", - "question_id": 38337, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007310", - "question_id": 38339, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008785", - "question_id": 38348, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003675", - "question_id": 38356, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00005995", - "question_id": 38360, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00008374", - "question_id": 38361, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003900", - "question_id": 38362, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007703", - "question_id": 38374, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003760", - "question_id": 38375, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006240", - "question_id": 38382, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002909", - "question_id": 38383, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006344", - "question_id": 38386, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007804", - "question_id": 38388, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007484", - "question_id": 38394, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004969", - "question_id": 38396, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006015", - "question_id": 38399, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003815", - "question_id": 38402, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005528", - "question_id": 38406, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "sa00006604", - "question_id": 38409, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005661", - "question_id": 38413, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007774", - "question_id": 38417, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007184", - "question_id": 38418, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004211", - "question_id": 38422, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008245", - "question_id": 38431, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005889", - "question_id": 38436, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007016", - "question_id": 38439, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008541", - "question_id": 38441, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004516", - "question_id": 38445, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003345", - "question_id": 38451, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006122", - "question_id": 38457, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"saxophone\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "vv00002845", - "question_id": 38459, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004114", - "question_id": 38463, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005042", - "question_id": 38470, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003088", - "question_id": 38473, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007697", - "question_id": 38476, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007680", - "question_id": 38479, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006240", - "question_id": 38484, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005303", - "question_id": 38488, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005385", - "question_id": 38498, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00003020", - "question_id": 38501, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003758", - "question_id": 38502, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002914", - "question_id": 38503, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007967", - "question_id": 38506, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004985", - "question_id": 38509, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005151", - "question_id": 38512, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002440", - "question_id": 38516, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "more than ten" -}, { - "video_id": "va00004655", - "question_id": 38517, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006015", - "question_id": 38520, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006567", - "question_id": 38524, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000550", - "question_id": 38525, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005586", - "question_id": 38527, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002943", - "question_id": 38541, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007390", - "question_id": 38542, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007580", - "question_id": 38548, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005291", - "question_id": 38550, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006015", - "question_id": 38551, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00003001", - "question_id": 38561, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003500", - "question_id": 38563, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008312", - "question_id": 38565, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005909", - "question_id": 38573, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003278", - "question_id": 38575, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007788", - "question_id": 38576, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006847", - "question_id": 38579, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007864", - "question_id": 38582, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007848", - "question_id": 38585, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "sa00006296", - "question_id": 38586, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006961", - "question_id": 38589, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00000523", - "question_id": 38590, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003460", - "question_id": 38591, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006785", - "question_id": 38592, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007496", - "question_id": 38594, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006337", - "question_id": 38600, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006871", - "question_id": 38607, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006684", - "question_id": 38608, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008081", - "question_id": 38619, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007942", - "question_id": 38620, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006879", - "question_id": 38624, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003396", - "question_id": 38632, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005024", - "question_id": 38634, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007582", - "question_id": 38641, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004498", - "question_id": 38642, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004954", - "question_id": 38644, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004130", - "question_id": 38652, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007560", - "question_id": 38653, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005891", - "question_id": 38657, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003268", - "question_id": 38660, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008869", - "question_id": 38664, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003296", - "question_id": 38665, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004971", - "question_id": 38671, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000469", - "question_id": 38672, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "sa00007560", - "question_id": 38676, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005889", - "question_id": 38679, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006547", - "question_id": 38680, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005174", - "question_id": 38681, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002779", - "question_id": 38691, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006586", - "question_id": 38694, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005041", - "question_id": 38698, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000089", - "question_id": 38704, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00008723", - "question_id": 38706, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007032", - "question_id": 38717, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004284", - "question_id": 38719, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002555", - "question_id": 38723, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005301", - "question_id": 38732, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003890", - "question_id": 38735, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006545", - "question_id": 38738, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003951", - "question_id": 38743, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008640", - "question_id": 38748, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008206", - "question_id": 38755, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003871", - "question_id": 38757, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005923", - "question_id": 38759, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008094", - "question_id": 38760, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006477", - "question_id": 38764, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004777", - "question_id": 38768, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004968", - "question_id": 38769, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000282", - "question_id": 38774, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006432", - "question_id": 38776, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007043", - "question_id": 38779, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007433", - "question_id": 38782, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "sa00008566", - "question_id": 38785, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004299", - "question_id": 38791, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "vv00000646", - "question_id": 38793, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003785", - "question_id": 38795, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004451", - "question_id": 38796, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006111", - "question_id": 38800, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006111", - "question_id": 38800, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007257", - "question_id": 38801, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007383", - "question_id": 38802, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004541", - "question_id": 38803, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000365", - "question_id": 38810, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006195", - "question_id": 38812, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008593", - "question_id": 38815, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002779", - "question_id": 38819, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002547", - "question_id": 38824, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002547", - "question_id": 38824, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00000513", - "question_id": 38827, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00000580", - "question_id": 38828, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"banjo\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000216", - "question_id": 38829, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005151", - "question_id": 38832, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007921", - "question_id": 38833, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00008963", - "question_id": 38835, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005889", - "question_id": 38837, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008119", - "question_id": 38838, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002987", - "question_id": 38839, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00002878", - "question_id": 38842, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007601", - "question_id": 38846, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002453", - "question_id": 38849, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003919", - "question_id": 38850, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006611", - "question_id": 38854, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00008937", - "question_id": 38857, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004627", - "question_id": 38858, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002633", - "question_id": 38863, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"guzheng\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "va00005385", - "question_id": 38867, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"erhu\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "va00004040", - "question_id": 38869, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005501", - "question_id": 38874, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008372", - "question_id": 38877, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "sa00006095", - "question_id": 38878, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006880", - "question_id": 38879, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003621", - "question_id": 38880, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003091", - "question_id": 38881, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000550", - "question_id": 38884, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002886", - "question_id": 38889, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005520", - "question_id": 38892, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008852", - "question_id": 38894, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007976", - "question_id": 38896, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004293", - "question_id": 38897, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000044", - "question_id": 38900, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00000383", - "question_id": 38904, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005379", - "question_id": 38906, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006602", - "question_id": 38912, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008387", - "question_id": 38916, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005476", - "question_id": 38918, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"suona\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008291", - "question_id": 38922, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005882", - "question_id": 38924, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005171", - "question_id": 38928, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006200", - "question_id": 38932, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007768", - "question_id": 38937, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007149", - "question_id": 38938, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004888", - "question_id": 38940, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003383", - "question_id": 38941, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007920", - "question_id": 38953, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008158", - "question_id": 38956, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008264", - "question_id": 38957, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004349", - "question_id": 38960, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000196", - "question_id": 38964, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003429", - "question_id": 38966, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006833", - "question_id": 38969, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006972", - "question_id": 38970, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004609", - "question_id": 38972, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003363", - "question_id": 38975, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005349", - "question_id": 38979, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004491", - "question_id": 38986, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006219", - "question_id": 38989, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003306", - "question_id": 38990, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008237", - "question_id": 38995, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008937", - "question_id": 38996, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006042", - "question_id": 38998, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008079", - "question_id": 39001, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "vv00002669", - "question_id": 39010, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007455", - "question_id": 39012, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000084", - "question_id": 39014, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003105", - "question_id": 39017, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006083", - "question_id": 39019, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007783", - "question_id": 39022, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004335", - "question_id": 39026, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003278", - "question_id": 39027, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005642", - "question_id": 39030, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004701", - "question_id": 39031, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002786", - "question_id": 39032, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "sa00008462", - "question_id": 39036, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00008028", - "question_id": 39039, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000497", - "question_id": 39044, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000614", - "question_id": 39054, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00008113", - "question_id": 39066, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005364", - "question_id": 39067, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003383", - "question_id": 39070, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004207", - "question_id": 39081, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003091", - "question_id": 39086, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006534", - "question_id": 39088, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007854", - "question_id": 39091, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004708", - "question_id": 39095, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008757", - "question_id": 39098, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008222", - "question_id": 39104, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005299", - "question_id": 39108, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008538", - "question_id": 39111, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00003061", - "question_id": 39114, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007407", - "question_id": 39116, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004714", - "question_id": 39118, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000284", - "question_id": 39120, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003674", - "question_id": 39125, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005279", - "question_id": 39126, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006455", - "question_id": 39128, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004282", - "question_id": 39130, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005881", - "question_id": 39139, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007693", - "question_id": 39142, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000503", - "question_id": 39151, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000373", - "question_id": 39152, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007500", - "question_id": 39156, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003439", - "question_id": 39158, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006824", - "question_id": 39160, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003817", - "question_id": 39163, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "sa00007890", - "question_id": 39170, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002548", - "question_id": 39171, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "va00004436", - "question_id": 39172, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006268", - "question_id": 39174, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006859", - "question_id": 39176, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000447", - "question_id": 39178, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005577", - "question_id": 39183, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002388", - "question_id": 39186, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005831", - "question_id": 39192, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "va00005831", - "question_id": 39192, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005044", - "question_id": 39200, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006781", - "question_id": 39202, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005594", - "question_id": 39203, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "sa00006344", - "question_id": 39204, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002878", - "question_id": 39206, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004200", - "question_id": 39212, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000256", - "question_id": 39213, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007937", - "question_id": 39214, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000568", - "question_id": 39221, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005519", - "question_id": 39222, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005734", - "question_id": 39226, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003159", - "question_id": 39228, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005912", - "question_id": 39231, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005332", - "question_id": 39233, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002556", - "question_id": 39234, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006417", - "question_id": 39239, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00005975", - "question_id": 39245, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003943", - "question_id": 39246, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004255", - "question_id": 39248, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006785", - "question_id": 39251, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008769", - "question_id": 39253, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004954", - "question_id": 39256, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003585", - "question_id": 39257, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00003052", - "question_id": 39260, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004511", - "question_id": 39265, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007973", - "question_id": 39267, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008039", - "question_id": 39268, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002548", - "question_id": 39271, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "sa00007029", - "question_id": 39272, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000584", - "question_id": 39280, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004370", - "question_id": 39281, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002373", - "question_id": 39282, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"left\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005506", - "question_id": 39287, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007918", - "question_id": 39292, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008000", - "question_id": 39295, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003900", - "question_id": 39298, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00008775", - "question_id": 39301, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005348", - "question_id": 39305, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000081", - "question_id": 39309, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007108", - "question_id": 39317, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005572", - "question_id": 39319, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002643", - "question_id": 39325, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00008323", - "question_id": 39328, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008494", - "question_id": 39332, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000452", - "question_id": 39334, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007311", - "question_id": 39335, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006456", - "question_id": 39340, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003273", - "question_id": 39344, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008097", - "question_id": 39351, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003891", - "question_id": 39360, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006627", - "question_id": 39368, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004000", - "question_id": 39371, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006550", - "question_id": 39373, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008893", - "question_id": 39375, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002508", - "question_id": 39376, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00002956", - "question_id": 39377, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002440", - "question_id": 39382, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "sa00006694", - "question_id": 39384, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005117", - "question_id": 39388, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007055", - "question_id": 39391, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006941", - "question_id": 39393, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004822", - "question_id": 39396, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004223", - "question_id": 39400, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006257", - "question_id": 39402, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002906", - "question_id": 39403, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003091", - "question_id": 39412, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005337", - "question_id": 39415, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008081", - "question_id": 39419, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002482", - "question_id": 39420, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008291", - "question_id": 39422, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005660", - "question_id": 39424, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000179", - "question_id": 39427, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00008693", - "question_id": 39428, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "sa00007433", - "question_id": 39432, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008388", - "question_id": 39436, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005573", - "question_id": 39437, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002878", - "question_id": 39438, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008893", - "question_id": 39444, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003494", - "question_id": 39446, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000110", - "question_id": 39447, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005298", - "question_id": 39452, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002547", - "question_id": 39458, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"ukulele\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00002547", - "question_id": 39458, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"ukulele\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006476", - "question_id": 39460, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005024", - "question_id": 39462, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004304", - "question_id": 39464, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005909", - "question_id": 39472, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006172", - "question_id": 39473, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006364", - "question_id": 39476, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004547", - "question_id": 39479, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000525", - "question_id": 39480, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007216", - "question_id": 39486, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007594", - "question_id": 39488, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006093", - "question_id": 39495, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008264", - "question_id": 39497, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006455", - "question_id": 39498, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004488", - "question_id": 39500, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00008723", - "question_id": 39502, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002935", - "question_id": 39504, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005683", - "question_id": 39505, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005403", - "question_id": 39507, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003113", - "question_id": 39511, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004313", - "question_id": 39513, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004404", - "question_id": 39519, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005426", - "question_id": 39520, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006550", - "question_id": 39522, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005238", - "question_id": 39526, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "va00003088", - "question_id": 39529, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008596", - "question_id": 39531, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "sa00007474", - "question_id": 39536, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004322", - "question_id": 39538, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003396", - "question_id": 39539, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "more than ten" -}, { - "video_id": "va00005070", - "question_id": 39540, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003702", - "question_id": 39541, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004223", - "question_id": 39543, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005945", - "question_id": 39545, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005780", - "question_id": 39549, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003113", - "question_id": 39555, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003702", - "question_id": 39563, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00004125", - "question_id": 39571, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005151", - "question_id": 39575, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "va00004541", - "question_id": 39583, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00006002", - "question_id": 39586, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004002", - "question_id": 39594, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002748", - "question_id": 39597, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006685", - "question_id": 39604, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008388", - "question_id": 39608, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005501", - "question_id": 39609, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003882", - "question_id": 39612, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005154", - "question_id": 39613, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007266", - "question_id": 39619, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004623", - "question_id": 39623, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004639", - "question_id": 39625, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007659", - "question_id": 39626, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004069", - "question_id": 39627, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008488", - "question_id": 39629, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002969", - "question_id": 39637, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007407", - "question_id": 39639, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004617", - "question_id": 39646, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006763", - "question_id": 39650, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005320", - "question_id": 39659, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002742", - "question_id": 39660, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "va00005720", - "question_id": 39663, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005642", - "question_id": 39666, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000386", - "question_id": 39669, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007621", - "question_id": 39672, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000487", - "question_id": 39676, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "va00005945", - "question_id": 39679, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005787", - "question_id": 39680, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "va00003113", - "question_id": 39684, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004242", - "question_id": 39687, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005816", - "question_id": 39692, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006694", - "question_id": 39698, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008544", - "question_id": 39702, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000515", - "question_id": 39711, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004335", - "question_id": 39715, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004059", - "question_id": 39721, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00002934", - "question_id": 39722, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000492", - "question_id": 39725, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003296", - "question_id": 39729, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004618", - "question_id": 39731, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000417", - "question_id": 39734, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000638", - "question_id": 39739, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008462", - "question_id": 39743, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006645", - "question_id": 39746, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005279", - "question_id": 39747, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007326", - "question_id": 39749, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000013", - "question_id": 39751, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007993", - "question_id": 39756, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000227", - "question_id": 39757, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "sa00007026", - "question_id": 39760, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004223", - "question_id": 39763, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"pipa\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "vv00002792", - "question_id": 39774, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006755", - "question_id": 39776, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003476", - "question_id": 39777, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006241", - "question_id": 39781, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004163", - "question_id": 39786, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008852", - "question_id": 39787, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006154", - "question_id": 39792, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006456", - "question_id": 39794, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003125", - "question_id": 39795, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004655", - "question_id": 39796, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005765", - "question_id": 39797, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007310", - "question_id": 39798, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004968", - "question_id": 39799, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003743", - "question_id": 39807, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003507", - "question_id": 39812, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008665", - "question_id": 39815, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008291", - "question_id": 39821, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005720", - "question_id": 39826, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007326", - "question_id": 39828, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006961", - "question_id": 39831, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005266", - "question_id": 39836, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008113", - "question_id": 39838, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00008375", - "question_id": 39841, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002852", - "question_id": 39843, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003276", - "question_id": 39844, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003743", - "question_id": 39845, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004322", - "question_id": 39847, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005677", - "question_id": 39849, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007134", - "question_id": 39851, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002749", - "question_id": 39853, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006547", - "question_id": 39855, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005002", - "question_id": 39862, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "sa00006007", - "question_id": 39864, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003473", - "question_id": 39866, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007406", - "question_id": 39869, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000447", - "question_id": 39870, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"pipa\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "va00003273", - "question_id": 39872, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005192", - "question_id": 39873, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006260", - "question_id": 39875, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007079", - "question_id": 39876, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "va00003871", - "question_id": 39880, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003955", - "question_id": 39882, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"trumpet\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "va00005518", - "question_id": 39883, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"guzheng\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "va00003597", - "question_id": 39885, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000102", - "question_id": 39887, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004801", - "question_id": 39894, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000444", - "question_id": 39896, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"xylophone\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "vv00000396", - "question_id": 39901, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008596", - "question_id": 39905, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007435", - "question_id": 39907, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007525", - "question_id": 39908, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005086", - "question_id": 39911, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bagpipe\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008746", - "question_id": 39912, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003267", - "question_id": 39914, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008393", - "question_id": 39917, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000154", - "question_id": 39919, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000484", - "question_id": 39920, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000484", - "question_id": 39920, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005040", - "question_id": 39921, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004034", - "question_id": 39923, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005552", - "question_id": 39932, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004617", - "question_id": 39935, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007354", - "question_id": 39936, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"suona\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005005", - "question_id": 39942, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003350", - "question_id": 39951, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"congas\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006341", - "question_id": 39959, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003951", - "question_id": 39961, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005725", - "question_id": 39967, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"xylophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000262", - "question_id": 39968, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "sa00008092", - "question_id": 39969, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"bassoon\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "vv00002656", - "question_id": 39972, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002618", - "question_id": 39973, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "vv00002792", - "question_id": 39979, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006503", - "question_id": 39981, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007033", - "question_id": 39983, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003333", - "question_id": 39988, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "vv00000491", - "question_id": 39990, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004157", - "question_id": 39991, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"tuba\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004157", - "question_id": 39991, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"tuba\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004965", - "question_id": 40001, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"accordion\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "vv00000084", - "question_id": 40006, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "vv00000647", - "question_id": 40008, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"trumpet\", \"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008563", - "question_id": 40011, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"accordion\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "sa00007328", - "question_id": 40013, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003400", - "question_id": 40017, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00003047", - "question_id": 40018, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"banjo\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "va00005341", - "question_id": 40019, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005723", - "question_id": 40020, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005373", - "question_id": 40028, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002738", - "question_id": 40038, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"congas\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000417", - "question_id": 40039, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003815", - "question_id": 40040, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00002622", - "question_id": 40041, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000606", - "question_id": 40043, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "va00004498", - "question_id": 40053, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "sa00008640", - "question_id": 40054, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002858", - "question_id": 40063, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000233", - "question_id": 40065, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006027", - "question_id": 40067, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "sa00006187", - "question_id": 40077, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"tuba\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "vv00000177", - "question_id": 40079, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "va00005385", - "question_id": 40082, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004701", - "question_id": 40084, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004125", - "question_id": 40088, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007455", - "question_id": 40097, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004349", - "question_id": 40109, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "vv00002656", - "question_id": 40110, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000523", - "question_id": 40113, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "vv00000013", - "question_id": 40115, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "sa00007561", - "question_id": 40121, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008937", - "question_id": 40125, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004962", - "question_id": 40128, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004515", - "question_id": 40129, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005758", - "question_id": 40134, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007918", - "question_id": 40136, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006257", - "question_id": 40141, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008113", - "question_id": 40146, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "va00004282", - "question_id": 40147, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00003020", - "question_id": 40154, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002691", - "question_id": 40155, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "sa00007659", - "question_id": 40157, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "vv00000180", - "question_id": 40167, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002630", - "question_id": 40170, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000468", - "question_id": 40180, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"trumpet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "sa00007726", - "question_id": 40196, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"clarinet\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "sa00007726", - "question_id": 40196, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"clarinet\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "vv00000183", - "question_id": 40208, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00002797", - "question_id": 40209, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"guzheng\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "sa00008242", - "question_id": 40213, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "va00005166", - "question_id": 40216, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"xylophone\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000409", - "question_id": 40218, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005931", - "question_id": 40220, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00003955", - "question_id": 40236, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006627", - "question_id": 40237, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000447", - "question_id": 40243, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004888", - "question_id": 40244, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008652", - "question_id": 40248, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005347", - "question_id": 40258, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "vv00000523", - "question_id": 40259, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002846", - "question_id": 40261, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008442", - "question_id": 40268, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005564", - "question_id": 40271, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006063", - "question_id": 40278, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000568", - "question_id": 40293, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bagpipe\", \"right\", \"erhu\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007500", - "question_id": 40295, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003988", - "question_id": 40298, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002548", - "question_id": 40300, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "vv00003061", - "question_id": 40305, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006326", - "question_id": 40308, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"congas\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "vv00000044", - "question_id": 40311, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000386", - "question_id": 40314, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004028", - "question_id": 40316, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003675", - "question_id": 40328, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008413", - "question_id": 40332, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "vv00002750", - "question_id": 40336, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000233", - "question_id": 40341, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005461", - "question_id": 40347, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003460", - "question_id": 40349, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006156", - "question_id": 40361, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "va00003115", - "question_id": 40372, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002748", - "question_id": 40374, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005024", - "question_id": 40385, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007589", - "question_id": 40387, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000323", - "question_id": 40388, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"last\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "sa00006863", - "question_id": 40394, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"pipa\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004036", - "question_id": 40396, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002826", - "question_id": 40399, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005501", - "question_id": 40411, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003507", - "question_id": 40414, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000595", - "question_id": 40415, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006671", - "question_id": 40425, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004682", - "question_id": 40432, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004212", - "question_id": 40443, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006141", - "question_id": 40447, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "va00005746", - "question_id": 40455, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003899", - "question_id": 40457, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005266", - "question_id": 40460, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "vv00002373", - "question_id": 40468, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004069", - "question_id": 40469, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007383", - "question_id": 40473, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008286", - "question_id": 40475, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"suona\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004868", - "question_id": 40498, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000062", - "question_id": 40499, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008243", - "question_id": 40501, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006210", - "question_id": 40507, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"congas\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "sa00006252", - "question_id": 40518, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004002", - "question_id": 40524, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000598", - "question_id": 40525, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008101", - "question_id": 40529, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006417", - "question_id": 40547, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"piano\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "vv00000179", - "question_id": 40555, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "va00004926", - "question_id": 40562, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"guzheng\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "va00003674", - "question_id": 40567, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007864", - "question_id": 40572, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"xylophone\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "sa00007330", - "question_id": 40578, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "sa00008639", - "question_id": 40581, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "va00003240", - "question_id": 40586, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006200", - "question_id": 40600, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004069", - "question_id": 40619, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007759", - "question_id": 40620, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"xylophone\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "va00005272", - "question_id": 40622, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"suona\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "va00003838", - "question_id": 40628, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004223", - "question_id": 40629, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008937", - "question_id": 40633, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00003044", - "question_id": 40634, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003770", - "question_id": 40635, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"erhu\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "va00003500", - "question_id": 40641, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003219", - "question_id": 40643, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00004036", - "question_id": 40645, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008372", - "question_id": 40649, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"banjo\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "vv00002769", - "question_id": 40657, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00000102", - "question_id": 40660, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "va00005511", - "question_id": 40664, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007756", - "question_id": 40666, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003236", - "question_id": 40667, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008229", - "question_id": 40670, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006252", - "question_id": 40672, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005854", - "question_id": 40673, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004431", - "question_id": 40674, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003899", - "question_id": 40676, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006172", - "question_id": 40677, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004470", - "question_id": 40679, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007029", - "question_id": 40683, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000079", - "question_id": 40688, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007033", - "question_id": 40696, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008371", - "question_id": 40698, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005215", - "question_id": 40700, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00003047", - "question_id": 40701, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"right\", \"suona\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005391", - "question_id": 40703, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006949", - "question_id": 40706, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "sa00006364", - "question_id": 40707, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005342", - "question_id": 40709, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005764", - "question_id": 40710, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006187", - "question_id": 40718, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005308", - "question_id": 40720, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004279", - "question_id": 40721, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"saxophone\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "sa00006937", - "question_id": 40724, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003683", - "question_id": 40730, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005273", - "question_id": 40733, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008224", - "question_id": 40736, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005823", - "question_id": 40737, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000256", - "question_id": 40743, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004259", - "question_id": 40746, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "vv00000284", - "question_id": 40749, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "va00003306", - "question_id": 40751, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006857", - "question_id": 40753, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "vv00002527", - "question_id": 40755, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "va00005298", - "question_id": 40757, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004547", - "question_id": 40758, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000614", - "question_id": 40760, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "va00004868", - "question_id": 40761, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002713", - "question_id": 40772, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "sa00007967", - "question_id": 40774, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007234", - "question_id": 40776, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005279", - "question_id": 40777, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004640", - "question_id": 40779, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004324", - "question_id": 40782, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006154", - "question_id": 40786, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008287", - "question_id": 40788, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007594", - "question_id": 40790, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000491", - "question_id": 40801, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"congas\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003135", - "question_id": 40802, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"piano\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "va00004640", - "question_id": 40805, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00005854", - "question_id": 40812, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005823", - "question_id": 40817, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "sa00006093", - "question_id": 40818, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00002888", - "question_id": 40821, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006783", - "question_id": 40822, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008869", - "question_id": 40825, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005791", - "question_id": 40827, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000369", - "question_id": 40831, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005881", - "question_id": 40832, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008094", - "question_id": 40835, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"suona\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "vv00000515", - "question_id": 40839, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005027", - "question_id": 40842, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "va00004462", - "question_id": 40843, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003379", - "question_id": 40844, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006690", - "question_id": 40846, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004745", - "question_id": 40848, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004114", - "question_id": 40855, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00006871", - "question_id": 40856, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005912", - "question_id": 40871, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"xylophone\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "sa00008224", - "question_id": 40873, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004324", - "question_id": 40875, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003350", - "question_id": 40876, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008500", - "question_id": 40879, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003601", - "question_id": 40880, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "sa00008665", - "question_id": 40883, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005042", - "question_id": 40887, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007055", - "question_id": 40888, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004789", - "question_id": 40889, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008138", - "question_id": 40890, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008757", - "question_id": 40891, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006306", - "question_id": 40892, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005174", - "question_id": 40893, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007108", - "question_id": 40894, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008695", - "question_id": 40895, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00007083", - "question_id": 40896, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008089", - "question_id": 40899, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008323", - "question_id": 40900, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003236", - "question_id": 40901, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"piano\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "va00005787", - "question_id": 40902, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005945", - "question_id": 40907, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002616", - "question_id": 40908, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"trumpet\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005584", - "question_id": 40909, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"congas\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "va00004591", - "question_id": 40917, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008164", - "question_id": 40919, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005005", - "question_id": 40920, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "va00003844", - "question_id": 40925, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"tuba\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "vv00002833", - "question_id": 40930, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "va00004473", - "question_id": 40934, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008479", - "question_id": 40935, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00003052", - "question_id": 40937, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"xylophone\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "sa00007729", - "question_id": 40940, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005154", - "question_id": 40943, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006984", - "question_id": 40951, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004984", - "question_id": 40952, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006671", - "question_id": 40957, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000375", - "question_id": 40958, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007602", - "question_id": 40959, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008588", - "question_id": 40960, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000406", - "question_id": 40961, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"xylophone\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004341", - "question_id": 40964, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000062", - "question_id": 40968, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002667", - "question_id": 40975, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000336", - "question_id": 40977, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002482", - "question_id": 40979, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003153", - "question_id": 40989, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003123", - "question_id": 40991, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006972", - "question_id": 40994, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00006811", - "question_id": 40995, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003461", - "question_id": 40997, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000497", - "question_id": 41001, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008876", - "question_id": 41007, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00000262", - "question_id": 41012, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004249", - "question_id": 41016, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004431", - "question_id": 41018, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007068", - "question_id": 41024, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005364", - "question_id": 41026, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003614", - "question_id": 41030, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003743", - "question_id": 41035, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "sa00006296", - "question_id": 41036, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003376", - "question_id": 41042, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008488", - "question_id": 41044, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005314", - "question_id": 41052, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007412", - "question_id": 41054, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007942", - "question_id": 41061, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00000518", - "question_id": 41071, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "vv00000268", - "question_id": 41073, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007756", - "question_id": 41075, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004384", - "question_id": 41078, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005529", - "question_id": 41079, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "va00005341", - "question_id": 41082, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "va00004130", - "question_id": 41083, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000118", - "question_id": 41087, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005299", - "question_id": 41092, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005192", - "question_id": 41093, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000096", - "question_id": 41097, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"last\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "sa00006863", - "question_id": 41103, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00000177", - "question_id": 41104, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006706", - "question_id": 41108, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008030", - "question_id": 41113, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004580", - "question_id": 41114, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007747", - "question_id": 41115, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005507", - "question_id": 41117, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007531", - "question_id": 41119, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007687", - "question_id": 41121, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003704", - "question_id": 41123, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003785", - "question_id": 41124, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006027", - "question_id": 41132, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007196", - "question_id": 41139, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008646", - "question_id": 41141, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007509", - "question_id": 41142, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008905", - "question_id": 41144, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008494", - "question_id": 41146, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007134", - "question_id": 41148, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007272", - "question_id": 41152, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006241", - "question_id": 41161, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004546", - "question_id": 41162, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00008937", - "question_id": 41163, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"pipa\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008136", - "question_id": 41169, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003601", - "question_id": 41170, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002556", - "question_id": 41174, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"trumpet\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "va00003603", - "question_id": 41176, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "vv00002548", - "question_id": 41177, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "sa00006221", - "question_id": 41179, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00006133", - "question_id": 41180, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004627", - "question_id": 41183, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005923", - "question_id": 41186, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008741", - "question_id": 41187, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004926", - "question_id": 41203, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002888", - "question_id": 41204, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "va00005770", - "question_id": 41213, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003823", - "question_id": 41215, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "vv00000513", - "question_id": 41218, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002482", - "question_id": 41219, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "va00003453", - "question_id": 41220, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005130", - "question_id": 41222, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00005817", - "question_id": 41224, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003236", - "question_id": 41226, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005213", - "question_id": 41231, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006503", - "question_id": 41232, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005042", - "question_id": 41234, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008138", - "question_id": 41236, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004512", - "question_id": 41238, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00006141", - "question_id": 41245, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000052", - "question_id": 41246, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003614", - "question_id": 41247, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000595", - "question_id": 41248, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008387", - "question_id": 41249, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004188", - "question_id": 41252, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "vv00002992", - "question_id": 41255, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007158", - "question_id": 41256, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003822", - "question_id": 41257, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00000236", - "question_id": 41259, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005564", - "question_id": 41265, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "va00005933", - "question_id": 41269, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002388", - "question_id": 41276, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006833", - "question_id": 41282, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005052", - "question_id": 41283, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004469", - "question_id": 41284, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000099", - "question_id": 41286, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005466", - "question_id": 41289, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00003080", - "question_id": 41295, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "sa00006755", - "question_id": 41301, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004921", - "question_id": 41304, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008119", - "question_id": 41307, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "va00004773", - "question_id": 41315, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"guzheng\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "vv00000614", - "question_id": 41316, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005914", - "question_id": 41319, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00005507", - "question_id": 41320, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002693", - "question_id": 41323, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "sa00007693", - "question_id": 41325, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00005805", - "question_id": 41328, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000499", - "question_id": 41334, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000121", - "question_id": 41337, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004030", - "question_id": 41344, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006625", - "question_id": 41347, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007885", - "question_id": 41348, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00002711", - "question_id": 41349, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003446", - "question_id": 41353, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004971", - "question_id": 41358, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003988", - "question_id": 41361, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "vv00002858", - "question_id": 41363, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007710", - "question_id": 41365, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007234", - "question_id": 41373, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00004137", - "question_id": 41374, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003727", - "question_id": 41377, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003295", - "question_id": 41380, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007687", - "question_id": 41386, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003890", - "question_id": 41392, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "vv00002633", - "question_id": 41398, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005753", - "question_id": 41401, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006763", - "question_id": 41406, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002867", - "question_id": 41407, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008928", - "question_id": 41413, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004395", - "question_id": 41415, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004395", - "question_id": 41415, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000452", - "question_id": 41421, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00000295", - "question_id": 41423, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004745", - "question_id": 41428, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000351", - "question_id": 41429, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007262", - "question_id": 41431, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002577", - "question_id": 41435, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005882", - "question_id": 41437, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"xylophone\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006141", - "question_id": 41439, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003511", - "question_id": 41442, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006921", - "question_id": 41444, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008332", - "question_id": 41449, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "sa00007154", - "question_id": 41450, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006956", - "question_id": 41452, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004526", - "question_id": 41455, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000575", - "question_id": 41459, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"suona\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005308", - "question_id": 41461, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"congas\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006341", - "question_id": 41462, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"xylophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002749", - "question_id": 41466, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006020", - "question_id": 41469, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005157", - "question_id": 41472, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "va00005627", - "question_id": 41474, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "vv00000118", - "question_id": 41478, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"suona\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "vv00000468", - "question_id": 41479, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007562", - "question_id": 41482, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005683", - "question_id": 41483, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "va00004515", - "question_id": 41484, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "vv00002935", - "question_id": 41489, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "sa00008398", - "question_id": 41492, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000099", - "question_id": 41493, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"congas\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005700", - "question_id": 41494, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008395", - "question_id": 41497, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006409", - "question_id": 41498, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "va00004114", - "question_id": 41501, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"violin\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "sa00006556", - "question_id": 41502, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005946", - "question_id": 41505, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004968", - "question_id": 41512, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003278", - "question_id": 41514, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00007544", - "question_id": 41519, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000262", - "question_id": 41520, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00003027", - "question_id": 41521, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bagpipe\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006417", - "question_id": 41526, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003982", - "question_id": 41529, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006381", - "question_id": 41534, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"flute\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "sa00006779", - "question_id": 41541, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007323", - "question_id": 41542, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005504", - "question_id": 41543, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007234", - "question_id": 41548, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"tuba\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "vv00002785", - "question_id": 41550, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003932", - "question_id": 41551, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008243", - "question_id": 41554, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007582", - "question_id": 41560, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008030", - "question_id": 41561, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"piano\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "va00005504", - "question_id": 41563, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "sa00007814", - "question_id": 41565, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003115", - "question_id": 41568, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008442", - "question_id": 41569, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002588", - "question_id": 41571, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006685", - "question_id": 41572, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000062", - "question_id": 41580, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "va00005291", - "question_id": 41583, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003932", - "question_id": 41587, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "sa00006062", - "question_id": 41591, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002779", - "question_id": 41593, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "va00005750", - "question_id": 41594, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"drum\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "va00004046", - "question_id": 41596, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000525", - "question_id": 41598, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"trumpet\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "va00003822", - "question_id": 41608, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"congas\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00002943", - "question_id": 41609, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003934", - "question_id": 41612, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00002713", - "question_id": 41616, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004620", - "question_id": 41620, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006658", - "question_id": 41622, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005027", - "question_id": 41624, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008755", - "question_id": 41628, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003685", - "question_id": 41631, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "sa00008393", - "question_id": 41636, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00002956", - "question_id": 41642, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bagpipe\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00003046", - "question_id": 41645, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007543", - "question_id": 41652, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004413", - "question_id": 41653, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000088", - "question_id": 41656, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"tuba\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "sa00007783", - "question_id": 41658, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006635", - "question_id": 41659, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004916", - "question_id": 41662, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "vv00000257", - "question_id": 41663, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008479", - "question_id": 41668, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "vv00000567", - "question_id": 41670, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006984", - "question_id": 41671, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "vv00000084", - "question_id": 41674, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002969", - "question_id": 41678, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005912", - "question_id": 41679, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005222", - "question_id": 41681, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005266", - "question_id": 41684, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"xylophone\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "sa00007560", - "question_id": 41695, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004559", - "question_id": 41697, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bagpipe\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006454", - "question_id": 41699, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006210", - "question_id": 41704, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004932", - "question_id": 41705, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008544", - "question_id": 41706, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00002713", - "question_id": 41714, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000523", - "question_id": 41716, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00003044", - "question_id": 41721, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "sa00006154", - "question_id": 41723, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00003130", - "question_id": 41729, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"congas\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "sa00008755", - "question_id": 41732, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004019", - "question_id": 41733, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005552", - "question_id": 41737, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003900", - "question_id": 41739, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008652", - "question_id": 41741, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00003001", - "question_id": 41745, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004888", - "question_id": 41747, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006533", - "question_id": 41749, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00000119", - "question_id": 41751, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "va00003823", - "question_id": 41760, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007721", - "question_id": 41762, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002527", - "question_id": 41763, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008287", - "question_id": 41765, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"pipa\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "va00003105", - "question_id": 41767, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00005988", - "question_id": 41769, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002878", - "question_id": 41771, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005583", - "question_id": 41772, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005348", - "question_id": 41773, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000229", - "question_id": 41776, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004954", - "question_id": 41777, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005816", - "question_id": 41782, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002508", - "question_id": 41783, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006195", - "question_id": 41791, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006409", - "question_id": 41796, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000001", - "question_id": 41798, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"suona\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "vv00002948", - "question_id": 41799, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005759", - "question_id": 41800, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008497", - "question_id": 41801, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007462", - "question_id": 41802, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004932", - "question_id": 41805, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005378", - "question_id": 41808, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007693", - "question_id": 41809, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"violin\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "vv00000227", - "question_id": 41813, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000369", - "question_id": 41814, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"suona\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "sa00008206", - "question_id": 41821, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006458", - "question_id": 41826, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005391", - "question_id": 41828, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"congas\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002833", - "question_id": 41831, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003556", - "question_id": 41832, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005086", - "question_id": 41835, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000001", - "question_id": 41838, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006027", - "question_id": 41839, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007166", - "question_id": 41844, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006207", - "question_id": 41847, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006493", - "question_id": 41848, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004710", - "question_id": 41850, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006200", - "question_id": 41853, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004326", - "question_id": 41854, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000361", - "question_id": 41857, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "sa00008532", - "question_id": 41858, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005763", - "question_id": 41860, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005763", - "question_id": 41860, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003401", - "question_id": 41861, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000518", - "question_id": 41862, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"right\", \"congas\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003256", - "question_id": 41869, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008164", - "question_id": 41870, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00002713", - "question_id": 41871, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bagpipe\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003929", - "question_id": 41873, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000499", - "question_id": 41875, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "va00004946", - "question_id": 41876, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008893", - "question_id": 41878, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000598", - "question_id": 41880, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "sa00006458", - "question_id": 41881, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003584", - "question_id": 41884, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006393", - "question_id": 41887, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007405", - "question_id": 41888, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007405", - "question_id": 41888, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00002934", - "question_id": 41893, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007635", - "question_id": 41895, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008165", - "question_id": 41903, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00000395", - "question_id": 41905, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00008866", - "question_id": 41906, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008187", - "question_id": 41908, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005870", - "question_id": 41909, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007735", - "question_id": 41911, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003727", - "question_id": 41913, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004488", - "question_id": 41914, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007027", - "question_id": 41915, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006871", - "question_id": 41916, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003533", - "question_id": 41917, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007747", - "question_id": 41919, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006818", - "question_id": 41925, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003123", - "question_id": 41927, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004525", - "question_id": 41928, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007788", - "question_id": 41933, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005627", - "question_id": 41935, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000158", - "question_id": 41938, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008410", - "question_id": 41939, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "va00004462", - "question_id": 41940, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "sa00007993", - "question_id": 41941, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007759", - "question_id": 41944, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006340", - "question_id": 41948, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007594", - "question_id": 41950, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"guzheng\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "va00003284", - "question_id": 41951, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000503", - "question_id": 41954, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004808", - "question_id": 41958, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007667", - "question_id": 41966, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005238", - "question_id": 41967, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "vv00000650", - "question_id": 41969, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "sa00008242", - "question_id": 41972, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005426", - "question_id": 41974, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008059", - "question_id": 41975, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000158", - "question_id": 41981, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"trumpet\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "va00004322", - "question_id": 41982, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006571", - "question_id": 41983, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005720", - "question_id": 41985, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"pipa\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "sa00007703", - "question_id": 41989, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000606", - "question_id": 41991, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005470", - "question_id": 41996, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008395", - "question_id": 41997, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"pipa\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "va00005449", - "question_id": 42000, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008372", - "question_id": 42014, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00000567", - "question_id": 42016, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "va00003333", - "question_id": 42018, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004040", - "question_id": 42020, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007799", - "question_id": 42021, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006278", - "question_id": 42023, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002772", - "question_id": 42027, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007496", - "question_id": 42031, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006172", - "question_id": 42033, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "vv00003080", - "question_id": 42037, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000010", - "question_id": 42038, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "vv00000584", - "question_id": 42041, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004384", - "question_id": 42047, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003584", - "question_id": 42049, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"suona\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000125", - "question_id": 42050, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00000013", - "question_id": 42052, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007921", - "question_id": 42058, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007026", - "question_id": 42060, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"accordion\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "vv00000595", - "question_id": 42061, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008936", - "question_id": 42064, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008936", - "question_id": 42064, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00002533", - "question_id": 42066, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003621", - "question_id": 42067, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006210", - "question_id": 42068, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"congas\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008347", - "question_id": 42072, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"accordion\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "sa00006558", - "question_id": 42077, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005494", - "question_id": 42078, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000386", - "question_id": 42079, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00005995", - "question_id": 42080, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"congas\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "va00005203", - "question_id": 42083, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000421", - "question_id": 42087, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005044", - "question_id": 42088, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007582", - "question_id": 42091, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005299", - "question_id": 42094, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003150", - "question_id": 42096, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005537", - "question_id": 42097, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008665", - "question_id": 42098, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007997", - "question_id": 42099, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00002776", - "question_id": 42104, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"xylophone\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007178", - "question_id": 42105, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007561", - "question_id": 42108, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"cello\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "va00005040", - "question_id": 42111, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008215", - "question_id": 42114, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "sa00005988", - "question_id": 42117, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000639", - "question_id": 42119, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003919", - "question_id": 42125, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"xylophone\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "va00005349", - "question_id": 42127, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004413", - "question_id": 42131, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "va00004443", - "question_id": 42132, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003093", - "question_id": 42134, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008609", - "question_id": 42140, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000650", - "question_id": 42153, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "sa00008462", - "question_id": 42160, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00002748", - "question_id": 42161, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "va00004969", - "question_id": 42165, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00008243", - "question_id": 42169, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "sa00007500", - "question_id": 42171, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008868", - "question_id": 42174, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "sa00008079", - "question_id": 42175, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "sa00008646", - "question_id": 42176, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005027", - "question_id": 42179, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003531", - "question_id": 42182, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002508", - "question_id": 42183, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008500", - "question_id": 42184, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"tuba\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "va00004905", - "question_id": 42186, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008113", - "question_id": 42188, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007286", - "question_id": 42189, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003934", - "question_id": 42193, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "va00003350", - "question_id": 42195, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"congas\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006941", - "question_id": 42197, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002674", - "question_id": 42201, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004515", - "question_id": 42202, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "vv00000361", - "question_id": 42203, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008388", - "question_id": 42206, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007233", - "question_id": 42207, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008156", - "question_id": 42211, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "va00003240", - "question_id": 42213, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "vv00002453", - "question_id": 42214, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "va00004902", - "question_id": 42221, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004971", - "question_id": 42222, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005098", - "question_id": 42223, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004687", - "question_id": 42227, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "va00005862", - "question_id": 42229, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "va00003313", - "question_id": 42230, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "va00003130", - "question_id": 42233, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"congas\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008785", - "question_id": 42238, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00005988", - "question_id": 42243, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006133", - "question_id": 42244, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "vv00000523", - "question_id": 42247, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004111", - "question_id": 42248, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005553", - "question_id": 42250, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "sa00007828", - "question_id": 42251, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00003044", - "question_id": 42253, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007602", - "question_id": 42257, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "vv00002630", - "question_id": 42258, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00003052", - "question_id": 42260, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005942", - "question_id": 42261, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "vv00002689", - "question_id": 42262, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "va00003760", - "question_id": 42264, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006122", - "question_id": 42272, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005970", - "question_id": 42273, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "vv00000127", - "question_id": 42275, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002585", - "question_id": 42279, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003094", - "question_id": 42281, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "sa00008588", - "question_id": 42282, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003601", - "question_id": 42283, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "va00003216", - "question_id": 42287, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008367", - "question_id": 42288, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "va00004473", - "question_id": 42291, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002308", - "question_id": 42292, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00002674", - "question_id": 42293, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005729", - "question_id": 42297, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006824", - "question_id": 42298, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003240", - "question_id": 42303, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007091", - "question_id": 42306, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007997", - "question_id": 42310, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "vv00002867", - "question_id": 42311, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005079", - "question_id": 42313, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006753", - "question_id": 42314, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "va00004591", - "question_id": 42321, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "vv00003044", - "question_id": 42323, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005434", - "question_id": 42324, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "va00003500", - "question_id": 42328, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00002633", - "question_id": 42329, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "vv00002633", - "question_id": 42331, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002943", - "question_id": 42332, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004299", - "question_id": 42335, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005537", - "question_id": 42336, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"drum\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "sa00007276", - "question_id": 42340, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "va00005206", - "question_id": 42342, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "sa00006973", - "question_id": 42344, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008264", - "question_id": 42347, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "va00004515", - "question_id": 42349, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007885", - "question_id": 42351, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "va00004025", - "question_id": 42356, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005099", - "question_id": 42359, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "va00004111", - "question_id": 42362, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006818", - "question_id": 42365, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "vv00000453", - "question_id": 42366, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006336", - "question_id": 42369, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004025", - "question_id": 42370, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "vv00002975", - "question_id": 42375, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008936", - "question_id": 42377, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007640", - "question_id": 42381, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003186", - "question_id": 42382, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003439", - "question_id": 42386, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006658", - "question_id": 42388, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "sa00008039", - "question_id": 42391, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006667", - "question_id": 42394, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004559", - "question_id": 42396, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "va00004313", - "question_id": 42398, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "vv00000308", - "question_id": 42400, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005308", - "question_id": 42403, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00006077", - "question_id": 42405, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "sa00008347", - "question_id": 42406, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006783", - "question_id": 42408, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007635", - "question_id": 42411, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004051", - "question_id": 42413, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002453", - "question_id": 42414, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006046", - "question_id": 42416, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007613", - "question_id": 42418, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "sa00007921", - "question_id": 42419, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "va00005584", - "question_id": 42420, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "sa00006393", - "question_id": 42422, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00003622", - "question_id": 42424, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "va00003446", - "question_id": 42425, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007215", - "question_id": 42428, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "sa00007726", - "question_id": 42430, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008320", - "question_id": 42431, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "va00005668", - "question_id": 42434, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005723", - "question_id": 42438, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003337", - "question_id": 42441, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "va00004561", - "question_id": 42442, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006295", - "question_id": 42444, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00005584", - "question_id": 42446, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "vv00000421", - "question_id": 42447, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004452", - "question_id": 42448, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "va00005759", - "question_id": 42449, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005746", - "question_id": 42458, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005770", - "question_id": 42459, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "sa00008314", - "question_id": 42462, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "vv00000395", - "question_id": 42465, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "va00005203", - "question_id": 42466, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"piano\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "sa00008393", - "question_id": 42467, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005729", - "question_id": 42468, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "sa00008936", - "question_id": 42470, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "sa00006783", - "question_id": 42471, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "sa00006241", - "question_id": 42472, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "sa00007710", - "question_id": 42473, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008493", - "question_id": 42475, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005791", - "question_id": 42476, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "vv00000499", - "question_id": 42477, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000369", - "question_id": 42482, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000369", - "question_id": 42482, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007016", - "question_id": 42489, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00003363", - "question_id": 42490, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00005985", - "question_id": 42492, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00002647", - "question_id": 42494, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006606", - "question_id": 42496, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "sa00007033", - "question_id": 42498, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "vv00002507", - "question_id": 42500, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003883", - "question_id": 42502, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "sa00007139", - "question_id": 42504, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003453", - "question_id": 42505, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "va00003363", - "question_id": 42510, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "sa00007854", - "question_id": 42513, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005192", - "question_id": 42515, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "va00005341", - "question_id": 42517, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004561", - "question_id": 42518, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "sa00006921", - "question_id": 42522, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "va00004623", - "question_id": 42523, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "va00004717", - "question_id": 42529, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "vv00002779", - "question_id": 42535, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "va00004921", - "question_id": 42536, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "vv00000452", - "question_id": 42541, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "va00005044", - "question_id": 42543, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00006173", - "question_id": 42544, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004640", - "question_id": 42548, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006685", - "question_id": 42549, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00005661", - "question_id": 42551, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002906", - "question_id": 42555, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "va00003597", - "question_id": 42561, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "sa00008371", - "question_id": 42562, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "va00003961", - "question_id": 42563, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006042", - "question_id": 42571, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "sa00007768", - "question_id": 42572, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "va00005506", - "question_id": 42574, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00008320", - "question_id": 42576, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "va00004591", - "question_id": 42577, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008367", - "question_id": 42580, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008367", - "question_id": 42580, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005166", - "question_id": 42582, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "vv00002527", - "question_id": 42584, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000568", - "question_id": 42585, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "sa00008755", - "question_id": 42587, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "va00005403", - "question_id": 42590, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005661", - "question_id": 42592, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "sa00008037", - "question_id": 42593, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008654", - "question_id": 42594, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "sa00007621", - "question_id": 42595, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003219", - "question_id": 42597, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00000513", - "question_id": 42598, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "sa00007774", - "question_id": 42602, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008593", - "question_id": 42603, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "sa00006625", - "question_id": 42604, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "va00004452", - "question_id": 42605, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "sa00006006", - "question_id": 42608, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006568", - "question_id": 42610, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005737", - "question_id": 42614, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "sa00007170", - "question_id": 42616, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "va00005656", - "question_id": 42618, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005117", - "question_id": 42621, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "va00005715", - "question_id": 42625, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006062", - "question_id": 42627, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "va00004305", - "question_id": 42628, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002797", - "question_id": 42631, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004515", - "question_id": 42634, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"drum\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "va00004259", - "question_id": 42636, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005345", - "question_id": 42639, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "va00003378", - "question_id": 42642, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003883", - "question_id": 42643, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003511", - "question_id": 42645, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "vv00002440", - "question_id": 42646, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004009", - "question_id": 42647, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004826", - "question_id": 42654, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "sa00008654", - "question_id": 42655, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002833", - "question_id": 42656, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "sa00008286", - "question_id": 42657, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004469", - "question_id": 42658, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00006983", - "question_id": 42663, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004513", - "question_id": 42665, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006475", - "question_id": 42669, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "sa00007594", - "question_id": 42671, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00008219", - "question_id": 42674, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"drum\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "va00005970", - "question_id": 42675, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002404", - "question_id": 42679, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "sa00006558", - "question_id": 42681, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007814", - "question_id": 42682, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "va00004499", - "question_id": 42683, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"suona\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "va00003268", - "question_id": 42684, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003156", - "question_id": 42686, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006341", - "question_id": 42687, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "va00005942", - "question_id": 42689, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "sa00007186", - "question_id": 42692, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007635", - "question_id": 42694, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "va00004163", - "question_id": 42695, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "va00005068", - "question_id": 42696, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "sa00008312", - "question_id": 42697, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000499", - "question_id": 42699, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "vv00000646", - "question_id": 42702, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "va00004413", - "question_id": 42706, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"clarinet\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "vv00000524", - "question_id": 42707, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007445", - "question_id": 42708, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008286", - "question_id": 42710, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008544", - "question_id": 42713, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "va00004993", - "question_id": 42714, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "va00005627", - "question_id": 42719, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "sa00007373", - "question_id": 42720, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004997", - "question_id": 42721, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007993", - "question_id": 42722, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "va00003906", - "question_id": 42724, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "va00005518", - "question_id": 42726, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "vv00002597", - "question_id": 42727, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "va00005763", - "question_id": 42729, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00005763", - "question_id": 42729, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "sa00008286", - "question_id": 42731, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00007029", - "question_id": 42733, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004188", - "question_id": 42735, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "va00003768", - "question_id": 42737, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005805", - "question_id": 42741, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "va00004025", - "question_id": 42742, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "sa00006198", - "question_id": 42744, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006088", - "question_id": 42747, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "va00003900", - "question_id": 42748, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "sa00006685", - "question_id": 42749, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00004999", - "question_id": 42750, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "va00003727", - "question_id": 42752, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004294", - "question_id": 42753, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005117", - "question_id": 42754, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003727", - "question_id": 42755, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "sa00007118", - "question_id": 42756, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"accordion\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "sa00007544", - "question_id": 42758, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00005099", - "question_id": 42759, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007544", - "question_id": 42760, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "sa00007371", - "question_id": 42761, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "va00004762", - "question_id": 42762, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005037", - "question_id": 42766, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "sa00007272", - "question_id": 42770, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00006336", - "question_id": 42773, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00003465", - "question_id": 42778, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008795", - "question_id": 42779, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008513", - "question_id": 42781, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "sa00008374", - "question_id": 42782, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "va00005909", - "question_id": 42783, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00003006", - "question_id": 42784, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "sa00006973", - "question_id": 42786, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "va00005656", - "question_id": 42787, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00007705", - "question_id": 42788, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "sa00008321", - "question_id": 42792, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "va00004531", - "question_id": 42793, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00005378", - "question_id": 42795, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00004239", - "question_id": 42799, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005098", - "question_id": 42803, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00008746", - "question_id": 42804, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "va00005519", - "question_id": 42805, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004687", - "question_id": 42807, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008187", - "question_id": 42809, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00005027", - "question_id": 42811, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "sa00006198", - "question_id": 42813, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "sa00005994", - "question_id": 42815, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "sa00006154", - "question_id": 42816, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "sa00008700", - "question_id": 42817, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "va00005345", - "question_id": 42819, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006611", - "question_id": 42821, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "va00004212", - "question_id": 42824, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "va00004365", - "question_id": 42826, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003906", - "question_id": 42829, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005040", - "question_id": 42832, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "vv00002527", - "question_id": 42835, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "sa00008079", - "question_id": 42836, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "sa00008079", - "question_id": 42836, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "sa00007531", - "question_id": 42838, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "va00005817", - "question_id": 42839, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "sa00006781", - "question_id": 42846, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "va00005586", - "question_id": 42847, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "sa00008255", - "question_id": 42850, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003244", - "question_id": 42855, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004470", - "question_id": 42857, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "va00004762", - "question_id": 42858, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00006393", - "question_id": 42859, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "vv00000119", - "question_id": 42860, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "sa00005988", - "question_id": 42862, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "va00003256", - "question_id": 42865, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "sa00006458", - "question_id": 42869, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "vv00000118", - "question_id": 42875, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"pipa\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "va00004547", - "question_id": 42877, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "va00004962", - "question_id": 42879, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"accordion\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "sa00006956", - "question_id": 42881, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "vv00003064", - "question_id": 42882, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006046", - "question_id": 42883, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004041", - "question_id": 42884, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006381", - "question_id": 42889, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007091", - "question_id": 42891, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "va00004329", - "question_id": 42892, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "sa00007729", - "question_id": 42899, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "sa00008256", - "question_id": 42901, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007311", - "question_id": 42903, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "sa00008263", - "question_id": 42905, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "vv00000183", - "question_id": 42912, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002742", - "question_id": 42913, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "sa00008116", - "question_id": 42916, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "sa00008375", - "question_id": 42918, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "va00005079", - "question_id": 42920, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "sa00006602", - "question_id": 42921, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00005985", - "question_id": 42923, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005154", - "question_id": 42925, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "va00003464", - "question_id": 42926, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007589", - "question_id": 42929, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003379", - "question_id": 42930, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "vv00002404", - "question_id": 42932, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "sa00006296", - "question_id": 42934, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "va00004569", - "question_id": 42935, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008679", - "question_id": 42936, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "va00005508", - "question_id": 42937, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"cello\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "vv00003044", - "question_id": 42939, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "vv00003006", - "question_id": 42940, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008255", - "question_id": 42943, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "va00003760", - "question_id": 42944, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "sa00006062", - "question_id": 42945, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "vv00000140", - "question_id": 42946, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004499", - "question_id": 42947, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004200", - "question_id": 42949, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "va00005700", - "question_id": 42952, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "va00005504", - "question_id": 42953, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00008513", - "question_id": 42954, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004770", - "question_id": 42955, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "sa00008387", - "question_id": 42957, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "va00004623", - "question_id": 42964, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "sa00006781", - "question_id": 42966, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004293", - "question_id": 42967, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "sa00006475", - "question_id": 42968, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007667", - "question_id": 42972, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "sa00006983", - "question_id": 42974, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "va00003715", - "question_id": 42976, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008163", - "question_id": 42980, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "sa00008215", - "question_id": 42981, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "va00004374", - "question_id": 42983, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "va00005660", - "question_id": 42984, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "va00004702", - "question_id": 42988, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "sa00006781", - "question_id": 42989, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008936", - "question_id": 42992, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "sa00008497", - "question_id": 42994, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "va00005683", - "question_id": 42995, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "sa00006857", - "question_id": 42996, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005511", - "question_id": 42997, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "va00004932", - "question_id": 43000, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "vv00002647", - "question_id": 43001, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "va00005529", - "question_id": 43002, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "va00005553", - "question_id": 43003, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "sa00006268", - "question_id": 43004, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"tuba\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "sa00006381", - "question_id": 43007, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "vv00002732", - "question_id": 43012, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "vv00000140", - "question_id": 43014, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "vv00000183", - "question_id": 43020, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "va00003461", - "question_id": 43022, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "va00003284", - "question_id": 43029, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "sa00007203", - "question_id": 43035, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "sa00006685", - "question_id": 43038, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "sa00006556", - "question_id": 43039, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007328", - "question_id": 43041, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"suona\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "va00003627", - "question_id": 43045, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005734", - "question_id": 43047, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "sa00007286", - "question_id": 43053, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "sa00008566", - "question_id": 43056, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004544", - "question_id": 43058, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "vv00002969", - "question_id": 43059, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004702", - "question_id": 43061, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00005378", - "question_id": 43064, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "va00004488", - "question_id": 43066, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005668", - "question_id": 43067, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "sa00008866", - "question_id": 43068, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "va00003853", - "question_id": 43073, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "sa00007208", - "question_id": 43077, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "va00004046", - "question_id": 43079, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "sa00007215", - "question_id": 43080, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008400", - "question_id": 43082, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "sa00007747", - "question_id": 43083, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "sa00006006", - "question_id": 43084, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"bassoon\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "sa00006006", - "question_id": 43084, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"bassoon\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "va00003296", - "question_id": 43087, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "sa00008165", - "question_id": 43088, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"xylophone\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "va00005750", - "question_id": 43090, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00007417", - "question_id": 43091, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "va00005220", - "question_id": 43092, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008165", - "question_id": 43093, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006207", - "question_id": 43094, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "sa00007562", - "question_id": 43095, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "sa00006477", - "question_id": 43098, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "va00005466", - "question_id": 43104, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "sa00006658", - "question_id": 43106, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006567", - "question_id": 43107, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "sa00008723", - "question_id": 43111, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008470", - "question_id": 43114, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "va00005111", - "question_id": 43115, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003207", - "question_id": 43117, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005347", - "question_id": 43118, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005166", - "question_id": 43121, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006312", - "question_id": 43122, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003898", - "question_id": 43125, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"accordion\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "va00003356", - "question_id": 43128, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "sa00007417", - "question_id": 43131, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "sa00006007", - "question_id": 43135, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "va00003186", - "question_id": 43139, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "va00003898", - "question_id": 43140, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005737", - "question_id": 43141, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007613", - "question_id": 43143, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005476", - "question_id": 43146, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "sa00008868", - "question_id": 43147, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004702", - "question_id": 43149, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00008400", - "question_id": 43151, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00004546", - "question_id": 43158, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00008776", - "question_id": 43159, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "va00003271", - "question_id": 43160, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "va00005243", - "question_id": 43161, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002674", - "question_id": 43165, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "sa00007543", - "question_id": 43167, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007543", - "question_id": 43167, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004808", - "question_id": 43173, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "va00004182", - "question_id": 43177, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "sa00007525", - "question_id": 43179, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "vv00000118", - "question_id": 43180, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "sa00007695", - "question_id": 43184, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008164", - "question_id": 43185, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "vv00000284", - "question_id": 43186, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006159", - "question_id": 43188, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"piano\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "sa00006133", - "question_id": 43189, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00004365", - "question_id": 43192, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "sa00007540", - "question_id": 43195, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007540", - "question_id": 43195, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004888", - "question_id": 43196, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "va00003150", - "question_id": 43197, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "sa00006364", - "question_id": 43199, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008690", - "question_id": 43200, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00006311", - "question_id": 43201, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "va00005476", - "question_id": 43202, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "va00003273", - "question_id": 43205, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "sa00008795", - "question_id": 43206, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "vv00003075", - "question_id": 43207, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003670", - "question_id": 43208, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "sa00007788", - "question_id": 43209, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "sa00006477", - "question_id": 43211, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003271", - "question_id": 43212, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "va00004212", - "question_id": 43214, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003219", - "question_id": 43217, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "va00003785", - "question_id": 43219, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00006909", - "question_id": 43220, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "va00003091", - "question_id": 43221, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003378", - "question_id": 43223, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005649", - "question_id": 43227, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "va00003477", - "question_id": 43228, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005508", - "question_id": 43229, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007171", - "question_id": 43234, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003670", - "question_id": 43236, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006571", - "question_id": 43238, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "vv00002630", - "question_id": 43242, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "sa00006451", - "question_id": 43244, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "vv00002934", - "question_id": 43245, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "sa00007667", - "question_id": 43246, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "va00003446", - "question_id": 43250, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "sa00007373", - "question_id": 43251, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "sa00006240", - "question_id": 43253, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "sa00008072", - "question_id": 43255, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004921", - "question_id": 43257, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"flute\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "va00003173", - "question_id": 43261, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007311", - "question_id": 43262, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008566", - "question_id": 43263, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "sa00007705", - "question_id": 43266, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003293", - "question_id": 43267, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "sa00007729", - "question_id": 43278, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"flute\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "vv00002742", - "question_id": 43280, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005291", - "question_id": 43286, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "va00003785", - "question_id": 43288, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "vv00002630", - "question_id": 43291, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "sa00007171", - "question_id": 43292, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "sa00006867", - "question_id": 43295, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "va00003683", - "question_id": 43296, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000646", - "question_id": 43299, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008646", - "question_id": 43301, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "va00005273", - "question_id": 43302, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "va00003961", - "question_id": 43305, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00004114", - "question_id": 43307, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "va00004773", - "question_id": 43308, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008470", - "question_id": 43311, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006753", - "question_id": 43312, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "va00004546", - "question_id": 43313, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00007709", - "question_id": 43315, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "va00004525", - "question_id": 43316, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "sa00006326", - "question_id": 43318, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "vv00003064", - "question_id": 43319, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00008413", - "question_id": 43324, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "sa00006983", - "question_id": 43326, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00005507", - "question_id": 43331, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "va00003334", - "question_id": 43333, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "vv00002588", - "question_id": 43335, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"banjo\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "sa00007158", - "question_id": 43337, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003173", - "question_id": 43338, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00004665", - "question_id": 43341, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004046", - "question_id": 43343, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002988", - "question_id": 43344, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "va00004239", - "question_id": 43347, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "va00005668", - "question_id": 43348, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00005148", - "question_id": 43351, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "vv00002597", - "question_id": 43356, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "sa00008497", - "question_id": 43363, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00005215", - "question_id": 43364, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00007695", - "question_id": 43366, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "vv00002588", - "question_id": 43375, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"right\", \"bagpipe\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008538", - "question_id": 43376, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007755", - "question_id": 43378, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00005656", - "question_id": 43381, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003245", - "question_id": 43387, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006606", - "question_id": 43388, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "vv00002742", - "question_id": 43390, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "va00003477", - "question_id": 43392, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000140", - "question_id": 43406, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004341", - "question_id": 43407, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005817", - "question_id": 43412, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00004805", - "question_id": 43413, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "vv00000386", - "question_id": 43415, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "vv00000284", - "question_id": 43416, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "va00004413", - "question_id": 43419, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "vv00002975", - "question_id": 43420, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006606", - "question_id": 43422, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "vv00000010", - "question_id": 43429, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "va00004789", - "question_id": 43431, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006159", - "question_id": 43432, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00005477", - "question_id": 43437, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00005148", - "question_id": 43439, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00007709", - "question_id": 43441, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00005477", - "question_id": 43444, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00005737", - "question_id": 43446, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00005148", - "question_id": 43447, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00004805", - "question_id": 43450, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "va00005224", - "question_id": 43452, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004293", - "question_id": 43454, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "va00005349", - "question_id": 43455, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00006921", - "question_id": 43456, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005364", - "question_id": 43457, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00005656", - "question_id": 43458, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006083", - "question_id": 43460, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00007256", - "question_id": 43465, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00004826", - "question_id": 43467, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "va00003295", - "question_id": 43468, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00004436", - "question_id": 43470, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"saxophone\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "va00003853", - "question_id": 43472, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00005729", - "question_id": 43473, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00008374", - "question_id": 43474, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "sa00007412", - "question_id": 43475, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00004024", - "question_id": 43476, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00008194", - "question_id": 43478, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003293", - "question_id": 43480, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000575", - "question_id": 43485, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "va00003150", - "question_id": 43494, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "vv00003001", - "question_id": 43497, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "va00005942", - "question_id": 43498, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005660", - "question_id": 43501, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00008776", - "question_id": 43504, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "sa00006020", - "question_id": 43505, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004452", - "question_id": 43506, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005215", - "question_id": 43507, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00006268", - "question_id": 43509, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "va00005904", - "question_id": 43514, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00005494", - "question_id": 43516, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003345", - "question_id": 43527, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00006515", - "question_id": 43534, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"erhu\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "sa00007848", - "question_id": 43552, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "va00003293", - "question_id": 43554, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "vv00002388", - "question_id": 43557, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "sa00008255", - "question_id": 43566, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007709", - "question_id": 43570, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003379", - "question_id": 43571, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"suona\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004024", - "question_id": 43573, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"pipa\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00002975", - "question_id": 43575, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "sa00007310", - "question_id": 43584, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003898", - "question_id": 43585, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00007310", - "question_id": 43586, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00007848", - "question_id": 43589, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "va00005393", - "question_id": 43593, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008219", - "question_id": 43594, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00003115", - "question_id": 43596, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00006027", - "question_id": 43597, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005904", - "question_id": 43599, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00003785", - "question_id": 43602, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "vv00000460", - "question_id": 43604, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"tuba\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "sa00007328", - "question_id": 43608, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003836", - "question_id": 43610, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000468", - "question_id": 43618, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006103", - "question_id": 43620, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00006973", - "question_id": 43621, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007799", - "question_id": 43622, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"clarinet\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "va00004546", - "question_id": 43623, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007768", - "question_id": 43625, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00008769", - "question_id": 43626, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"guzheng\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "sa00008524", - "question_id": 43627, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005272", - "question_id": 43630, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004024", - "question_id": 43631, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000154", - "question_id": 43634, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000369", - "question_id": 43638, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007814", - "question_id": 43647, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00005994", - "question_id": 43648, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00006706", - "question_id": 43654, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008072", - "question_id": 43658, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005272", - "question_id": 43660, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"suona\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00005005", - "question_id": 43661, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00007194", - "question_id": 43665, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bagpipe\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002388", - "question_id": 43668, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004608", - "question_id": 43674, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00008269", - "question_id": 43675, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001372", - "question_id": 43701, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "eva00000723", - "question_id": 43705, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000475", - "question_id": 43707, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001427", - "question_id": 43708, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000770", - "question_id": 43709, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000917", - "question_id": 43710, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001358", - "question_id": 43711, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001458", - "question_id": 43714, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000356", - "question_id": 43717, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "evv00001358", - "question_id": 43720, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001114", - "question_id": 43721, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000204", - "question_id": 43722, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000799", - "question_id": 43724, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000566", - "question_id": 43726, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"electric_bass\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000645", - "question_id": 43728, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007746", - "question_id": 43730, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000725", - "question_id": 43733, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"guzheng\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "eva00000809", - "question_id": 43735, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000622", - "question_id": 43736, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001173", - "question_id": 43738, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000843", - "question_id": 43739, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "eva00001210", - "question_id": 43740, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000718", - "question_id": 43748, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001264", - "question_id": 43749, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000472", - "question_id": 43751, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001353", - "question_id": 43753, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"banjo\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000880", - "question_id": 43754, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00000713", - "question_id": 43755, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000321", - "question_id": 43756, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00001150", - "question_id": 43758, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00001129", - "question_id": 43759, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001293", - "question_id": 43760, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000470", - "question_id": 43761, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001070", - "question_id": 43763, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00001195", - "question_id": 43764, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00001094", - "question_id": 43769, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000539", - "question_id": 43770, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000419", - "question_id": 43771, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000543", - "question_id": 43772, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000300", - "question_id": 43773, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000549", - "question_id": 43774, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001256", - "question_id": 43775, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001297", - "question_id": 43779, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001145", - "question_id": 43780, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000792", - "question_id": 43781, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001272", - "question_id": 43787, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000405", - "question_id": 43789, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001025", - "question_id": 43790, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "eva00001173", - "question_id": 43791, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"electric_bass\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000875", - "question_id": 43792, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "eva00000875", - "question_id": 43792, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "evv00001353", - "question_id": 43793, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000699", - "question_id": 43795, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000529", - "question_id": 43799, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000976", - "question_id": 43800, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001477", - "question_id": 43803, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000500", - "question_id": 43804, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001145", - "question_id": 43805, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000462", - "question_id": 43806, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001367", - "question_id": 43807, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000865", - "question_id": 43809, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000865", - "question_id": 43809, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001329", - "question_id": 43812, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001340", - "question_id": 43814, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000349", - "question_id": 43815, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000224", - "question_id": 43816, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004516", - "question_id": 43819, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000718", - "question_id": 43823, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001174", - "question_id": 43824, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001385", - "question_id": 43831, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00000913", - "question_id": 43834, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001408", - "question_id": 43836, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001186", - "question_id": 43837, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000281", - "question_id": 43838, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"right\", \"bassoon\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000927", - "question_id": 43839, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000811", - "question_id": 43843, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000462", - "question_id": 43845, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000680", - "question_id": 43848, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000254", - "question_id": 43850, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000332", - "question_id": 43852, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001010", - "question_id": 43853, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00001064", - "question_id": 43855, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000842", - "question_id": 43860, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"bassoon\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001228", - "question_id": 43861, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001324", - "question_id": 43863, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001188", - "question_id": 43864, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000424", - "question_id": 43865, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000330", - "question_id": 43866, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001387", - "question_id": 43871, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000194", - "question_id": 43874, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001446", - "question_id": 43875, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"last\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "eva00000865", - "question_id": 43876, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000865", - "question_id": 43876, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000235", - "question_id": 43879, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001485", - "question_id": 43881, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"drum\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000791", - "question_id": 43882, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000791", - "question_id": 43882, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001046", - "question_id": 43884, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "esa00000350", - "question_id": 43885, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001454", - "question_id": 43886, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001340", - "question_id": 43896, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001182", - "question_id": 43897, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000883", - "question_id": 43898, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001469", - "question_id": 43899, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000301", - "question_id": 43901, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000840", - "question_id": 43905, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000845", - "question_id": 43907, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000753", - "question_id": 43908, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000440", - "question_id": 43910, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001415", - "question_id": 43913, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000232", - "question_id": 43915, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001273", - "question_id": 43916, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"drum\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000731", - "question_id": 43920, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000248", - "question_id": 43921, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001435", - "question_id": 43922, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000277", - "question_id": 43924, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001108", - "question_id": 43928, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000366", - "question_id": 43931, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000259", - "question_id": 43937, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001468", - "question_id": 43939, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000897", - "question_id": 43940, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000294", - "question_id": 43941, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000765", - "question_id": 43943, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000204", - "question_id": 43946, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000182", - "question_id": 43948, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000493", - "question_id": 43950, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000224", - "question_id": 43951, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00001112", - "question_id": 43954, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000240", - "question_id": 43956, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001154", - "question_id": 43957, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"ukulele\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000605", - "question_id": 43962, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000896", - "question_id": 43964, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000626", - "question_id": 43966, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000765", - "question_id": 43967, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001256", - "question_id": 43974, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000901", - "question_id": 43981, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000307", - "question_id": 43982, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00001125", - "question_id": 43985, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00001207", - "question_id": 43988, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000250", - "question_id": 43991, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000232", - "question_id": 43997, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000547", - "question_id": 44000, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00001201", - "question_id": 44001, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001453", - "question_id": 44005, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00000891", - "question_id": 44007, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000016", - "question_id": 44008, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001080", - "question_id": 44012, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000756", - "question_id": 44013, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000668", - "question_id": 44014, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000217", - "question_id": 44016, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000018", - "question_id": 44018, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000475", - "question_id": 44025, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000812", - "question_id": 44027, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000197", - "question_id": 44028, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000940", - "question_id": 44029, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000398", - "question_id": 44031, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001393", - "question_id": 44033, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000259", - "question_id": 44035, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001241", - "question_id": 44039, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000501", - "question_id": 44041, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001143", - "question_id": 44043, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001021", - "question_id": 44047, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001298", - "question_id": 44048, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001308", - "question_id": 44052, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001161", - "question_id": 44055, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001208", - "question_id": 44057, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001392", - "question_id": 44058, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001442", - "question_id": 44059, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001217", - "question_id": 44061, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000982", - "question_id": 44062, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001424", - "question_id": 44063, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000696", - "question_id": 44067, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"saxophone\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "sa00008679", - "question_id": 44068, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001210", - "question_id": 44071, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"bassoon\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "eva00001084", - "question_id": 44073, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000700", - "question_id": 44079, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000223", - "question_id": 44081, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000366", - "question_id": 44084, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000927", - "question_id": 44085, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000866", - "question_id": 44090, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000683", - "question_id": 44092, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000157", - "question_id": 44093, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000204", - "question_id": 44094, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000814", - "question_id": 44099, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000615", - "question_id": 44101, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001356", - "question_id": 44104, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000852", - "question_id": 44109, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001055", - "question_id": 44111, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"banjo\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001116", - "question_id": 44114, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000390", - "question_id": 44115, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000981", - "question_id": 44120, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000508", - "question_id": 44121, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000384", - "question_id": 44122, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000458", - "question_id": 44123, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000780", - "question_id": 44125, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000921", - "question_id": 44126, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000541", - "question_id": 44129, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001381", - "question_id": 44130, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001377", - "question_id": 44131, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000883", - "question_id": 44135, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000923", - "question_id": 44139, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"electric_bass\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000273", - "question_id": 44140, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001218", - "question_id": 44141, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001173", - "question_id": 44144, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"electric_bass\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000650", - "question_id": 44145, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000732", - "question_id": 44146, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000842", - "question_id": 44148, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000426", - "question_id": 44149, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001347", - "question_id": 44153, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000269", - "question_id": 44154, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004946", - "question_id": 44155, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001203", - "question_id": 44156, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"banjo\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001402", - "question_id": 44160, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000485", - "question_id": 44164, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001145", - "question_id": 44166, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000250", - "question_id": 44167, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001161", - "question_id": 44168, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001028", - "question_id": 44170, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001044", - "question_id": 44176, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000422", - "question_id": 44177, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001453", - "question_id": 44179, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000285", - "question_id": 44183, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000911", - "question_id": 44186, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001290", - "question_id": 44191, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000759", - "question_id": 44193, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000545", - "question_id": 44194, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001390", - "question_id": 44195, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000980", - "question_id": 44196, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000588", - "question_id": 44197, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001385", - "question_id": 44202, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000494", - "question_id": 44204, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000459", - "question_id": 44206, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001399", - "question_id": 44208, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000651", - "question_id": 44212, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000439", - "question_id": 44216, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005780", - "question_id": 44217, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001308", - "question_id": 44220, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000697", - "question_id": 44221, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000770", - "question_id": 44225, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000718", - "question_id": 44228, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000930", - "question_id": 44230, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001340", - "question_id": 44232, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000560", - "question_id": 44233, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000560", - "question_id": 44233, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000829", - "question_id": 44234, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000442", - "question_id": 44238, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000812", - "question_id": 44239, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001327", - "question_id": 44240, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000725", - "question_id": 44241, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000540", - "question_id": 44242, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000498", - "question_id": 44245, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001187", - "question_id": 44246, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007667", - "question_id": 44251, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001030", - "question_id": 44252, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"electric_bass\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000507", - "question_id": 44254, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000475", - "question_id": 44255, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001239", - "question_id": 44257, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001041", - "question_id": 44259, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001412", - "question_id": 44260, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"pipa\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000689", - "question_id": 44262, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000143", - "question_id": 44263, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000189", - "question_id": 44268, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001197", - "question_id": 44269, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001306", - "question_id": 44270, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000307", - "question_id": 44273, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000795", - "question_id": 44274, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000843", - "question_id": 44277, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000843", - "question_id": 44277, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001244", - "question_id": 44278, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001278", - "question_id": 44279, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001251", - "question_id": 44282, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004799", - "question_id": 44283, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000822", - "question_id": 44284, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000599", - "question_id": 44285, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001289", - "question_id": 44286, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000896", - "question_id": 44287, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000462", - "question_id": 44292, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001385", - "question_id": 44294, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001385", - "question_id": 44294, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001457", - "question_id": 44296, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000511", - "question_id": 44297, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000472", - "question_id": 44298, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001344", - "question_id": 44301, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001159", - "question_id": 44302, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001239", - "question_id": 44304, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001014", - "question_id": 44305, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000414", - "question_id": 44307, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000021", - "question_id": 44311, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007323", - "question_id": 44312, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000427", - "question_id": 44314, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001243", - "question_id": 44319, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00000806", - "question_id": 44320, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00001047", - "question_id": 44321, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001197", - "question_id": 44322, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001007", - "question_id": 44323, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000895", - "question_id": 44325, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000418", - "question_id": 44327, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000772", - "question_id": 44328, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001147", - "question_id": 44330, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001252", - "question_id": 44332, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001212", - "question_id": 44333, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000149", - "question_id": 44334, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000593", - "question_id": 44335, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001129", - "question_id": 44336, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001014", - "question_id": 44337, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001440", - "question_id": 44339, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00001102", - "question_id": 44340, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000414", - "question_id": 44341, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000511", - "question_id": 44343, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000979", - "question_id": 44345, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"suona\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000433", - "question_id": 44346, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000220", - "question_id": 44348, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"trumpet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001228", - "question_id": 44349, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000293", - "question_id": 44351, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000880", - "question_id": 44353, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001262", - "question_id": 44355, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000751", - "question_id": 44356, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000617", - "question_id": 44358, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001352", - "question_id": 44359, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008679", - "question_id": 44360, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00001156", - "question_id": 44362, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001392", - "question_id": 44363, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"congas\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000628", - "question_id": 44364, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000605", - "question_id": 44365, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000899", - "question_id": 44367, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00001189", - "question_id": 44368, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000149", - "question_id": 44372, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000333", - "question_id": 44377, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000695", - "question_id": 44379, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001204", - "question_id": 44381, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000947", - "question_id": 44382, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000924", - "question_id": 44384, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000202", - "question_id": 44386, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000155", - "question_id": 44390, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001113", - "question_id": 44393, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000623", - "question_id": 44395, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001334", - "question_id": 44399, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000301", - "question_id": 44402, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000549", - "question_id": 44405, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001021", - "question_id": 44407, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000215", - "question_id": 44408, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"middle\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000339", - "question_id": 44409, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001435", - "question_id": 44411, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000846", - "question_id": 44412, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001474", - "question_id": 44413, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000632", - "question_id": 44414, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001249", - "question_id": 44415, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001099", - "question_id": 44417, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"drum\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "esa00000543", - "question_id": 44419, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000945", - "question_id": 44421, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000945", - "question_id": 44421, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001037", - "question_id": 44423, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000815", - "question_id": 44424, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001030", - "question_id": 44426, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"electric_bass\", \"middle\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000800", - "question_id": 44427, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000516", - "question_id": 44428, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001407", - "question_id": 44429, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000934", - "question_id": 44430, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000809", - "question_id": 44431, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000753", - "question_id": 44433, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001007", - "question_id": 44435, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000645", - "question_id": 44436, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00001216", - "question_id": 44438, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001252", - "question_id": 44439, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000924", - "question_id": 44440, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000960", - "question_id": 44441, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"middle\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001166", - "question_id": 44442, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001094", - "question_id": 44443, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001043", - "question_id": 44445, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"middle\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001315", - "question_id": 44446, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001413", - "question_id": 44452, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000799", - "question_id": 44453, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001208", - "question_id": 44454, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bassoon\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000623", - "question_id": 44457, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000349", - "question_id": 44458, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000822", - "question_id": 44459, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000832", - "question_id": 44460, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000975", - "question_id": 44463, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001188", - "question_id": 44464, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000263", - "question_id": 44466, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001358", - "question_id": 44467, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000696", - "question_id": 44469, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"electric_bass\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001488", - "question_id": 44470, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000727", - "question_id": 44471, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000254", - "question_id": 44472, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001485", - "question_id": 44473, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000640", - "question_id": 44474, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000901", - "question_id": 44475, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007060", - "question_id": 44477, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000805", - "question_id": 44478, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001331", - "question_id": 44479, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001466", - "question_id": 44480, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000897", - "question_id": 44485, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000792", - "question_id": 44486, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000700", - "question_id": 44489, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006311", - "question_id": 44491, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001425", - "question_id": 44492, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001205", - "question_id": 44493, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001238", - "question_id": 44494, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001164", - "question_id": 44499, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000562", - "question_id": 44500, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001201", - "question_id": 44501, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000726", - "question_id": 44502, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000756", - "question_id": 44503, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"tuba\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000224", - "question_id": 44505, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000636", - "question_id": 44506, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "esa00000398", - "question_id": 44507, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001457", - "question_id": 44508, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001457", - "question_id": 44508, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000014", - "question_id": 44513, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00001085", - "question_id": 44516, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000539", - "question_id": 44517, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001068", - "question_id": 44522, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000433", - "question_id": 44524, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001102", - "question_id": 44529, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001305", - "question_id": 44532, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001084", - "question_id": 44533, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000818", - "question_id": 44534, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000237", - "question_id": 44536, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001445", - "question_id": 44537, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"xylophone\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000694", - "question_id": 44538, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000425", - "question_id": 44539, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001117", - "question_id": 44540, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"banjo\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "eva00000883", - "question_id": 44541, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000331", - "question_id": 44542, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000312", - "question_id": 44544, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000287", - "question_id": 44545, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "esa00000281", - "question_id": 44546, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"tuba\", \"right\", \"bassoon\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001112", - "question_id": 44547, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000307", - "question_id": 44549, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000917", - "question_id": 44551, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003477", - "question_id": 44554, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001117", - "question_id": 44555, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"electric_bass\", \"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001016", - "question_id": 44557, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000660", - "question_id": 44559, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000327", - "question_id": 44561, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000713", - "question_id": 44562, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001218", - "question_id": 44563, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "evv00001248", - "question_id": 44566, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"drum\", \"left\", \"erhu\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001203", - "question_id": 44567, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000312", - "question_id": 44569, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000835", - "question_id": 44572, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000333", - "question_id": 44574, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000470", - "question_id": 44577, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001250", - "question_id": 44579, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000628", - "question_id": 44581, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001485", - "question_id": 44582, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000529", - "question_id": 44585, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000965", - "question_id": 44588, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000644", - "question_id": 44589, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001363", - "question_id": 44591, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000752", - "question_id": 44592, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000018", - "question_id": 44593, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001010", - "question_id": 44595, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000809", - "question_id": 44597, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001076", - "question_id": 44598, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000552", - "question_id": 44602, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000472", - "question_id": 44603, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000524", - "question_id": 44605, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001458", - "question_id": 44606, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000927", - "question_id": 44607, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000493", - "question_id": 44608, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001297", - "question_id": 44609, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000324", - "question_id": 44610, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000732", - "question_id": 44613, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000770", - "question_id": 44614, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001432", - "question_id": 44616, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001038", - "question_id": 44617, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000576", - "question_id": 44619, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001418", - "question_id": 44621, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000751", - "question_id": 44625, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000725", - "question_id": 44628, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001194", - "question_id": 44629, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001468", - "question_id": 44630, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000508", - "question_id": 44633, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000254", - "question_id": 44637, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000238", - "question_id": 44638, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000174", - "question_id": 44641, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000617", - "question_id": 44643, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000645", - "question_id": 44644, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001180", - "question_id": 44645, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000786", - "question_id": 44646, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001338", - "question_id": 44652, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000669", - "question_id": 44653, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000167", - "question_id": 44654, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001264", - "question_id": 44656, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001481", - "question_id": 44657, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000405", - "question_id": 44659, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000291", - "question_id": 44661, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001408", - "question_id": 44662, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001352", - "question_id": 44663, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000936", - "question_id": 44667, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "esa00000277", - "question_id": 44670, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001014", - "question_id": 44674, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000309", - "question_id": 44675, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000810", - "question_id": 44676, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "evv00001273", - "question_id": 44678, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000827", - "question_id": 44680, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000635", - "question_id": 44681, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"electric_bass\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001362", - "question_id": 44684, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001327", - "question_id": 44685, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001064", - "question_id": 44686, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000144", - "question_id": 44688, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"electric_bass\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000440", - "question_id": 44689, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001350", - "question_id": 44691, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000189", - "question_id": 44694, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000759", - "question_id": 44695, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001238", - "question_id": 44698, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001272", - "question_id": 44699, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001273", - "question_id": 44701, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001302", - "question_id": 44703, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000913", - "question_id": 44704, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000400", - "question_id": 44706, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000210", - "question_id": 44710, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000668", - "question_id": 44712, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001319", - "question_id": 44713, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000319", - "question_id": 44714, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000272", - "question_id": 44715, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001055", - "question_id": 44716, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000228", - "question_id": 44717, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000713", - "question_id": 44721, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001385", - "question_id": 44730, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001190", - "question_id": 44732, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001190", - "question_id": 44732, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001156", - "question_id": 44733, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001469", - "question_id": 44734, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001363", - "question_id": 44735, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001477", - "question_id": 44736, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001262", - "question_id": 44740, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000820", - "question_id": 44741, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000521", - "question_id": 44742, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001174", - "question_id": 44743, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001466", - "question_id": 44745, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000559", - "question_id": 44746, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"pipa\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001377", - "question_id": 44747, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001292", - "question_id": 44748, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000832", - "question_id": 44750, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000984", - "question_id": 44751, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000541", - "question_id": 44754, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001168", - "question_id": 44755, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000701", - "question_id": 44757, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000694", - "question_id": 44759, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001186", - "question_id": 44761, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000470", - "question_id": 44762, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000825", - "question_id": 44764, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000783", - "question_id": 44771, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000498", - "question_id": 44774, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"congas\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001445", - "question_id": 44775, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001302", - "question_id": 44776, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00001071", - "question_id": 44782, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000294", - "question_id": 44785, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001112", - "question_id": 44787, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001239", - "question_id": 44788, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000416", - "question_id": 44789, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000393", - "question_id": 44792, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000562", - "question_id": 44793, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000792", - "question_id": 44794, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000151", - "question_id": 44795, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00000982", - "question_id": 44796, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000706", - "question_id": 44798, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000855", - "question_id": 44801, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"electric_bass\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000797", - "question_id": 44804, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001385", - "question_id": 44807, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001385", - "question_id": 44807, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000642", - "question_id": 44813, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"suona\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001184", - "question_id": 44817, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"tuba\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000500", - "question_id": 44819, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000399", - "question_id": 44820, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000266", - "question_id": 44821, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001009", - "question_id": 44823, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "esa00000464", - "question_id": 44825, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000703", - "question_id": 44826, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"middle\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000955", - "question_id": 44828, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000981", - "question_id": 44831, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001334", - "question_id": 44832, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001344", - "question_id": 44835, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000188", - "question_id": 44838, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000952", - "question_id": 44839, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00000867", - "question_id": 44840, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007424", - "question_id": 44841, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "eva00001080", - "question_id": 44842, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000689", - "question_id": 44844, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001281", - "question_id": 44845, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000397", - "question_id": 44847, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "esa00000347", - "question_id": 44848, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001189", - "question_id": 44855, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "sa00006062", - "question_id": 44858, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000437", - "question_id": 44860, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000890", - "question_id": 44863, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "eva00000984", - "question_id": 44866, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008470", - "question_id": 44868, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001331", - "question_id": 44869, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "evv00001325", - "question_id": 44870, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "evv00001476", - "question_id": 44871, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000931", - "question_id": 44873, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000703", - "question_id": 44878, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000791", - "question_id": 44882, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "va00005551", - "question_id": 44883, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000014", - "question_id": 44886, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"tuba\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000399", - "question_id": 44888, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000889", - "question_id": 44893, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000889", - "question_id": 44893, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000193", - "question_id": 44895, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000443", - "question_id": 44897, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001102", - "question_id": 44909, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000310", - "question_id": 44910, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000427", - "question_id": 44911, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001405", - "question_id": 44912, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000866", - "question_id": 44915, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00001097", - "question_id": 44916, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001038", - "question_id": 44918, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001089", - "question_id": 44920, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001374", - "question_id": 44921, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001170", - "question_id": 44922, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000237", - "question_id": 44926, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000366", - "question_id": 44927, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001190", - "question_id": 44929, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00001190", - "question_id": 44929, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000151", - "question_id": 44930, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000018", - "question_id": 44931, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000494", - "question_id": 44934, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"saxophone\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "eva00001020", - "question_id": 44935, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001005", - "question_id": 44943, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001304", - "question_id": 44944, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000966", - "question_id": 44945, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000265", - "question_id": 44952, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001270", - "question_id": 44956, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001114", - "question_id": 44957, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001070", - "question_id": 44958, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000677", - "question_id": 44961, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000941", - "question_id": 44964, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000327", - "question_id": 44966, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000805", - "question_id": 44967, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001304", - "question_id": 44968, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"tuba\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000940", - "question_id": 44970, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000767", - "question_id": 44971, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "sa00006891", - "question_id": 44972, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001043", - "question_id": 44976, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001488", - "question_id": 44977, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005737", - "question_id": 44978, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001350", - "question_id": 44980, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001303", - "question_id": 44983, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000994", - "question_id": 44990, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001243", - "question_id": 44992, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001468", - "question_id": 44998, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "evv00001262", - "question_id": 44999, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000911", - "question_id": 45000, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "esa00000414", - "question_id": 45001, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001474", - "question_id": 45003, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "eva00000913", - "question_id": 45004, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000623", - "question_id": 45005, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000811", - "question_id": 45006, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000226", - "question_id": 45007, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006154", - "question_id": 45010, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001343", - "question_id": 45012, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000258", - "question_id": 45014, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001140", - "question_id": 45015, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001129", - "question_id": 45016, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000910", - "question_id": 45018, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000976", - "question_id": 45019, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000919", - "question_id": 45020, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "esa00000299", - "question_id": 45027, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000636", - "question_id": 45029, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000990", - "question_id": 45030, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000626", - "question_id": 45031, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001402", - "question_id": 45033, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001415", - "question_id": 45034, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000896", - "question_id": 45035, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000906", - "question_id": 45040, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000723", - "question_id": 45043, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000149", - "question_id": 45044, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000360", - "question_id": 45045, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001175", - "question_id": 45047, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000401", - "question_id": 45048, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000927", - "question_id": 45051, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "esa00000143", - "question_id": 45053, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"electric_bass\", \"middle\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001215", - "question_id": 45054, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000507", - "question_id": 45055, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bagpipe\", \"left\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001116", - "question_id": 45057, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000415", - "question_id": 45061, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000973", - "question_id": 45062, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000398", - "question_id": 45065, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00001000", - "question_id": 45066, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001184", - "question_id": 45069, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000551", - "question_id": 45070, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"electric_bass\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001424", - "question_id": 45075, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000772", - "question_id": 45077, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "eva00001195", - "question_id": 45078, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000631", - "question_id": 45081, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001118", - "question_id": 45082, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001230", - "question_id": 45085, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000448", - "question_id": 45087, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000809", - "question_id": 45089, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001014", - "question_id": 45090, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000765", - "question_id": 45096, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001261", - "question_id": 45098, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001041", - "question_id": 45100, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001289", - "question_id": 45102, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bagpipe\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000340", - "question_id": 45103, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000818", - "question_id": 45104, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001009", - "question_id": 45106, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001202", - "question_id": 45109, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001186", - "question_id": 45111, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001256", - "question_id": 45117, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001027", - "question_id": 45120, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000297", - "question_id": 45121, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000164", - "question_id": 45122, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001453", - "question_id": 45124, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "esa00000366", - "question_id": 45125, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001012", - "question_id": 45126, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"congas\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000875", - "question_id": 45127, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000557", - "question_id": 45130, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"xylophone\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001202", - "question_id": 45132, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000903", - "question_id": 45135, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001170", - "question_id": 45136, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000618", - "question_id": 45139, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"ukulele\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001244", - "question_id": 45140, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "esa00000659", - "question_id": 45142, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bassoon\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000289", - "question_id": 45143, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001399", - "question_id": 45145, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bagpipe\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000792", - "question_id": 45146, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000292", - "question_id": 45147, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000601", - "question_id": 45149, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000815", - "question_id": 45151, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00001164", - "question_id": 45154, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000248", - "question_id": 45155, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000973", - "question_id": 45156, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000329", - "question_id": 45157, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001043", - "question_id": 45160, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000962", - "question_id": 45161, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000839", - "question_id": 45162, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "eva00001180", - "question_id": 45168, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000865", - "question_id": 45170, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000281", - "question_id": 45172, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001046", - "question_id": 45176, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000715", - "question_id": 45179, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000976", - "question_id": 45181, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001188", - "question_id": 45182, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000947", - "question_id": 45183, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000873", - "question_id": 45184, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000446", - "question_id": 45186, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001045", - "question_id": 45187, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001137", - "question_id": 45192, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000853", - "question_id": 45193, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001289", - "question_id": 45196, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003465", - "question_id": 45199, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000199", - "question_id": 45200, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000616", - "question_id": 45201, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"electric_bass\", \"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000483", - "question_id": 45204, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001217", - "question_id": 45205, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000587", - "question_id": 45206, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001427", - "question_id": 45207, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001413", - "question_id": 45208, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "eva00001073", - "question_id": 45211, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "esa00000202", - "question_id": 45213, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000309", - "question_id": 45214, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000330", - "question_id": 45217, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000846", - "question_id": 45219, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"electric_bass\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000897", - "question_id": 45220, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001381", - "question_id": 45221, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"drum\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000829", - "question_id": 45222, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001319", - "question_id": 45223, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001216", - "question_id": 45224, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bassoon\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000718", - "question_id": 45226, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00000911", - "question_id": 45228, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001080", - "question_id": 45229, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000780", - "question_id": 45230, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000980", - "question_id": 45232, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000202", - "question_id": 45233, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "evv00001435", - "question_id": 45235, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000748", - "question_id": 45240, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000605", - "question_id": 45242, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000726", - "question_id": 45243, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000696", - "question_id": 45245, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00001027", - "question_id": 45246, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"clarinet\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "eva00000963", - "question_id": 45247, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000795", - "question_id": 45250, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00001117", - "question_id": 45251, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"suona\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001102", - "question_id": 45252, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000270", - "question_id": 45253, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001044", - "question_id": 45254, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00001027", - "question_id": 45255, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"electric_bass\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001032", - "question_id": 45256, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001085", - "question_id": 45259, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001157", - "question_id": 45260, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000752", - "question_id": 45264, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"electric_bass\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "eva00001084", - "question_id": 45272, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001448", - "question_id": 45274, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001361", - "question_id": 45277, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001261", - "question_id": 45279, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000545", - "question_id": 45280, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000009", - "question_id": 45282, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"middle\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001399", - "question_id": 45285, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"middle\", \"bagpipe\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000500", - "question_id": 45286, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "evv00001277", - "question_id": 45290, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"right\", \"erhu\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000388", - "question_id": 45293, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000726", - "question_id": 45296, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000917", - "question_id": 45297, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000599", - "question_id": 45300, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000873", - "question_id": 45304, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000934", - "question_id": 45307, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000398", - "question_id": 45308, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000384", - "question_id": 45311, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000494", - "question_id": 45313, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000267", - "question_id": 45314, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000169", - "question_id": 45315, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000223", - "question_id": 45317, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000162", - "question_id": 45318, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000541", - "question_id": 45319, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "eva00001140", - "question_id": 45320, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001154", - "question_id": 45322, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001442", - "question_id": 45323, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"xylophone\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001132", - "question_id": 45324, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001418", - "question_id": 45326, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"middle\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001206", - "question_id": 45327, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000865", - "question_id": 45329, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000178", - "question_id": 45330, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000566", - "question_id": 45331, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000610", - "question_id": 45332, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001361", - "question_id": 45342, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001032", - "question_id": 45344, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00000738", - "question_id": 45351, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000021", - "question_id": 45353, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001347", - "question_id": 45356, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00001011", - "question_id": 45358, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007540", - "question_id": 45359, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "evv00001305", - "question_id": 45362, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "eva00001018", - "question_id": 45366, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000630", - "question_id": 45368, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001180", - "question_id": 45371, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000340", - "question_id": 45374, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000432", - "question_id": 45376, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000846", - "question_id": 45378, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"electric_bass\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001363", - "question_id": 45379, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001144", - "question_id": 45380, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000825", - "question_id": 45382, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001440", - "question_id": 45385, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000014", - "question_id": 45387, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"clarinet\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "esa00000680", - "question_id": 45389, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000738", - "question_id": 45395, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "eva00001212", - "question_id": 45398, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006627", - "question_id": 45399, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000368", - "question_id": 45403, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001249", - "question_id": 45405, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000549", - "question_id": 45406, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001372", - "question_id": 45408, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001113", - "question_id": 45409, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00000994", - "question_id": 45410, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "esa00000354", - "question_id": 45411, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000960", - "question_id": 45413, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000958", - "question_id": 45414, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001230", - "question_id": 45416, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"electric_bass\", \"middle\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000300", - "question_id": 45418, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"suona\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001273", - "question_id": 45420, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000703", - "question_id": 45421, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001267", - "question_id": 45422, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001290", - "question_id": 45427, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001109", - "question_id": 45430, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "eva00001038", - "question_id": 45431, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "eva00000973", - "question_id": 45434, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001243", - "question_id": 45435, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000615", - "question_id": 45436, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000660", - "question_id": 45438, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008928", - "question_id": 45443, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000380", - "question_id": 45444, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000832", - "question_id": 45445, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00000805", - "question_id": 45448, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00001063", - "question_id": 45449, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000707", - "question_id": 45450, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001476", - "question_id": 45451, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000981", - "question_id": 45456, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000748", - "question_id": 45458, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000839", - "question_id": 45459, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001338", - "question_id": 45460, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000516", - "question_id": 45462, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000254", - "question_id": 45465, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000823", - "question_id": 45473, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001251", - "question_id": 45474, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000831", - "question_id": 45477, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000390", - "question_id": 45482, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001420", - "question_id": 45483, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00000951", - "question_id": 45484, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000461", - "question_id": 45490, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "esa00000169", - "question_id": 45491, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000845", - "question_id": 45493, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000368", - "question_id": 45496, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001466", - "question_id": 45499, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00001108", - "question_id": 45500, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001347", - "question_id": 45504, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000401", - "question_id": 45515, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000996", - "question_id": 45518, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000401", - "question_id": 45519, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000312", - "question_id": 45521, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000174", - "question_id": 45524, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001238", - "question_id": 45525, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00000818", - "question_id": 45527, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000378", - "question_id": 45531, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001037", - "question_id": 45532, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000958", - "question_id": 45534, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005964", - "question_id": 45537, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00000940", - "question_id": 45538, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001283", - "question_id": 45539, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000736", - "question_id": 45540, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001474", - "question_id": 45541, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000204", - "question_id": 45549, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001366", - "question_id": 45550, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"guzheng\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "eva00000949", - "question_id": 45553, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001289", - "question_id": 45555, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "evv00001297", - "question_id": 45556, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00001083", - "question_id": 45557, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000424", - "question_id": 45558, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001237", - "question_id": 45559, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000623", - "question_id": 45561, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"trumpet\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001080", - "question_id": 45564, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001281", - "question_id": 45565, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000972", - "question_id": 45569, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001283", - "question_id": 45570, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001207", - "question_id": 45571, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000725", - "question_id": 45572, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000309", - "question_id": 45573, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000127", - "question_id": 45577, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000970", - "question_id": 45578, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001367", - "question_id": 45579, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000883", - "question_id": 45582, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001399", - "question_id": 45585, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001116", - "question_id": 45587, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001455", - "question_id": 45588, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000823", - "question_id": 45589, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000752", - "question_id": 45590, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001395", - "question_id": 45591, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000287", - "question_id": 45595, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"clarinet\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000800", - "question_id": 45596, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000162", - "question_id": 45600, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00001094", - "question_id": 45602, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000339", - "question_id": 45603, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000740", - "question_id": 45605, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001306", - "question_id": 45607, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001488", - "question_id": 45610, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00000855", - "question_id": 45614, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001377", - "question_id": 45618, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"suona\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000384", - "question_id": 45620, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001267", - "question_id": 45621, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000014", - "question_id": 45622, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000390", - "question_id": 45625, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000169", - "question_id": 45626, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001041", - "question_id": 45627, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001457", - "question_id": 45632, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001249", - "question_id": 45635, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001466", - "question_id": 45639, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000651", - "question_id": 45641, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000461", - "question_id": 45642, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"cello\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "eva00000951", - "question_id": 45643, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001382", - "question_id": 45644, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001362", - "question_id": 45645, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001440", - "question_id": 45646, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001032", - "question_id": 45648, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001336", - "question_id": 45649, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"middle\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000699", - "question_id": 45651, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001272", - "question_id": 45655, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"right\", \"drum\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000622", - "question_id": 45657, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001159", - "question_id": 45660, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001393", - "question_id": 45663, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "esa00000461", - "question_id": 45664, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000906", - "question_id": 45665, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000620", - "question_id": 45666, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000975", - "question_id": 45667, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"middle\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000930", - "question_id": 45668, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"drum\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000940", - "question_id": 45669, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000797", - "question_id": 45672, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001239", - "question_id": 45674, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000896", - "question_id": 45675, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001372", - "question_id": 45676, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000485", - "question_id": 45678, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"bassoon\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001217", - "question_id": 45680, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001140", - "question_id": 45684, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001391", - "question_id": 45685, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000463", - "question_id": 45687, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001121", - "question_id": 45690, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001353", - "question_id": 45694, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001237", - "question_id": 45695, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "vv00000453", - "question_id": 45698, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001069", - "question_id": 45699, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000516", - "question_id": 45700, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001343", - "question_id": 45701, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"right\", \"suona\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000226", - "question_id": 45702, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "eva00000973", - "question_id": 45703, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"middle\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000313", - "question_id": 45705, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000822", - "question_id": 45706, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000424", - "question_id": 45707, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"ukulele\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001071", - "question_id": 45710, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001233", - "question_id": 45711, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"pipa\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000910", - "question_id": 45712, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "esa00000599", - "question_id": 45713, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000178", - "question_id": 45715, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "eva00001181", - "question_id": 45716, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000146", - "question_id": 45717, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001485", - "question_id": 45718, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"congas\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000271", - "question_id": 45719, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000770", - "question_id": 45720, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00001161", - "question_id": 45722, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"pipa\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000405", - "question_id": 45727, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000960", - "question_id": 45730, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000996", - "question_id": 45731, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000211", - "question_id": 45732, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000564", - "question_id": 45735, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000564", - "question_id": 45736, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00001016", - "question_id": 45737, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000987", - "question_id": 45740, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00000827", - "question_id": 45741, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000987", - "question_id": 45743, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000441", - "question_id": 45745, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001267", - "question_id": 45746, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001210", - "question_id": 45747, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000402", - "question_id": 45751, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001143", - "question_id": 45753, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00001150", - "question_id": 45754, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000723", - "question_id": 45756, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001092", - "question_id": 45759, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001414", - "question_id": 45763, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "va00003951", - "question_id": 45764, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00000797", - "question_id": 45765, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000777", - "question_id": 45767, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"suona\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000855", - "question_id": 45770, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "eva00001085", - "question_id": 45771, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001312", - "question_id": 45772, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"trumpet\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001432", - "question_id": 45773, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000155", - "question_id": 45774, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001433", - "question_id": 45778, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000248", - "question_id": 45779, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"clarinet\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "esa00000422", - "question_id": 45784, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000425", - "question_id": 45785, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000007", - "question_id": 45788, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000243", - "question_id": 45789, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000945", - "question_id": 45790, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00001212", - "question_id": 45792, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00000752", - "question_id": 45793, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"drum\", \"middle\", \"electric_bass\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000464", - "question_id": 45794, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000630", - "question_id": 45795, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000620", - "question_id": 45798, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000683", - "question_id": 45801, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001393", - "question_id": 45803, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001372", - "question_id": 45804, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000516", - "question_id": 45805, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001102", - "question_id": 45807, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000360", - "question_id": 45808, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000853", - "question_id": 45811, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00001125", - "question_id": 45812, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001166", - "question_id": 45815, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001340", - "question_id": 45820, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "eva00001114", - "question_id": 45821, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001272", - "question_id": 45823, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000765", - "question_id": 45831, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000947", - "question_id": 45836, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001237", - "question_id": 45837, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00001098", - "question_id": 45838, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001241", - "question_id": 45839, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "esa00000238", - "question_id": 45841, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001305", - "question_id": 45845, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"right\", \"pipa\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008563", - "question_id": 45846, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "evv00001446", - "question_id": 45847, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001424", - "question_id": 45848, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001306", - "question_id": 45849, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00001109", - "question_id": 45850, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000367", - "question_id": 45851, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00001164", - "question_id": 45854, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000901", - "question_id": 45857, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00001113", - "question_id": 45860, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "esa00000415", - "question_id": 45865, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001477", - "question_id": 45868, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "sa00006220", - "question_id": 45870, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00000843", - "question_id": 45871, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000921", - "question_id": 45872, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001251", - "question_id": 45874, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000182", - "question_id": 45875, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000923", - "question_id": 45879, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00000982", - "question_id": 45880, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001218", - "question_id": 45881, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000767", - "question_id": 45882, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00001063", - "question_id": 45884, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00001067", - "question_id": 45885, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000535", - "question_id": 45891, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00000737", - "question_id": 45893, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001212", - "question_id": 45894, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001372", - "question_id": 45895, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001427", - "question_id": 45896, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00001157", - "question_id": 45897, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001248", - "question_id": 45903, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000005", - "question_id": 45905, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000636", - "question_id": 45906, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001230", - "question_id": 45907, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000564", - "question_id": 45909, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00000695", - "question_id": 45910, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000493", - "question_id": 45911, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000422", - "question_id": 45912, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00000952", - "question_id": 45913, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "esa00000655", - "question_id": 45914, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000565", - "question_id": 45915, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001206", - "question_id": 45919, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000224", - "question_id": 45921, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000516", - "question_id": 45922, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000795", - "question_id": 45923, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000651", - "question_id": 45924, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001244", - "question_id": 45925, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000217", - "question_id": 45926, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "esa00000400", - "question_id": 45927, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000184", - "question_id": 45928, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00000829", - "question_id": 45930, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00000738", - "question_id": 45938, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00001133", - "question_id": 45939, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00000840", - "question_id": 45940, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000759", - "question_id": 45941, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000162", - "question_id": 45942, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"middle\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000324", - "question_id": 45944, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001350", - "question_id": 45945, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001324", - "question_id": 45947, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000924", - "question_id": 45948, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001292", - "question_id": 45953, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"xylophone\", \"middle\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001474", - "question_id": 45964, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"banjo\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000007", - "question_id": 45966, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001382", - "question_id": 45968, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001477", - "question_id": 45969, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000331", - "question_id": 45970, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001413", - "question_id": 45973, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000226", - "question_id": 45974, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001433", - "question_id": 45978, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001450", - "question_id": 45981, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000197", - "question_id": 45982, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00000934", - "question_id": 45983, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000979", - "question_id": 45984, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00000987", - "question_id": 45986, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006763", - "question_id": 45987, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001098", - "question_id": 45988, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000541", - "question_id": 45989, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000667", - "question_id": 45991, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000259", - "question_id": 45992, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000526", - "question_id": 45993, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001164", - "question_id": 45995, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000384", - "question_id": 45998, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000987", - "question_id": 45999, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001274", - "question_id": 46000, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000678", - "question_id": 46001, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "esa00000393", - "question_id": 46007, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"piano\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "eva00001094", - "question_id": 46012, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001335", - "question_id": 46013, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000441", - "question_id": 46015, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "esa00000224", - "question_id": 46016, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "esa00000585", - "question_id": 46019, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000440", - "question_id": 46020, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001458", - "question_id": 46022, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001070", - "question_id": 46026, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001205", - "question_id": 46027, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000897", - "question_id": 46028, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"bassoon\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001335", - "question_id": 46034, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "esa00000021", - "question_id": 46035, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001208", - "question_id": 46036, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000577", - "question_id": 46037, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001205", - "question_id": 46039, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000805", - "question_id": 46041, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000867", - "question_id": 46042, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000976", - "question_id": 46043, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00000980", - "question_id": 46046, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007885", - "question_id": 46048, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00001055", - "question_id": 46050, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001363", - "question_id": 46052, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001395", - "question_id": 46053, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000601", - "question_id": 46055, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001248", - "question_id": 46056, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000333", - "question_id": 46059, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000347", - "question_id": 46060, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00001025", - "question_id": 46068, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000952", - "question_id": 46073, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001413", - "question_id": 46075, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"drum\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000799", - "question_id": 46076, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "sa00006409", - "question_id": 46077, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "evv00001412", - "question_id": 46078, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "esa00000566", - "question_id": 46079, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001485", - "question_id": 46080, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000641", - "question_id": 46081, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001414", - "question_id": 46082, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000464", - "question_id": 46083, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00001150", - "question_id": 46086, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000845", - "question_id": 46089, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "evv00001412", - "question_id": 46090, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000705", - "question_id": 46095, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001234", - "question_id": 46102, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000917", - "question_id": 46107, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005552", - "question_id": 46108, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"pipa\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "esa00000222", - "question_id": 46109, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001137", - "question_id": 46111, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"xylophone\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000800", - "question_id": 46113, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000163", - "question_id": 46114, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001458", - "question_id": 46116, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000299", - "question_id": 46119, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001029", - "question_id": 46122, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000468", - "question_id": 46125, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"trumpet\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000885", - "question_id": 46126, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000463", - "question_id": 46127, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001450", - "question_id": 46128, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000696", - "question_id": 46129, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00000970", - "question_id": 46131, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000169", - "question_id": 46132, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001458", - "question_id": 46133, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001277", - "question_id": 46138, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000401", - "question_id": 46140, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000581", - "question_id": 46144, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000908", - "question_id": 46145, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001133", - "question_id": 46148, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"middle\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000742", - "question_id": 46150, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007543", - "question_id": 46152, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "evv00001397", - "question_id": 46154, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001440", - "question_id": 46155, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000911", - "question_id": 46156, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001016", - "question_id": 46157, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000540", - "question_id": 46158, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001201", - "question_id": 46160, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000464", - "question_id": 46161, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000919", - "question_id": 46162, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001112", - "question_id": 46164, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000313", - "question_id": 46165, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000812", - "question_id": 46167, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001415", - "question_id": 46168, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "esa00000670", - "question_id": 46169, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000936", - "question_id": 46174, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000931", - "question_id": 46177, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00001194", - "question_id": 46178, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001353", - "question_id": 46179, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "evv00001324", - "question_id": 46184, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001158", - "question_id": 46187, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000433", - "question_id": 46188, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "esa00000640", - "question_id": 46189, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000511", - "question_id": 46190, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00000933", - "question_id": 46191, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00000806", - "question_id": 46192, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000880", - "question_id": 46193, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000658", - "question_id": 46198, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "eva00001083", - "question_id": 46200, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000443", - "question_id": 46204, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "evv00001420", - "question_id": 46205, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000934", - "question_id": 46206, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000458", - "question_id": 46209, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007462", - "question_id": 46210, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "evv00001249", - "question_id": 46215, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000287", - "question_id": 46217, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000017", - "question_id": 46218, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "evv00001446", - "question_id": 46219, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"middle\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000356", - "question_id": 46221, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000330", - "question_id": 46226, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001457", - "question_id": 46227, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000215", - "question_id": 46228, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001007", - "question_id": 46230, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000689", - "question_id": 46231, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "eva00000783", - "question_id": 46232, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000493", - "question_id": 46233, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001256", - "question_id": 46243, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "eva00000720", - "question_id": 46245, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "esa00000672", - "question_id": 46248, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000737", - "question_id": 46254, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001000", - "question_id": 46256, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000399", - "question_id": 46258, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000742", - "question_id": 46262, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00001098", - "question_id": 46263, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001381", - "question_id": 46264, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000767", - "question_id": 46266, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"last\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "eva00001126", - "question_id": 46269, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001358", - "question_id": 46270, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"banjo\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001021", - "question_id": 46272, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "eva00000965", - "question_id": 46276, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001264", - "question_id": 46278, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00001100", - "question_id": 46280, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000861", - "question_id": 46281, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000630", - "question_id": 46282, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001250", - "question_id": 46283, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000897", - "question_id": 46284, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00001182", - "question_id": 46286, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001046", - "question_id": 46288, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "evv00001358", - "question_id": 46289, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000949", - "question_id": 46291, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000585", - "question_id": 46292, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000350", - "question_id": 46295, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00001161", - "question_id": 46297, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000941", - "question_id": 46299, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "esa00000694", - "question_id": 46300, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001304", - "question_id": 46303, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00001081", - "question_id": 46306, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00001025", - "question_id": 46308, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000955", - "question_id": 46309, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001488", - "question_id": 46310, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "evv00001432", - "question_id": 46312, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000842", - "question_id": 46314, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001302", - "question_id": 46315, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"congas\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000644", - "question_id": 46316, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007598", - "question_id": 46320, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000416", - "question_id": 46321, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000559", - "question_id": 46322, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001319", - "question_id": 46323, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00001083", - "question_id": 46328, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001083", - "question_id": 46328, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000313", - "question_id": 46332, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001032", - "question_id": 46333, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001432", - "question_id": 46335, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00001206", - "question_id": 46338, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000965", - "question_id": 46345, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001367", - "question_id": 46347, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001071", - "question_id": 46348, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "esa00000146", - "question_id": 46354, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001230", - "question_id": 46355, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "eva00001118", - "question_id": 46356, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000963", - "question_id": 46358, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000727", - "question_id": 46359, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000321", - "question_id": 46363, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "eva00000736", - "question_id": 46364, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000827", - "question_id": 46365, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000807", - "question_id": 46366, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000829", - "question_id": 46367, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"banjo\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000303", - "question_id": 46369, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001308", - "question_id": 46371, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00001154", - "question_id": 46372, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00001156", - "question_id": 46383, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001293", - "question_id": 46388, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00001021", - "question_id": 46390, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000727", - "question_id": 46391, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00001005", - "question_id": 46395, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000144", - "question_id": 46396, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"electric_bass\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001241", - "question_id": 46397, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001143", - "question_id": 46399, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008603", - "question_id": 46400, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000873", - "question_id": 46401, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001303", - "question_id": 46404, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00001099", - "question_id": 46410, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000220", - "question_id": 46412, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000327", - "question_id": 46414, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001308", - "question_id": 46419, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001467", - "question_id": 46420, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001435", - "question_id": 46421, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"middle\", \"drum\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000947", - "question_id": 46422, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000017", - "question_id": 46423, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001067", - "question_id": 46424, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000791", - "question_id": 46427, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000965", - "question_id": 46429, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000301", - "question_id": 46430, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000416", - "question_id": 46431, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00001000", - "question_id": 46432, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "esa00000628", - "question_id": 46435, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001218", - "question_id": 46440, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000852", - "question_id": 46442, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000565", - "question_id": 46443, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000815", - "question_id": 46448, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000890", - "question_id": 46449, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001188", - "question_id": 46450, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000599", - "question_id": 46454, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000949", - "question_id": 46455, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001395", - "question_id": 46459, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000378", - "question_id": 46460, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "eva00000738", - "question_id": 46462, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000990", - "question_id": 46463, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001418", - "question_id": 46464, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001202", - "question_id": 46465, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000319", - "question_id": 46469, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001331", - "question_id": 46470, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000740", - "question_id": 46472, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"tuba\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000235", - "question_id": 46474, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000529", - "question_id": 46478, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001329", - "question_id": 46480, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001207", - "question_id": 46481, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000535", - "question_id": 46482, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001298", - "question_id": 46484, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000796", - "question_id": 46485, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000859", - "question_id": 46490, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000223", - "question_id": 46498, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000910", - "question_id": 46499, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001408", - "question_id": 46503, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000979", - "question_id": 46504, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"suona\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000908", - "question_id": 46505, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000547", - "question_id": 46508, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "esa00000521", - "question_id": 46511, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"electric_bass\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000157", - "question_id": 46512, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000330", - "question_id": 46513, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000526", - "question_id": 46515, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001071", - "question_id": 46516, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00001100", - "question_id": 46517, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001387", - "question_id": 46518, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "esa00000641", - "question_id": 46519, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00000781", - "question_id": 46524, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001044", - "question_id": 46525, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001252", - "question_id": 46529, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000301", - "question_id": 46532, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00005586", - "question_id": 46536, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000986", - "question_id": 46538, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000986", - "question_id": 46539, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001045", - "question_id": 46541, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000560", - "question_id": 46544, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"trumpet\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001331", - "question_id": 46545, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"right\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000737", - "question_id": 46546, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001446", - "question_id": 46547, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000482", - "question_id": 46551, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001454", - "question_id": 46553, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000725", - "question_id": 46555, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001140", - "question_id": 46556, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00001201", - "question_id": 46558, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000810", - "question_id": 46562, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000931", - "question_id": 46563, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001405", - "question_id": 46568, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001018", - "question_id": 46571, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "esa00000539", - "question_id": 46572, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000668", - "question_id": 46573, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001238", - "question_id": 46574, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "evv00001319", - "question_id": 46575, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000701", - "question_id": 46580, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000972", - "question_id": 46581, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001012", - "question_id": 46582, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"middle\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000475", - "question_id": 46583, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00001126", - "question_id": 46584, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001126", - "question_id": 46584, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001277", - "question_id": 46587, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00000731", - "question_id": 46588, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000868", - "question_id": 46592, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000683", - "question_id": 46594, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000547", - "question_id": 46598, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001010", - "question_id": 46600, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000266", - "question_id": 46601, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "esa00000356", - "question_id": 46603, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000012", - "question_id": 46604, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "eva00001047", - "question_id": 46607, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "esa00000299", - "question_id": 46611, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001180", - "question_id": 46617, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001100", - "question_id": 46618, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000740", - "question_id": 46619, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001336", - "question_id": 46620, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "evv00001481", - "question_id": 46629, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000463", - "question_id": 46632, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000891", - "question_id": 46633, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001408", - "question_id": 46636, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000215", - "question_id": 46638, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000172", - "question_id": 46639, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001291", - "question_id": 46642, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001408", - "question_id": 46643, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00001170", - "question_id": 46645, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000759", - "question_id": 46646, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000012", - "question_id": 46652, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001424", - "question_id": 46653, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00001140", - "question_id": 46654, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000602", - "question_id": 46658, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000350", - "question_id": 46659, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000826", - "question_id": 46660, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001442", - "question_id": 46665, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"bassoon\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001469", - "question_id": 46667, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000309", - "question_id": 46668, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001234", - "question_id": 46670, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001344", - "question_id": 46671, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001250", - "question_id": 46672, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"middle\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000866", - "question_id": 46674, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000278", - "question_id": 46675, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001092", - "question_id": 46676, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000142", - "question_id": 46677, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000689", - "question_id": 46681, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001424", - "question_id": 46682, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000752", - "question_id": 46684, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "evv00001366", - "question_id": 46687, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "eva00000700", - "question_id": 46688, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"xylophone\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000605", - "question_id": 46689, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001267", - "question_id": 46693, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001097", - "question_id": 46694, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "esa00000297", - "question_id": 46695, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00001175", - "question_id": 46697, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001402", - "question_id": 46699, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"middle\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001005", - "question_id": 46700, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000811", - "question_id": 46705, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001476", - "question_id": 46707, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000628", - "question_id": 46708, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00001187", - "question_id": 46709, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000707", - "question_id": 46710, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "eva00000910", - "question_id": 46711, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000288", - "question_id": 46712, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001073", - "question_id": 46714, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000861", - "question_id": 46715, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001382", - "question_id": 46716, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007323", - "question_id": 46717, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00000853", - "question_id": 46720, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000486", - "question_id": 46724, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000791", - "question_id": 46726, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "esa00000535", - "question_id": 46727, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001144", - "question_id": 46728, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007509", - "question_id": 46730, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001274", - "question_id": 46734, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001481", - "question_id": 46736, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001390", - "question_id": 46738, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000297", - "question_id": 46739, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000271", - "question_id": 46742, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000866", - "question_id": 46745, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"electric_bass\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001143", - "question_id": 46746, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000705", - "question_id": 46748, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "esa00000333", - "question_id": 46751, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000547", - "question_id": 46752, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"violin\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001068", - "question_id": 46753, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000826", - "question_id": 46761, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000890", - "question_id": 46764, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001450", - "question_id": 46765, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000249", - "question_id": 46767, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001295", - "question_id": 46768, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001435", - "question_id": 46769, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007635", - "question_id": 46771, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "esa00000004", - "question_id": 46775, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000974", - "question_id": 46779, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"congas\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001020", - "question_id": 46780, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000680", - "question_id": 46781, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007027", - "question_id": 46785, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "esa00000678", - "question_id": 46787, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001290", - "question_id": 46789, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"accordion\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000594", - "question_id": 46791, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001011", - "question_id": 46798, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "esa00000618", - "question_id": 46799, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001166", - "question_id": 46802, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "esa00000280", - "question_id": 46803, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000402", - "question_id": 46805, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001170", - "question_id": 46808, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00001115", - "question_id": 46810, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000576", - "question_id": 46816, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00001204", - "question_id": 46817, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000825", - "question_id": 46818, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000504", - "question_id": 46821, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "esa00000213", - "question_id": 46826, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000243", - "question_id": 46829, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"trumpet\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "evv00001274", - "question_id": 46831, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001184", - "question_id": 46832, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001393", - "question_id": 46833, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00000840", - "question_id": 46835, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000378", - "question_id": 46836, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000706", - "question_id": 46837, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001283", - "question_id": 46838, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00001112", - "question_id": 46839, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000932", - "question_id": 46842, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000896", - "question_id": 46844, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000324", - "question_id": 46846, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001334", - "question_id": 46848, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"middle\", \"tuba\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000250", - "question_id": 46851, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00001104", - "question_id": 46852, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bagpipe\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001104", - "question_id": 46852, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bagpipe\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000178", - "question_id": 46854, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000222", - "question_id": 46855, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "sa00008237", - "question_id": 46856, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001063", - "question_id": 46858, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000071", - "question_id": 46859, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001044", - "question_id": 46860, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00000891", - "question_id": 46862, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00000930", - "question_id": 46865, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000071", - "question_id": 46870, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000705", - "question_id": 46873, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000705", - "question_id": 46873, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000700", - "question_id": 46874, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00001175", - "question_id": 46878, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001029", - "question_id": 46879, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000249", - "question_id": 46880, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000211", - "question_id": 46884, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001420", - "question_id": 46885, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000974", - "question_id": 46889, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"congas\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000343", - "question_id": 46895, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001241", - "question_id": 46896, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"middle\", \"drum\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001215", - "question_id": 46897, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000731", - "question_id": 46898, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000601", - "question_id": 46901, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000620", - "question_id": 46905, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001395", - "question_id": 46906, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001425", - "question_id": 46907, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000763", - "question_id": 46908, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001067", - "question_id": 46909, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001107", - "question_id": 46910, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"drum\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000511", - "question_id": 46911, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000243", - "question_id": 46912, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "sa00006097", - "question_id": 46914, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000442", - "question_id": 46916, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000388", - "question_id": 46920, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001174", - "question_id": 46921, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "evv00001312", - "question_id": 46922, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "esa00000593", - "question_id": 46923, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001041", - "question_id": 46928, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001335", - "question_id": 46929, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "eva00001100", - "question_id": 46932, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000962", - "question_id": 46934, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000728", - "question_id": 46936, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000767", - "question_id": 46937, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001055", - "question_id": 46938, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "esa00000641", - "question_id": 46939, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "esa00000465", - "question_id": 46940, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000632", - "question_id": 46941, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000146", - "question_id": 46942, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001020", - "question_id": 46944, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00001045", - "question_id": 46945, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001233", - "question_id": 46947, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000996", - "question_id": 46949, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000823", - "question_id": 46951, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000986", - "question_id": 46956, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001295", - "question_id": 46957, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000994", - "question_id": 46959, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001391", - "question_id": 46965, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001108", - "question_id": 46966, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000868", - "question_id": 46967, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000331", - "question_id": 46968, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001445", - "question_id": 46972, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000728", - "question_id": 46974, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000486", - "question_id": 46978, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000697", - "question_id": 46979, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001420", - "question_id": 46982, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"xylophone\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001293", - "question_id": 46983, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "eva00000835", - "question_id": 46985, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "va00005068", - "question_id": 46987, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001170", - "question_id": 46988, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "eva00001150", - "question_id": 46990, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000263", - "question_id": 46994, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001399", - "question_id": 46995, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000310", - "question_id": 46996, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000786", - "question_id": 46998, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000333", - "question_id": 46999, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003494", - "question_id": 47000, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"congas\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001361", - "question_id": 47001, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001391", - "question_id": 47003, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000197", - "question_id": 47004, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001488", - "question_id": 47007, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"middle\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001295", - "question_id": 47011, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000936", - "question_id": 47013, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001295", - "question_id": 47014, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000556", - "question_id": 47016, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001317", - "question_id": 47018, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001336", - "question_id": 47021, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001047", - "question_id": 47024, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000835", - "question_id": 47027, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000806", - "question_id": 47028, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001056", - "question_id": 47030, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000620", - "question_id": 47032, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001125", - "question_id": 47033, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001362", - "question_id": 47035, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"middle\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000617", - "question_id": 47037, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000807", - "question_id": 47040, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001263", - "question_id": 47041, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"tuba\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001144", - "question_id": 47042, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "evv00001347", - "question_id": 47045, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000391", - "question_id": 47047, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001056", - "question_id": 47052, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001116", - "question_id": 47053, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000207", - "question_id": 47056, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000071", - "question_id": 47058, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000482", - "question_id": 47059, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001362", - "question_id": 47060, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000556", - "question_id": 47062, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000679", - "question_id": 47065, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000007", - "question_id": 47066, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001148", - "question_id": 47067, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000827", - "question_id": 47072, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006983", - "question_id": 47074, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000632", - "question_id": 47075, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "eva00000979", - "question_id": 47078, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "esa00000293", - "question_id": 47081, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001197", - "question_id": 47083, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"pipa\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001310", - "question_id": 47084, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000814", - "question_id": 47085, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "esa00000207", - "question_id": 47087, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "esa00000288", - "question_id": 47095, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007194", - "question_id": 47096, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000618", - "question_id": 47097, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001263", - "question_id": 47098, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000946", - "question_id": 47099, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001373", - "question_id": 47100, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005342", - "question_id": 47102, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00005342", - "question_id": 47103, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "esa00000267", - "question_id": 47105, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001341", - "question_id": 47106, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001168", - "question_id": 47108, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000285", - "question_id": 47110, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000292", - "question_id": 47111, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000188", - "question_id": 47112, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000174", - "question_id": 47113, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00001159", - "question_id": 47115, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000655", - "question_id": 47116, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000859", - "question_id": 47118, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000938", - "question_id": 47121, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000552", - "question_id": 47122, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000440", - "question_id": 47125, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "eva00000763", - "question_id": 47126, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000720", - "question_id": 47129, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001010", - "question_id": 47130, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "eva00000700", - "question_id": 47132, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000658", - "question_id": 47133, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001190", - "question_id": 47135, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005764", - "question_id": 47136, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "esa00000397", - "question_id": 47138, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001338", - "question_id": 47139, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007817", - "question_id": 47141, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001148", - "question_id": 47143, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000955", - "question_id": 47150, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000543", - "question_id": 47151, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "esa00000270", - "question_id": 47152, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000610", - "question_id": 47153, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001092", - "question_id": 47154, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001281", - "question_id": 47157, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000593", - "question_id": 47158, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000751", - "question_id": 47161, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000974", - "question_id": 47162, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00001148", - "question_id": 47165, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000669", - "question_id": 47167, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "esa00000556", - "question_id": 47170, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000209", - "question_id": 47171, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000986", - "question_id": 47172, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001356", - "question_id": 47177, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000908", - "question_id": 47178, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001292", - "question_id": 47180, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000201", - "question_id": 47182, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000498", - "question_id": 47183, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000439", - "question_id": 47185, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000768", - "question_id": 47186, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001327", - "question_id": 47187, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00000960", - "question_id": 47188, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000163", - "question_id": 47190, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "esa00000477", - "question_id": 47192, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001373", - "question_id": 47193, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"middle\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000756", - "question_id": 47194, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001137", - "question_id": 47195, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000238", - "question_id": 47198, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000840", - "question_id": 47202, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000932", - "question_id": 47204, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00000815", - "question_id": 47205, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000990", - "question_id": 47206, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001208", - "question_id": 47207, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00000945", - "question_id": 47210, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000965", - "question_id": 47211, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00000968", - "question_id": 47213, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000551", - "question_id": 47214, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000276", - "question_id": 47220, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000511", - "question_id": 47221, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001234", - "question_id": 47223, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001073", - "question_id": 47224, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000215", - "question_id": 47225, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000350", - "question_id": 47226, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000701", - "question_id": 47228, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "esa00000688", - "question_id": 47229, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bagpipe\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000237", - "question_id": 47232, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "esa00000593", - "question_id": 47233, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "eva00000780", - "question_id": 47240, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000340", - "question_id": 47241, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000296", - "question_id": 47242, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000806", - "question_id": 47243, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001343", - "question_id": 47246, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000630", - "question_id": 47255, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "esa00000644", - "question_id": 47258, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001335", - "question_id": 47261, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000288", - "question_id": 47262, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000966", - "question_id": 47268, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000667", - "question_id": 47273, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"electric_bass\", \"left\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000715", - "question_id": 47277, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00001190", - "question_id": 47279, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000751", - "question_id": 47280, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000071", - "question_id": 47286, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "eva00001011", - "question_id": 47287, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000569", - "question_id": 47289, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000356", - "question_id": 47290, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00001073", - "question_id": 47292, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000594", - "question_id": 47296, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001081", - "question_id": 47297, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000868", - "question_id": 47298, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000397", - "question_id": 47301, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000938", - "question_id": 47302, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "evv00001391", - "question_id": 47304, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000328", - "question_id": 47305, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00001027", - "question_id": 47308, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00001028", - "question_id": 47312, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000209", - "question_id": 47313, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001341", - "question_id": 47319, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "evv00001450", - "question_id": 47320, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"violin\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000780", - "question_id": 47323, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000328", - "question_id": 47325, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001234", - "question_id": 47328, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000713", - "question_id": 47329, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "eva00000968", - "question_id": 47330, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "eva00000715", - "question_id": 47331, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000289", - "question_id": 47332, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000551", - "question_id": 47339, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"electric_bass\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000269", - "question_id": 47340, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000012", - "question_id": 47342, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000184", - "question_id": 47343, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00000799", - "question_id": 47344, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000882", - "question_id": 47346, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000437", - "question_id": 47347, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001027", - "question_id": 47349, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000652", - "question_id": 47352, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000695", - "question_id": 47356, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000310", - "question_id": 47357, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000367", - "question_id": 47360, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000143", - "question_id": 47361, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001338", - "question_id": 47362, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "esa00000193", - "question_id": 47364, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000955", - "question_id": 47368, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000504", - "question_id": 47369, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "esa00000522", - "question_id": 47375, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000001", - "question_id": 47378, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000945", - "question_id": 47383, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000945", - "question_id": 47383, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001405", - "question_id": 47385, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004901", - "question_id": 47391, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000556", - "question_id": 47392, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bagpipe\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000933", - "question_id": 47394, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000933", - "question_id": 47394, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000924", - "question_id": 47400, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000310", - "question_id": 47402, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005220", - "question_id": 47403, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000846", - "question_id": 47405, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"electric_bass\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000189", - "question_id": 47407, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008398", - "question_id": 47409, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000249", - "question_id": 47412, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "esa00000498", - "question_id": 47415, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000955", - "question_id": 47418, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000846", - "question_id": 47420, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000526", - "question_id": 47423, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000963", - "question_id": 47430, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000932", - "question_id": 47432, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000182", - "question_id": 47437, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000259", - "question_id": 47440, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001263", - "question_id": 47443, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "esa00000272", - "question_id": 47444, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"trumpet\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000695", - "question_id": 47446, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001261", - "question_id": 47447, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000194", - "question_id": 47451, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "esa00000670", - "question_id": 47453, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000483", - "question_id": 47454, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001147", - "question_id": 47455, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000522", - "question_id": 47457, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "evv00001374", - "question_id": 47458, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000354", - "question_id": 47461, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000919", - "question_id": 47465, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000820", - "question_id": 47466, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000462", - "question_id": 47468, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000459", - "question_id": 47470, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000184", - "question_id": 47471, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00001144", - "question_id": 47472, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000658", - "question_id": 47473, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000265", - "question_id": 47474, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001261", - "question_id": 47475, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00001076", - "question_id": 47480, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001467", - "question_id": 47484, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000919", - "question_id": 47489, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000213", - "question_id": 47490, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000780", - "question_id": 47491, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000573", - "question_id": 47492, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001115", - "question_id": 47493, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000505", - "question_id": 47494, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00001014", - "question_id": 47495, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000201", - "question_id": 47498, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"electric_bass\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000155", - "question_id": 47499, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00001168", - "question_id": 47501, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000669", - "question_id": 47503, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000246", - "question_id": 47505, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"ukulele\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "evv00001291", - "question_id": 47508, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000419", - "question_id": 47515, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000813", - "question_id": 47516, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000820", - "question_id": 47517, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000448", - "question_id": 47521, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"pipa\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "esa00000415", - "question_id": 47523, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001158", - "question_id": 47525, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000494", - "question_id": 47526, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000796", - "question_id": 47527, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "esa00000667", - "question_id": 47531, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001097", - "question_id": 47532, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000889", - "question_id": 47534, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"erhu\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "eva00000889", - "question_id": 47534, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"erhu\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "eva00000984", - "question_id": 47538, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001097", - "question_id": 47541, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000188", - "question_id": 47544, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000278", - "question_id": 47545, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000707", - "question_id": 47549, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000442", - "question_id": 47554, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000007", - "question_id": 47556, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "esa00000669", - "question_id": 47559, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"pipa\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "evv00001484", - "question_id": 47560, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"tuba\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006818", - "question_id": 47563, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000889", - "question_id": 47564, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "eva00000889", - "question_id": 47566, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000432", - "question_id": 47567, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001204", - "question_id": 47568, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000291", - "question_id": 47575, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000587", - "question_id": 47577, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000813", - "question_id": 47579, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005203", - "question_id": 47581, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008603", - "question_id": 47582, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00008603", - "question_id": 47583, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00001092", - "question_id": 47589, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "eva00000968", - "question_id": 47590, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000367", - "question_id": 47598, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000602", - "question_id": 47601, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008256", - "question_id": 47611, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006020", - "question_id": 47615, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"tuba\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "eva00001157", - "question_id": 47620, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"clarinet\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "evv00001484", - "question_id": 47626, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "sa00007697", - "question_id": 47627, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "esa00000292", - "question_id": 47631, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "eva00001107", - "question_id": 47634, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"cello\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "eva00000873", - "question_id": 47642, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "eva00000728", - "question_id": 47643, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "eva00000777", - "question_id": 47650, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "sa00006095", - "question_id": 47662, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "esa00000557", - "question_id": 47667, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00004322", - "question_id": 47668, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "sa00007601", - "question_id": 47671, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00007976", - "question_id": 47672, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00007186", - "question_id": 47676, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "va00003296", - "question_id": 47680, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00000706", - "question_id": 47686, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001009", - "question_id": 47687, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001125", - "question_id": 47702, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006477", - "question_id": 47708, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006515", - "question_id": 47712, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006119", - "question_id": 47714, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007262", - "question_id": 47717, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003883", - "question_id": 47721, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003584", - "question_id": 47723, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006020", - "question_id": 47725, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000913", - "question_id": 47726, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004299", - "question_id": 47730, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"guzheng\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "sa00007937", - "question_id": 47731, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000199", - "question_id": 47732, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000528", - "question_id": 47733, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001392", - "question_id": 47734, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001392", - "question_id": 47735, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "vv00003064", - "question_id": 47738, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002585", - "question_id": 47742, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002585", - "question_id": 47743, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008287", - "question_id": 47744, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003453", - "question_id": 47745, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004609", - "question_id": 47746, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "va00004609", - "question_id": 47747, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006956", - "question_id": 47748, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "eva00001067", - "question_id": 47752, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000143", - "question_id": 47763, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "va00004971", - "question_id": 47764, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "esa00000643", - "question_id": 47767, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "sa00006891", - "question_id": 47769, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "va00003135", - "question_id": 47774, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "va00004324", - "question_id": 47780, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "va00004902", - "question_id": 47781, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "esa00000560", - "question_id": 47783, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "va00003115", - "question_id": 47785, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "sa00007151", - "question_id": 47793, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "sa00008889", - "question_id": 47795, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "sa00008695", - "question_id": 47798, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "va00003674", - "question_id": 47808, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00003207", - "question_id": 47809, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "sa00007640", - "question_id": 47811, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "esa00000680", - "question_id": 47813, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "sa00007354", - "question_id": 47819, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "esa00000328", - "question_id": 47821, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "esa00000498", - "question_id": 47824, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "eva00001180", - "question_id": 47826, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "va00004163", - "question_id": 47836, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "va00004163", - "question_id": 47837, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "va00005764", - "question_id": 47847, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "sa00007405", - "question_id": 47848, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "esa00000631", - "question_id": 47849, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "sa00006381", - "question_id": 47852, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "esa00000194", - "question_id": 47854, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001303", - "question_id": 47855, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"drum\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004413", - "question_id": 47856, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "sa00007079", - "question_id": 47859, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000240", - "question_id": 47868, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007103", - "question_id": 47870, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000842", - "question_id": 47876, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003150", - "question_id": 47877, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"congas\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000157", - "question_id": 47880, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005117", - "question_id": 47882, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000390", - "question_id": 47887, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003439", - "question_id": 47891, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "evv00001469", - "question_id": 47893, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"middle\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001168", - "question_id": 47899, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "sa00008053", - "question_id": 47908, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "sa00007976", - "question_id": 47909, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "esa00000006", - "question_id": 47912, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"last\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "eva00001133", - "question_id": 47913, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "va00004954", - "question_id": 47915, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "sa00008163", - "question_id": 47921, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "va00005677", - "question_id": 47924, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "eva00000958", - "question_id": 47925, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "eva00000931", - "question_id": 47928, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "va00003621", - "question_id": 47929, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "sa00008928", - "question_id": 47940, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "sa00007783", - "question_id": 47941, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "sa00007208", - "question_id": 47946, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "esa00000419", - "question_id": 47954, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "va00004051", - "question_id": 47957, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "vv00000119", - "question_id": 47963, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "eva00000820", - "question_id": 47965, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"saxophone\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "esa00000331", - "question_id": 47968, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "va00003891", - "question_id": 47971, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "sa00006973", - "question_id": 47973, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "va00003609", - "question_id": 47977, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "eva00000861", - "question_id": 47980, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "va00005243", - "question_id": 47986, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "sa00007540", - "question_id": 47993, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "eva00001203", - "question_id": 47994, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003961", - "question_id": 47997, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "esa00000688", - "question_id": 47999, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000201", - "question_id": 48000, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "vv00002546", - "question_id": 48001, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000337", - "question_id": 48003, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "esa00000329", - "question_id": 48004, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007967", - "question_id": 48007, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "sa00007756", - "question_id": 48008, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "vv00002785", - "question_id": 48010, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "va00003386", - "question_id": 48011, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "eva00000786", - "question_id": 48012, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004580", - "question_id": 48014, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "evv00001377", - "question_id": 48017, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"suona\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "sa00008269", - "question_id": 48019, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "va00005798", - "question_id": 48020, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "va00003813", - "question_id": 48023, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "eva00000941", - "question_id": 48028, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "va00004137", - "question_id": 48030, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "sa00007531", - "question_id": 48032, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "esa00000296", - "question_id": 48038, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "vv00000268", - "question_id": 48041, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "va00004034", - "question_id": 48043, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "evv00001283", - "question_id": 48051, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "sa00008136", - "question_id": 48064, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "sa00007974", - "question_id": 48068, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "va00004365", - "question_id": 48071, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "sa00006826", - "question_id": 48072, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "esa00000380", - "question_id": 48085, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003670", - "question_id": 48086, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "eva00000832", - "question_id": 48089, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"cello\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "va00003396", - "question_id": 48095, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "va00005068", - "question_id": 48096, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "sa00005985", - "question_id": 48097, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "esa00000271", - "question_id": 48101, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000189", - "question_id": 48102, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007158", - "question_id": 48104, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "sa00006568", - "question_id": 48105, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "esa00000004", - "question_id": 48108, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000635", - "question_id": 48111, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006515", - "question_id": 48117, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "sa00007640", - "question_id": 48118, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "esa00000309", - "question_id": 48121, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "sa00007405", - "question_id": 48130, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001109", - "question_id": 48131, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "vv00000598", - "question_id": 48133, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006122", - "question_id": 48136, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "sa00007997", - "question_id": 48152, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "sa00007580", - "question_id": 48154, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "va00005642", - "question_id": 48157, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "sa00006811", - "question_id": 48161, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "va00005348", - "question_id": 48164, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "va00005565", - "question_id": 48165, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "eva00001204", - "question_id": 48170, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008097", - "question_id": 48171, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "esa00000679", - "question_id": 48172, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000885", - "question_id": 48174, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "esa00000172", - "question_id": 48175, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000822", - "question_id": 48176, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "sa00007079", - "question_id": 48177, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "vv00002964", - "question_id": 48185, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "sa00007560", - "question_id": 48187, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "va00005291", - "question_id": 48189, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "vv00003064", - "question_id": 48191, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005817", - "question_id": 48193, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"xylophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005656", - "question_id": 48200, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "sa00006042", - "question_id": 48201, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "eva00001114", - "question_id": 48202, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003461", - "question_id": 48204, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "esa00000569", - "question_id": 48207, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "sa00006364", - "question_id": 48218, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "evv00001418", - "question_id": 48221, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "sa00008470", - "question_id": 48231, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "eva00000814", - "question_id": 48233, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001270", - "question_id": 48240, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "eva00000924", - "question_id": 48244, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005157", - "question_id": 48246, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "va00005649", - "question_id": 48253, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bassoon\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005356", - "question_id": 48254, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "va00005649", - "question_id": 48255, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "sa00008696", - "question_id": 48256, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "esa00000363", - "question_id": 48257, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006312", - "question_id": 48259, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000443", - "question_id": 48261, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bagpipe\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000868", - "question_id": 48262, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bagpipe\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000901", - "question_id": 48267, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008156", - "question_id": 48268, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "evv00001453", - "question_id": 48273, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000670", - "question_id": 48278, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "sa00006985", - "question_id": 48286, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003363", - "question_id": 48288, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "vv00000336", - "question_id": 48289, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "va00005700", - "question_id": 48294, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000644", - "question_id": 48295, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "va00003245", - "question_id": 48298, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "sa00007308", - "question_id": 48299, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "va00004182", - "question_id": 48301, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008116", - "question_id": 48303, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000602", - "question_id": 48307, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005715", - "question_id": 48316, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "esa00000363", - "question_id": 48320, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "esa00000576", - "question_id": 48327, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "esa00000576", - "question_id": 48328, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"cello\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "sa00008488", - "question_id": 48329, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "sa00007178", - "question_id": 48330, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "va00005052", - "question_id": 48335, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "eva00000697", - "question_id": 48337, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001080", - "question_id": 48338, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "esa00000441", - "question_id": 48340, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "va00004626", - "question_id": 48341, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000707", - "question_id": 48345, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005314", - "question_id": 48346, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007759", - "question_id": 48357, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "sa00007705", - "question_id": 48360, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008755", - "question_id": 48364, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002975", - "question_id": 48365, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "esa00000380", - "question_id": 48366, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001068", - "question_id": 48368, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "va00005519", - "question_id": 48373, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "eva00000748", - "question_id": 48374, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "eva00000940", - "question_id": 48378, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006475", - "question_id": 48379, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "esa00000616", - "question_id": 48380, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"trumpet\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006550", - "question_id": 48385, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "va00003386", - "question_id": 48390, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"suona\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006973", - "question_id": 48392, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bagpipe\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007668", - "question_id": 48393, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006909", - "question_id": 48396, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "va00004770", - "question_id": 48398, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "sa00006219", - "question_id": 48401, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "sa00007756", - "question_id": 48406, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008321", - "question_id": 48408, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "eva00000859", - "question_id": 48410, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005945", - "question_id": 48411, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "eva00001084", - "question_id": 48414, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000853", - "question_id": 48418, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005537", - "question_id": 48420, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "va00003500", - "question_id": 48425, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "sa00008224", - "question_id": 48426, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "sa00007817", - "question_id": 48428, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "va00003597", - "question_id": 48431, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "eva00001068", - "question_id": 48435, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "sa00006252", - "question_id": 48444, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "esa00000415", - "question_id": 48445, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "esa00000418", - "question_id": 48454, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "va00003768", - "question_id": 48456, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "esa00000465", - "question_id": 48459, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "vv00002867", - "question_id": 48461, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000643", - "question_id": 48467, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000363", - "question_id": 48472, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000292", - "question_id": 48485, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000267", - "question_id": 48488, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000501", - "question_id": 48490, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000763", - "question_id": 48492, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "esa00000277", - "question_id": 48495, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000182", - "question_id": 48496, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000016", - "question_id": 48497, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000726", - "question_id": 48499, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000423", - "question_id": 48500, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "va00003271", - "question_id": 48501, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "eva00001011", - "question_id": 48504, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "esa00000545", - "question_id": 48508, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"suona\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006867", - "question_id": 48514, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "evv00001310", - "question_id": 48515, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000167", - "question_id": 48516, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003533", - "question_id": 48518, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "esa00000213", - "question_id": 48520, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006002", - "question_id": 48522, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "va00004805", - "question_id": 48527, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "sa00006905", - "question_id": 48528, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "va00005817", - "question_id": 48530, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "evv00001327", - "question_id": 48532, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000557", - "question_id": 48539, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001295", - "question_id": 48541, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "va00005946", - "question_id": 48545, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "sa00008224", - "question_id": 48547, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"suona\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001390", - "question_id": 48549, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000658", - "question_id": 48550, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000300", - "question_id": 48553, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001132", - "question_id": 48556, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000319", - "question_id": 48559, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "eva00000810", - "question_id": 48560, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007368", - "question_id": 48562, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "esa00000238", - "question_id": 48569, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "sa00007648", - "question_id": 48570, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005495", - "question_id": 48577, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"xylophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000423", - "question_id": 48581, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001373", - "question_id": 48582, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "sa00006432", - "question_id": 48583, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "eva00001115", - "question_id": 48584, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000799", - "question_id": 48594, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "esa00000017", - "question_id": 48597, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005491", - "question_id": 48599, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "vv00000221", - "question_id": 48600, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "evv00001303", - "question_id": 48603, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001230", - "question_id": 48608, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "sa00008165", - "question_id": 48611, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "va00005099", - "question_id": 48615, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "sa00007735", - "question_id": 48617, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "esa00000144", - "question_id": 48619, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "esa00000643", - "question_id": 48629, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003853", - "question_id": 48631, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000347", - "question_id": 48639, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006728", - "question_id": 48640, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "eva00000777", - "question_id": 48642, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "esa00000465", - "question_id": 48644, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "eva00000728", - "question_id": 48646, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005174", - "question_id": 48654, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "sa00007326", - "question_id": 48656, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "sa00006942", - "question_id": 48661, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004212", - "question_id": 48662, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "sa00008630", - "question_id": 48663, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "esa00000577", - "question_id": 48669, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"ukulele\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000482", - "question_id": 48670, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000163", - "question_id": 48677, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001317", - "question_id": 48678, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000677", - "question_id": 48679, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "vv00002906", - "question_id": 48690, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003556", - "question_id": 48691, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bagpipe\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000655", - "question_id": 48692, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000294", - "question_id": 48693, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "evv00001448", - "question_id": 48695, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "esa00000285", - "question_id": 48697, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "eva00000781", - "question_id": 48698, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000781", - "question_id": 48699, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000593", - "question_id": 48700, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000973", - "question_id": 48703, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000526", - "question_id": 48707, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007332", - "question_id": 48709, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "esa00000520", - "question_id": 48711, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "eva00001159", - "question_id": 48712, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001159", - "question_id": 48713, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "esa00000672", - "question_id": 48714, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"last\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "sa00006712", - "question_id": 48718, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "eva00001147", - "question_id": 48719, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001099", - "question_id": 48724, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "evv00001290", - "question_id": 48728, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004513", - "question_id": 48730, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"banjo\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008905", - "question_id": 48731, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006604", - "question_id": 48732, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "esa00000641", - "question_id": 48733, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "va00005753", - "question_id": 48737, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "sa00006454", - "question_id": 48739, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "va00005862", - "question_id": 48742, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001089", - "question_id": 48751, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000642", - "question_id": 48752, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "esa00000581", - "question_id": 48755, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004786", - "question_id": 48756, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bagpipe\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000783", - "question_id": 48757, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "esa00000343", - "question_id": 48760, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002914", - "question_id": 48761, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001154", - "question_id": 48763, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"last\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "esa00000577", - "question_id": 48764, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"last\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "sa00007208", - "question_id": 48766, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "evv00001315", - "question_id": 48768, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008877", - "question_id": 48775, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "va00003838", - "question_id": 48776, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "va00005222", - "question_id": 48779, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "esa00000291", - "question_id": 48781, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003152", - "question_id": 48782, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007605", - "question_id": 48785, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "va00005273", - "question_id": 48786, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "eva00000975", - "question_id": 48787, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006235", - "question_id": 48791, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "sa00007390", - "question_id": 48796, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001405", - "question_id": 48798, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004978", - "question_id": 48800, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "esa00000424", - "question_id": 48803, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000556", - "question_id": 48806, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bagpipe\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001457", - "question_id": 48808, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000441", - "question_id": 48816, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000451", - "question_id": 48818, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000451", - "question_id": 48818, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000903", - "question_id": 48820, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "eva00001029", - "question_id": 48821, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000220", - "question_id": 48823, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "esa00000573", - "question_id": 48824, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006941", - "question_id": 48825, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000230", - "question_id": 48827, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"xylophone\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000263", - "question_id": 48833, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005564", - "question_id": 48840, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "sa00008544", - "question_id": 48843, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "eva00000885", - "question_id": 48849, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006177", - "question_id": 48850, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004989", - "question_id": 48853, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006177", - "question_id": 48856, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001007", - "question_id": 48857, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000658", - "question_id": 48859, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003768", - "question_id": 48863, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"suona\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001274", - "question_id": 48872, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "evv00001341", - "question_id": 48877, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000246", - "question_id": 48884, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "eva00000908", - "question_id": 48885, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000210", - "question_id": 48893, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "esa00000451", - "question_id": 48899, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "va00005661", - "question_id": 48902, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bagpipe\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004103", - "question_id": 48904, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "esa00000266", - "question_id": 48905, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001038", - "question_id": 48906, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "sa00005972", - "question_id": 48908, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001181", - "question_id": 48909, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005528", - "question_id": 48910, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000573", - "question_id": 48912, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "esa00000459", - "question_id": 48913, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001382", - "question_id": 48915, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004985", - "question_id": 48918, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006508", - "question_id": 48921, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bagpipe\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000813", - "question_id": 48930, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "esa00000483", - "question_id": 48931, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006337", - "question_id": 48937, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000409", - "question_id": 48940, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "sa00006493", - "question_id": 48947, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "esa00000146", - "question_id": 48950, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "va00004618", - "question_id": 48951, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "eva00000813", - "question_id": 48956, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000254", - "question_id": 48964, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000451", - "question_id": 48966, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000451", - "question_id": 48966, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005005", - "question_id": 48971, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "eva00000736", - "question_id": 48973, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000564", - "question_id": 48975, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008110", - "question_id": 48977, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "sa00007276", - "question_id": 48980, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "sa00007613", - "question_id": 48984, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "sa00006859", - "question_id": 48986, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000285", - "question_id": 48989, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "eva00000727", - "question_id": 48990, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000393", - "question_id": 48992, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "sa00008768", - "question_id": 48994, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"xylophone\", \"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000882", - "question_id": 49001, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000560", - "question_id": 49002, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004948", - "question_id": 49003, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000005", - "question_id": 49006, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007043", - "question_id": 49010, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"xylophone\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008327", - "question_id": 49014, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000632", - "question_id": 49024, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008053", - "question_id": 49031, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007726", - "question_id": 49034, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005215", - "question_id": 49036, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008817", - "question_id": 49037, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "vv00000524", - "question_id": 49042, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "esa00000288", - "question_id": 49044, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "eva00000861", - "question_id": 49045, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001094", - "question_id": 49049, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005683", - "question_id": 49050, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "eva00000875", - "question_id": 49051, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "sa00008395", - "question_id": 49056, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "esa00000439", - "question_id": 49059, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "sa00007194", - "question_id": 49060, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "sa00007311", - "question_id": 49063, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "sa00006435", - "question_id": 49066, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "sa00008250", - "question_id": 49067, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "sa00007605", - "question_id": 49068, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000651", - "question_id": 49069, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000343", - "question_id": 49078, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001190", - "question_id": 49081, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00002429", - "question_id": 49086, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008608", - "question_id": 49090, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "esa00000569", - "question_id": 49091, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "esa00000017", - "question_id": 49092, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"xylophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000388", - "question_id": 49102, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "va00005596", - "question_id": 49107, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000354", - "question_id": 49112, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "vv00002728", - "question_id": 49115, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001109", - "question_id": 49123, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "eva00001129", - "question_id": 49126, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "esa00000303", - "question_id": 49145, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "esa00000425", - "question_id": 49153, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001454", - "question_id": 49156, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001104", - "question_id": 49157, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000585", - "question_id": 49169, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"trumpet\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "esa00000157", - "question_id": 49173, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "esa00000617", - "question_id": 49176, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "sa00005991", - "question_id": 49178, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000414", - "question_id": 49188, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00002507", - "question_id": 49196, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000528", - "question_id": 49197, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "evv00001290", - "question_id": 49203, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001206", - "question_id": 49211, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "esa00000677", - "question_id": 49212, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006336", - "question_id": 49213, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "sa00008768", - "question_id": 49214, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "evv00001315", - "question_id": 49216, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "sa00007203", - "question_id": 49217, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000659", - "question_id": 49219, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000337", - "question_id": 49221, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "va00003156", - "question_id": 49222, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "esa00000292", - "question_id": 49223, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006241", - "question_id": 49224, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "sa00008827", - "question_id": 49225, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bagpipe\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000520", - "question_id": 49227, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bagpipe\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000210", - "question_id": 49229, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006435", - "question_id": 49230, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"congas\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000265", - "question_id": 49231, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005900", - "question_id": 49233, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "va00005507", - "question_id": 49236, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "eva00000839", - "question_id": 49242, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000213", - "question_id": 49247, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000459", - "question_id": 49248, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"tuba\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000642", - "question_id": 49250, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008206", - "question_id": 49251, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "eva00001197", - "question_id": 49253, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"pipa\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001302", - "question_id": 49259, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000418", - "question_id": 49260, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000240", - "question_id": 49267, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000569", - "question_id": 49271, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000349", - "question_id": 49272, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006249", - "question_id": 49274, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "esa00000425", - "question_id": 49276, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000814", - "question_id": 49279, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007033", - "question_id": 49280, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "eva00001175", - "question_id": 49283, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002909", - "question_id": 49286, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000626", - "question_id": 49287, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "esa00000240", - "question_id": 49289, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "esa00000667", - "question_id": 49300, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "va00004687", - "question_id": 49334, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "sa00006756", - "question_id": 49335, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "esa00000162", - "question_id": 49342, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "sa00007091", - "question_id": 49349, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000272", - "question_id": 49351, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "sa00007997", - "question_id": 49354, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001028", - "question_id": 49360, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003337", - "question_id": 49361, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "sa00006818", - "question_id": 49370, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "eva00000981", - "question_id": 49373, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001056", - "question_id": 49379, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001277", - "question_id": 49384, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000960", - "question_id": 49391, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000222", - "question_id": 49392, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000622", - "question_id": 49393, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "esa00000360", - "question_id": 49396, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "va00005403", - "question_id": 49397, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "va00003645", - "question_id": 49399, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "eva00001189", - "question_id": 49403, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006575", - "question_id": 49404, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "esa00000303", - "question_id": 49406, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001121", - "question_id": 49410, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001310", - "question_id": 49412, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000875", - "question_id": 49415, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000477", - "question_id": 49417, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005491", - "question_id": 49419, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000508", - "question_id": 49423, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007055", - "question_id": 49425, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "esa00000281", - "question_id": 49427, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bassoon\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000981", - "question_id": 49432, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "esa00000451", - "question_id": 49433, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004905", - "question_id": 49437, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "evv00001325", - "question_id": 49439, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}] \ No newline at end of file diff --git a/data/json/avqa-train_real.json b/data/json/avqa-train_real.json deleted file mode 100644 index 404f1e8..0000000 --- a/data/json/avqa-train_real.json +++ /dev/null @@ -1,206833 +0,0 @@ -[{ - "video_id": "00000238", - "question_id": 8, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000024", - "question_id": 9, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000111", - "question_id": 14, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000046", - "question_id": 15, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00000150", - "question_id": 16, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000136", - "question_id": 17, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000188", - "question_id": 18, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00000272", - "question_id": 19, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000031", - "question_id": 20, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00000026", - "question_id": 21, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000071", - "question_id": 22, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000250", - "question_id": 23, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000197", - "question_id": 24, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000270", - "question_id": 25, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000254", - "question_id": 26, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000225", - "question_id": 27, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000232", - "question_id": 29, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00000152", - "question_id": 30, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000085", - "question_id": 32, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000074", - "question_id": 33, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000143", - "question_id": 34, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000015", - "question_id": 36, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000199", - "question_id": 38, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000247", - "question_id": 39, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "seven" -}, { - "video_id": "00000209", - "question_id": 40, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000147", - "question_id": 41, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000223", - "question_id": 42, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000205", - "question_id": 43, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000107", - "question_id": 44, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000097", - "question_id": 45, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00000045", - "question_id": 46, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000249", - "question_id": 47, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000028", - "question_id": 49, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000272", - "question_id": 50, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000220", - "question_id": 51, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000157", - "question_id": 52, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000157", - "question_id": 53, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000028", - "question_id": 54, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000258", - "question_id": 56, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000064", - "question_id": 57, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000050", - "question_id": 58, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000111", - "question_id": 59, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000092", - "question_id": 61, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000175", - "question_id": 63, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000035", - "question_id": 64, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000294", - "question_id": 65, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000271", - "question_id": 67, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000182", - "question_id": 69, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000105", - "question_id": 70, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000114", - "question_id": 71, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000007", - "question_id": 72, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000187", - "question_id": 75, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000181", - "question_id": 76, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000074", - "question_id": 77, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000198", - "question_id": 78, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000245", - "question_id": 79, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000287", - "question_id": 80, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000185", - "question_id": 81, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000209", - "question_id": 84, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000188", - "question_id": 87, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000109", - "question_id": 88, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000251", - "question_id": 91, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000082", - "question_id": 92, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000286", - "question_id": 94, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000292", - "question_id": 97, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000112", - "question_id": 99, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000085", - "question_id": 101, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000051", - "question_id": 102, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000006", - "question_id": 104, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000143", - "question_id": 105, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"electric_bass\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000025", - "question_id": 107, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000217", - "question_id": 109, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000151", - "question_id": 110, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000150", - "question_id": 114, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000003", - "question_id": 115, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000090", - "question_id": 117, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000033", - "question_id": 119, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000244", - "question_id": 120, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000241", - "question_id": 121, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000220", - "question_id": 123, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000197", - "question_id": 124, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000109", - "question_id": 126, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000296", - "question_id": 128, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000162", - "question_id": 129, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000145", - "question_id": 130, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000141", - "question_id": 131, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000015", - "question_id": 132, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000275", - "question_id": 134, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000058", - "question_id": 135, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000153", - "question_id": 140, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000019", - "question_id": 143, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000188", - "question_id": 144, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000245", - "question_id": 145, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000026", - "question_id": 147, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000043", - "question_id": 148, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000074", - "question_id": 149, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000189", - "question_id": 151, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000114", - "question_id": 152, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000073", - "question_id": 153, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000259", - "question_id": 157, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000299", - "question_id": 158, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000076", - "question_id": 159, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000046", - "question_id": 161, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000266", - "question_id": 163, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000210", - "question_id": 164, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000114", - "question_id": 165, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000150", - "question_id": 166, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000232", - "question_id": 168, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000122", - "question_id": 170, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000067", - "question_id": 171, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000063", - "question_id": 175, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000277", - "question_id": 176, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000167", - "question_id": 177, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000104", - "question_id": 178, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000299", - "question_id": 179, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000270", - "question_id": 180, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00000250", - "question_id": 181, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000033", - "question_id": 182, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000100", - "question_id": 185, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000231", - "question_id": 186, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000031", - "question_id": 187, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00000211", - "question_id": 189, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000058", - "question_id": 192, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000265", - "question_id": 193, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000112", - "question_id": 194, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000232", - "question_id": 195, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00000072", - "question_id": 196, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000105", - "question_id": 197, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000100", - "question_id": 202, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000297", - "question_id": 203, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000159", - "question_id": 204, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000184", - "question_id": 205, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000188", - "question_id": 207, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00000164", - "question_id": 209, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000045", - "question_id": 211, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000132", - "question_id": 212, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000226", - "question_id": 214, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000058", - "question_id": 215, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007030", - "question_id": 216, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007872", - "question_id": 217, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002172", - "question_id": 218, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006128", - "question_id": 219, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002314", - "question_id": 220, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001784", - "question_id": 221, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008341", - "question_id": 222, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004743", - "question_id": 223, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003779", - "question_id": 228, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008034", - "question_id": 231, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005998", - "question_id": 232, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005472", - "question_id": 233, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001545", - "question_id": 234, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008103", - "question_id": 236, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006767", - "question_id": 237, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002259", - "question_id": 238, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006939", - "question_id": 241, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001243", - "question_id": 242, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003739", - "question_id": 243, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000194", - "question_id": 244, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006893", - "question_id": 245, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002528", - "question_id": 246, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005038", - "question_id": 247, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001241", - "question_id": 248, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003491", - "question_id": 249, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000423", - "question_id": 250, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004747", - "question_id": 251, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003498", - "question_id": 252, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004678", - "question_id": 253, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007297", - "question_id": 255, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001944", - "question_id": 256, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004505", - "question_id": 257, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006109", - "question_id": 258, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004268", - "question_id": 259, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006865", - "question_id": 261, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002359", - "question_id": 262, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004155", - "question_id": 264, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005198", - "question_id": 269, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003846", - "question_id": 270, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008057", - "question_id": 271, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004650", - "question_id": 272, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004747", - "question_id": 274, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002077", - "question_id": 276, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006447", - "question_id": 278, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002657", - "question_id": 279, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005797", - "question_id": 283, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006544", - "question_id": 284, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008471", - "question_id": 285, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008732", - "question_id": 287, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008212", - "question_id": 289, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007239", - "question_id": 292, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006720", - "question_id": 293, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008823", - "question_id": 294, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000243", - "question_id": 296, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005806", - "question_id": 297, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001373", - "question_id": 298, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000456", - "question_id": 299, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000015", - "question_id": 300, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000589", - "question_id": 301, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002152", - "question_id": 303, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002680", - "question_id": 304, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007315", - "question_id": 305, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003339", - "question_id": 308, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005014", - "question_id": 309, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004201", - "question_id": 310, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003432", - "question_id": 316, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004435", - "question_id": 317, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002917", - "question_id": 319, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001305", - "question_id": 320, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006484", - "question_id": 321, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004008", - "question_id": 322, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003668", - "question_id": 325, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004576", - "question_id": 327, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002082", - "question_id": 328, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000818", - "question_id": 330, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005260", - "question_id": 331, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001492", - "question_id": 332, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001035", - "question_id": 333, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001519", - "question_id": 334, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006411", - "question_id": 335, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004224", - "question_id": 336, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000648", - "question_id": 340, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008086", - "question_id": 342, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007179", - "question_id": 344, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008619", - "question_id": 345, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008132", - "question_id": 351, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005274", - "question_id": 352, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008717", - "question_id": 353, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001669", - "question_id": 354, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001692", - "question_id": 355, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003766", - "question_id": 358, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008586", - "question_id": 360, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000959", - "question_id": 361, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006107", - "question_id": 363, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008825", - "question_id": 364, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006585", - "question_id": 365, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003217", - "question_id": 366, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005499", - "question_id": 367, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002408", - "question_id": 368, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003904", - "question_id": 369, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001272", - "question_id": 371, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004849", - "question_id": 372, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007830", - "question_id": 374, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008221", - "question_id": 376, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006073", - "question_id": 379, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005913", - "question_id": 380, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008335", - "question_id": 381, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005521", - "question_id": 382, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000551", - "question_id": 384, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000722", - "question_id": 386, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001801", - "question_id": 388, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001329", - "question_id": 389, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004038", - "question_id": 390, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005675", - "question_id": 393, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001702", - "question_id": 394, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005639", - "question_id": 396, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001959", - "question_id": 397, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00007205", - "question_id": 399, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006997", - "question_id": 401, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004325", - "question_id": 402, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001348", - "question_id": 403, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002959", - "question_id": 405, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004135", - "question_id": 406, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008744", - "question_id": 407, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002455", - "question_id": 408, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006303", - "question_id": 414, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006291", - "question_id": 415, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006595", - "question_id": 416, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003107", - "question_id": 418, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001435", - "question_id": 420, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008384", - "question_id": 421, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000727", - "question_id": 423, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000817", - "question_id": 424, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001507", - "question_id": 425, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001906", - "question_id": 426, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005712", - "question_id": 429, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004134", - "question_id": 430, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002352", - "question_id": 432, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001715", - "question_id": 433, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000508", - "question_id": 435, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006516", - "question_id": 436, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002659", - "question_id": 437, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000877", - "question_id": 438, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007344", - "question_id": 439, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000545", - "question_id": 440, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002517", - "question_id": 442, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008915", - "question_id": 443, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008833", - "question_id": 444, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002293", - "question_id": 445, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000661", - "question_id": 446, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001645", - "question_id": 447, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006038", - "question_id": 448, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002751", - "question_id": 451, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008061", - "question_id": 452, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001642", - "question_id": 453, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006572", - "question_id": 454, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005532", - "question_id": 455, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003058", - "question_id": 457, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006387", - "question_id": 458, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000662", - "question_id": 460, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005757", - "question_id": 461, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000408", - "question_id": 462, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002325", - "question_id": 463, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005979", - "question_id": 465, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004145", - "question_id": 466, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007247", - "question_id": 467, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002644", - "question_id": 469, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001575", - "question_id": 470, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000897", - "question_id": 471, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008819", - "question_id": 472, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006482", - "question_id": 473, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003458", - "question_id": 475, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005029", - "question_id": 477, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003402", - "question_id": 478, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006213", - "question_id": 479, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007647", - "question_id": 480, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000922", - "question_id": 481, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001820", - "question_id": 482, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007998", - "question_id": 483, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001177", - "question_id": 484, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000305", - "question_id": 486, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001784", - "question_id": 487, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000342", - "question_id": 488, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004558", - "question_id": 490, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007095", - "question_id": 491, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003970", - "question_id": 492, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008729", - "question_id": 493, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008638", - "question_id": 494, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002317", - "question_id": 495, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000049", - "question_id": 501, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007128", - "question_id": 502, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008145", - "question_id": 503, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001500", - "question_id": 504, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006918", - "question_id": 505, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005664", - "question_id": 506, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006292", - "question_id": 507, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003566", - "question_id": 508, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008153", - "question_id": 509, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005580", - "question_id": 511, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003407", - "question_id": 512, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007408", - "question_id": 513, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008078", - "question_id": 515, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003077", - "question_id": 516, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007402", - "question_id": 518, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001285", - "question_id": 519, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000529", - "question_id": 520, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000868", - "question_id": 521, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008845", - "question_id": 522, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005368", - "question_id": 524, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005610", - "question_id": 525, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006261", - "question_id": 526, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003969", - "question_id": 527, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008383", - "question_id": 529, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003840", - "question_id": 530, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002473", - "question_id": 532, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003163", - "question_id": 533, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005502", - "question_id": 534, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008582", - "question_id": 536, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002894", - "question_id": 538, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003338", - "question_id": 539, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008855", - "question_id": 540, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004056", - "question_id": 541, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007010", - "question_id": 542, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002306", - "question_id": 544, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006536", - "question_id": 546, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004768", - "question_id": 547, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005738", - "question_id": 548, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007536", - "question_id": 549, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008788", - "question_id": 551, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004062", - "question_id": 552, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004894", - "question_id": 553, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005948", - "question_id": 555, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004651", - "question_id": 556, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001071", - "question_id": 557, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000272", - "question_id": 562, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007044", - "question_id": 563, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006411", - "question_id": 565, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005444", - "question_id": 566, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002163", - "question_id": 568, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005390", - "question_id": 569, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002112", - "question_id": 570, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001654", - "question_id": 573, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000539", - "question_id": 574, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005405", - "question_id": 575, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007986", - "question_id": 576, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008687", - "question_id": 577, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002058", - "question_id": 582, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004706", - "question_id": 584, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007003", - "question_id": 585, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006703", - "question_id": 586, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005751", - "question_id": 587, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001325", - "question_id": 588, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005855", - "question_id": 589, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005689", - "question_id": 591, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000349", - "question_id": 592, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004058", - "question_id": 593, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001389", - "question_id": 594, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007316", - "question_id": 595, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005415", - "question_id": 598, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002528", - "question_id": 599, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000423", - "question_id": 600, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008727", - "question_id": 603, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005790", - "question_id": 605, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002003", - "question_id": 606, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006881", - "question_id": 607, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007649", - "question_id": 610, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002931", - "question_id": 611, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003218", - "question_id": 612, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006290", - "question_id": 613, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001540", - "question_id": 614, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006998", - "question_id": 616, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002332", - "question_id": 619, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004394", - "question_id": 620, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003038", - "question_id": 621, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006544", - "question_id": 622, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006214", - "question_id": 623, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003026", - "question_id": 624, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006862", - "question_id": 625, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002277", - "question_id": 627, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003864", - "question_id": 631, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006180", - "question_id": 632, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002337", - "question_id": 633, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008530", - "question_id": 634, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005806", - "question_id": 636, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002230", - "question_id": 638, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008401", - "question_id": 639, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000955", - "question_id": 643, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007224", - "question_id": 645, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008888", - "question_id": 646, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00006401", - "question_id": 648, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001679", - "question_id": 649, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005026", - "question_id": 651, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007654", - "question_id": 652, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007131", - "question_id": 656, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002984", - "question_id": 657, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008210", - "question_id": 658, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002491", - "question_id": 659, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000033", - "question_id": 661, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001721", - "question_id": 662, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00000433", - "question_id": 665, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006416", - "question_id": 667, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000320", - "question_id": 668, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001813", - "question_id": 669, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008262", - "question_id": 670, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001489", - "question_id": 671, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002941", - "question_id": 674, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007634", - "question_id": 675, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006825", - "question_id": 676, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000569", - "question_id": 677, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004572", - "question_id": 678, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007299", - "question_id": 679, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000751", - "question_id": 680, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000770", - "question_id": 681, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003410", - "question_id": 682, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002740", - "question_id": 683, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004074", - "question_id": 684, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002903", - "question_id": 686, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003741", - "question_id": 687, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006722", - "question_id": 690, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000863", - "question_id": 691, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005906", - "question_id": 692, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006106", - "question_id": 695, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004972", - "question_id": 696, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005239", - "question_id": 697, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004671", - "question_id": 699, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004922", - "question_id": 700, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004458", - "question_id": 702, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006903", - "question_id": 704, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008752", - "question_id": 705, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004379", - "question_id": 706, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001608", - "question_id": 707, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002559", - "question_id": 708, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003946", - "question_id": 709, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008807", - "question_id": 710, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005046", - "question_id": 711, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008285", - "question_id": 712, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007025", - "question_id": 713, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005059", - "question_id": 715, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001082", - "question_id": 716, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007528", - "question_id": 719, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001627", - "question_id": 720, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008333", - "question_id": 721, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003744", - "question_id": 722, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008780", - "question_id": 724, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000933", - "question_id": 725, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004316", - "question_id": 726, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005133", - "question_id": 727, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003995", - "question_id": 728, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008574", - "question_id": 729, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001525", - "question_id": 730, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006033", - "question_id": 731, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003949", - "question_id": 733, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001420", - "question_id": 734, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007093", - "question_id": 735, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006622", - "question_id": 736, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001072", - "question_id": 738, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004774", - "question_id": 739, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001001", - "question_id": 740, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005280", - "question_id": 742, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005616", - "question_id": 743, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007858", - "question_id": 745, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000821", - "question_id": 746, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005667", - "question_id": 747, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002042", - "question_id": 748, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005721", - "question_id": 750, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005570", - "question_id": 751, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006782", - "question_id": 752, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002690", - "question_id": 754, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005873", - "question_id": 756, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003104", - "question_id": 757, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006520", - "question_id": 758, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007190", - "question_id": 760, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004749", - "question_id": 762, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000651", - "question_id": 763, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001343", - "question_id": 765, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005186", - "question_id": 768, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004286", - "question_id": 770, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005852", - "question_id": 771, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006181", - "question_id": 772, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002563", - "question_id": 775, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002152", - "question_id": 776, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000729", - "question_id": 777, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000328", - "question_id": 778, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003174", - "question_id": 779, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000542", - "question_id": 780, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003549", - "question_id": 781, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002174", - "question_id": 785, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003262", - "question_id": 787, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007862", - "question_id": 788, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001307", - "question_id": 792, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005556", - "question_id": 793, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005853", - "question_id": 794, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006752", - "question_id": 795, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008075", - "question_id": 796, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000137", - "question_id": 797, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004611", - "question_id": 799, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000873", - "question_id": 800, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008185", - "question_id": 801, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007131", - "question_id": 803, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002252", - "question_id": 804, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004766", - "question_id": 806, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002243", - "question_id": 807, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002442", - "question_id": 808, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002347", - "question_id": 811, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007306", - "question_id": 812, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003956", - "question_id": 814, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007240", - "question_id": 817, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001472", - "question_id": 819, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002806", - "question_id": 820, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001100", - "question_id": 821, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006623", - "question_id": 822, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006623", - "question_id": 822, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007206", - "question_id": 823, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007606", - "question_id": 824, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002823", - "question_id": 825, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007039", - "question_id": 826, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002387", - "question_id": 827, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006040", - "question_id": 828, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007625", - "question_id": 830, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004315", - "question_id": 831, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003220", - "question_id": 832, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "more than ten" -}, { - "video_id": "00000784", - "question_id": 834, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001947", - "question_id": 836, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003837", - "question_id": 837, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005452", - "question_id": 838, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001274", - "question_id": 839, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002552", - "question_id": 840, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000237", - "question_id": 841, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004814", - "question_id": 842, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006225", - "question_id": 844, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003499", - "question_id": 845, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003793", - "question_id": 846, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008344", - "question_id": 847, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006713", - "question_id": 848, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "seven" -}, { - "video_id": "00007574", - "question_id": 850, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008662", - "question_id": 852, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007581", - "question_id": 854, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002549", - "question_id": 855, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00006447", - "question_id": 858, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001184", - "question_id": 859, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006660", - "question_id": 861, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00001154", - "question_id": 863, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002142", - "question_id": 864, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002710", - "question_id": 866, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006745", - "question_id": 867, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003025", - "question_id": 868, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003964", - "question_id": 869, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007558", - "question_id": 871, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000883", - "question_id": 873, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006600", - "question_id": 874, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002009", - "question_id": 875, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007163", - "question_id": 876, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003998", - "question_id": 877, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003459", - "question_id": 879, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005887", - "question_id": 881, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008516", - "question_id": 882, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007160", - "question_id": 883, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008276", - "question_id": 886, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003357", - "question_id": 888, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006135", - "question_id": 889, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006830", - "question_id": 890, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004782", - "question_id": 892, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000465", - "question_id": 893, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001512", - "question_id": 894, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006292", - "question_id": 895, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000129", - "question_id": 896, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008756", - "question_id": 897, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002949", - "question_id": 898, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000540", - "question_id": 899, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008134", - "question_id": 900, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006365", - "question_id": 902, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000310", - "question_id": 903, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004235", - "question_id": 904, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000192", - "question_id": 905, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000622", - "question_id": 907, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007614", - "question_id": 908, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002881", - "question_id": 909, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000217", - "question_id": 910, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001292", - "question_id": 912, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003146", - "question_id": 913, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002745", - "question_id": 916, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003548", - "question_id": 917, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006744", - "question_id": 918, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000761", - "question_id": 919, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003230", - "question_id": 920, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000379", - "question_id": 921, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007780", - "question_id": 922, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008326", - "question_id": 924, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000556", - "question_id": 925, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005733", - "question_id": 926, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004566", - "question_id": 928, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006761", - "question_id": 929, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002726", - "question_id": 930, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000781", - "question_id": 931, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004980", - "question_id": 932, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007669", - "question_id": 933, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000746", - "question_id": 934, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002857", - "question_id": 935, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008734", - "question_id": 936, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004422", - "question_id": 938, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003976", - "question_id": 940, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001598", - "question_id": 941, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004286", - "question_id": 944, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004450", - "question_id": 945, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003392", - "question_id": 946, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008834", - "question_id": 947, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008834", - "question_id": 947, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006085", - "question_id": 948, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004439", - "question_id": 949, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001301", - "question_id": 952, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000217", - "question_id": 953, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006120", - "question_id": 954, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008419", - "question_id": 955, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005603", - "question_id": 956, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008033", - "question_id": 958, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002030", - "question_id": 959, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006776", - "question_id": 960, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008099", - "question_id": 961, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000935", - "question_id": 962, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008370", - "question_id": 964, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001964", - "question_id": 965, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008885", - "question_id": 967, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000413", - "question_id": 969, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000277", - "question_id": 970, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003248", - "question_id": 971, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002565", - "question_id": 974, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007940", - "question_id": 975, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006539", - "question_id": 976, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005181", - "question_id": 978, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004991", - "question_id": 979, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003168", - "question_id": 980, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003413", - "question_id": 982, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003994", - "question_id": 987, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007062", - "question_id": 988, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002189", - "question_id": 989, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008598", - "question_id": 991, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006768", - "question_id": 992, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003201", - "question_id": 993, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000724", - "question_id": 994, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005062", - "question_id": 995, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005277", - "question_id": 996, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000535", - "question_id": 997, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000794", - "question_id": 999, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003491", - "question_id": 1001, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004170", - "question_id": 1002, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001214", - "question_id": 1003, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002354", - "question_id": 1004, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004611", - "question_id": 1005, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007485", - "question_id": 1006, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007847", - "question_id": 1007, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005302", - "question_id": 1008, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008008", - "question_id": 1009, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00001137", - "question_id": 1010, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002744", - "question_id": 1011, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002469", - "question_id": 1012, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000709", - "question_id": 1013, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008176", - "question_id": 1014, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007736", - "question_id": 1015, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000790", - "question_id": 1016, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000305", - "question_id": 1018, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003309", - "question_id": 1019, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002017", - "question_id": 1020, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "seven" -}, { - "video_id": "00008933", - "question_id": 1021, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002233", - "question_id": 1024, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003927", - "question_id": 1029, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000612", - "question_id": 1030, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008389", - "question_id": 1031, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008553", - "question_id": 1032, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005065", - "question_id": 1033, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008182", - "question_id": 1034, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000442", - "question_id": 1035, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000530", - "question_id": 1037, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007366", - "question_id": 1039, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000835", - "question_id": 1040, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004318", - "question_id": 1042, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005754", - "question_id": 1044, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007448", - "question_id": 1045, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007499", - "question_id": 1047, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001762", - "question_id": 1050, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008550", - "question_id": 1053, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003693", - "question_id": 1054, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001924", - "question_id": 1055, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008299", - "question_id": 1056, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004064", - "question_id": 1058, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006768", - "question_id": 1060, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001304", - "question_id": 1061, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001415", - "question_id": 1062, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007922", - "question_id": 1063, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00002899", - "question_id": 1065, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000035", - "question_id": 1066, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001926", - "question_id": 1068, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003190", - "question_id": 1070, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002578", - "question_id": 1072, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001427", - "question_id": 1073, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003178", - "question_id": 1075, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003590", - "question_id": 1076, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001338", - "question_id": 1078, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006639", - "question_id": 1080, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002060", - "question_id": 1081, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003790", - "question_id": 1082, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008517", - "question_id": 1083, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008363", - "question_id": 1084, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008629", - "question_id": 1085, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004236", - "question_id": 1086, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007548", - "question_id": 1089, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001819", - "question_id": 1091, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001639", - "question_id": 1093, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007315", - "question_id": 1094, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004874", - "question_id": 1095, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007377", - "question_id": 1097, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002292", - "question_id": 1098, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006267", - "question_id": 1100, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002119", - "question_id": 1101, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006997", - "question_id": 1102, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000025", - "question_id": 1104, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004307", - "question_id": 1105, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000248", - "question_id": 1106, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005043", - "question_id": 1107, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004621", - "question_id": 1109, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008578", - "question_id": 1110, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "nine" -}, { - "video_id": "00007271", - "question_id": 1111, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003698", - "question_id": 1114, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004892", - "question_id": 1115, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001790", - "question_id": 1116, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003454", - "question_id": 1118, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002836", - "question_id": 1121, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007359", - "question_id": 1122, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008266", - "question_id": 1123, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003997", - "question_id": 1124, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008399", - "question_id": 1126, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004542", - "question_id": 1131, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007357", - "question_id": 1133, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008457", - "question_id": 1134, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003940", - "question_id": 1135, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006051", - "question_id": 1136, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007903", - "question_id": 1137, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008759", - "question_id": 1139, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002910", - "question_id": 1140, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002395", - "question_id": 1141, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001575", - "question_id": 1142, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003578", - "question_id": 1143, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004194", - "question_id": 1144, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005653", - "question_id": 1145, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005925", - "question_id": 1146, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006911", - "question_id": 1148, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006079", - "question_id": 1149, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004556", - "question_id": 1151, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005544", - "question_id": 1152, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001063", - "question_id": 1156, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008509", - "question_id": 1157, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007662", - "question_id": 1158, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006073", - "question_id": 1159, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00007342", - "question_id": 1162, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "seven" -}, { - "video_id": "00004208", - "question_id": 1165, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003617", - "question_id": 1166, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005187", - "question_id": 1167, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005657", - "question_id": 1168, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007692", - "question_id": 1169, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003180", - "question_id": 1170, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007197", - "question_id": 1171, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007650", - "question_id": 1172, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002815", - "question_id": 1173, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007303", - "question_id": 1174, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002345", - "question_id": 1176, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001911", - "question_id": 1178, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004966", - "question_id": 1179, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001929", - "question_id": 1180, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006951", - "question_id": 1181, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005330", - "question_id": 1183, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002154", - "question_id": 1184, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007324", - "question_id": 1186, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003991", - "question_id": 1188, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002993", - "question_id": 1189, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003793", - "question_id": 1190, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006626", - "question_id": 1191, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001175", - "question_id": 1192, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003723", - "question_id": 1193, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002434", - "question_id": 1195, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002650", - "question_id": 1198, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005977", - "question_id": 1199, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004446", - "question_id": 1200, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002262", - "question_id": 1202, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007718", - "question_id": 1204, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003724", - "question_id": 1205, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007169", - "question_id": 1207, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005857", - "question_id": 1208, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002926", - "question_id": 1209, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007765", - "question_id": 1211, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001043", - "question_id": 1212, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003586", - "question_id": 1213, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005754", - "question_id": 1214, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007971", - "question_id": 1215, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007530", - "question_id": 1216, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006130", - "question_id": 1217, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008565", - "question_id": 1220, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008363", - "question_id": 1222, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004092", - "question_id": 1224, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004077", - "question_id": 1225, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000411", - "question_id": 1226, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007453", - "question_id": 1228, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004757", - "question_id": 1229, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006610", - "question_id": 1230, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002598", - "question_id": 1234, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008840", - "question_id": 1239, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002002", - "question_id": 1240, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006266", - "question_id": 1241, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003806", - "question_id": 1242, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004860", - "question_id": 1243, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003905", - "question_id": 1244, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000473", - "question_id": 1245, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000155", - "question_id": 1247, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002068", - "question_id": 1248, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002216", - "question_id": 1249, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002712", - "question_id": 1251, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006215", - "question_id": 1252, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008046", - "question_id": 1253, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001494", - "question_id": 1254, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000303", - "question_id": 1255, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000036", - "question_id": 1259, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001068", - "question_id": 1260, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004929", - "question_id": 1261, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005621", - "question_id": 1263, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000418", - "question_id": 1264, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001877", - "question_id": 1265, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004674", - "question_id": 1266, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007771", - "question_id": 1267, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008962", - "question_id": 1268, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004732", - "question_id": 1270, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008179", - "question_id": 1271, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001876", - "question_id": 1273, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002418", - "question_id": 1274, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002102", - "question_id": 1275, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006834", - "question_id": 1276, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000412", - "question_id": 1277, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006609", - "question_id": 1279, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006680", - "question_id": 1281, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003459", - "question_id": 1282, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002814", - "question_id": 1283, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000202", - "question_id": 1285, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000014", - "question_id": 1286, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006437", - "question_id": 1287, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000046", - "question_id": 1288, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001072", - "question_id": 1289, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007691", - "question_id": 1290, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002357", - "question_id": 1291, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00003797", - "question_id": 1292, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005120", - "question_id": 1293, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00005757", - "question_id": 1295, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007587", - "question_id": 1296, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008771", - "question_id": 1297, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003111", - "question_id": 1298, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006498", - "question_id": 1299, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001584", - "question_id": 1300, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005004", - "question_id": 1301, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006099", - "question_id": 1304, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006731", - "question_id": 1307, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007003", - "question_id": 1308, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003616", - "question_id": 1309, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002940", - "question_id": 1310, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002716", - "question_id": 1311, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008024", - "question_id": 1312, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003472", - "question_id": 1313, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006852", - "question_id": 1314, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004480", - "question_id": 1315, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003977", - "question_id": 1316, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002580", - "question_id": 1318, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008341", - "question_id": 1319, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001054", - "question_id": 1320, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001741", - "question_id": 1321, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000436", - "question_id": 1322, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007014", - "question_id": 1324, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007291", - "question_id": 1328, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003825", - "question_id": 1329, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005819", - "question_id": 1330, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001685", - "question_id": 1332, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002073", - "question_id": 1333, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005955", - "question_id": 1334, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001341", - "question_id": 1335, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005082", - "question_id": 1336, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008862", - "question_id": 1337, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004494", - "question_id": 1339, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005550", - "question_id": 1340, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005077", - "question_id": 1341, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001713", - "question_id": 1342, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006308", - "question_id": 1345, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001687", - "question_id": 1346, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006960", - "question_id": 1347, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001381", - "question_id": 1348, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008354", - "question_id": 1349, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001643", - "question_id": 1350, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002019", - "question_id": 1351, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002013", - "question_id": 1352, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005540", - "question_id": 1353, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005028", - "question_id": 1355, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007148", - "question_id": 1356, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003031", - "question_id": 1357, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007851", - "question_id": 1358, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004813", - "question_id": 1359, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005940", - "question_id": 1360, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006047", - "question_id": 1361, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000442", - "question_id": 1362, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005703", - "question_id": 1363, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008056", - "question_id": 1366, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008626", - "question_id": 1368, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008402", - "question_id": 1369, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008872", - "question_id": 1371, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004925", - "question_id": 1372, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000382", - "question_id": 1374, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007521", - "question_id": 1376, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002049", - "question_id": 1377, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004243", - "question_id": 1378, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000680", - "question_id": 1379, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001851", - "question_id": 1380, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002474", - "question_id": 1381, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008131", - "question_id": 1382, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001359", - "question_id": 1385, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000963", - "question_id": 1386, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002991", - "question_id": 1387, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005986", - "question_id": 1389, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004923", - "question_id": 1391, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008758", - "question_id": 1394, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006659", - "question_id": 1397, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001483", - "question_id": 1398, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000228", - "question_id": 1399, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008241", - "question_id": 1400, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006191", - "question_id": 1401, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007396", - "question_id": 1402, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001927", - "question_id": 1404, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008295", - "question_id": 1405, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002128", - "question_id": 1406, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001523", - "question_id": 1407, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002938", - "question_id": 1408, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002152", - "question_id": 1409, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005423", - "question_id": 1410, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000040", - "question_id": 1414, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000700", - "question_id": 1418, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002922", - "question_id": 1419, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007425", - "question_id": 1420, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00000755", - "question_id": 1421, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006874", - "question_id": 1422, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000061", - "question_id": 1423, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003748", - "question_id": 1426, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001505", - "question_id": 1429, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00002241", - "question_id": 1433, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003007", - "question_id": 1434, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003448", - "question_id": 1435, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006334", - "question_id": 1436, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007440", - "question_id": 1437, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005160", - "question_id": 1438, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004507", - "question_id": 1439, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00002111", - "question_id": 1445, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008598", - "question_id": 1446, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "nine" -}, { - "video_id": "00008505", - "question_id": 1448, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007369", - "question_id": 1449, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003489", - "question_id": 1450, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006815", - "question_id": 1451, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004226", - "question_id": 1454, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008035", - "question_id": 1455, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008038", - "question_id": 1456, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008912", - "question_id": 1457, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002204", - "question_id": 1458, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007219", - "question_id": 1460, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008906", - "question_id": 1461, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003841", - "question_id": 1465, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003736", - "question_id": 1466, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004016", - "question_id": 1468, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003228", - "question_id": 1469, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000883", - "question_id": 1472, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007145", - "question_id": 1473, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001187", - "question_id": 1474, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007838", - "question_id": 1476, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006286", - "question_id": 1477, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000860", - "question_id": 1479, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005558", - "question_id": 1480, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003034", - "question_id": 1481, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007503", - "question_id": 1482, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007905", - "question_id": 1483, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002050", - "question_id": 1485, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003602", - "question_id": 1486, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002882", - "question_id": 1488, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000485", - "question_id": 1489, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006709", - "question_id": 1491, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000400", - "question_id": 1492, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00005607", - "question_id": 1493, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001345", - "question_id": 1494, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006594", - "question_id": 1495, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004634", - "question_id": 1497, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002963", - "question_id": 1498, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004147", - "question_id": 1499, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003389", - "question_id": 1500, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003430", - "question_id": 1501, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006727", - "question_id": 1502, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000057", - "question_id": 1503, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005421", - "question_id": 1504, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001491", - "question_id": 1505, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005911", - "question_id": 1506, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005142", - "question_id": 1507, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00005442", - "question_id": 1508, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005128", - "question_id": 1510, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001403", - "question_id": 1511, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000170", - "question_id": 1516, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002977", - "question_id": 1519, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008810", - "question_id": 1520, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001874", - "question_id": 1521, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007110", - "question_id": 1524, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001825", - "question_id": 1525, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006319", - "question_id": 1528, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00007167", - "question_id": 1530, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00002191", - "question_id": 1531, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003175", - "question_id": 1532, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001729", - "question_id": 1533, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008952", - "question_id": 1535, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000208", - "question_id": 1536, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002787", - "question_id": 1537, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007849", - "question_id": 1539, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008731", - "question_id": 1540, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000156", - "question_id": 1541, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000393", - "question_id": 1542, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004290", - "question_id": 1543, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004346", - "question_id": 1544, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002238", - "question_id": 1545, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008075", - "question_id": 1547, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004029", - "question_id": 1548, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006039", - "question_id": 1549, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006975", - "question_id": 1550, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004605", - "question_id": 1554, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007175", - "question_id": 1555, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000734", - "question_id": 1556, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000996", - "question_id": 1557, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003042", - "question_id": 1558, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007996", - "question_id": 1564, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002641", - "question_id": 1565, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008579", - "question_id": 1566, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006376", - "question_id": 1567, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007175", - "question_id": 1568, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003496", - "question_id": 1569, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006877", - "question_id": 1570, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008142", - "question_id": 1571, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001655", - "question_id": 1572, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002371", - "question_id": 1575, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008779", - "question_id": 1576, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000680", - "question_id": 1577, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001394", - "question_id": 1581, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008354", - "question_id": 1582, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002912", - "question_id": 1583, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008807", - "question_id": 1585, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005486", - "question_id": 1589, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004503", - "question_id": 1590, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002400", - "question_id": 1591, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001408", - "question_id": 1592, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005893", - "question_id": 1594, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000726", - "question_id": 1595, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003855", - "question_id": 1597, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008763", - "question_id": 1598, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005088", - "question_id": 1599, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003418", - "question_id": 1600, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008137", - "question_id": 1601, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007526", - "question_id": 1603, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008036", - "question_id": 1604, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006427", - "question_id": 1607, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004889", - "question_id": 1608, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000921", - "question_id": 1609, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008141", - "question_id": 1611, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006144", - "question_id": 1613, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000545", - "question_id": 1614, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002225", - "question_id": 1616, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008360", - "question_id": 1617, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002486", - "question_id": 1619, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001030", - "question_id": 1622, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001256", - "question_id": 1623, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008721", - "question_id": 1624, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00008577", - "question_id": 1627, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007528", - "question_id": 1628, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008631", - "question_id": 1630, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007429", - "question_id": 1632, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006981", - "question_id": 1634, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002965", - "question_id": 1635, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008955", - "question_id": 1637, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007677", - "question_id": 1638, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007353", - "question_id": 1640, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006987", - "question_id": 1642, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007494", - "question_id": 1643, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005637", - "question_id": 1644, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002407", - "question_id": 1645, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001597", - "question_id": 1646, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008469", - "question_id": 1647, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006703", - "question_id": 1649, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006179", - "question_id": 1651, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008051", - "question_id": 1652, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001415", - "question_id": 1653, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000913", - "question_id": 1655, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000971", - "question_id": 1656, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000300", - "question_id": 1657, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002033", - "question_id": 1659, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002432", - "question_id": 1660, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001299", - "question_id": 1661, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003905", - "question_id": 1662, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007656", - "question_id": 1663, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002479", - "question_id": 1664, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007674", - "question_id": 1666, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003999", - "question_id": 1667, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000027", - "question_id": 1668, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008489", - "question_id": 1670, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006954", - "question_id": 1671, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000880", - "question_id": 1673, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007934", - "question_id": 1674, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000557", - "question_id": 1675, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001107", - "question_id": 1676, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001914", - "question_id": 1677, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007753", - "question_id": 1678, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004689", - "question_id": 1679, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002796", - "question_id": 1680, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001291", - "question_id": 1681, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002842", - "question_id": 1682, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001711", - "question_id": 1683, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00000374", - "question_id": 1686, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007822", - "question_id": 1687, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003274", - "question_id": 1689, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003870", - "question_id": 1690, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008275", - "question_id": 1691, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003479", - "question_id": 1692, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000677", - "question_id": 1693, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004692", - "question_id": 1694, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006269", - "question_id": 1695, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00003352", - "question_id": 1696, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007573", - "question_id": 1697, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007285", - "question_id": 1698, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004430", - "question_id": 1699, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005007", - "question_id": 1700, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00003305", - "question_id": 1701, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003792", - "question_id": 1704, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003918", - "question_id": 1707, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "nine" -}, { - "video_id": "00003272", - "question_id": 1708, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008664", - "question_id": 1710, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003324", - "question_id": 1711, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004440", - "question_id": 1712, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004173", - "question_id": 1713, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00001055", - "question_id": 1715, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004986", - "question_id": 1722, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007392", - "question_id": 1723, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006480", - "question_id": 1724, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002259", - "question_id": 1725, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003191", - "question_id": 1726, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001347", - "question_id": 1729, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000195", - "question_id": 1734, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007944", - "question_id": 1735, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001583", - "question_id": 1736, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002613", - "question_id": 1737, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001200", - "question_id": 1738, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006420", - "question_id": 1740, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006036", - "question_id": 1741, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000377", - "question_id": 1742, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00008575", - "question_id": 1744, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007844", - "question_id": 1745, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005886", - "question_id": 1750, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007052", - "question_id": 1751, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002260", - "question_id": 1754, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007372", - "question_id": 1755, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003158", - "question_id": 1756, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005114", - "question_id": 1762, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006790", - "question_id": 1763, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005277", - "question_id": 1773, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005498", - "question_id": 1774, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007338", - "question_id": 1777, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003475", - "question_id": 1778, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005080", - "question_id": 1779, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008117", - "question_id": 1780, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002432", - "question_id": 1781, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001843", - "question_id": 1782, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008777", - "question_id": 1783, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bassoon\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005261", - "question_id": 1784, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008071", - "question_id": 1785, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000965", - "question_id": 1786, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006264", - "question_id": 1787, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007931", - "question_id": 1788, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008183", - "question_id": 1801, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006922", - "question_id": 1802, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006619", - "question_id": 1803, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000967", - "question_id": 1808, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005076", - "question_id": 1809, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008170", - "question_id": 1810, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007559", - "question_id": 1811, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001974", - "question_id": 1812, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007411", - "question_id": 1814, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007669", - "question_id": 1815, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001022", - "question_id": 1816, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000459", - "question_id": 1817, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007246", - "question_id": 1819, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000493", - "question_id": 1820, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004739", - "question_id": 1821, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001562", - "question_id": 1823, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001774", - "question_id": 1825, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003701", - "question_id": 1827, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007022", - "question_id": 1828, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005278", - "question_id": 1831, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004879", - "question_id": 1832, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004728", - "question_id": 1833, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001323", - "question_id": 1834, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006294", - "question_id": 1835, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00003655", - "question_id": 1836, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006640", - "question_id": 1838, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001148", - "question_id": 1839, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006946", - "question_id": 1843, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000500", - "question_id": 1844, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001120", - "question_id": 1845, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000502", - "question_id": 1846, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004845", - "question_id": 1847, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000411", - "question_id": 1848, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008920", - "question_id": 1849, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002273", - "question_id": 1850, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008590", - "question_id": 1852, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001213", - "question_id": 1854, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007568", - "question_id": 1855, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008705", - "question_id": 1856, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008260", - "question_id": 1857, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005540", - "question_id": 1860, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007363", - "question_id": 1861, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003285", - "question_id": 1862, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003285", - "question_id": 1862, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00002730", - "question_id": 1863, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006255", - "question_id": 1864, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003404", - "question_id": 1865, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000994", - "question_id": 1866, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001000", - "question_id": 1867, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005194", - "question_id": 1870, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005140", - "question_id": 1871, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003188", - "question_id": 1872, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001869", - "question_id": 1873, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006186", - "question_id": 1874, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001027", - "question_id": 1876, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005102", - "question_id": 1877, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005176", - "question_id": 1880, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003098", - "question_id": 1881, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001842", - "question_id": 1882, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008175", - "question_id": 1883, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003810", - "question_id": 1884, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000074", - "question_id": 1885, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007587", - "question_id": 1887, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004600", - "question_id": 1889, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000968", - "question_id": 1890, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008207", - "question_id": 1894, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004127", - "question_id": 1895, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006165", - "question_id": 1896, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005127", - "question_id": 1897, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000317", - "question_id": 1898, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005692", - "question_id": 1899, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005761", - "question_id": 1901, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000321", - "question_id": 1902, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001733", - "question_id": 1904, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006010", - "question_id": 1906, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000245", - "question_id": 1909, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000910", - "question_id": 1911, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006668", - "question_id": 1913, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007121", - "question_id": 1914, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003070", - "question_id": 1915, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002174", - "question_id": 1916, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004729", - "question_id": 1919, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007776", - "question_id": 1920, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005066", - "question_id": 1921, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005818", - "question_id": 1922, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004595", - "question_id": 1924, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003114", - "question_id": 1926, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001737", - "question_id": 1927, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008484", - "question_id": 1929, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007546", - "question_id": 1930, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008809", - "question_id": 1932, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006013", - "question_id": 1934, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006543", - "question_id": 1935, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007617", - "question_id": 1936, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000603", - "question_id": 1937, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000293", - "question_id": 1938, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006258", - "question_id": 1941, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008811", - "question_id": 1942, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007928", - "question_id": 1945, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002136", - "question_id": 1946, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000679", - "question_id": 1947, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003537", - "question_id": 1948, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001358", - "question_id": 1950, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004847", - "question_id": 1952, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006358", - "question_id": 1953, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004199", - "question_id": 1957, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001211", - "question_id": 1958, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001211", - "question_id": 1958, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003789", - "question_id": 1959, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004278", - "question_id": 1960, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00008684", - "question_id": 1961, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007611", - "question_id": 1962, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003300", - "question_id": 1963, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003388", - "question_id": 1964, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008396", - "question_id": 1965, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008912", - "question_id": 1967, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008749", - "question_id": 1968, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000978", - "question_id": 1970, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000494", - "question_id": 1971, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007382", - "question_id": 1972, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007743", - "question_id": 1974, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005164", - "question_id": 1975, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000139", - "question_id": 1976, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008917", - "question_id": 1978, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001113", - "question_id": 1980, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004011", - "question_id": 1981, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001088", - "question_id": 1984, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001516", - "question_id": 1985, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007575", - "question_id": 1986, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002491", - "question_id": 1987, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000905", - "question_id": 1988, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00003582", - "question_id": 1989, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001334", - "question_id": 1990, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005109", - "question_id": 1992, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00005487", - "question_id": 1996, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000680", - "question_id": 1997, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008549", - "question_id": 1998, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008853", - "question_id": 1999, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000063", - "question_id": 2002, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002714", - "question_id": 2003, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001327", - "question_id": 2004, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002734", - "question_id": 2005, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002167", - "question_id": 2006, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000213", - "question_id": 2007, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006294", - "question_id": 2008, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006060", - "question_id": 2009, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006182", - "question_id": 2010, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003877", - "question_id": 2011, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006979", - "question_id": 2012, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004846", - "question_id": 2013, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000823", - "question_id": 2014, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001256", - "question_id": 2016, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008315", - "question_id": 2017, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006841", - "question_id": 2018, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000816", - "question_id": 2019, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007733", - "question_id": 2020, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008384", - "question_id": 2022, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000806", - "question_id": 2023, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000399", - "question_id": 2025, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004060", - "question_id": 2027, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001497", - "question_id": 2028, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000583", - "question_id": 2029, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004247", - "question_id": 2030, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003796", - "question_id": 2031, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002325", - "question_id": 2034, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002704", - "question_id": 2036, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000181", - "question_id": 2037, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005371", - "question_id": 2038, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005503", - "question_id": 2039, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005614", - "question_id": 2040, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000564", - "question_id": 2041, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000604", - "question_id": 2042, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001459", - "question_id": 2043, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004150", - "question_id": 2045, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008791", - "question_id": 2046, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006269", - "question_id": 2048, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003612", - "question_id": 2050, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000883", - "question_id": 2052, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000175", - "question_id": 2054, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006123", - "question_id": 2055, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "more than ten" -}, { - "video_id": "00008344", - "question_id": 2059, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003041", - "question_id": 2061, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000795", - "question_id": 2062, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002631", - "question_id": 2063, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006809", - "question_id": 2066, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008244", - "question_id": 2068, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006834", - "question_id": 2069, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003374", - "question_id": 2070, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004119", - "question_id": 2072, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000347", - "question_id": 2073, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004396", - "question_id": 2076, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002796", - "question_id": 2077, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00005359", - "question_id": 2078, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006522", - "question_id": 2079, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003496", - "question_id": 2080, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002734", - "question_id": 2081, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005711", - "question_id": 2083, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007491", - "question_id": 2086, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001175", - "question_id": 2087, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000274", - "question_id": 2088, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007195", - "question_id": 2089, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002032", - "question_id": 2092, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006914", - "question_id": 2094, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008726", - "question_id": 2095, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001258", - "question_id": 2096, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006795", - "question_id": 2097, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001937", - "question_id": 2098, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000199", - "question_id": 2099, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005438", - "question_id": 2100, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001767", - "question_id": 2102, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000552", - "question_id": 2103, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001548", - "question_id": 2104, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007712", - "question_id": 2106, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002332", - "question_id": 2108, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007609", - "question_id": 2109, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005433", - "question_id": 2110, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000296", - "question_id": 2111, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003792", - "question_id": 2112, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008714", - "question_id": 2113, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002293", - "question_id": 2116, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003266", - "question_id": 2118, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000937", - "question_id": 2119, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006348", - "question_id": 2120, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005240", - "question_id": 2121, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005170", - "question_id": 2122, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003740", - "question_id": 2123, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006978", - "question_id": 2124, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003752", - "question_id": 2125, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008591", - "question_id": 2126, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007977", - "question_id": 2127, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008299", - "question_id": 2129, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007320", - "question_id": 2131, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005285", - "question_id": 2134, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006254", - "question_id": 2135, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002265", - "question_id": 2136, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003957", - "question_id": 2137, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002001", - "question_id": 2138, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000186", - "question_id": 2139, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007644", - "question_id": 2141, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003085", - "question_id": 2142, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007074", - "question_id": 2143, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008272", - "question_id": 2145, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000165", - "question_id": 2148, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008623", - "question_id": 2149, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006253", - "question_id": 2150, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007871", - "question_id": 2153, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008174", - "question_id": 2154, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001753", - "question_id": 2156, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005531", - "question_id": 2157, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002946", - "question_id": 2158, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000579", - "question_id": 2163, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002675", - "question_id": 2164, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005435", - "question_id": 2165, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000630", - "question_id": 2168, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003875", - "question_id": 2169, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00003014", - "question_id": 2172, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007425", - "question_id": 2177, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006383", - "question_id": 2179, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001571", - "question_id": 2182, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001020", - "question_id": 2183, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004557", - "question_id": 2184, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008822", - "question_id": 2185, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003794", - "question_id": 2187, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005372", - "question_id": 2189, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006521", - "question_id": 2191, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005091", - "question_id": 2192, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005792", - "question_id": 2194, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005287", - "question_id": 2195, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004217", - "question_id": 2197, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003480", - "question_id": 2200, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003564", - "question_id": 2201, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000551", - "question_id": 2203, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008911", - "question_id": 2205, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000516", - "question_id": 2206, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000570", - "question_id": 2207, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004092", - "question_id": 2208, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004519", - "question_id": 2209, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002411", - "question_id": 2210, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005820", - "question_id": 2211, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007408", - "question_id": 2212, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001468", - "question_id": 2213, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005598", - "question_id": 2214, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003613", - "question_id": 2216, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002673", - "question_id": 2217, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007514", - "question_id": 2218, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006157", - "question_id": 2221, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001980", - "question_id": 2222, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002537", - "question_id": 2223, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005999", - "question_id": 2224, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005826", - "question_id": 2225, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001572", - "question_id": 2226, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003646", - "question_id": 2228, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000475", - "question_id": 2231, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004635", - "question_id": 2232, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006277", - "question_id": 2233, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001454", - "question_id": 2235, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005293", - "question_id": 2236, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007861", - "question_id": 2237, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003884", - "question_id": 2239, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008213", - "question_id": 2241, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008906", - "question_id": 2242, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001121", - "question_id": 2243, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003472", - "question_id": 2244, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005812", - "question_id": 2246, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000470", - "question_id": 2247, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003523", - "question_id": 2251, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006394", - "question_id": 2253, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007713", - "question_id": 2255, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004353", - "question_id": 2256, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004198", - "question_id": 2257, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005475", - "question_id": 2258, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006624", - "question_id": 2259, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003784", - "question_id": 2260, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000235", - "question_id": 2261, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001805", - "question_id": 2262, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001250", - "question_id": 2264, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006631", - "question_id": 2265, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00007313", - "question_id": 2269, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005229", - "question_id": 2270, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001359", - "question_id": 2271, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001827", - "question_id": 2272, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007022", - "question_id": 2273, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007180", - "question_id": 2274, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002182", - "question_id": 2275, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008569", - "question_id": 2277, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005387", - "question_id": 2278, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003780", - "question_id": 2281, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002699", - "question_id": 2282, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003847", - "question_id": 2283, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001401", - "question_id": 2284, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008767", - "question_id": 2286, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008230", - "question_id": 2289, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006634", - "question_id": 2290, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005376", - "question_id": 2291, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007734", - "question_id": 2294, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001266", - "question_id": 2295, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001335", - "question_id": 2296, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006933", - "question_id": 2298, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008115", - "question_id": 2300, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000877", - "question_id": 2302, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008033", - "question_id": 2304, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008434", - "question_id": 2306, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003154", - "question_id": 2307, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001552", - "question_id": 2308, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006772", - "question_id": 2309, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004478", - "question_id": 2310, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008447", - "question_id": 2314, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002795", - "question_id": 2316, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005650", - "question_id": 2317, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008647", - "question_id": 2318, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003756", - "question_id": 2319, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000716", - "question_id": 2320, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006564", - "question_id": 2322, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008370", - "question_id": 2324, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000130", - "question_id": 2329, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000669", - "question_id": 2330, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001967", - "question_id": 2331, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005122", - "question_id": 2333, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004641", - "question_id": 2334, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002536", - "question_id": 2335, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004553", - "question_id": 2336, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000743", - "question_id": 2338, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006442", - "question_id": 2339, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004390", - "question_id": 2341, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002869", - "question_id": 2342, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003565", - "question_id": 2343, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004795", - "question_id": 2349, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007473", - "question_id": 2351, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007707", - "question_id": 2354, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000911", - "question_id": 2355, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002525", - "question_id": 2357, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005667", - "question_id": 2358, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008192", - "question_id": 2359, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006481", - "question_id": 2363, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005669", - "question_id": 2365, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004643", - "question_id": 2367, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007045", - "question_id": 2369, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007557", - "question_id": 2371, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002829", - "question_id": 2372, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000145", - "question_id": 2373, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002793", - "question_id": 2375, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002662", - "question_id": 2376, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008279", - "question_id": 2381, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007699", - "question_id": 2385, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001648", - "question_id": 2386, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004683", - "question_id": 2388, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007202", - "question_id": 2390, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002864", - "question_id": 2391, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008434", - "question_id": 2392, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008196", - "question_id": 2394, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007517", - "question_id": 2395, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003752", - "question_id": 2396, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007366", - "question_id": 2398, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002801", - "question_id": 2399, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004218", - "question_id": 2400, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005776", - "question_id": 2401, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008955", - "question_id": 2402, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001623", - "question_id": 2403, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006053", - "question_id": 2404, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004873", - "question_id": 2405, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007965", - "question_id": 2408, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008907", - "question_id": 2409, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000734", - "question_id": 2410, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008131", - "question_id": 2411, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000889", - "question_id": 2412, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002417", - "question_id": 2413, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008511", - "question_id": 2414, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00007313", - "question_id": 2415, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004196", - "question_id": 2416, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002802", - "question_id": 2417, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000502", - "question_id": 2418, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007204", - "question_id": 2419, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008317", - "question_id": 2420, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004711", - "question_id": 2421, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000192", - "question_id": 2422, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004106", - "question_id": 2423, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001981", - "question_id": 2424, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007970", - "question_id": 2426, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008822", - "question_id": 2427, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004894", - "question_id": 2429, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000796", - "question_id": 2430, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002098", - "question_id": 2431, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002298", - "question_id": 2432, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005012", - "question_id": 2433, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003314", - "question_id": 2436, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008929", - "question_id": 2437, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004919", - "question_id": 2439, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006203", - "question_id": 2442, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003580", - "question_id": 2443, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005496", - "question_id": 2444, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004699", - "question_id": 2445, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007133", - "question_id": 2447, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004348", - "question_id": 2448, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007174", - "question_id": 2449, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007465", - "question_id": 2450, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005833", - "question_id": 2451, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005772", - "question_id": 2452, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003289", - "question_id": 2453, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007868", - "question_id": 2454, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003280", - "question_id": 2455, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002757", - "question_id": 2456, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007008", - "question_id": 2457, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003116", - "question_id": 2458, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000541", - "question_id": 2463, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001695", - "question_id": 2464, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003404", - "question_id": 2465, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006136", - "question_id": 2466, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001454", - "question_id": 2468, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003318", - "question_id": 2472, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004426", - "question_id": 2473, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007618", - "question_id": 2474, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001438", - "question_id": 2475, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006958", - "question_id": 2476, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003440", - "question_id": 2477, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008306", - "question_id": 2479, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000117", - "question_id": 2482, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005245", - "question_id": 2484, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000403", - "question_id": 2485, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003717", - "question_id": 2486, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002635", - "question_id": 2487, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006843", - "question_id": 2488, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006034", - "question_id": 2490, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003418", - "question_id": 2491, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007448", - "question_id": 2492, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008712", - "question_id": 2494, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002576", - "question_id": 2495, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006136", - "question_id": 2496, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007980", - "question_id": 2497, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004734", - "question_id": 2498, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007114", - "question_id": 2499, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005118", - "question_id": 2503, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001642", - "question_id": 2504, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005663", - "question_id": 2505, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006443", - "question_id": 2506, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007634", - "question_id": 2508, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007449", - "question_id": 2509, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00001252", - "question_id": 2510, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001944", - "question_id": 2513, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004865", - "question_id": 2514, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001342", - "question_id": 2519, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000969", - "question_id": 2521, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008408", - "question_id": 2522, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006342", - "question_id": 2523, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004353", - "question_id": 2524, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006236", - "question_id": 2525, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003730", - "question_id": 2526, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001359", - "question_id": 2528, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005135", - "question_id": 2529, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007046", - "question_id": 2530, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004706", - "question_id": 2532, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003907", - "question_id": 2536, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006446", - "question_id": 2538, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008784", - "question_id": 2539, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006587", - "question_id": 2540, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008673", - "question_id": 2541, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008673", - "question_id": 2541, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005014", - "question_id": 2543, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000880", - "question_id": 2544, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003516", - "question_id": 2545, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007654", - "question_id": 2546, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002403", - "question_id": 2549, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008193", - "question_id": 2550, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008910", - "question_id": 2552, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002355", - "question_id": 2553, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003726", - "question_id": 2554, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004175", - "question_id": 2556, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002976", - "question_id": 2559, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002850", - "question_id": 2561, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003393", - "question_id": 2562, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000643", - "question_id": 2563, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008267", - "question_id": 2564, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004844", - "question_id": 2566, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004806", - "question_id": 2568, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004476", - "question_id": 2570, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000251", - "question_id": 2571, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006422", - "question_id": 2573, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001580", - "question_id": 2574, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006452", - "question_id": 2578, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000667", - "question_id": 2581, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004879", - "question_id": 2582, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002754", - "question_id": 2583, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008618", - "question_id": 2584, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004909", - "question_id": 2585, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007242", - "question_id": 2588, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000137", - "question_id": 2590, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001038", - "question_id": 2591, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002330", - "question_id": 2592, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005448", - "question_id": 2593, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006987", - "question_id": 2594, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006822", - "question_id": 2596, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001072", - "question_id": 2597, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007819", - "question_id": 2598, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007414", - "question_id": 2599, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008855", - "question_id": 2600, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005162", - "question_id": 2601, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006140", - "question_id": 2602, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004394", - "question_id": 2604, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008348", - "question_id": 2605, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005674", - "question_id": 2606, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002605", - "question_id": 2611, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008843", - "question_id": 2612, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004180", - "question_id": 2613, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005375", - "question_id": 2617, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004726", - "question_id": 2618, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003220", - "question_id": 2619, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000014", - "question_id": 2622, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003455", - "question_id": 2623, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005420", - "question_id": 2624, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003652", - "question_id": 2625, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003265", - "question_id": 2626, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002564", - "question_id": 2627, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008437", - "question_id": 2629, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008160", - "question_id": 2630, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003199", - "question_id": 2631, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003019", - "question_id": 2632, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007896", - "question_id": 2634, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000713", - "question_id": 2636, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004918", - "question_id": 2637, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000343", - "question_id": 2638, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005717", - "question_id": 2639, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003856", - "question_id": 2640, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008212", - "question_id": 2641, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004970", - "question_id": 2642, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000669", - "question_id": 2645, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003227", - "question_id": 2647, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006778", - "question_id": 2650, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002412", - "question_id": 2651, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006131", - "question_id": 2652, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007378", - "question_id": 2654, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005263", - "question_id": 2655, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006328", - "question_id": 2657, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000509", - "question_id": 2659, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007765", - "question_id": 2660, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003914", - "question_id": 2661, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004039", - "question_id": 2662, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008167", - "question_id": 2664, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006675", - "question_id": 2665, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004841", - "question_id": 2666, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004411", - "question_id": 2668, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001469", - "question_id": 2669, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004970", - "question_id": 2671, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005499", - "question_id": 2672, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007875", - "question_id": 2673, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007610", - "question_id": 2677, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004327", - "question_id": 2680, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006470", - "question_id": 2683, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007573", - "question_id": 2685, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007861", - "question_id": 2688, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004107", - "question_id": 2689, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002607", - "question_id": 2690, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000983", - "question_id": 2691, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003806", - "question_id": 2694, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002783", - "question_id": 2696, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000199", - "question_id": 2697, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005712", - "question_id": 2698, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007475", - "question_id": 2699, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002793", - "question_id": 2700, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001671", - "question_id": 2701, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004915", - "question_id": 2702, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002540", - "question_id": 2703, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002925", - "question_id": 2704, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002947", - "question_id": 2706, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008324", - "question_id": 2708, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008922", - "question_id": 2709, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007253", - "question_id": 2710, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004248", - "question_id": 2712, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001404", - "question_id": 2713, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005035", - "question_id": 2714, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008777", - "question_id": 2715, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008548", - "question_id": 2716, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008034", - "question_id": 2717, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008394", - "question_id": 2718, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002316", - "question_id": 2719, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002898", - "question_id": 2720, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003012", - "question_id": 2721, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003498", - "question_id": 2726, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005784", - "question_id": 2727, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004159", - "question_id": 2728, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008085", - "question_id": 2729, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000476", - "question_id": 2731, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008491", - "question_id": 2732, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007893", - "question_id": 2733, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003939", - "question_id": 2734, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002854", - "question_id": 2736, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000602", - "question_id": 2737, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000509", - "question_id": 2738, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008505", - "question_id": 2740, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000619", - "question_id": 2741, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001706", - "question_id": 2742, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005043", - "question_id": 2743, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003328", - "question_id": 2744, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001213", - "question_id": 2745, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006518", - "question_id": 2746, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002467", - "question_id": 2752, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006272", - "question_id": 2753, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004782", - "question_id": 2754, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001273", - "question_id": 2755, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005032", - "question_id": 2756, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001885", - "question_id": 2759, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000248", - "question_id": 2760, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004165", - "question_id": 2761, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004107", - "question_id": 2762, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002835", - "question_id": 2763, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004684", - "question_id": 2765, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005018", - "question_id": 2767, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001957", - "question_id": 2769, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002304", - "question_id": 2770, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007226", - "question_id": 2772, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005382", - "question_id": 2773, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008533", - "question_id": 2774, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004472", - "question_id": 2775, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005178", - "question_id": 2776, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008739", - "question_id": 2777, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000101", - "question_id": 2778, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005109", - "question_id": 2779, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00004102", - "question_id": 2780, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005228", - "question_id": 2781, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007671", - "question_id": 2782, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007789", - "question_id": 2783, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004248", - "question_id": 2785, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008561", - "question_id": 2786, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001133", - "question_id": 2787, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008346", - "question_id": 2788, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003672", - "question_id": 2789, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003288", - "question_id": 2790, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002362", - "question_id": 2791, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007458", - "question_id": 2792, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005067", - "question_id": 2793, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008651", - "question_id": 2794, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003166", - "question_id": 2796, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006282", - "question_id": 2798, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004482", - "question_id": 2799, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002311", - "question_id": 2801, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003108", - "question_id": 2806, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003455", - "question_id": 2807, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008809", - "question_id": 2808, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000198", - "question_id": 2809, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004135", - "question_id": 2810, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004393", - "question_id": 2811, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000506", - "question_id": 2813, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000960", - "question_id": 2814, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008791", - "question_id": 2815, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005240", - "question_id": 2817, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004333", - "question_id": 2820, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004838", - "question_id": 2822, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001482", - "question_id": 2823, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000514", - "question_id": 2824, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008478", - "question_id": 2825, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001814", - "question_id": 2826, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004797", - "question_id": 2827, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005323", - "question_id": 2828, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004253", - "question_id": 2829, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000059", - "question_id": 2830, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006071", - "question_id": 2832, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007391", - "question_id": 2833, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004389", - "question_id": 2834, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003986", - "question_id": 2836, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007734", - "question_id": 2837, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007071", - "question_id": 2838, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001504", - "question_id": 2839, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005309", - "question_id": 2840, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001594", - "question_id": 2842, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002746", - "question_id": 2843, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007982", - "question_id": 2844, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005839", - "question_id": 2845, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005361", - "question_id": 2847, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005325", - "question_id": 2848, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001703", - "question_id": 2849, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001258", - "question_id": 2850, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008153", - "question_id": 2852, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008392", - "question_id": 2853, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000481", - "question_id": 2854, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005485", - "question_id": 2856, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005200", - "question_id": 2857, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000740", - "question_id": 2858, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008433", - "question_id": 2859, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005684", - "question_id": 2860, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008234", - "question_id": 2861, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008833", - "question_id": 2862, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006216", - "question_id": 2863, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008159", - "question_id": 2865, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000665", - "question_id": 2867, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008469", - "question_id": 2868, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001542", - "question_id": 2869, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005516", - "question_id": 2875, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007651", - "question_id": 2876, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008454", - "question_id": 2877, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005868", - "question_id": 2878, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008112", - "question_id": 2885, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004068", - "question_id": 2887, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000949", - "question_id": 2888, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001572", - "question_id": 2889, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002182", - "question_id": 2890, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004416", - "question_id": 2891, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005233", - "question_id": 2893, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000845", - "question_id": 2895, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007230", - "question_id": 2896, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005751", - "question_id": 2897, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000306", - "question_id": 2898, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002928", - "question_id": 2901, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008418", - "question_id": 2902, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000945", - "question_id": 2903, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004018", - "question_id": 2905, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002619", - "question_id": 2908, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002628", - "question_id": 2910, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000205", - "question_id": 2913, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005124", - "question_id": 2915, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001040", - "question_id": 2916, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000622", - "question_id": 2917, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004820", - "question_id": 2918, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002207", - "question_id": 2920, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007707", - "question_id": 2921, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004147", - "question_id": 2923, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005263", - "question_id": 2924, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004288", - "question_id": 2925, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000815", - "question_id": 2926, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008591", - "question_id": 2928, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002253", - "question_id": 2930, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003655", - "question_id": 2933, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000068", - "question_id": 2934, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004143", - "question_id": 2935, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "nine" -}, { - "video_id": "00005790", - "question_id": 2936, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001833", - "question_id": 2938, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004429", - "question_id": 2940, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000840", - "question_id": 2941, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002822", - "question_id": 2942, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008363", - "question_id": 2943, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002216", - "question_id": 2947, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002341", - "question_id": 2948, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001603", - "question_id": 2949, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007526", - "question_id": 2951, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001101", - "question_id": 2952, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008498", - "question_id": 2955, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008919", - "question_id": 2956, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000986", - "question_id": 2957, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006330", - "question_id": 2962, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002563", - "question_id": 2963, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006726", - "question_id": 2964, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002076", - "question_id": 2965, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005821", - "question_id": 2967, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005514", - "question_id": 2968, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005294", - "question_id": 2969, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008108", - "question_id": 2974, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008839", - "question_id": 2979, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00000847", - "question_id": 2980, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006546", - "question_id": 2981, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008351", - "question_id": 2983, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006621", - "question_id": 2984, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000038", - "question_id": 2989, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005516", - "question_id": 2991, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004295", - "question_id": 2992, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008293", - "question_id": 2993, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005136", - "question_id": 2994, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002225", - "question_id": 2995, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004450", - "question_id": 2996, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003406", - "question_id": 2997, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001495", - "question_id": 2998, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004947", - "question_id": 2999, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002565", - "question_id": 3001, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003667", - "question_id": 3002, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008140", - "question_id": 3006, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004407", - "question_id": 3007, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004876", - "question_id": 3008, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003669", - "question_id": 3011, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006542", - "question_id": 3013, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007274", - "question_id": 3014, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007459", - "question_id": 3015, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006429", - "question_id": 3017, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003180", - "question_id": 3018, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003180", - "question_id": 3018, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008182", - "question_id": 3020, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007141", - "question_id": 3021, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003041", - "question_id": 3023, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006107", - "question_id": 3024, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008660", - "question_id": 3025, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007673", - "question_id": 3029, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005091", - "question_id": 3030, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006633", - "question_id": 3031, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005728", - "question_id": 3033, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005513", - "question_id": 3037, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000560", - "question_id": 3038, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003492", - "question_id": 3039, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001095", - "question_id": 3040, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001700", - "question_id": 3041, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008701", - "question_id": 3042, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004235", - "question_id": 3043, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004961", - "question_id": 3044, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000215", - "question_id": 3046, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004158", - "question_id": 3047, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003172", - "question_id": 3048, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000640", - "question_id": 3051, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005749", - "question_id": 3052, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007124", - "question_id": 3053, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005936", - "question_id": 3054, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000462", - "question_id": 3055, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002131", - "question_id": 3059, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00008477", - "question_id": 3060, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006431", - "question_id": 3061, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006189", - "question_id": 3062, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006823", - "question_id": 3063, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008405", - "question_id": 3064, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007388", - "question_id": 3065, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001011", - "question_id": 3066, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001002", - "question_id": 3067, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005231", - "question_id": 3070, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005493", - "question_id": 3071, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006638", - "question_id": 3072, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002849", - "question_id": 3073, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002820", - "question_id": 3075, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002790", - "question_id": 3076, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007173", - "question_id": 3077, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003913", - "question_id": 3078, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007385", - "question_id": 3079, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004760", - "question_id": 3081, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005336", - "question_id": 3082, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002109", - "question_id": 3083, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002638", - "question_id": 3084, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000705", - "question_id": 3087, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006960", - "question_id": 3088, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002753", - "question_id": 3090, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005829", - "question_id": 3091, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003275", - "question_id": 3092, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001151", - "question_id": 3095, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000681", - "question_id": 3096, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004410", - "question_id": 3100, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007836", - "question_id": 3101, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008951", - "question_id": 3103, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003068", - "question_id": 3104, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000771", - "question_id": 3105, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005863", - "question_id": 3106, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008879", - "question_id": 3107, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000965", - "question_id": 3108, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006380", - "question_id": 3109, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008549", - "question_id": 3110, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "ten" -}, { - "video_id": "00007718", - "question_id": 3112, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006214", - "question_id": 3113, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001503", - "question_id": 3116, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001465", - "question_id": 3118, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "seven" -}, { - "video_id": "00001137", - "question_id": 3119, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003124", - "question_id": 3121, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003310", - "question_id": 3122, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006990", - "question_id": 3123, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006746", - "question_id": 3124, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002610", - "question_id": 3126, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005542", - "question_id": 3128, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007954", - "question_id": 3129, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006284", - "question_id": 3130, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002895", - "question_id": 3131, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007630", - "question_id": 3132, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001182", - "question_id": 3138, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003003", - "question_id": 3139, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003562", - "question_id": 3140, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008582", - "question_id": 3141, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004583", - "question_id": 3142, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003174", - "question_id": 3144, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001127", - "question_id": 3146, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004303", - "question_id": 3147, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000986", - "question_id": 3148, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000250", - "question_id": 3149, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00001759", - "question_id": 3152, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006899", - "question_id": 3154, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003221", - "question_id": 3157, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008106", - "question_id": 3158, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004754", - "question_id": 3160, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005136", - "question_id": 3161, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008391", - "question_id": 3162, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007771", - "question_id": 3163, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000723", - "question_id": 3164, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003462", - "question_id": 3165, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003650", - "question_id": 3167, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003326", - "question_id": 3168, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004881", - "question_id": 3169, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003879", - "question_id": 3170, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007229", - "question_id": 3172, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004048", - "question_id": 3173, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006011", - "question_id": 3175, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003927", - "question_id": 3176, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007270", - "question_id": 3178, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006507", - "question_id": 3179, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000902", - "question_id": 3180, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002526", - "question_id": 3184, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001990", - "question_id": 3185, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008468", - "question_id": 3186, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005665", - "question_id": 3187, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005581", - "question_id": 3188, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006591", - "question_id": 3189, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002780", - "question_id": 3192, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006188", - "question_id": 3193, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000899", - "question_id": 3194, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000941", - "question_id": 3196, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002561", - "question_id": 3197, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006563", - "question_id": 3199, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005728", - "question_id": 3201, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000199", - "question_id": 3202, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002830", - "question_id": 3203, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006427", - "question_id": 3204, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007553", - "question_id": 3206, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003774", - "question_id": 3207, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001320", - "question_id": 3208, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000970", - "question_id": 3211, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003559", - "question_id": 3216, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007956", - "question_id": 3219, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005652", - "question_id": 3220, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002603", - "question_id": 3222, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002603", - "question_id": 3222, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007309", - "question_id": 3223, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000193", - "question_id": 3224, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005685", - "question_id": 3225, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003957", - "question_id": 3227, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004116", - "question_id": 3231, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001388", - "question_id": 3233, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003282", - "question_id": 3234, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002323", - "question_id": 3236, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001370", - "question_id": 3238, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008511", - "question_id": 3239, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003656", - "question_id": 3240, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003117", - "question_id": 3242, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001237", - "question_id": 3245, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005173", - "question_id": 3246, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006523", - "question_id": 3249, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000043", - "question_id": 3250, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004064", - "question_id": 3251, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002670", - "question_id": 3255, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007989", - "question_id": 3256, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002758", - "question_id": 3257, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000065", - "question_id": 3258, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005505", - "question_id": 3261, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001407", - "question_id": 3264, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008019", - "question_id": 3265, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000018", - "question_id": 3267, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000811", - "question_id": 3269, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008674", - "question_id": 3271, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004102", - "question_id": 3272, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005182", - "question_id": 3274, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003746", - "question_id": 3275, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005721", - "question_id": 3276, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005061", - "question_id": 3277, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005811", - "question_id": 3278, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007954", - "question_id": 3281, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005595", - "question_id": 3282, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001768", - "question_id": 3286, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008739", - "question_id": 3288, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008160", - "question_id": 3289, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006127", - "question_id": 3294, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001181", - "question_id": 3295, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005618", - "question_id": 3296, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002237", - "question_id": 3297, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004178", - "question_id": 3298, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004643", - "question_id": 3300, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007488", - "question_id": 3301, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005146", - "question_id": 3302, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005571", - "question_id": 3303, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001015", - "question_id": 3305, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000750", - "question_id": 3306, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006473", - "question_id": 3308, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006730", - "question_id": 3311, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003381", - "question_id": 3313, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006138", - "question_id": 3315, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004406", - "question_id": 3316, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002554", - "question_id": 3317, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003773", - "question_id": 3318, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005198", - "question_id": 3319, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002159", - "question_id": 3320, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005965", - "question_id": 3321, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005000", - "question_id": 3323, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004930", - "question_id": 3325, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000750", - "question_id": 3326, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004007", - "question_id": 3328, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005709", - "question_id": 3329, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008473", - "question_id": 3330, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007191", - "question_id": 3331, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004922", - "question_id": 3334, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003930", - "question_id": 3336, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006643", - "question_id": 3337, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008343", - "question_id": 3338, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006999", - "question_id": 3340, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002195", - "question_id": 3341, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003450", - "question_id": 3342, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000034", - "question_id": 3343, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000280", - "question_id": 3346, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000116", - "question_id": 3347, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002621", - "question_id": 3348, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007097", - "question_id": 3349, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003234", - "question_id": 3351, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000022", - "question_id": 3352, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002189", - "question_id": 3353, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003671", - "question_id": 3354, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002250", - "question_id": 3355, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006170", - "question_id": 3356, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005000", - "question_id": 3357, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005631", - "question_id": 3359, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006050", - "question_id": 3360, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008900", - "question_id": 3362, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007956", - "question_id": 3365, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004816", - "question_id": 3367, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007985", - "question_id": 3369, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002650", - "question_id": 3370, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006542", - "question_id": 3371, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002659", - "question_id": 3372, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001442", - "question_id": 3373, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001573", - "question_id": 3374, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008148", - "question_id": 3375, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005555", - "question_id": 3377, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001513", - "question_id": 3378, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006316", - "question_id": 3380, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003620", - "question_id": 3381, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007402", - "question_id": 3382, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008120", - "question_id": 3384, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003183", - "question_id": 3385, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006745", - "question_id": 3386, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000321", - "question_id": 3387, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002158", - "question_id": 3389, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003365", - "question_id": 3390, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005654", - "question_id": 3391, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008683", - "question_id": 3392, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001523", - "question_id": 3393, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005139", - "question_id": 3394, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000354", - "question_id": 3396, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004889", - "question_id": 3400, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008736", - "question_id": 3401, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008604", - "question_id": 3403, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001266", - "question_id": 3405, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006710", - "question_id": 3407, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004344", - "question_id": 3408, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000368", - "question_id": 3409, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008764", - "question_id": 3410, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006327", - "question_id": 3413, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000418", - "question_id": 3414, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004128", - "question_id": 3418, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001144", - "question_id": 3420, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005616", - "question_id": 3421, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002589", - "question_id": 3422, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006153", - "question_id": 3423, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003833", - "question_id": 3424, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004953", - "question_id": 3425, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008749", - "question_id": 3427, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007222", - "question_id": 3429, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002387", - "question_id": 3430, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002262", - "question_id": 3431, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005152", - "question_id": 3432, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004654", - "question_id": 3434, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005658", - "question_id": 3435, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000865", - "question_id": 3436, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000165", - "question_id": 3439, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002829", - "question_id": 3440, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008833", - "question_id": 3441, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002760", - "question_id": 3442, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000909", - "question_id": 3444, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006580", - "question_id": 3445, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005296", - "question_id": 3446, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005928", - "question_id": 3448, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008947", - "question_id": 3449, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002809", - "question_id": 3450, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005967", - "question_id": 3451, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002460", - "question_id": 3452, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008978", - "question_id": 3454, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008616", - "question_id": 3455, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003960", - "question_id": 3458, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008424", - "question_id": 3459, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008694", - "question_id": 3460, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005745", - "question_id": 3461, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001773", - "question_id": 3462, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005208", - "question_id": 3464, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002027", - "question_id": 3466, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000696", - "question_id": 3467, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007644", - "question_id": 3469, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005503", - "question_id": 3470, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005846", - "question_id": 3471, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004940", - "question_id": 3473, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001320", - "question_id": 3474, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00004528", - "question_id": 3475, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008448", - "question_id": 3477, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002808", - "question_id": 3478, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002860", - "question_id": 3480, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008378", - "question_id": 3481, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001989", - "question_id": 3482, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007389", - "question_id": 3483, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003708", - "question_id": 3484, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007264", - "question_id": 3485, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008099", - "question_id": 3486, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007316", - "question_id": 3487, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002740", - "question_id": 3488, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007498", - "question_id": 3490, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008749", - "question_id": 3496, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007508", - "question_id": 3498, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004957", - "question_id": 3499, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000107", - "question_id": 3501, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005135", - "question_id": 3502, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004238", - "question_id": 3504, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005547", - "question_id": 3505, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001880", - "question_id": 3506, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002215", - "question_id": 3507, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008443", - "question_id": 3509, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004497", - "question_id": 3512, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000316", - "question_id": 3513, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005949", - "question_id": 3517, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000829", - "question_id": 3518, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008444", - "question_id": 3521, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005256", - "question_id": 3522, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002102", - "question_id": 3523, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003989", - "question_id": 3528, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005447", - "question_id": 3529, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001120", - "question_id": 3530, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005924", - "question_id": 3532, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002899", - "question_id": 3535, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006313", - "question_id": 3537, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003335", - "question_id": 3538, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007654", - "question_id": 3539, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008416", - "question_id": 3543, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007832", - "question_id": 3544, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007767", - "question_id": 3547, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007329", - "question_id": 3548, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007277", - "question_id": 3549, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003962", - "question_id": 3550, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003426", - "question_id": 3551, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001319", - "question_id": 3552, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001217", - "question_id": 3553, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006777", - "question_id": 3554, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008629", - "question_id": 3555, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003523", - "question_id": 3556, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006876", - "question_id": 3557, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008627", - "question_id": 3558, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000132", - "question_id": 3559, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006081", - "question_id": 3562, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004690", - "question_id": 3566, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001560", - "question_id": 3569, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004691", - "question_id": 3570, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000291", - "question_id": 3571, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003109", - "question_id": 3572, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002212", - "question_id": 3573, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002695", - "question_id": 3579, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004700", - "question_id": 3580, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000488", - "question_id": 3581, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008728", - "question_id": 3586, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004219", - "question_id": 3587, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000729", - "question_id": 3588, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000963", - "question_id": 3589, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001202", - "question_id": 3590, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004318", - "question_id": 3594, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006495", - "question_id": 3595, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003283", - "question_id": 3598, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008779", - "question_id": 3605, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005247", - "question_id": 3606, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "eight" -}, { - "video_id": "00007575", - "question_id": 3609, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002850", - "question_id": 3612, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000495", - "question_id": 3613, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005775", - "question_id": 3616, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003122", - "question_id": 3617, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003861", - "question_id": 3618, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006771", - "question_id": 3619, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003018", - "question_id": 3620, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004098", - "question_id": 3621, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007489", - "question_id": 3622, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004083", - "question_id": 3623, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003408", - "question_id": 3624, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007050", - "question_id": 3625, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001779", - "question_id": 3626, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002648", - "question_id": 3627, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002870", - "question_id": 3629, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002918", - "question_id": 3630, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007217", - "question_id": 3631, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005227", - "question_id": 3638, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008946", - "question_id": 3639, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008362", - "question_id": 3640, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006490", - "question_id": 3641, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005241", - "question_id": 3642, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003166", - "question_id": 3646, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003403", - "question_id": 3648, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001513", - "question_id": 3649, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001818", - "question_id": 3651, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008166", - "question_id": 3652, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000136", - "question_id": 3653, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002317", - "question_id": 3654, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003579", - "question_id": 3661, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000277", - "question_id": 3664, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002301", - "question_id": 3669, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005096", - "question_id": 3687, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001537", - "question_id": 3688, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001799", - "question_id": 3692, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007280", - "question_id": 3693, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007941", - "question_id": 3694, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002058", - "question_id": 3695, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008336", - "question_id": 3696, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001473", - "question_id": 3698, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007898", - "question_id": 3699, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006022", - "question_id": 3700, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002608", - "question_id": 3705, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001155", - "question_id": 3706, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006023", - "question_id": 3707, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002096", - "question_id": 3709, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "eight" -}, { - "video_id": "00002428", - "question_id": 3710, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004475", - "question_id": 3711, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002247", - "question_id": 3712, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006408", - "question_id": 3713, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002916", - "question_id": 3715, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007884", - "question_id": 3717, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001980", - "question_id": 3718, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002177", - "question_id": 3719, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005892", - "question_id": 3720, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006404", - "question_id": 3722, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006912", - "question_id": 3723, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000389", - "question_id": 3724, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002022", - "question_id": 3725, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003183", - "question_id": 3726, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001840", - "question_id": 3727, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006924", - "question_id": 3728, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008711", - "question_id": 3729, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001153", - "question_id": 3730, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007356", - "question_id": 3731, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007851", - "question_id": 3732, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006711", - "question_id": 3733, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007696", - "question_id": 3734, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005631", - "question_id": 3738, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008803", - "question_id": 3739, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001915", - "question_id": 3741, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003922", - "question_id": 3743, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000087", - "question_id": 3744, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001041", - "question_id": 3745, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001187", - "question_id": 3746, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007067", - "question_id": 3747, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008423", - "question_id": 3748, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000374", - "question_id": 3749, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004015", - "question_id": 3750, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006845", - "question_id": 3751, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002942", - "question_id": 3752, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000728", - "question_id": 3754, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000890", - "question_id": 3755, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000326", - "question_id": 3757, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004737", - "question_id": 3758, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005085", - "question_id": 3760, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006904", - "question_id": 3762, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005874", - "question_id": 3764, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001973", - "question_id": 3765, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005585", - "question_id": 3766, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000333", - "question_id": 3767, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003529", - "question_id": 3768, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003789", - "question_id": 3769, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004983", - "question_id": 3770, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007204", - "question_id": 3771, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000123", - "question_id": 3772, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003756", - "question_id": 3773, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002399", - "question_id": 3775, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006484", - "question_id": 3776, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002084", - "question_id": 3778, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003103", - "question_id": 3779, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008749", - "question_id": 3780, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007358", - "question_id": 3781, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007840", - "question_id": 3782, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000994", - "question_id": 3783, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006683", - "question_id": 3784, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008739", - "question_id": 3785, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007248", - "question_id": 3788, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007592", - "question_id": 3789, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003287", - "question_id": 3792, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003611", - "question_id": 3793, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004167", - "question_id": 3794, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002627", - "question_id": 3795, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000534", - "question_id": 3796, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002550", - "question_id": 3800, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008309", - "question_id": 3801, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00005549", - "question_id": 3804, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"banjo\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006806", - "question_id": 3806, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008386", - "question_id": 3807, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003308", - "question_id": 3808, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002568", - "question_id": 3812, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005016", - "question_id": 3813, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008521", - "question_id": 3814, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003657", - "question_id": 3815, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003003", - "question_id": 3816, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002897", - "question_id": 3817, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006666", - "question_id": 3819, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008282", - "question_id": 3821, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002476", - "question_id": 3822, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003973", - "question_id": 3824, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003056", - "question_id": 3826, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008508", - "question_id": 3827, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003737", - "question_id": 3828, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006425", - "question_id": 3829, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005834", - "question_id": 3830, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003475", - "question_id": 3832, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003013", - "question_id": 3833, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007024", - "question_id": 3834, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007892", - "question_id": 3836, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"xylophone\", \"right\", \"xylophone\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004048", - "question_id": 3838, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007523", - "question_id": 3842, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002678", - "question_id": 3843, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007494", - "question_id": 3844, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008660", - "question_id": 3845, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000441", - "question_id": 3847, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000819", - "question_id": 3849, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006630", - "question_id": 3850, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003876", - "question_id": 3851, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005335", - "question_id": 3852, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001584", - "question_id": 3855, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007001", - "question_id": 3856, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004835", - "question_id": 3858, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006288", - "question_id": 3862, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006288", - "question_id": 3862, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002155", - "question_id": 3864, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002860", - "question_id": 3867, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001869", - "question_id": 3868, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006919", - "question_id": 3869, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007298", - "question_id": 3873, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002954", - "question_id": 3875, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005543", - "question_id": 3876, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000151", - "question_id": 3878, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004941", - "question_id": 3879, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007684", - "question_id": 3880, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001402", - "question_id": 3881, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001927", - "question_id": 3883, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007198", - "question_id": 3885, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005849", - "question_id": 3887, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004524", - "question_id": 3888, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004121", - "question_id": 3890, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004113", - "question_id": 3891, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00006136", - "question_id": 3892, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003017", - "question_id": 3894, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008086", - "question_id": 3895, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003183", - "question_id": 3897, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007830", - "question_id": 3898, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008061", - "question_id": 3899, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007706", - "question_id": 3902, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008718", - "question_id": 3903, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002303", - "question_id": 3905, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002410", - "question_id": 3906, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005001", - "question_id": 3907, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007090", - "question_id": 3908, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004235", - "question_id": 3909, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008511", - "question_id": 3910, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006167", - "question_id": 3911, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004015", - "question_id": 3912, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007335", - "question_id": 3913, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002940", - "question_id": 3914, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008454", - "question_id": 3915, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006842", - "question_id": 3916, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006506", - "question_id": 3918, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002591", - "question_id": 3919, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004247", - "question_id": 3921, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001177", - "question_id": 3922, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003650", - "question_id": 3923, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007998", - "question_id": 3924, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006167", - "question_id": 3925, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007745", - "question_id": 3926, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003673", - "question_id": 3927, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005121", - "question_id": 3928, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003397", - "question_id": 3929, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002028", - "question_id": 3930, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004813", - "question_id": 3931, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001201", - "question_id": 3932, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002808", - "question_id": 3933, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005460", - "question_id": 3937, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001264", - "question_id": 3938, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004690", - "question_id": 3940, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007180", - "question_id": 3942, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003430", - "question_id": 3943, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008955", - "question_id": 3944, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004813", - "question_id": 3945, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006445", - "question_id": 3946, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003353", - "question_id": 3947, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008808", - "question_id": 3948, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003706", - "question_id": 3949, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002687", - "question_id": 3950, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002113", - "question_id": 3951, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004924", - "question_id": 3955, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005262", - "question_id": 3957, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004439", - "question_id": 3960, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001336", - "question_id": 3964, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001547", - "question_id": 3966, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003022", - "question_id": 3967, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000540", - "question_id": 3968, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000719", - "question_id": 3970, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007358", - "question_id": 3971, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007803", - "question_id": 3972, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006371", - "question_id": 3973, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007078", - "question_id": 3974, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008973", - "question_id": 3976, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008856", - "question_id": 3977, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000477", - "question_id": 3979, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005961", - "question_id": 3981, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001527", - "question_id": 3984, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006389", - "question_id": 3985, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001768", - "question_id": 3987, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004988", - "question_id": 3988, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005971", - "question_id": 3990, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005353", - "question_id": 3991, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003258", - "question_id": 3992, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003325", - "question_id": 3993, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005177", - "question_id": 3994, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004364", - "question_id": 3995, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004659", - "question_id": 3996, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007350", - "question_id": 3997, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003957", - "question_id": 3998, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006776", - "question_id": 3999, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005394", - "question_id": 4000, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000609", - "question_id": 4002, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008337", - "question_id": 4003, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002089", - "question_id": 4004, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002695", - "question_id": 4006, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004357", - "question_id": 4007, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003155", - "question_id": 4008, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007302", - "question_id": 4010, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007162", - "question_id": 4011, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007620", - "question_id": 4012, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006327", - "question_id": 4013, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001495", - "question_id": 4014, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001277", - "question_id": 4015, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005371", - "question_id": 4016, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"right\", \"pipa\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000769", - "question_id": 4020, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006469", - "question_id": 4022, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003145", - "question_id": 4023, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001343", - "question_id": 4024, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001708", - "question_id": 4025, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003708", - "question_id": 4027, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007779", - "question_id": 4029, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006677", - "question_id": 4032, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001169", - "question_id": 4033, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008843", - "question_id": 4036, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007856", - "question_id": 4042, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008617", - "question_id": 4043, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008373", - "question_id": 4045, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005103", - "question_id": 4048, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007441", - "question_id": 4049, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001669", - "question_id": 4051, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002626", - "question_id": 4052, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"electric_bass\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006813", - "question_id": 4053, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007867", - "question_id": 4055, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002950", - "question_id": 4056, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007035", - "question_id": 4057, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005484", - "question_id": 4058, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003562", - "question_id": 4060, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00001207", - "question_id": 4062, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000347", - "question_id": 4063, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008599", - "question_id": 4064, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006343", - "question_id": 4065, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001986", - "question_id": 4066, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"right\", \"tuba\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007769", - "question_id": 4067, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002408", - "question_id": 4069, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001454", - "question_id": 4070, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004387", - "question_id": 4071, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000297", - "question_id": 4072, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007624", - "question_id": 4074, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004013", - "question_id": 4076, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006655", - "question_id": 4078, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005265", - "question_id": 4082, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006528", - "question_id": 4084, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000985", - "question_id": 4085, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000164", - "question_id": 4086, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003359", - "question_id": 4090, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004791", - "question_id": 4092, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004430", - "question_id": 4094, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002665", - "question_id": 4098, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005591", - "question_id": 4100, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008651", - "question_id": 4101, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001798", - "question_id": 4102, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003862", - "question_id": 4104, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005143", - "question_id": 4105, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007135", - "question_id": 4106, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006070", - "question_id": 4107, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007356", - "question_id": 4108, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001757", - "question_id": 4109, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003449", - "question_id": 4110, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008391", - "question_id": 4111, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006609", - "question_id": 4113, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000109", - "question_id": 4114, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002863", - "question_id": 4115, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006888", - "question_id": 4118, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00004039", - "question_id": 4119, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001263", - "question_id": 4120, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000448", - "question_id": 4122, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003755", - "question_id": 4125, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006246", - "question_id": 4129, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00003889", - "question_id": 4130, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000388", - "question_id": 4131, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007192", - "question_id": 4132, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00007148", - "question_id": 4133, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003935", - "question_id": 4134, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006214", - "question_id": 4135, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003755", - "question_id": 4136, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005781", - "question_id": 4137, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00005879", - "question_id": 4139, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00002033", - "question_id": 4142, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007859", - "question_id": 4144, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001297", - "question_id": 4147, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001440", - "question_id": 4148, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000636", - "question_id": 4149, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002377", - "question_id": 4150, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000424", - "question_id": 4151, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002862", - "question_id": 4153, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003493", - "question_id": 4154, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004752", - "question_id": 4155, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003451", - "question_id": 4156, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008735", - "question_id": 4157, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007556", - "question_id": 4158, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003948", - "question_id": 4159, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001559", - "question_id": 4160, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004091", - "question_id": 4161, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"banjo\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008017", - "question_id": 4162, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006117", - "question_id": 4166, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002724", - "question_id": 4167, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003036", - "question_id": 4170, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001670", - "question_id": 4171, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008878", - "question_id": 4172, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006385", - "question_id": 4174, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008555", - "question_id": 4175, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002847", - "question_id": 4177, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004602", - "question_id": 4179, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"xylophone\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005261", - "question_id": 4180, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008319", - "question_id": 4184, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006293", - "question_id": 4185, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007651", - "question_id": 4186, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008104", - "question_id": 4187, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005090", - "question_id": 4188, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005441", - "question_id": 4189, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001169", - "question_id": 4191, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002367", - "question_id": 4193, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005544", - "question_id": 4194, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007520", - "question_id": 4195, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000895", - "question_id": 4196, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006836", - "question_id": 4197, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007061", - "question_id": 4199, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000374", - "question_id": 4200, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007097", - "question_id": 4201, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008669", - "question_id": 4203, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000714", - "question_id": 4204, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006242", - "question_id": 4205, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001208", - "question_id": 4206, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004161", - "question_id": 4208, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004857", - "question_id": 4209, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004678", - "question_id": 4210, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003529", - "question_id": 4211, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003832", - "question_id": 4213, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007392", - "question_id": 4214, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008050", - "question_id": 4215, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004017", - "question_id": 4216, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003182", - "question_id": 4218, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008453", - "question_id": 4219, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001567", - "question_id": 4220, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006836", - "question_id": 4221, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001932", - "question_id": 4223, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000048", - "question_id": 4224, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004723", - "question_id": 4225, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006505", - "question_id": 4227, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008812", - "question_id": 4229, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003795", - "question_id": 4231, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"suona\", \"right\", \"drum\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000300", - "question_id": 4232, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006525", - "question_id": 4234, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004592", - "question_id": 4235, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000104", - "question_id": 4237, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000623", - "question_id": 4239, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003733", - "question_id": 4241, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006074", - "question_id": 4245, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001400", - "question_id": 4247, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006287", - "question_id": 4248, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002704", - "question_id": 4249, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003454", - "question_id": 4251, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004670", - "question_id": 4253, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008814", - "question_id": 4254, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008104", - "question_id": 4255, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007490", - "question_id": 4256, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001486", - "question_id": 4258, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006258", - "question_id": 4259, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bagpipe\", \"left\", \"bagpipe\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002263", - "question_id": 4261, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004068", - "question_id": 4262, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002740", - "question_id": 4263, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004683", - "question_id": 4265, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002701", - "question_id": 4266, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003686", - "question_id": 4267, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000794", - "question_id": 4268, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003999", - "question_id": 4269, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003997", - "question_id": 4270, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004246", - "question_id": 4271, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006869", - "question_id": 4273, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004646", - "question_id": 4274, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002483", - "question_id": 4279, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00006473", - "question_id": 4280, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007991", - "question_id": 4282, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004961", - "question_id": 4283, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00001703", - "question_id": 4284, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001703", - "question_id": 4284, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001884", - "question_id": 4285, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004963", - "question_id": 4288, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005429", - "question_id": 4290, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005433", - "question_id": 4292, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008635", - "question_id": 4293, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00005623", - "question_id": 4295, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003108", - "question_id": 4297, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000532", - "question_id": 4298, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008444", - "question_id": 4299, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000657", - "question_id": 4300, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000905", - "question_id": 4302, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004089", - "question_id": 4303, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005193", - "question_id": 4306, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003801", - "question_id": 4307, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005651", - "question_id": 4308, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006873", - "question_id": 4309, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000688", - "question_id": 4310, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004556", - "question_id": 4312, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008800", - "question_id": 4315, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004379", - "question_id": 4316, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008239", - "question_id": 4318, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004193", - "question_id": 4319, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007807", - "question_id": 4321, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000061", - "question_id": 4326, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00005386", - "question_id": 4328, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00005651", - "question_id": 4329, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006630", - "question_id": 4330, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000342", - "question_id": 4331, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005265", - "question_id": 4332, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002300", - "question_id": 4333, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002824", - "question_id": 4334, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008111", - "question_id": 4335, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001607", - "question_id": 4336, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006975", - "question_id": 4337, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003512", - "question_id": 4339, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002624", - "question_id": 4340, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003281", - "question_id": 4343, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002491", - "question_id": 4344, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001023", - "question_id": 4345, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005328", - "question_id": 4346, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005076", - "question_id": 4347, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001550", - "question_id": 4348, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007395", - "question_id": 4349, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004897", - "question_id": 4350, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002337", - "question_id": 4352, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004133", - "question_id": 4353, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002512", - "question_id": 4354, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006647", - "question_id": 4355, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00006834", - "question_id": 4356, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003640", - "question_id": 4360, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005183", - "question_id": 4362, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003351", - "question_id": 4364, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003613", - "question_id": 4365, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00000958", - "question_id": 4366, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003786", - "question_id": 4368, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006736", - "question_id": 4369, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"middle\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007444", - "question_id": 4371, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002501", - "question_id": 4372, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002664", - "question_id": 4375, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004736", - "question_id": 4377, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001299", - "question_id": 4378, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"middle\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004683", - "question_id": 4379, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004894", - "question_id": 4381, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003325", - "question_id": 4382, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00001076", - "question_id": 4385, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001967", - "question_id": 4386, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005650", - "question_id": 4390, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005200", - "question_id": 4391, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000456", - "question_id": 4392, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003471", - "question_id": 4393, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00005208", - "question_id": 4395, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000576", - "question_id": 4396, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003528", - "question_id": 4397, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001151", - "question_id": 4401, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002112", - "question_id": 4402, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006980", - "question_id": 4403, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008754", - "question_id": 4404, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005073", - "question_id": 4405, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006935", - "question_id": 4406, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005685", - "question_id": 4407, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005670", - "question_id": 4408, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000360", - "question_id": 4409, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004951", - "question_id": 4411, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001795", - "question_id": 4413, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002881", - "question_id": 4414, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000141", - "question_id": 4415, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006160", - "question_id": 4416, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006377", - "question_id": 4417, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008643", - "question_id": 4418, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002166", - "question_id": 4420, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008123", - "question_id": 4421, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"cello\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00008457", - "question_id": 4422, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007464", - "question_id": 4423, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002946", - "question_id": 4425, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005871", - "question_id": 4426, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004478", - "question_id": 4427, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000823", - "question_id": 4428, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003318", - "question_id": 4433, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000641", - "question_id": 4434, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001780", - "question_id": 4435, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008540", - "question_id": 4437, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007200", - "question_id": 4438, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000038", - "question_id": 4440, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002399", - "question_id": 4442, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00004414", - "question_id": 4443, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001397", - "question_id": 4447, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003427", - "question_id": 4448, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"clarinet\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00001199", - "question_id": 4450, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004400", - "question_id": 4451, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004835", - "question_id": 4453, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00002434", - "question_id": 4454, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002634", - "question_id": 4455, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005671", - "question_id": 4456, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005842", - "question_id": 4458, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004601", - "question_id": 4459, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"middle\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002770", - "question_id": 4460, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008427", - "question_id": 4462, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000100", - "question_id": 4463, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003598", - "question_id": 4465, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005836", - "question_id": 4466, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000388", - "question_id": 4471, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003197", - "question_id": 4473, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008268", - "question_id": 4474, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007888", - "question_id": 4478, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007590", - "question_id": 4479, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007387", - "question_id": 4480, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005325", - "question_id": 4483, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006029", - "question_id": 4484, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006589", - "question_id": 4485, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001843", - "question_id": 4486, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007111", - "question_id": 4487, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008283", - "question_id": 4488, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006072", - "question_id": 4489, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004261", - "question_id": 4490, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001968", - "question_id": 4492, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006081", - "question_id": 4493, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006081", - "question_id": 4493, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000437", - "question_id": 4494, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005965", - "question_id": 4496, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007265", - "question_id": 4498, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00008959", - "question_id": 4500, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002112", - "question_id": 4503, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005407", - "question_id": 4505, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005407", - "question_id": 4505, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001528", - "question_id": 4508, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001802", - "question_id": 4509, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004558", - "question_id": 4511, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006923", - "question_id": 4512, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007757", - "question_id": 4513, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003349", - "question_id": 4514, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006362", - "question_id": 4515, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002829", - "question_id": 4516, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004273", - "question_id": 4517, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004301", - "question_id": 4518, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004669", - "question_id": 4519, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007073", - "question_id": 4521, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002694", - "question_id": 4522, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007193", - "question_id": 4523, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007030", - "question_id": 4524, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006687", - "question_id": 4525, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000758", - "question_id": 4526, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002204", - "question_id": 4528, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004458", - "question_id": 4530, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006598", - "question_id": 4531, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005389", - "question_id": 4532, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005714", - "question_id": 4533, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001650", - "question_id": 4534, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007809", - "question_id": 4535, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005012", - "question_id": 4538, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001219", - "question_id": 4541, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00006854", - "question_id": 4542, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003741", - "question_id": 4543, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001452", - "question_id": 4544, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005353", - "question_id": 4548, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00007627", - "question_id": 4549, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001346", - "question_id": 4550, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006914", - "question_id": 4551, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000092", - "question_id": 4552, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006203", - "question_id": 4553, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008656", - "question_id": 4556, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008001", - "question_id": 4557, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00008794", - "question_id": 4559, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000710", - "question_id": 4562, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008503", - "question_id": 4565, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003058", - "question_id": 4566, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001884", - "question_id": 4567, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007384", - "question_id": 4568, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000943", - "question_id": 4569, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005652", - "question_id": 4570, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004134", - "question_id": 4572, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00004360", - "question_id": 4575, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004053", - "question_id": 4576, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004942", - "question_id": 4577, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003433", - "question_id": 4578, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007694", - "question_id": 4580, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003011", - "question_id": 4581, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001014", - "question_id": 4582, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000860", - "question_id": 4583, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001480", - "question_id": 4585, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00008015", - "question_id": 4586, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002604", - "question_id": 4587, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001747", - "question_id": 4592, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007794", - "question_id": 4594, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000414", - "question_id": 4598, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001177", - "question_id": 4600, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000494", - "question_id": 4601, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001087", - "question_id": 4602, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002775", - "question_id": 4603, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004052", - "question_id": 4604, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000555", - "question_id": 4605, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006084", - "question_id": 4606, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004554", - "question_id": 4607, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000160", - "question_id": 4613, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008143", - "question_id": 4614, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006591", - "question_id": 4615, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003398", - "question_id": 4618, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001174", - "question_id": 4619, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001110", - "question_id": 4620, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006835", - "question_id": 4623, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004713", - "question_id": 4624, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"trumpet\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004135", - "question_id": 4625, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007850", - "question_id": 4628, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001507", - "question_id": 4629, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000937", - "question_id": 4631, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00005993", - "question_id": 4632, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002209", - "question_id": 4633, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004681", - "question_id": 4636, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008802", - "question_id": 4638, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001653", - "question_id": 4642, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000347", - "question_id": 4645, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008404", - "question_id": 4648, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007517", - "question_id": 4649, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00008688", - "question_id": 4650, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007017", - "question_id": 4652, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"fourth\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00001519", - "question_id": 4656, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003577", - "question_id": 4657, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003579", - "question_id": 4658, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008087", - "question_id": 4660, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007008", - "question_id": 4661, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000569", - "question_id": 4662, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007938", - "question_id": 4664, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006416", - "question_id": 4667, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004521", - "question_id": 4669, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001221", - "question_id": 4671, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001364", - "question_id": 4672, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00001889", - "question_id": 4674, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001467", - "question_id": 4675, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00008401", - "question_id": 4678, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006646", - "question_id": 4680, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "eight" -}, { - "video_id": "00002829", - "question_id": 4681, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007992", - "question_id": 4682, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008761", - "question_id": 4684, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008175", - "question_id": 4685, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005556", - "question_id": 4687, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000545", - "question_id": 4688, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000429", - "question_id": 4691, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000477", - "question_id": 4694, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006345", - "question_id": 4695, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005103", - "question_id": 4696, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001225", - "question_id": 4697, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006933", - "question_id": 4699, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00004298", - "question_id": 4700, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008157", - "question_id": 4703, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008825", - "question_id": 4705, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002960", - "question_id": 4706, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006357", - "question_id": 4707, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003015", - "question_id": 4709, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006274", - "question_id": 4710, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000621", - "question_id": 4711, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000105", - "question_id": 4712, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006143", - "question_id": 4713, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005731", - "question_id": 4716, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"banjo\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003283", - "question_id": 4717, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007657", - "question_id": 4718, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001290", - "question_id": 4720, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000987", - "question_id": 4722, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008160", - "question_id": 4723, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00002807", - "question_id": 4724, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008379", - "question_id": 4725, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001387", - "question_id": 4729, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002737", - "question_id": 4731, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005177", - "question_id": 4733, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006501", - "question_id": 4737, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"saxophone\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00008739", - "question_id": 4738, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008845", - "question_id": 4739, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005593", - "question_id": 4741, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000862", - "question_id": 4742, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008326", - "question_id": 4743, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004919", - "question_id": 4744, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001582", - "question_id": 4746, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000049", - "question_id": 4747, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000347", - "question_id": 4749, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001035", - "question_id": 4750, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006299", - "question_id": 4751, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006597", - "question_id": 4752, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000159", - "question_id": 4754, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00006864", - "question_id": 4757, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000176", - "question_id": 4758, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "seven" -}, { - "video_id": "00000962", - "question_id": 4759, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003319", - "question_id": 4760, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003041", - "question_id": 4761, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000753", - "question_id": 4762, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006719", - "question_id": 4763, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006037", - "question_id": 4764, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001316", - "question_id": 4765, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005670", - "question_id": 4769, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007950", - "question_id": 4772, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002838", - "question_id": 4773, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003799", - "question_id": 4774, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002339", - "question_id": 4777, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"last\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00001208", - "question_id": 4778, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00005447", - "question_id": 4779, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002523", - "question_id": 4780, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003213", - "question_id": 4782, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000950", - "question_id": 4783, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004497", - "question_id": 4784, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001406", - "question_id": 4785, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008088", - "question_id": 4786, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008203", - "question_id": 4787, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002311", - "question_id": 4788, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000029", - "question_id": 4789, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00000065", - "question_id": 4791, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001663", - "question_id": 4792, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003483", - "question_id": 4793, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006274", - "question_id": 4794, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001815", - "question_id": 4796, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000146", - "question_id": 4799, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007460", - "question_id": 4802, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008797", - "question_id": 4804, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003043", - "question_id": 4805, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002489", - "question_id": 4806, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002156", - "question_id": 4808, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007444", - "question_id": 4809, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007950", - "question_id": 4810, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00006527", - "question_id": 4813, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001442", - "question_id": 4814, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001803", - "question_id": 4816, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00005264", - "question_id": 4817, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006080", - "question_id": 4818, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005240", - "question_id": 4820, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000963", - "question_id": 4823, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004509", - "question_id": 4824, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006321", - "question_id": 4825, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005346", - "question_id": 4826, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007461", - "question_id": 4827, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000753", - "question_id": 4833, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001249", - "question_id": 4834, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002690", - "question_id": 4835, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003000", - "question_id": 4836, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000459", - "question_id": 4837, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000857", - "question_id": 4840, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001715", - "question_id": 4842, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001323", - "question_id": 4843, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005092", - "question_id": 4844, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008469", - "question_id": 4845, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00008875", - "question_id": 4846, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001694", - "question_id": 4850, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006656", - "question_id": 4851, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00001849", - "question_id": 4852, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000906", - "question_id": 4853, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000371", - "question_id": 4854, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003939", - "question_id": 4855, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000378", - "question_id": 4857, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008669", - "question_id": 4858, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003253", - "question_id": 4860, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003773", - "question_id": 4863, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004321", - "question_id": 4864, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00004224", - "question_id": 4865, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"xylophone\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002700", - "question_id": 4867, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"last\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00005706", - "question_id": 4868, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006231", - "question_id": 4869, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00004420", - "question_id": 4870, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00007039", - "question_id": 4871, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00008944", - "question_id": 4873, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000510", - "question_id": 4874, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001166", - "question_id": 4878, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001953", - "question_id": 4879, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005017", - "question_id": 4880, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007476", - "question_id": 4881, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008934", - "question_id": 4882, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003419", - "question_id": 4883, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007386", - "question_id": 4884, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008349", - "question_id": 4885, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005865", - "question_id": 4886, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000845", - "question_id": 4887, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001143", - "question_id": 4889, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000709", - "question_id": 4890, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006443", - "question_id": 4895, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002483", - "question_id": 4896, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004793", - "question_id": 4898, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003545", - "question_id": 4901, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003040", - "question_id": 4902, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001732", - "question_id": 4904, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003651", - "question_id": 4905, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008162", - "question_id": 4907, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002967", - "question_id": 4908, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"middle\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007863", - "question_id": 4909, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005198", - "question_id": 4910, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004214", - "question_id": 4911, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002381", - "question_id": 4912, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002610", - "question_id": 4914, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008833", - "question_id": 4915, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006735", - "question_id": 4916, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004943", - "question_id": 4917, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"tuba\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004709", - "question_id": 4919, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003248", - "question_id": 4920, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00001365", - "question_id": 4922, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000050", - "question_id": 4923, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002766", - "question_id": 4924, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007063", - "question_id": 4925, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003170", - "question_id": 4926, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005429", - "question_id": 4927, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007794", - "question_id": 4928, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002233", - "question_id": 4930, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005876", - "question_id": 4931, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001823", - "question_id": 4933, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002306", - "question_id": 4936, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"guzheng\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005515", - "question_id": 4937, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000946", - "question_id": 4938, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003394", - "question_id": 4939, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004231", - "question_id": 4943, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001833", - "question_id": 4944, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004297", - "question_id": 4945, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007485", - "question_id": 4947, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00006238", - "question_id": 4949, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00004940", - "question_id": 4950, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001658", - "question_id": 4951, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008369", - "question_id": 4954, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006332", - "question_id": 4955, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007722", - "question_id": 4957, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003586", - "question_id": 4958, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006303", - "question_id": 4960, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007720", - "question_id": 4961, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003546", - "question_id": 4962, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005075", - "question_id": 4965, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002896", - "question_id": 4966, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00007096", - "question_id": 4967, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005703", - "question_id": 4968, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004983", - "question_id": 4969, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006615", - "question_id": 4970, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002733", - "question_id": 4971, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001097", - "question_id": 4972, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00005644", - "question_id": 4973, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007780", - "question_id": 4974, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004113", - "question_id": 4975, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000258", - "question_id": 4977, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001853", - "question_id": 4978, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003530", - "question_id": 4980, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"banjo\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008781", - "question_id": 4982, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004975", - "question_id": 4983, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006208", - "question_id": 4989, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008054", - "question_id": 4990, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007796", - "question_id": 4992, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002413", - "question_id": 4994, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007369", - "question_id": 4995, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000529", - "question_id": 4998, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003107", - "question_id": 5000, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006579", - "question_id": 5002, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004703", - "question_id": 5003, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007510", - "question_id": 5005, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008923", - "question_id": 5010, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000632", - "question_id": 5011, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000632", - "question_id": 5011, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007452", - "question_id": 5012, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00000982", - "question_id": 5013, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005963", - "question_id": 5014, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004357", - "question_id": 5015, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008419", - "question_id": 5016, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000077", - "question_id": 5017, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006041", - "question_id": 5023, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001078", - "question_id": 5024, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00003734", - "question_id": 5027, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001064", - "question_id": 5028, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006577", - "question_id": 5030, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006444", - "question_id": 5031, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008449", - "question_id": 5038, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002044", - "question_id": 5040, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"last\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003966", - "question_id": 5042, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005538", - "question_id": 5044, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001621", - "question_id": 5045, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007684", - "question_id": 5047, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00007036", - "question_id": 5048, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002684", - "question_id": 5051, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005839", - "question_id": 5055, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003617", - "question_id": 5056, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007876", - "question_id": 5057, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007393", - "question_id": 5058, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007306", - "question_id": 5060, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006969", - "question_id": 5062, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008975", - "question_id": 5064, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002923", - "question_id": 5065, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004327", - "question_id": 5066, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005606", - "question_id": 5067, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00005384", - "question_id": 5068, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004631", - "question_id": 5070, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000962", - "question_id": 5071, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007040", - "question_id": 5074, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007264", - "question_id": 5076, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008487", - "question_id": 5077, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000570", - "question_id": 5079, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003087", - "question_id": 5081, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002596", - "question_id": 5083, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003682", - "question_id": 5084, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000294", - "question_id": 5085, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000270", - "question_id": 5086, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000299", - "question_id": 5087, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"fourth\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007071", - "question_id": 5089, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008918", - "question_id": 5090, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004266", - "question_id": 5091, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006650", - "question_id": 5092, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004594", - "question_id": 5093, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005685", - "question_id": 5096, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003502", - "question_id": 5097, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007521", - "question_id": 5101, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003222", - "question_id": 5106, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00001938", - "question_id": 5110, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006825", - "question_id": 5111, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00000821", - "question_id": 5112, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002441", - "question_id": 5113, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007554", - "question_id": 5114, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002405", - "question_id": 5116, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004861", - "question_id": 5117, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00001352", - "question_id": 5118, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000006", - "question_id": 5119, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005140", - "question_id": 5121, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00005884", - "question_id": 5123, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006851", - "question_id": 5125, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007682", - "question_id": 5126, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006578", - "question_id": 5127, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"tuba\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003764", - "question_id": 5129, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003946", - "question_id": 5130, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006786", - "question_id": 5131, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00005218", - "question_id": 5132, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003697", - "question_id": 5133, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008296", - "question_id": 5134, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004658", - "question_id": 5137, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002237", - "question_id": 5138, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000328", - "question_id": 5140, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000867", - "question_id": 5141, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000615", - "question_id": 5142, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007129", - "question_id": 5143, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005557", - "question_id": 5144, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005304", - "question_id": 5145, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"guzheng\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00004423", - "question_id": 5147, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005252", - "question_id": 5148, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003513", - "question_id": 5149, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00000841", - "question_id": 5151, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001580", - "question_id": 5152, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003381", - "question_id": 5153, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006256", - "question_id": 5155, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00005089", - "question_id": 5156, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006697", - "question_id": 5157, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001347", - "question_id": 5158, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007837", - "question_id": 5160, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00006215", - "question_id": 5162, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003015", - "question_id": 5163, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008530", - "question_id": 5164, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00000167", - "question_id": 5167, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001000", - "question_id": 5168, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007963", - "question_id": 5169, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006911", - "question_id": 5170, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004992", - "question_id": 5171, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001272", - "question_id": 5176, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004636", - "question_id": 5177, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003399", - "question_id": 5178, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000831", - "question_id": 5179, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007223", - "question_id": 5182, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003288", - "question_id": 5183, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002739", - "question_id": 5186, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003364", - "question_id": 5187, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001815", - "question_id": 5188, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004897", - "question_id": 5189, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003072", - "question_id": 5190, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006922", - "question_id": 5192, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001854", - "question_id": 5193, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000908", - "question_id": 5194, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004987", - "question_id": 5195, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00001975", - "question_id": 5196, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002045", - "question_id": 5199, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008426", - "question_id": 5202, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007041", - "question_id": 5203, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000349", - "question_id": 5205, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007488", - "question_id": 5207, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005049", - "question_id": 5210, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000781", - "question_id": 5213, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001484", - "question_id": 5214, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"electric_bass\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007633", - "question_id": 5215, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005402", - "question_id": 5217, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006673", - "question_id": 5219, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006253", - "question_id": 5220, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002938", - "question_id": 5221, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004398", - "question_id": 5223, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005701", - "question_id": 5224, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004092", - "question_id": 5225, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003226", - "question_id": 5226, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000852", - "question_id": 5227, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001082", - "question_id": 5228, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004870", - "question_id": 5230, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005581", - "question_id": 5231, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006776", - "question_id": 5232, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003474", - "question_id": 5237, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006271", - "question_id": 5238, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003638", - "question_id": 5243, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008621", - "question_id": 5244, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001027", - "question_id": 5246, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00004250", - "question_id": 5247, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007831", - "question_id": 5248, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004598", - "question_id": 5252, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00008789", - "question_id": 5253, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006895", - "question_id": 5255, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002887", - "question_id": 5257, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007057", - "question_id": 5258, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001204", - "question_id": 5259, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002155", - "question_id": 5260, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001530", - "question_id": 5261, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008317", - "question_id": 5262, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007534", - "question_id": 5263, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"bassoon\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008130", - "question_id": 5264, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005361", - "question_id": 5266, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007581", - "question_id": 5267, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003381", - "question_id": 5271, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006228", - "question_id": 5272, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007820", - "question_id": 5273, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002422", - "question_id": 5274, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007303", - "question_id": 5276, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00008952", - "question_id": 5277, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008318", - "question_id": 5278, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006947", - "question_id": 5279, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002849", - "question_id": 5280, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007564", - "question_id": 5281, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002389", - "question_id": 5283, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006032", - "question_id": 5284, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002442", - "question_id": 5285, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004686", - "question_id": 5286, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002967", - "question_id": 5289, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001112", - "question_id": 5293, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00008349", - "question_id": 5294, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002729", - "question_id": 5295, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008617", - "question_id": 5301, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004225", - "question_id": 5303, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bagpipe\", \"left\", \"congas\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000070", - "question_id": 5305, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"pipa\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00002902", - "question_id": 5307, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003192", - "question_id": 5308, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000092", - "question_id": 5310, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007874", - "question_id": 5312, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002235", - "question_id": 5313, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001688", - "question_id": 5315, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003766", - "question_id": 5318, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008423", - "question_id": 5319, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000041", - "question_id": 5320, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008197", - "question_id": 5322, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003549", - "question_id": 5323, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008330", - "question_id": 5324, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001902", - "question_id": 5325, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001910", - "question_id": 5326, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003249", - "question_id": 5327, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001204", - "question_id": 5328, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002589", - "question_id": 5330, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002242", - "question_id": 5331, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"ukulele\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003005", - "question_id": 5332, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001722", - "question_id": 5334, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006566", - "question_id": 5335, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00004352", - "question_id": 5337, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00003663", - "question_id": 5338, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007935", - "question_id": 5340, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004889", - "question_id": 5341, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002895", - "question_id": 5342, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005516", - "question_id": 5343, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006995", - "question_id": 5344, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004877", - "question_id": 5347, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007114", - "question_id": 5348, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00002063", - "question_id": 5350, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004681", - "question_id": 5351, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004765", - "question_id": 5352, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004176", - "question_id": 5353, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00004726", - "question_id": 5357, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003301", - "question_id": 5359, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002210", - "question_id": 5361, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007903", - "question_id": 5364, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000759", - "question_id": 5365, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003422", - "question_id": 5366, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007611", - "question_id": 5368, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006391", - "question_id": 5369, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008867", - "question_id": 5373, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003201", - "question_id": 5375, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008230", - "question_id": 5376, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006551", - "question_id": 5378, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006487", - "question_id": 5379, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006828", - "question_id": 5380, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003073", - "question_id": 5382, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005924", - "question_id": 5383, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007093", - "question_id": 5384, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004476", - "question_id": 5386, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006922", - "question_id": 5387, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001205", - "question_id": 5388, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002783", - "question_id": 5390, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"acoustic_guitar\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000981", - "question_id": 5391, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003140", - "question_id": 5392, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007647", - "question_id": 5393, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00004857", - "question_id": 5395, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00003799", - "question_id": 5396, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005857", - "question_id": 5398, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002949", - "question_id": 5399, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007818", - "question_id": 5400, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00003264", - "question_id": 5402, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"middle\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007302", - "question_id": 5403, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003551", - "question_id": 5408, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003618", - "question_id": 5410, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004880", - "question_id": 5413, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006418", - "question_id": 5414, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004109", - "question_id": 5415, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002696", - "question_id": 5416, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003888", - "question_id": 5417, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007360", - "question_id": 5418, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005986", - "question_id": 5419, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008702", - "question_id": 5420, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008560", - "question_id": 5421, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003314", - "question_id": 5423, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004843", - "question_id": 5424, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005732", - "question_id": 5425, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001430", - "question_id": 5426, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004816", - "question_id": 5428, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007690", - "question_id": 5429, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004614", - "question_id": 5430, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008676", - "question_id": 5431, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007505", - "question_id": 5434, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006787", - "question_id": 5435, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004131", - "question_id": 5437, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004033", - "question_id": 5438, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007541", - "question_id": 5440, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008416", - "question_id": 5441, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004396", - "question_id": 5442, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005136", - "question_id": 5443, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000732", - "question_id": 5444, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004766", - "question_id": 5445, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001587", - "question_id": 5446, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008338", - "question_id": 5447, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007072", - "question_id": 5449, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007630", - "question_id": 5450, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00005253", - "question_id": 5451, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007054", - "question_id": 5455, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006322", - "question_id": 5456, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000245", - "question_id": 5457, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006189", - "question_id": 5458, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00008779", - "question_id": 5459, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004945", - "question_id": 5460, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000616", - "question_id": 5462, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006864", - "question_id": 5463, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007550", - "question_id": 5465, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007493", - "question_id": 5466, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000150", - "question_id": 5467, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000827", - "question_id": 5468, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007657", - "question_id": 5470, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008004", - "question_id": 5471, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000041", - "question_id": 5472, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001636", - "question_id": 5475, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007905", - "question_id": 5477, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003304", - "question_id": 5479, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000559", - "question_id": 5480, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005589", - "question_id": 5483, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006142", - "question_id": 5484, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "nine" -}, { - "video_id": "00002035", - "question_id": 5485, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001303", - "question_id": 5489, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005745", - "question_id": 5490, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003431", - "question_id": 5491, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007749", - "question_id": 5492, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001076", - "question_id": 5493, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001935", - "question_id": 5495, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007565", - "question_id": 5496, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004632", - "question_id": 5498, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004140", - "question_id": 5500, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00000399", - "question_id": 5502, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008612", - "question_id": 5504, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005716", - "question_id": 5506, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004967", - "question_id": 5507, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006901", - "question_id": 5508, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000520", - "question_id": 5509, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006928", - "question_id": 5510, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007905", - "question_id": 5511, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001787", - "question_id": 5514, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006160", - "question_id": 5515, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005628", - "question_id": 5516, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008273", - "question_id": 5517, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000970", - "question_id": 5520, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000004", - "question_id": 5521, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001210", - "question_id": 5522, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007492", - "question_id": 5523, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008433", - "question_id": 5524, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006646", - "question_id": 5525, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "eight" -}, { - "video_id": "00007082", - "question_id": 5526, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006717", - "question_id": 5528, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002348", - "question_id": 5529, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006376", - "question_id": 5534, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00007870", - "question_id": 5536, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"middle\", \"banjo\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000936", - "question_id": 5537, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005069", - "question_id": 5539, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001588", - "question_id": 5540, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008853", - "question_id": 5541, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003778", - "question_id": 5542, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005563", - "question_id": 5547, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00006004", - "question_id": 5548, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004146", - "question_id": 5549, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003564", - "question_id": 5551, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006395", - "question_id": 5553, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008814", - "question_id": 5554, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003146", - "question_id": 5555, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001142", - "question_id": 5556, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007838", - "question_id": 5557, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004616", - "question_id": 5558, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006877", - "question_id": 5559, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002025", - "question_id": 5561, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008691", - "question_id": 5562, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00005377", - "question_id": 5563, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002140", - "question_id": 5566, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00008731", - "question_id": 5568, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002345", - "question_id": 5569, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008446", - "question_id": 5571, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00005262", - "question_id": 5572, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004556", - "question_id": 5573, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004654", - "question_id": 5574, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002349", - "question_id": 5576, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001533", - "question_id": 5577, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003856", - "question_id": 5579, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00003142", - "question_id": 5581, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002207", - "question_id": 5583, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004208", - "question_id": 5584, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008736", - "question_id": 5585, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001646", - "question_id": 5589, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008129", - "question_id": 5590, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001908", - "question_id": 5592, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001908", - "question_id": 5592, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002439", - "question_id": 5593, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000485", - "question_id": 5594, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001237", - "question_id": 5599, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002168", - "question_id": 5605, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006497", - "question_id": 5606, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001118", - "question_id": 5608, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008972", - "question_id": 5610, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00007569", - "question_id": 5611, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005950", - "question_id": 5612, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008802", - "question_id": 5613, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000931", - "question_id": 5615, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006000", - "question_id": 5616, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006644", - "question_id": 5620, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003700", - "question_id": 5621, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008645", - "question_id": 5623, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004860", - "question_id": 5624, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000228", - "question_id": 5625, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000155", - "question_id": 5626, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003530", - "question_id": 5629, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000519", - "question_id": 5630, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000585", - "question_id": 5631, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002199", - "question_id": 5632, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006399", - "question_id": 5633, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005969", - "question_id": 5634, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004342", - "question_id": 5636, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003550", - "question_id": 5637, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007539", - "question_id": 5638, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004742", - "question_id": 5639, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003738", - "question_id": 5643, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005971", - "question_id": 5644, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006526", - "question_id": 5645, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002515", - "question_id": 5647, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008390", - "question_id": 5648, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007623", - "question_id": 5650, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002571", - "question_id": 5653, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006112", - "question_id": 5657, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000024", - "question_id": 5661, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008204", - "question_id": 5662, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004722", - "question_id": 5667, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003870", - "question_id": 5669, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005483", - "question_id": 5670, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006048", - "question_id": 5671, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000980", - "question_id": 5674, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004847", - "question_id": 5676, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000941", - "question_id": 5678, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008233", - "question_id": 5681, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002101", - "question_id": 5684, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006181", - "question_id": 5688, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001216", - "question_id": 5689, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000767", - "question_id": 5690, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001452", - "question_id": 5692, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006592", - "question_id": 5693, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007481", - "question_id": 5694, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007061", - "question_id": 5696, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001594", - "question_id": 5697, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004706", - "question_id": 5698, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002731", - "question_id": 5700, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003042", - "question_id": 5701, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006597", - "question_id": 5703, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000405", - "question_id": 5708, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003457", - "question_id": 5709, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008692", - "question_id": 5711, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002034", - "question_id": 5712, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008350", - "question_id": 5714, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002502", - "question_id": 5715, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002335", - "question_id": 5719, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001776", - "question_id": 5720, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008710", - "question_id": 5721, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007627", - "question_id": 5722, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002307", - "question_id": 5723, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008627", - "question_id": 5724, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007159", - "question_id": 5725, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006400", - "question_id": 5726, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006923", - "question_id": 5727, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003286", - "question_id": 5728, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008161", - "question_id": 5729, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004399", - "question_id": 5730, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000289", - "question_id": 5731, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000642", - "question_id": 5732, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007930", - "question_id": 5733, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006392", - "question_id": 5736, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001946", - "question_id": 5737, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001879", - "question_id": 5741, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001879", - "question_id": 5741, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006073", - "question_id": 5743, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006732", - "question_id": 5744, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004045", - "question_id": 5746, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002671", - "question_id": 5747, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008501", - "question_id": 5748, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001598", - "question_id": 5751, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"banjo\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005297", - "question_id": 5752, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005246", - "question_id": 5753, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004986", - "question_id": 5754, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008965", - "question_id": 5755, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003664", - "question_id": 5756, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002982", - "question_id": 5761, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004486", - "question_id": 5762, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000228", - "question_id": 5763, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007130", - "question_id": 5764, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006348", - "question_id": 5765, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003171", - "question_id": 5766, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006699", - "question_id": 5767, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003055", - "question_id": 5769, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002823", - "question_id": 5771, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007863", - "question_id": 5775, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003232", - "question_id": 5777, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002110", - "question_id": 5778, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003624", - "question_id": 5779, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000005", - "question_id": 5782, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"electric_bass\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006851", - "question_id": 5786, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008496", - "question_id": 5787, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005377", - "question_id": 5789, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005076", - "question_id": 5790, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008571", - "question_id": 5792, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003486", - "question_id": 5793, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002009", - "question_id": 5794, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008900", - "question_id": 5795, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001733", - "question_id": 5796, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006521", - "question_id": 5797, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006146", - "question_id": 5799, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006146", - "question_id": 5799, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002874", - "question_id": 5801, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007537", - "question_id": 5802, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006882", - "question_id": 5804, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006203", - "question_id": 5806, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003299", - "question_id": 5807, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002658", - "question_id": 5808, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004406", - "question_id": 5809, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004839", - "question_id": 5812, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008527", - "question_id": 5815, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008720", - "question_id": 5817, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007315", - "question_id": 5821, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000622", - "question_id": 5823, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004281", - "question_id": 5824, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000061", - "question_id": 5826, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"right\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006107", - "question_id": 5828, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004553", - "question_id": 5831, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004802", - "question_id": 5834, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006038", - "question_id": 5839, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007389", - "question_id": 5840, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"banjo\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00002834", - "question_id": 5841, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000419", - "question_id": 5842, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008192", - "question_id": 5843, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001158", - "question_id": 5845, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000405", - "question_id": 5846, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000557", - "question_id": 5847, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000030", - "question_id": 5848, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00007678", - "question_id": 5849, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001857", - "question_id": 5850, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001945", - "question_id": 5851, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006291", - "question_id": 5852, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001928", - "question_id": 5854, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003436", - "question_id": 5857, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005214", - "question_id": 5861, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008798", - "question_id": 5867, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007685", - "question_id": 5868, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007313", - "question_id": 5869, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006069", - "question_id": 5870, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008842", - "question_id": 5871, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006943", - "question_id": 5873, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006193", - "question_id": 5874, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007097", - "question_id": 5875, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00000959", - "question_id": 5876, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000393", - "question_id": 5879, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003763", - "question_id": 5881, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007727", - "question_id": 5883, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "seven" -}, { - "video_id": "00002523", - "question_id": 5886, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002438", - "question_id": 5889, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008805", - "question_id": 5890, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003994", - "question_id": 5891, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007389", - "question_id": 5894, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006665", - "question_id": 5895, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006665", - "question_id": 5895, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001502", - "question_id": 5896, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005365", - "question_id": 5898, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001764", - "question_id": 5899, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002572", - "question_id": 5900, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008509", - "question_id": 5901, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005333", - "question_id": 5903, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008637", - "question_id": 5904, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005820", - "question_id": 5906, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006079", - "question_id": 5907, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008071", - "question_id": 5908, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000891", - "question_id": 5909, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001372", - "question_id": 5910, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006011", - "question_id": 5911, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001298", - "question_id": 5912, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008496", - "question_id": 5915, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006542", - "question_id": 5916, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002464", - "question_id": 5917, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004510", - "question_id": 5918, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002621", - "question_id": 5919, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006913", - "question_id": 5922, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008676", - "question_id": 5924, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006194", - "question_id": 5925, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006850", - "question_id": 5927, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007793", - "question_id": 5928, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006239", - "question_id": 5929, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003120", - "question_id": 5930, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005078", - "question_id": 5931, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005386", - "question_id": 5932, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003827", - "question_id": 5934, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000138", - "question_id": 5935, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001638", - "question_id": 5936, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008016", - "question_id": 5937, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004555", - "question_id": 5939, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004085", - "question_id": 5940, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001341", - "question_id": 5943, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008077", - "question_id": 5944, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004420", - "question_id": 5945, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003942", - "question_id": 5946, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004793", - "question_id": 5947, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007708", - "question_id": 5948, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008602", - "question_id": 5949, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00005605", - "question_id": 5951, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005834", - "question_id": 5955, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002409", - "question_id": 5956, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005647", - "question_id": 5959, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006566", - "question_id": 5960, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002485", - "question_id": 5962, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007607", - "question_id": 5963, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007289", - "question_id": 5964, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006339", - "question_id": 5965, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000716", - "question_id": 5966, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003731", - "question_id": 5967, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006206", - "question_id": 5968, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007596", - "question_id": 5969, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008038", - "question_id": 5970, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006912", - "question_id": 5971, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008664", - "question_id": 5972, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005884", - "question_id": 5973, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003419", - "question_id": 5976, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002901", - "question_id": 5977, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006126", - "question_id": 5979, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001061", - "question_id": 5980, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00007284", - "question_id": 5981, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001336", - "question_id": 5982, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001343", - "question_id": 5983, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001941", - "question_id": 5984, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000267", - "question_id": 5986, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008599", - "question_id": 5989, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002958", - "question_id": 5993, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003549", - "question_id": 5996, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007968", - "question_id": 5997, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001112", - "question_id": 5998, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002411", - "question_id": 6000, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"middle\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005730", - "question_id": 6002, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008411", - "question_id": 6003, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002525", - "question_id": 6004, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008572", - "question_id": 6006, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000315", - "question_id": 6011, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002364", - "question_id": 6018, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005113", - "question_id": 6019, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006322", - "question_id": 6022, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007182", - "question_id": 6025, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003025", - "question_id": 6026, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000265", - "question_id": 6028, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006707", - "question_id": 6030, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004496", - "question_id": 6033, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00002460", - "question_id": 6035, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001946", - "question_id": 6036, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004523", - "question_id": 6037, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006538", - "question_id": 6039, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002408", - "question_id": 6041, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004276", - "question_id": 6043, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000032", - "question_id": 6045, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002058", - "question_id": 6046, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003471", - "question_id": 6047, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004214", - "question_id": 6048, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002376", - "question_id": 6050, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004664", - "question_id": 6051, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007552", - "question_id": 6053, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001258", - "question_id": 6054, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001625", - "question_id": 6055, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003640", - "question_id": 6056, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006805", - "question_id": 6057, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007285", - "question_id": 6059, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008183", - "question_id": 6060, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006494", - "question_id": 6062, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000617", - "question_id": 6063, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008258", - "question_id": 6065, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004915", - "question_id": 6066, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000082", - "question_id": 6067, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000925", - "question_id": 6068, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007678", - "question_id": 6069, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007024", - "question_id": 6071, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002314", - "question_id": 6077, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005913", - "question_id": 6078, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004174", - "question_id": 6079, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002060", - "question_id": 6081, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006805", - "question_id": 6082, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008383", - "question_id": 6086, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"pipa\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001261", - "question_id": 6087, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007831", - "question_id": 6088, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003837", - "question_id": 6093, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003082", - "question_id": 6094, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001626", - "question_id": 6095, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000218", - "question_id": 6097, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008124", - "question_id": 6098, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005936", - "question_id": 6100, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000535", - "question_id": 6101, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005445", - "question_id": 6102, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000578", - "question_id": 6103, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002905", - "question_id": 6105, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001885", - "question_id": 6106, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005672", - "question_id": 6109, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00007436", - "question_id": 6110, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008188", - "question_id": 6112, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"suona\", \"right\", \"pipa\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002947", - "question_id": 6113, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00007088", - "question_id": 6114, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007036", - "question_id": 6115, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000169", - "question_id": 6117, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002707", - "question_id": 6119, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004337", - "question_id": 6120, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005083", - "question_id": 6121, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000143", - "question_id": 6122, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006977", - "question_id": 6124, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004421", - "question_id": 6125, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001300", - "question_id": 6126, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003475", - "question_id": 6128, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008128", - "question_id": 6129, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005246", - "question_id": 6130, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005980", - "question_id": 6137, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003420", - "question_id": 6138, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002285", - "question_id": 6139, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005865", - "question_id": 6140, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000430", - "question_id": 6141, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00008007", - "question_id": 6142, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002696", - "question_id": 6144, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008801", - "question_id": 6145, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007450", - "question_id": 6147, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007639", - "question_id": 6149, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007844", - "question_id": 6152, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004007", - "question_id": 6155, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003121", - "question_id": 6156, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006276", - "question_id": 6157, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003442", - "question_id": 6161, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00006375", - "question_id": 6162, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004455", - "question_id": 6163, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005932", - "question_id": 6164, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005609", - "question_id": 6165, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007573", - "question_id": 6166, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003346", - "question_id": 6168, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001030", - "question_id": 6169, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007512", - "question_id": 6171, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006228", - "question_id": 6172, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000719", - "question_id": 6174, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00007913", - "question_id": 6175, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002609", - "question_id": 6176, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006024", - "question_id": 6178, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004434", - "question_id": 6179, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008176", - "question_id": 6180, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00005980", - "question_id": 6181, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000945", - "question_id": 6183, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000385", - "question_id": 6184, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004833", - "question_id": 6185, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001212", - "question_id": 6188, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002642", - "question_id": 6189, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008602", - "question_id": 6193, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008216", - "question_id": 6194, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006504", - "question_id": 6195, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006626", - "question_id": 6196, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001557", - "question_id": 6198, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005191", - "question_id": 6199, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008333", - "question_id": 6200, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006531", - "question_id": 6201, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006665", - "question_id": 6203, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002923", - "question_id": 6204, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006139", - "question_id": 6206, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007015", - "question_id": 6207, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008845", - "question_id": 6208, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000950", - "question_id": 6210, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002666", - "question_id": 6211, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008185", - "question_id": 6215, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"xylophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003481", - "question_id": 6216, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004362", - "question_id": 6218, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005549", - "question_id": 6219, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007275", - "question_id": 6220, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006459", - "question_id": 6221, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008626", - "question_id": 6222, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008197", - "question_id": 6224, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006996", - "question_id": 6226, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007227", - "question_id": 6227, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000225", - "question_id": 6229, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004292", - "question_id": 6230, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004583", - "question_id": 6231, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003979", - "question_id": 6232, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004660", - "question_id": 6233, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002458", - "question_id": 6234, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008684", - "question_id": 6235, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006813", - "question_id": 6236, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005097", - "question_id": 6239, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007162", - "question_id": 6242, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007539", - "question_id": 6244, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000252", - "question_id": 6248, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003807", - "question_id": 6249, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"tuba\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005420", - "question_id": 6250, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00000466", - "question_id": 6251, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000560", - "question_id": 6252, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007461", - "question_id": 6253, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002621", - "question_id": 6254, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007070", - "question_id": 6255, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002997", - "question_id": 6256, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001622", - "question_id": 6257, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000670", - "question_id": 6258, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001410", - "question_id": 6259, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008021", - "question_id": 6261, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007005", - "question_id": 6264, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007165", - "question_id": 6265, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001556", - "question_id": 6267, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00008366", - "question_id": 6268, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001227", - "question_id": 6269, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00006012", - "question_id": 6270, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006574", - "question_id": 6271, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000996", - "question_id": 6276, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002941", - "question_id": 6277, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"right\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008864", - "question_id": 6279, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007303", - "question_id": 6280, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00005952", - "question_id": 6283, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001067", - "question_id": 6285, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007362", - "question_id": 6286, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005394", - "question_id": 6289, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002411", - "question_id": 6291, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001607", - "question_id": 6292, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000399", - "question_id": 6294, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000176", - "question_id": 6298, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002489", - "question_id": 6302, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008698", - "question_id": 6304, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006829", - "question_id": 6305, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003415", - "question_id": 6307, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004408", - "question_id": 6310, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007629", - "question_id": 6312, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000866", - "question_id": 6314, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00002452", - "question_id": 6315, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004075", - "question_id": 6316, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001817", - "question_id": 6317, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005487", - "question_id": 6319, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005903", - "question_id": 6320, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001635", - "question_id": 6322, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002128", - "question_id": 6323, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002612", - "question_id": 6325, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000160", - "question_id": 6326, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006358", - "question_id": 6329, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005285", - "question_id": 6330, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007631", - "question_id": 6331, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004055", - "question_id": 6333, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008476", - "question_id": 6335, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"banjo\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000205", - "question_id": 6336, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001741", - "question_id": 6337, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006766", - "question_id": 6340, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005189", - "question_id": 6341, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003168", - "question_id": 6346, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008565", - "question_id": 6349, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008977", - "question_id": 6350, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00002200", - "question_id": 6351, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"accordion\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00007887", - "question_id": 6352, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002837", - "question_id": 6355, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"right\", \"banjo\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002837", - "question_id": 6355, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"right\", \"banjo\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005017", - "question_id": 6360, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007995", - "question_id": 6362, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004396", - "question_id": 6363, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008688", - "question_id": 6364, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000328", - "question_id": 6366, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000530", - "question_id": 6367, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003447", - "question_id": 6369, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007312", - "question_id": 6370, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000579", - "question_id": 6372, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007700", - "question_id": 6373, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001256", - "question_id": 6374, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004795", - "question_id": 6375, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000195", - "question_id": 6376, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007064", - "question_id": 6377, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006565", - "question_id": 6379, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002870", - "question_id": 6380, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006777", - "question_id": 6381, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004158", - "question_id": 6383, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008886", - "question_id": 6388, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003332", - "question_id": 6389, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006425", - "question_id": 6390, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003203", - "question_id": 6391, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00006089", - "question_id": 6393, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000976", - "question_id": 6394, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002655", - "question_id": 6395, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"guzheng\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00001021", - "question_id": 6398, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008619", - "question_id": 6401, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002926", - "question_id": 6402, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001757", - "question_id": 6403, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006697", - "question_id": 6404, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006373", - "question_id": 6405, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001392", - "question_id": 6406, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005124", - "question_id": 6407, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005887", - "question_id": 6409, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002205", - "question_id": 6412, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002913", - "question_id": 6414, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008060", - "question_id": 6416, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005611", - "question_id": 6418, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"flute\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004742", - "question_id": 6420, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001331", - "question_id": 6427, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007532", - "question_id": 6428, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001528", - "question_id": 6431, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000006", - "question_id": 6433, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007619", - "question_id": 6437, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001933", - "question_id": 6439, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004992", - "question_id": 6440, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003717", - "question_id": 6441, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008918", - "question_id": 6442, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001779", - "question_id": 6444, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00006927", - "question_id": 6445, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006885", - "question_id": 6446, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005878", - "question_id": 6452, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005133", - "question_id": 6453, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007058", - "question_id": 6454, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005682", - "question_id": 6458, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005682", - "question_id": 6458, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006147", - "question_id": 6461, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000017", - "question_id": 6462, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007372", - "question_id": 6464, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000130", - "question_id": 6465, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008405", - "question_id": 6466, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005558", - "question_id": 6470, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004217", - "question_id": 6471, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003750", - "question_id": 6472, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008331", - "question_id": 6475, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004797", - "question_id": 6477, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007572", - "question_id": 6483, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002330", - "question_id": 6484, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006401", - "question_id": 6485, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005014", - "question_id": 6488, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002004", - "question_id": 6490, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00008568", - "question_id": 6491, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00008843", - "question_id": 6492, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005180", - "question_id": 6493, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006125", - "question_id": 6496, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00007420", - "question_id": 6498, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000715", - "question_id": 6499, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006770", - "question_id": 6501, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007423", - "question_id": 6502, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00001637", - "question_id": 6505, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002757", - "question_id": 6506, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004379", - "question_id": 6507, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008352", - "question_id": 6508, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001352", - "question_id": 6509, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001485", - "question_id": 6510, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004381", - "question_id": 6512, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008792", - "question_id": 6513, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004900", - "question_id": 6514, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006788", - "question_id": 6515, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00007007", - "question_id": 6516, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008892", - "question_id": 6518, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00008864", - "question_id": 6519, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003607", - "question_id": 6520, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008710", - "question_id": 6523, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006641", - "question_id": 6525, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002838", - "question_id": 6526, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003068", - "question_id": 6527, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002471", - "question_id": 6529, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00000599", - "question_id": 6530, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006497", - "question_id": 6531, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003631", - "question_id": 6532, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005074", - "question_id": 6533, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008914", - "question_id": 6534, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001479", - "question_id": 6535, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006819", - "question_id": 6536, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005792", - "question_id": 6537, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006354", - "question_id": 6538, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00000048", - "question_id": 6539, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003200", - "question_id": 6541, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007906", - "question_id": 6542, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005559", - "question_id": 6544, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008793", - "question_id": 6545, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006105", - "question_id": 6546, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001850", - "question_id": 6547, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004635", - "question_id": 6548, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00007592", - "question_id": 6549, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000220", - "question_id": 6552, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00008024", - "question_id": 6553, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002525", - "question_id": 6554, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00006814", - "question_id": 6557, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001167", - "question_id": 6558, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001413", - "question_id": 6559, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002287", - "question_id": 6562, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001899", - "question_id": 6564, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008474", - "question_id": 6565, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003025", - "question_id": 6567, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000822", - "question_id": 6568, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00000171", - "question_id": 6570, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003021", - "question_id": 6571, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003782", - "question_id": 6572, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006276", - "question_id": 6574, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003826", - "question_id": 6575, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001819", - "question_id": 6576, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003055", - "question_id": 6577, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005621", - "question_id": 6579, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001680", - "question_id": 6581, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00004807", - "question_id": 6582, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005547", - "question_id": 6583, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007629", - "question_id": 6584, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001252", - "question_id": 6586, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002441", - "question_id": 6588, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006298", - "question_id": 6589, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003181", - "question_id": 6592, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002799", - "question_id": 6593, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005054", - "question_id": 6594, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003653", - "question_id": 6595, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008152", - "question_id": 6596, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001001", - "question_id": 6597, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001442", - "question_id": 6598, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001148", - "question_id": 6599, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00000607", - "question_id": 6600, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001971", - "question_id": 6601, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"clarinet\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007956", - "question_id": 6602, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004472", - "question_id": 6603, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00006298", - "question_id": 6604, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007826", - "question_id": 6605, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006514", - "question_id": 6607, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007450", - "question_id": 6608, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005066", - "question_id": 6609, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006071", - "question_id": 6610, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008275", - "question_id": 6611, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002838", - "question_id": 6612, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003225", - "question_id": 6613, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002158", - "question_id": 6614, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008683", - "question_id": 6619, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006614", - "question_id": 6625, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00001520", - "question_id": 6626, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001466", - "question_id": 6627, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006946", - "question_id": 6628, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006065", - "question_id": 6629, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002304", - "question_id": 6630, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007505", - "question_id": 6631, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006418", - "question_id": 6632, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002971", - "question_id": 6633, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008020", - "question_id": 6634, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002323", - "question_id": 6635, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008675", - "question_id": 6636, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006900", - "question_id": 6637, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001216", - "question_id": 6638, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005872", - "question_id": 6639, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00003108", - "question_id": 6640, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001256", - "question_id": 6642, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00004090", - "question_id": 6643, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006822", - "question_id": 6644, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001863", - "question_id": 6649, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007590", - "question_id": 6652, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004741", - "question_id": 6653, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00000495", - "question_id": 6654, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005867", - "question_id": 6658, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"clarinet\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005363", - "question_id": 6663, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004285", - "question_id": 6664, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003286", - "question_id": 6666, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004308", - "question_id": 6668, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004940", - "question_id": 6669, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002060", - "question_id": 6670, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002039", - "question_id": 6671, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002072", - "question_id": 6672, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004737", - "question_id": 6674, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005172", - "question_id": 6676, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007614", - "question_id": 6677, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00000050", - "question_id": 6679, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002514", - "question_id": 6683, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005304", - "question_id": 6684, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00005323", - "question_id": 6685, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000520", - "question_id": 6687, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007998", - "question_id": 6688, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"last\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00002165", - "question_id": 6689, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003893", - "question_id": 6690, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008483", - "question_id": 6691, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00008706", - "question_id": 6692, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006384", - "question_id": 6693, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006096", - "question_id": 6694, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007796", - "question_id": 6695, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003712", - "question_id": 6696, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006234", - "question_id": 6698, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000313", - "question_id": 6699, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000019", - "question_id": 6701, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006812", - "question_id": 6702, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006679", - "question_id": 6706, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000321", - "question_id": 6708, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00007863", - "question_id": 6710, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00005990", - "question_id": 6711, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008882", - "question_id": 6713, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000532", - "question_id": 6715, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008014", - "question_id": 6716, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006846", - "question_id": 6717, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008036", - "question_id": 6718, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003878", - "question_id": 6719, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001426", - "question_id": 6722, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004449", - "question_id": 6723, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001592", - "question_id": 6726, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008765", - "question_id": 6730, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006239", - "question_id": 6731, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001720", - "question_id": 6732, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005017", - "question_id": 6736, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001265", - "question_id": 6737, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000364", - "question_id": 6739, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004214", - "question_id": 6741, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004192", - "question_id": 6743, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001906", - "question_id": 6744, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00001098", - "question_id": 6745, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002660", - "question_id": 6746, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006421", - "question_id": 6747, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008871", - "question_id": 6749, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00001957", - "question_id": 6750, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003746", - "question_id": 6753, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002705", - "question_id": 6754, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004173", - "question_id": 6755, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005534", - "question_id": 6756, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002650", - "question_id": 6757, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000731", - "question_id": 6758, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000335", - "question_id": 6759, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000465", - "question_id": 6761, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004529", - "question_id": 6763, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001992", - "question_id": 6764, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004535", - "question_id": 6765, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00004895", - "question_id": 6766, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006145", - "question_id": 6767, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008699", - "question_id": 6770, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000059", - "question_id": 6771, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00006757", - "question_id": 6772, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002406", - "question_id": 6773, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002814", - "question_id": 6774, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004153", - "question_id": 6775, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002284", - "question_id": 6776, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007506", - "question_id": 6777, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003140", - "question_id": 6779, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005768", - "question_id": 6781, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004866", - "question_id": 6782, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007464", - "question_id": 6784, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008553", - "question_id": 6785, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004753", - "question_id": 6789, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002258", - "question_id": 6790, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00002013", - "question_id": 6793, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00008063", - "question_id": 6795, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002498", - "question_id": 6797, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007159", - "question_id": 6798, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007446", - "question_id": 6799, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005486", - "question_id": 6801, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004506", - "question_id": 6802, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004709", - "question_id": 6804, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003212", - "question_id": 6805, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007919", - "question_id": 6806, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00006802", - "question_id": 6807, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002089", - "question_id": 6808, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00000364", - "question_id": 6809, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005482", - "question_id": 6810, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004474", - "question_id": 6811, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000637", - "question_id": 6812, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003745", - "question_id": 6814, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005861", - "question_id": 6816, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002102", - "question_id": 6817, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007018", - "question_id": 6818, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002286", - "question_id": 6819, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007082", - "question_id": 6820, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007226", - "question_id": 6822, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006561", - "question_id": 6823, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007943", - "question_id": 6826, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003194", - "question_id": 6828, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00005800", - "question_id": 6831, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003678", - "question_id": 6832, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005852", - "question_id": 6836, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001849", - "question_id": 6837, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006761", - "question_id": 6838, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003185", - "question_id": 6839, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003583", - "question_id": 6840, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004990", - "question_id": 6842, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004960", - "question_id": 6843, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000459", - "question_id": 6846, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"right\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001917", - "question_id": 6847, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006965", - "question_id": 6849, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004792", - "question_id": 6851, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007628", - "question_id": 6852, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00007246", - "question_id": 6855, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004362", - "question_id": 6856, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008607", - "question_id": 6857, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007350", - "question_id": 6858, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008236", - "question_id": 6859, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007673", - "question_id": 6860, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003283", - "question_id": 6861, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008159", - "question_id": 6862, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007662", - "question_id": 6864, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00006342", - "question_id": 6867, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002039", - "question_id": 6869, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007962", - "question_id": 6871, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003956", - "question_id": 6873, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"bassoon\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005021", - "question_id": 6875, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"last\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00006855", - "question_id": 6877, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007167", - "question_id": 6878, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003825", - "question_id": 6879, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007382", - "question_id": 6880, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004319", - "question_id": 6882, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"flute\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004551", - "question_id": 6883, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008355", - "question_id": 6884, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007427", - "question_id": 6885, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005127", - "question_id": 6890, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006104", - "question_id": 6891, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000722", - "question_id": 6893, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003855", - "question_id": 6895, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008590", - "question_id": 6896, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002849", - "question_id": 6898, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002806", - "question_id": 6899, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000898", - "question_id": 6902, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004089", - "question_id": 6904, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006862", - "question_id": 6905, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004422", - "question_id": 6906, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002204", - "question_id": 6907, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004678", - "question_id": 6908, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005804", - "question_id": 6910, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000014", - "question_id": 6913, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004841", - "question_id": 6914, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000405", - "question_id": 6915, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006004", - "question_id": 6919, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002345", - "question_id": 6920, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005107", - "question_id": 6926, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007232", - "question_id": 6929, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008549", - "question_id": 6930, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007299", - "question_id": 6931, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001000", - "question_id": 6932, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005256", - "question_id": 6933, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005524", - "question_id": 6934, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00002558", - "question_id": 6936, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005408", - "question_id": 6938, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006731", - "question_id": 6939, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00005861", - "question_id": 6940, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00001798", - "question_id": 6942, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008846", - "question_id": 6943, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007439", - "question_id": 6945, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008848", - "question_id": 6946, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008926", - "question_id": 6947, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004899", - "question_id": 6948, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000842", - "question_id": 6949, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000658", - "question_id": 6950, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001544", - "question_id": 6951, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005778", - "question_id": 6952, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001483", - "question_id": 6953, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001550", - "question_id": 6954, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00000078", - "question_id": 6955, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00007827", - "question_id": 6956, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000157", - "question_id": 6957, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000976", - "question_id": 6959, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005234", - "question_id": 6960, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001193", - "question_id": 6961, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003107", - "question_id": 6962, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004386", - "question_id": 6963, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003527", - "question_id": 6966, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000426", - "question_id": 6967, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00004383", - "question_id": 6970, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005639", - "question_id": 6971, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00005047", - "question_id": 6972, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004557", - "question_id": 6974, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00004418", - "question_id": 6978, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003092", - "question_id": 6980, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004408", - "question_id": 6982, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006516", - "question_id": 6984, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002868", - "question_id": 6985, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008692", - "question_id": 6988, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002113", - "question_id": 6989, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007403", - "question_id": 6990, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"cello\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004102", - "question_id": 6994, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003837", - "question_id": 6995, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007177", - "question_id": 6997, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00007650", - "question_id": 6998, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"last\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00001714", - "question_id": 6999, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008582", - "question_id": 7000, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006996", - "question_id": 7002, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002123", - "question_id": 7003, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005194", - "question_id": 7004, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006744", - "question_id": 7007, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003178", - "question_id": 7008, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007610", - "question_id": 7011, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004481", - "question_id": 7012, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001752", - "question_id": 7014, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008004", - "question_id": 7017, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007483", - "question_id": 7018, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008298", - "question_id": 7020, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005437", - "question_id": 7022, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005019", - "question_id": 7023, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004459", - "question_id": 7024, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000968", - "question_id": 7028, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001612", - "question_id": 7033, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001612", - "question_id": 7033, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005602", - "question_id": 7034, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002229", - "question_id": 7035, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001143", - "question_id": 7036, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004830", - "question_id": 7038, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00008211", - "question_id": 7040, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008726", - "question_id": 7044, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003956", - "question_id": 7046, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007901", - "question_id": 7048, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005009", - "question_id": 7049, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004063", - "question_id": 7050, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002951", - "question_id": 7051, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003127", - "question_id": 7052, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005824", - "question_id": 7053, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007898", - "question_id": 7055, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006525", - "question_id": 7056, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007574", - "question_id": 7057, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007078", - "question_id": 7060, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000357", - "question_id": 7063, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00000329", - "question_id": 7064, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00000329", - "question_id": 7064, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007718", - "question_id": 7065, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007622", - "question_id": 7066, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008440", - "question_id": 7067, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004858", - "question_id": 7068, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006170", - "question_id": 7070, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004979", - "question_id": 7071, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003521", - "question_id": 7072, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005125", - "question_id": 7073, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001958", - "question_id": 7074, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00000797", - "question_id": 7075, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002697", - "question_id": 7078, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008382", - "question_id": 7080, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004159", - "question_id": 7081, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003248", - "question_id": 7082, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001040", - "question_id": 7084, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006881", - "question_id": 7086, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001313", - "question_id": 7087, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008825", - "question_id": 7089, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001488", - "question_id": 7090, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00003365", - "question_id": 7092, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003012", - "question_id": 7093, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004480", - "question_id": 7094, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007316", - "question_id": 7095, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002193", - "question_id": 7096, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007813", - "question_id": 7097, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007394", - "question_id": 7098, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001368", - "question_id": 7099, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003716", - "question_id": 7100, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003454", - "question_id": 7101, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002126", - "question_id": 7103, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008330", - "question_id": 7106, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002067", - "question_id": 7109, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008638", - "question_id": 7110, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006325", - "question_id": 7114, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007845", - "question_id": 7115, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007200", - "question_id": 7116, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003277", - "question_id": 7117, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005112", - "question_id": 7118, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008154", - "question_id": 7119, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008725", - "question_id": 7121, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007098", - "question_id": 7123, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004445", - "question_id": 7126, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007116", - "question_id": 7127, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000706", - "question_id": 7128, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008669", - "question_id": 7130, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004833", - "question_id": 7134, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002960", - "question_id": 7140, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003506", - "question_id": 7141, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001412", - "question_id": 7142, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002336", - "question_id": 7144, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003616", - "question_id": 7145, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008203", - "question_id": 7146, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002320", - "question_id": 7147, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004651", - "question_id": 7148, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008177", - "question_id": 7150, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006561", - "question_id": 7152, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004659", - "question_id": 7153, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002810", - "question_id": 7154, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008401", - "question_id": 7155, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000083", - "question_id": 7156, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002884", - "question_id": 7157, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008813", - "question_id": 7158, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001685", - "question_id": 7159, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003469", - "question_id": 7160, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00008088", - "question_id": 7161, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006525", - "question_id": 7165, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005305", - "question_id": 7167, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006155", - "question_id": 7168, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005510", - "question_id": 7169, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003651", - "question_id": 7170, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006001", - "question_id": 7171, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003892", - "question_id": 7172, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001408", - "question_id": 7173, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003054", - "question_id": 7176, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003112", - "question_id": 7177, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002553", - "question_id": 7178, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002013", - "question_id": 7181, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004102", - "question_id": 7183, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002089", - "question_id": 7186, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001164", - "question_id": 7188, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000715", - "question_id": 7189, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000869", - "question_id": 7190, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000120", - "question_id": 7191, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006328", - "question_id": 7192, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006248", - "question_id": 7193, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008482", - "question_id": 7194, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005999", - "question_id": 7196, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005404", - "question_id": 7197, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007087", - "question_id": 7201, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004010", - "question_id": 7202, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004097", - "question_id": 7203, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008878", - "question_id": 7204, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007712", - "question_id": 7205, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004267", - "question_id": 7207, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003449", - "question_id": 7208, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007690", - "question_id": 7210, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003258", - "question_id": 7211, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005542", - "question_id": 7212, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005929", - "question_id": 7215, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003417", - "question_id": 7216, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000420", - "question_id": 7217, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008527", - "question_id": 7218, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000114", - "question_id": 7221, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00000717", - "question_id": 7223, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002714", - "question_id": 7224, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004834", - "question_id": 7226, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006436", - "question_id": 7227, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003664", - "question_id": 7230, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001067", - "question_id": 7232, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001320", - "question_id": 7233, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006079", - "question_id": 7234, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007595", - "question_id": 7235, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00008160", - "question_id": 7236, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004981", - "question_id": 7238, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007991", - "question_id": 7239, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007947", - "question_id": 7240, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008663", - "question_id": 7241, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000094", - "question_id": 7242, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001583", - "question_id": 7243, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004593", - "question_id": 7244, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007263", - "question_id": 7247, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004159", - "question_id": 7249, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002161", - "question_id": 7254, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008024", - "question_id": 7256, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002814", - "question_id": 7258, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008978", - "question_id": 7261, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004423", - "question_id": 7262, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004695", - "question_id": 7263, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007145", - "question_id": 7264, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002101", - "question_id": 7265, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003462", - "question_id": 7269, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006076", - "question_id": 7271, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001646", - "question_id": 7272, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005538", - "question_id": 7273, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007093", - "question_id": 7274, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007574", - "question_id": 7276, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003372", - "question_id": 7277, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000958", - "question_id": 7279, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001132", - "question_id": 7281, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00007995", - "question_id": 7282, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007929", - "question_id": 7283, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005929", - "question_id": 7286, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008906", - "question_id": 7287, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008179", - "question_id": 7288, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002794", - "question_id": 7289, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008270", - "question_id": 7290, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008558", - "question_id": 7291, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000504", - "question_id": 7292, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007831", - "question_id": 7295, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001195", - "question_id": 7296, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001928", - "question_id": 7298, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003442", - "question_id": 7299, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001314", - "question_id": 7300, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005472", - "question_id": 7301, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006459", - "question_id": 7302, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006061", - "question_id": 7305, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002213", - "question_id": 7306, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006283", - "question_id": 7307, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004884", - "question_id": 7308, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007138", - "question_id": 7309, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006343", - "question_id": 7310, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007114", - "question_id": 7311, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00002709", - "question_id": 7312, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00005908", - "question_id": 7314, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001563", - "question_id": 7315, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006634", - "question_id": 7316, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002602", - "question_id": 7317, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003985", - "question_id": 7318, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004583", - "question_id": 7319, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00001591", - "question_id": 7321, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008580", - "question_id": 7322, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002069", - "question_id": 7323, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001268", - "question_id": 7324, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007564", - "question_id": 7325, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006970", - "question_id": 7326, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006995", - "question_id": 7328, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006104", - "question_id": 7329, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002768", - "question_id": 7330, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001430", - "question_id": 7331, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000184", - "question_id": 7332, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001127", - "question_id": 7333, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000737", - "question_id": 7335, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002724", - "question_id": 7336, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00003893", - "question_id": 7337, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003782", - "question_id": 7338, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001703", - "question_id": 7339, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000430", - "question_id": 7340, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003651", - "question_id": 7344, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006607", - "question_id": 7345, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005257", - "question_id": 7346, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008886", - "question_id": 7348, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004859", - "question_id": 7351, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008468", - "question_id": 7355, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001999", - "question_id": 7359, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005704", - "question_id": 7360, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004860", - "question_id": 7361, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001933", - "question_id": 7363, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007181", - "question_id": 7364, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002644", - "question_id": 7365, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008944", - "question_id": 7366, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004817", - "question_id": 7371, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00004576", - "question_id": 7372, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007899", - "question_id": 7373, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007294", - "question_id": 7374, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005809", - "question_id": 7375, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004633", - "question_id": 7376, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00003384", - "question_id": 7377, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00001336", - "question_id": 7378, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002877", - "question_id": 7379, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008414", - "question_id": 7380, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006050", - "question_id": 7381, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005150", - "question_id": 7385, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007708", - "question_id": 7388, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"drum\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001482", - "question_id": 7390, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000143", - "question_id": 7391, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007816", - "question_id": 7392, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000192", - "question_id": 7393, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004533", - "question_id": 7394, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003860", - "question_id": 7395, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007008", - "question_id": 7396, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006631", - "question_id": 7397, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002568", - "question_id": 7400, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000807", - "question_id": 7401, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005498", - "question_id": 7403, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005484", - "question_id": 7404, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00006035", - "question_id": 7406, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004605", - "question_id": 7409, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007271", - "question_id": 7410, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001038", - "question_id": 7411, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004423", - "question_id": 7413, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004842", - "question_id": 7414, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005571", - "question_id": 7416, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008061", - "question_id": 7417, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000946", - "question_id": 7418, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001788", - "question_id": 7423, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00002284", - "question_id": 7424, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003896", - "question_id": 7425, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006500", - "question_id": 7427, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001160", - "question_id": 7428, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004459", - "question_id": 7430, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005089", - "question_id": 7431, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003257", - "question_id": 7432, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001809", - "question_id": 7433, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004551", - "question_id": 7434, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005400", - "question_id": 7435, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005609", - "question_id": 7437, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"trumpet\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008863", - "question_id": 7439, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00000235", - "question_id": 7441, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005954", - "question_id": 7442, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005179", - "question_id": 7443, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00001611", - "question_id": 7444, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005570", - "question_id": 7445, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008379", - "question_id": 7446, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006255", - "question_id": 7449, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003221", - "question_id": 7450, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002250", - "question_id": 7451, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007626", - "question_id": 7455, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006148", - "question_id": 7459, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001003", - "question_id": 7460, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00001809", - "question_id": 7461, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002710", - "question_id": 7462, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001941", - "question_id": 7463, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005218", - "question_id": 7465, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001621", - "question_id": 7466, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001727", - "question_id": 7467, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00001208", - "question_id": 7469, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001938", - "question_id": 7470, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002366", - "question_id": 7471, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003739", - "question_id": 7472, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008815", - "question_id": 7473, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006319", - "question_id": 7474, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004834", - "question_id": 7475, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004673", - "question_id": 7477, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005727", - "question_id": 7479, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00003149", - "question_id": 7480, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"drum\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007827", - "question_id": 7481, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001978", - "question_id": 7483, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00003024", - "question_id": 7484, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004720", - "question_id": 7485, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000379", - "question_id": 7486, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008212", - "question_id": 7488, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001172", - "question_id": 7489, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005706", - "question_id": 7491, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002760", - "question_id": 7492, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000931", - "question_id": 7493, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004426", - "question_id": 7495, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004344", - "question_id": 7497, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005065", - "question_id": 7498, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007685", - "question_id": 7499, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001698", - "question_id": 7501, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006638", - "question_id": 7502, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003925", - "question_id": 7504, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002231", - "question_id": 7505, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003571", - "question_id": 7507, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008923", - "question_id": 7508, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000671", - "question_id": 7510, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "eight" -}, { - "video_id": "00003639", - "question_id": 7512, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002993", - "question_id": 7513, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000414", - "question_id": 7514, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00002027", - "question_id": 7515, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002580", - "question_id": 7519, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007011", - "question_id": 7522, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006727", - "question_id": 7523, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004291", - "question_id": 7524, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004599", - "question_id": 7525, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004938", - "question_id": 7527, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001603", - "question_id": 7529, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"tuba\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005251", - "question_id": 7530, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007682", - "question_id": 7531, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007207", - "question_id": 7534, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003391", - "question_id": 7536, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006441", - "question_id": 7538, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003066", - "question_id": 7539, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00004793", - "question_id": 7541, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003060", - "question_id": 7542, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00005789", - "question_id": 7543, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005650", - "question_id": 7544, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008077", - "question_id": 7545, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004792", - "question_id": 7548, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007979", - "question_id": 7549, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001733", - "question_id": 7550, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007877", - "question_id": 7551, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006544", - "question_id": 7552, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004463", - "question_id": 7553, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00005088", - "question_id": 7554, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005496", - "question_id": 7555, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00005657", - "question_id": 7556, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007679", - "question_id": 7557, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005185", - "question_id": 7558, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006923", - "question_id": 7559, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002231", - "question_id": 7560, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00000954", - "question_id": 7562, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004943", - "question_id": 7563, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003588", - "question_id": 7565, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001428", - "question_id": 7566, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006682", - "question_id": 7568, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00004392", - "question_id": 7569, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"right\", \"bassoon\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005460", - "question_id": 7570, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000597", - "question_id": 7571, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00000893", - "question_id": 7572, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004568", - "question_id": 7573, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007211", - "question_id": 7574, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002163", - "question_id": 7575, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003182", - "question_id": 7576, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001281", - "question_id": 7578, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001612", - "question_id": 7579, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006486", - "question_id": 7580, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00008952", - "question_id": 7581, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008095", - "question_id": 7582, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003128", - "question_id": 7583, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008150", - "question_id": 7587, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00004535", - "question_id": 7588, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003620", - "question_id": 7589, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005503", - "question_id": 7590, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003728", - "question_id": 7591, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005773", - "question_id": 7592, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007304", - "question_id": 7593, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007522", - "question_id": 7594, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006807", - "question_id": 7595, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003841", - "question_id": 7596, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004910", - "question_id": 7597, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008003", - "question_id": 7600, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007360", - "question_id": 7602, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001892", - "question_id": 7606, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000753", - "question_id": 7607, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002857", - "question_id": 7609, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00006179", - "question_id": 7610, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001889", - "question_id": 7611, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006596", - "question_id": 7612, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006693", - "question_id": 7613, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003997", - "question_id": 7614, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003940", - "question_id": 7615, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003263", - "question_id": 7617, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006790", - "question_id": 7618, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006121", - "question_id": 7619, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008262", - "question_id": 7623, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008953", - "question_id": 7625, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007072", - "question_id": 7626, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"middle\", \"drum\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008542", - "question_id": 7629, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008360", - "question_id": 7630, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00005920", - "question_id": 7632, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002998", - "question_id": 7633, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004867", - "question_id": 7634, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00005083", - "question_id": 7635, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00005402", - "question_id": 7636, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002865", - "question_id": 7637, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005674", - "question_id": 7638, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002102", - "question_id": 7639, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000960", - "question_id": 7640, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001757", - "question_id": 7642, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003208", - "question_id": 7643, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008144", - "question_id": 7644, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004924", - "question_id": 7645, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005331", - "question_id": 7647, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003889", - "question_id": 7650, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008076", - "question_id": 7651, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008392", - "question_id": 7653, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005096", - "question_id": 7654, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001094", - "question_id": 7655, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006999", - "question_id": 7657, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001059", - "question_id": 7658, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004813", - "question_id": 7659, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003888", - "question_id": 7660, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00004478", - "question_id": 7661, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00005244", - "question_id": 7663, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000155", - "question_id": 7664, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000376", - "question_id": 7665, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007552", - "question_id": 7666, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006109", - "question_id": 7667, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "more than ten" -}, { - "video_id": "00005943", - "question_id": 7671, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002231", - "question_id": 7672, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005324", - "question_id": 7673, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004676", - "question_id": 7674, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007999", - "question_id": 7675, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00004741", - "question_id": 7676, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001036", - "question_id": 7678, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007071", - "question_id": 7679, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005219", - "question_id": 7680, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003071", - "question_id": 7682, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002840", - "question_id": 7683, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001111", - "question_id": 7685, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006986", - "question_id": 7686, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007617", - "question_id": 7687, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003246", - "question_id": 7689, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003377", - "question_id": 7690, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005826", - "question_id": 7692, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005469", - "question_id": 7693, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00006052", - "question_id": 7695, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005855", - "question_id": 7696, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002782", - "question_id": 7699, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008710", - "question_id": 7700, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00000969", - "question_id": 7701, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006445", - "question_id": 7705, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006287", - "question_id": 7708, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008531", - "question_id": 7709, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00006844", - "question_id": 7710, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003643", - "question_id": 7711, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008449", - "question_id": 7714, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000475", - "question_id": 7717, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007936", - "question_id": 7720, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002068", - "question_id": 7721, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008902", - "question_id": 7722, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001030", - "question_id": 7723, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004035", - "question_id": 7724, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005019", - "question_id": 7727, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003632", - "question_id": 7728, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005692", - "question_id": 7729, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003367", - "question_id": 7730, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000090", - "question_id": 7733, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003979", - "question_id": 7734, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00005604", - "question_id": 7735, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004400", - "question_id": 7736, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000359", - "question_id": 7737, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001979", - "question_id": 7739, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008956", - "question_id": 7741, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006901", - "question_id": 7743, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000269", - "question_id": 7744, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008227", - "question_id": 7746, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008464", - "question_id": 7747, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007182", - "question_id": 7748, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001246", - "question_id": 7749, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00001614", - "question_id": 7751, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000049", - "question_id": 7752, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00008849", - "question_id": 7754, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003239", - "question_id": 7755, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005981", - "question_id": 7756, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008965", - "question_id": 7758, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007888", - "question_id": 7759, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000359", - "question_id": 7760, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000930", - "question_id": 7761, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002344", - "question_id": 7762, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007241", - "question_id": 7764, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007098", - "question_id": 7769, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00003427", - "question_id": 7770, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003035", - "question_id": 7771, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00002088", - "question_id": 7775, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002648", - "question_id": 7776, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006402", - "question_id": 7777, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000724", - "question_id": 7780, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005267", - "question_id": 7781, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003763", - "question_id": 7782, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005694", - "question_id": 7785, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000603", - "question_id": 7786, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007882", - "question_id": 7787, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008480", - "question_id": 7789, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006408", - "question_id": 7790, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003946", - "question_id": 7793, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002148", - "question_id": 7795, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00000014", - "question_id": 7796, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002034", - "question_id": 7797, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002620", - "question_id": 7800, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00008394", - "question_id": 7801, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005733", - "question_id": 7802, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005169", - "question_id": 7804, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004520", - "question_id": 7805, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001187", - "question_id": 7807, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006463", - "question_id": 7808, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003947", - "question_id": 7811, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002919", - "question_id": 7813, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004311", - "question_id": 7815, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008175", - "question_id": 7817, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003523", - "question_id": 7818, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00001755", - "question_id": 7819, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004505", - "question_id": 7820, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00001138", - "question_id": 7822, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004899", - "question_id": 7824, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007521", - "question_id": 7827, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000305", - "question_id": 7830, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006541", - "question_id": 7831, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004803", - "question_id": 7832, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000511", - "question_id": 7833, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004743", - "question_id": 7834, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006211", - "question_id": 7836, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008315", - "question_id": 7837, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001703", - "question_id": 7840, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001703", - "question_id": 7840, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005800", - "question_id": 7841, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003888", - "question_id": 7842, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004095", - "question_id": 7844, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001029", - "question_id": 7845, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00008077", - "question_id": 7846, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00004882", - "question_id": 7847, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004140", - "question_id": 7848, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002593", - "question_id": 7850, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00006008", - "question_id": 7851, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007228", - "question_id": 7852, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001422", - "question_id": 7853, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007153", - "question_id": 7856, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005450", - "question_id": 7857, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008029", - "question_id": 7860, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002721", - "question_id": 7861, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00000418", - "question_id": 7862, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00007861", - "question_id": 7863, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000821", - "question_id": 7868, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004308", - "question_id": 7869, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005322", - "question_id": 7870, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00001082", - "question_id": 7871, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002716", - "question_id": 7873, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008921", - "question_id": 7876, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00003577", - "question_id": 7877, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00004713", - "question_id": 7879, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002313", - "question_id": 7882, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006896", - "question_id": 7883, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000427", - "question_id": 7884, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008515", - "question_id": 7885, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008469", - "question_id": 7886, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008915", - "question_id": 7887, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005818", - "question_id": 7888, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"congas\", \"right\", \"piano\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001494", - "question_id": 7889, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006387", - "question_id": 7892, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004048", - "question_id": 7894, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006402", - "question_id": 7896, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00005626", - "question_id": 7899, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001799", - "question_id": 7900, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000972", - "question_id": 7901, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006729", - "question_id": 7902, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005544", - "question_id": 7904, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008863", - "question_id": 7906, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007971", - "question_id": 7908, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002811", - "question_id": 7910, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000165", - "question_id": 7911, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00007970", - "question_id": 7912, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"banjo\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004277", - "question_id": 7913, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bagpipe\", \"right\", \"electric_bass\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004273", - "question_id": 7914, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006186", - "question_id": 7915, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004972", - "question_id": 7916, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006715", - "question_id": 7918, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006038", - "question_id": 7919, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001582", - "question_id": 7920, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008147", - "question_id": 7921, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003412", - "question_id": 7922, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002023", - "question_id": 7923, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007624", - "question_id": 7924, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00000588", - "question_id": 7926, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004730", - "question_id": 7928, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00004684", - "question_id": 7930, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008432", - "question_id": 7931, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004793", - "question_id": 7932, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002098", - "question_id": 7933, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003149", - "question_id": 7934, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00002390", - "question_id": 7937, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00004812", - "question_id": 7938, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008124", - "question_id": 7940, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000712", - "question_id": 7941, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005863", - "question_id": 7942, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00003265", - "question_id": 7943, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"tuba\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00005327", - "question_id": 7944, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002803", - "question_id": 7946, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007699", - "question_id": 7947, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001922", - "question_id": 7948, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006806", - "question_id": 7950, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003947", - "question_id": 7954, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005138", - "question_id": 7955, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005187", - "question_id": 7956, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006670", - "question_id": 7957, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00005617", - "question_id": 7959, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003317", - "question_id": 7962, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007122", - "question_id": 7963, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000191", - "question_id": 7965, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "eight" -}, { - "video_id": "00006163", - "question_id": 7967, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008306", - "question_id": 7968, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007340", - "question_id": 7969, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00008948", - "question_id": 7970, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00004913", - "question_id": 7971, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00008326", - "question_id": 7974, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007744", - "question_id": 7975, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008495", - "question_id": 7976, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003851", - "question_id": 7977, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002060", - "question_id": 7978, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001165", - "question_id": 7979, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007104", - "question_id": 7980, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00007672", - "question_id": 7981, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002718", - "question_id": 7982, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004994", - "question_id": 7984, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007479", - "question_id": 7986, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006115", - "question_id": 7987, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00004686", - "question_id": 7988, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000625", - "question_id": 7989, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000128", - "question_id": 7990, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000657", - "question_id": 7991, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001299", - "question_id": 7992, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007165", - "question_id": 7994, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00004011", - "question_id": 7995, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00007163", - "question_id": 7997, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003417", - "question_id": 8000, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007436", - "question_id": 8002, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008972", - "question_id": 8005, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004354", - "question_id": 8006, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00005170", - "question_id": 8009, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005628", - "question_id": 8012, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007649", - "question_id": 8013, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008636", - "question_id": 8015, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008481", - "question_id": 8017, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006965", - "question_id": 8018, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007740", - "question_id": 8021, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007340", - "question_id": 8022, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008670", - "question_id": 8025, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00005161", - "question_id": 8027, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008895", - "question_id": 8028, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005793", - "question_id": 8029, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00002330", - "question_id": 8032, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004795", - "question_id": 8034, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006160", - "question_id": 8036, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005444", - "question_id": 8038, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000687", - "question_id": 8039, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00001360", - "question_id": 8040, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003104", - "question_id": 8041, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002819", - "question_id": 8042, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00002746", - "question_id": 8043, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001337", - "question_id": 8044, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003761", - "question_id": 8045, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00004316", - "question_id": 8047, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003828", - "question_id": 8048, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007723", - "question_id": 8049, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004846", - "question_id": 8050, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003487", - "question_id": 8051, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00003388", - "question_id": 8052, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003567", - "question_id": 8055, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000934", - "question_id": 8056, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001491", - "question_id": 8057, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00005625", - "question_id": 8060, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008298", - "question_id": 8061, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008267", - "question_id": 8064, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008267", - "question_id": 8064, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000520", - "question_id": 8065, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004056", - "question_id": 8068, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00002843", - "question_id": 8069, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004343", - "question_id": 8070, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00003407", - "question_id": 8071, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006592", - "question_id": 8072, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004775", - "question_id": 8073, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008424", - "question_id": 8074, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001391", - "question_id": 8075, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001060", - "question_id": 8076, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004418", - "question_id": 8078, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005059", - "question_id": 8079, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002229", - "question_id": 8080, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007830", - "question_id": 8081, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006290", - "question_id": 8082, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00007736", - "question_id": 8083, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004186", - "question_id": 8084, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003976", - "question_id": 8085, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006726", - "question_id": 8086, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001593", - "question_id": 8089, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000975", - "question_id": 8091, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000794", - "question_id": 8094, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003077", - "question_id": 8099, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008441", - "question_id": 8101, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000923", - "question_id": 8103, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005757", - "question_id": 8106, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008350", - "question_id": 8107, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007427", - "question_id": 8108, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008369", - "question_id": 8109, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000678", - "question_id": 8111, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004010", - "question_id": 8112, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003312", - "question_id": 8113, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006552", - "question_id": 8114, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003158", - "question_id": 8116, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007008", - "question_id": 8117, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006136", - "question_id": 8119, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00005932", - "question_id": 8121, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002305", - "question_id": 8123, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008581", - "question_id": 8124, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005023", - "question_id": 8125, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003143", - "question_id": 8127, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008007", - "question_id": 8128, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008478", - "question_id": 8129, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006245", - "question_id": 8130, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00003166", - "question_id": 8131, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000385", - "question_id": 8133, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007198", - "question_id": 8134, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00000586", - "question_id": 8135, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006149", - "question_id": 8136, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007303", - "question_id": 8140, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00001557", - "question_id": 8142, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00007590", - "question_id": 8143, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007050", - "question_id": 8144, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001858", - "question_id": 8145, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001528", - "question_id": 8146, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008032", - "question_id": 8147, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003438", - "question_id": 8148, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00003361", - "question_id": 8149, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007699", - "question_id": 8150, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000211", - "question_id": 8151, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00003924", - "question_id": 8152, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00004466", - "question_id": 8155, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008477", - "question_id": 8157, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001330", - "question_id": 8159, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004466", - "question_id": 8161, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008686", - "question_id": 8162, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002718", - "question_id": 8164, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00000416", - "question_id": 8165, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008966", - "question_id": 8167, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008966", - "question_id": 8167, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006933", - "question_id": 8168, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005465", - "question_id": 8170, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001334", - "question_id": 8171, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"tuba\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00003684", - "question_id": 8172, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00000543", - "question_id": 8173, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002958", - "question_id": 8174, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001064", - "question_id": 8177, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004121", - "question_id": 8178, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005748", - "question_id": 8179, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000552", - "question_id": 8181, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003995", - "question_id": 8183, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007712", - "question_id": 8185, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001950", - "question_id": 8186, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005007", - "question_id": 8187, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006333", - "question_id": 8188, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002377", - "question_id": 8190, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002631", - "question_id": 8191, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003923", - "question_id": 8193, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003671", - "question_id": 8194, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005838", - "question_id": 8196, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002530", - "question_id": 8199, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00006149", - "question_id": 8201, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007099", - "question_id": 8202, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000950", - "question_id": 8204, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006967", - "question_id": 8208, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000593", - "question_id": 8211, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008551", - "question_id": 8212, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000277", - "question_id": 8215, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007801", - "question_id": 8217, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003834", - "question_id": 8219, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008719", - "question_id": 8223, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003698", - "question_id": 8225, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002406", - "question_id": 8227, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001638", - "question_id": 8228, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002084", - "question_id": 8229, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003518", - "question_id": 8230, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003086", - "question_id": 8231, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000877", - "question_id": 8235, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006812", - "question_id": 8236, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006886", - "question_id": 8239, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00005811", - "question_id": 8240, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008631", - "question_id": 8241, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006538", - "question_id": 8243, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001351", - "question_id": 8244, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00004849", - "question_id": 8246, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000668", - "question_id": 8247, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001394", - "question_id": 8248, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006307", - "question_id": 8249, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00001586", - "question_id": 8250, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008708", - "question_id": 8253, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004533", - "question_id": 8256, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001159", - "question_id": 8259, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00004919", - "question_id": 8261, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008444", - "question_id": 8262, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007849", - "question_id": 8263, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00000133", - "question_id": 8264, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00007508", - "question_id": 8265, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001173", - "question_id": 8267, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007614", - "question_id": 8268, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007002", - "question_id": 8271, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"fourth\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00004127", - "question_id": 8272, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007818", - "question_id": 8273, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004318", - "question_id": 8274, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003953", - "question_id": 8275, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004192", - "question_id": 8276, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000866", - "question_id": 8277, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00002042", - "question_id": 8278, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006206", - "question_id": 8280, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000235", - "question_id": 8281, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004942", - "question_id": 8286, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002704", - "question_id": 8287, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005152", - "question_id": 8288, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003730", - "question_id": 8289, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003755", - "question_id": 8290, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007430", - "question_id": 8291, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006939", - "question_id": 8293, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001718", - "question_id": 8295, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003438", - "question_id": 8296, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008100", - "question_id": 8297, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003110", - "question_id": 8298, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005156", - "question_id": 8300, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002664", - "question_id": 8301, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007763", - "question_id": 8302, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002671", - "question_id": 8303, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001844", - "question_id": 8305, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002963", - "question_id": 8306, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000750", - "question_id": 8308, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007325", - "question_id": 8309, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004081", - "question_id": 8311, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008831", - "question_id": 8312, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008356", - "question_id": 8313, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007764", - "question_id": 8314, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00002434", - "question_id": 8316, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007510", - "question_id": 8317, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008901", - "question_id": 8319, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004166", - "question_id": 8320, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007305", - "question_id": 8321, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00008825", - "question_id": 8322, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005606", - "question_id": 8323, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002470", - "question_id": 8324, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007824", - "question_id": 8325, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00002596", - "question_id": 8327, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00004442", - "question_id": 8328, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"drum\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003083", - "question_id": 8329, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007675", - "question_id": 8330, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00000437", - "question_id": 8332, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003193", - "question_id": 8333, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008399", - "question_id": 8336, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001684", - "question_id": 8337, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006862", - "question_id": 8338, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004014", - "question_id": 8339, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003389", - "question_id": 8340, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005237", - "question_id": 8341, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006397", - "question_id": 8342, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00007912", - "question_id": 8344, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001802", - "question_id": 8346, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00005176", - "question_id": 8349, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003540", - "question_id": 8350, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000275", - "question_id": 8351, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005510", - "question_id": 8352, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008294", - "question_id": 8353, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008294", - "question_id": 8353, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008304", - "question_id": 8354, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001862", - "question_id": 8362, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006882", - "question_id": 8366, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007875", - "question_id": 8367, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008006", - "question_id": 8368, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004485", - "question_id": 8369, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001185", - "question_id": 8370, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001022", - "question_id": 8373, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004588", - "question_id": 8375, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00000781", - "question_id": 8377, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002302", - "question_id": 8379, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005696", - "question_id": 8380, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005129", - "question_id": 8382, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005932", - "question_id": 8383, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00007727", - "question_id": 8385, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002369", - "question_id": 8386, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"acoustic_guitar\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001701", - "question_id": 8387, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004750", - "question_id": 8388, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001596", - "question_id": 8389, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"middle\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006924", - "question_id": 8390, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005845", - "question_id": 8391, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003786", - "question_id": 8392, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002437", - "question_id": 8393, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003496", - "question_id": 8394, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006823", - "question_id": 8395, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006708", - "question_id": 8396, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001732", - "question_id": 8397, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005304", - "question_id": 8399, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006967", - "question_id": 8403, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004493", - "question_id": 8404, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003835", - "question_id": 8405, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001790", - "question_id": 8407, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000906", - "question_id": 8408, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006531", - "question_id": 8409, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007173", - "question_id": 8410, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00004494", - "question_id": 8411, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002406", - "question_id": 8412, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"left\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008205", - "question_id": 8413, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00008851", - "question_id": 8414, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002184", - "question_id": 8415, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002913", - "question_id": 8416, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005081", - "question_id": 8417, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00000436", - "question_id": 8418, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002623", - "question_id": 8420, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000742", - "question_id": 8421, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002370", - "question_id": 8422, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"erhu\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008213", - "question_id": 8423, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"erhu\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000873", - "question_id": 8424, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00007238", - "question_id": 8426, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004729", - "question_id": 8427, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008919", - "question_id": 8429, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00003933", - "question_id": 8430, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008056", - "question_id": 8431, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008727", - "question_id": 8437, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001142", - "question_id": 8442, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00003508", - "question_id": 8443, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008865", - "question_id": 8444, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00007008", - "question_id": 8446, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007794", - "question_id": 8447, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00005610", - "question_id": 8449, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00008082", - "question_id": 8450, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002530", - "question_id": 8451, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000833", - "question_id": 8452, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007519", - "question_id": 8453, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001596", - "question_id": 8454, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008328", - "question_id": 8456, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002393", - "question_id": 8457, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002067", - "question_id": 8458, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008770", - "question_id": 8459, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008565", - "question_id": 8460, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005326", - "question_id": 8461, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005001", - "question_id": 8463, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004339", - "question_id": 8464, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001937", - "question_id": 8465, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00004221", - "question_id": 8469, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002184", - "question_id": 8472, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004093", - "question_id": 8473, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003710", - "question_id": 8475, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007818", - "question_id": 8476, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007990", - "question_id": 8477, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00005996", - "question_id": 8480, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00005932", - "question_id": 8481, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000459", - "question_id": 8483, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00003935", - "question_id": 8485, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003390", - "question_id": 8486, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007619", - "question_id": 8488, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003855", - "question_id": 8491, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008381", - "question_id": 8494, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004252", - "question_id": 8495, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00001808", - "question_id": 8496, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"fifth\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00003326", - "question_id": 8497, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004685", - "question_id": 8503, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005592", - "question_id": 8506, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006125", - "question_id": 8507, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004463", - "question_id": 8509, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003634", - "question_id": 8510, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002808", - "question_id": 8511, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006259", - "question_id": 8512, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004120", - "question_id": 8513, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003652", - "question_id": 8515, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00002770", - "question_id": 8516, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003968", - "question_id": 8517, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003311", - "question_id": 8518, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001504", - "question_id": 8519, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00005022", - "question_id": 8520, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007554", - "question_id": 8521, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"electric_bass\", \"right\", \"drum\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002991", - "question_id": 8524, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000273", - "question_id": 8525, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001718", - "question_id": 8528, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00004768", - "question_id": 8529, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004780", - "question_id": 8530, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000648", - "question_id": 8532, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001775", - "question_id": 8533, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008019", - "question_id": 8536, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006124", - "question_id": 8537, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004981", - "question_id": 8538, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"electric_bass\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007654", - "question_id": 8540, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001629", - "question_id": 8542, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002771", - "question_id": 8544, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"bassoon\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005877", - "question_id": 8545, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007377", - "question_id": 8546, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005334", - "question_id": 8548, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005207", - "question_id": 8549, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007292", - "question_id": 8550, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001693", - "question_id": 8551, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007691", - "question_id": 8552, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008765", - "question_id": 8553, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008467", - "question_id": 8555, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005338", - "question_id": 8556, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005416", - "question_id": 8557, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004430", - "question_id": 8558, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005873", - "question_id": 8559, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008446", - "question_id": 8560, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008731", - "question_id": 8562, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008004", - "question_id": 8565, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001312", - "question_id": 8566, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006853", - "question_id": 8567, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002540", - "question_id": 8568, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00001422", - "question_id": 8569, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007044", - "question_id": 8570, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006517", - "question_id": 8573, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008289", - "question_id": 8574, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001392", - "question_id": 8575, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003784", - "question_id": 8576, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004021", - "question_id": 8577, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007232", - "question_id": 8579, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"congas\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008334", - "question_id": 8580, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004106", - "question_id": 8581, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008949", - "question_id": 8582, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00008233", - "question_id": 8583, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002111", - "question_id": 8584, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003762", - "question_id": 8588, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002478", - "question_id": 8589, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000374", - "question_id": 8590, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bagpipe\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002098", - "question_id": 8592, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006804", - "question_id": 8593, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008362", - "question_id": 8594, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007217", - "question_id": 8595, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001756", - "question_id": 8597, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00002263", - "question_id": 8599, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003620", - "question_id": 8600, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000707", - "question_id": 8602, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006900", - "question_id": 8603, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007369", - "question_id": 8605, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005549", - "question_id": 8606, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008515", - "question_id": 8608, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007636", - "question_id": 8609, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"pipa\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004277", - "question_id": 8610, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006250", - "question_id": 8611, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"drum\", \"middle\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000873", - "question_id": 8612, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002891", - "question_id": 8613, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003641", - "question_id": 8615, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005251", - "question_id": 8616, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008060", - "question_id": 8617, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"tuba\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000325", - "question_id": 8619, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007244", - "question_id": 8620, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003089", - "question_id": 8621, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"tuba\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005487", - "question_id": 8622, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001842", - "question_id": 8626, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007078", - "question_id": 8629, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002650", - "question_id": 8631, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004079", - "question_id": 8632, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00000977", - "question_id": 8633, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006264", - "question_id": 8634, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004126", - "question_id": 8635, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008547", - "question_id": 8636, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001959", - "question_id": 8638, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006710", - "question_id": 8640, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003481", - "question_id": 8641, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000725", - "question_id": 8643, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"middle\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008973", - "question_id": 8645, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00005559", - "question_id": 8646, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008373", - "question_id": 8647, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00002152", - "question_id": 8650, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004162", - "question_id": 8651, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008441", - "question_id": 8652, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001767", - "question_id": 8654, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006137", - "question_id": 8655, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005673", - "question_id": 8658, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006144", - "question_id": 8659, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003701", - "question_id": 8660, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000795", - "question_id": 8661, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008244", - "question_id": 8662, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005173", - "question_id": 8665, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006634", - "question_id": 8666, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008376", - "question_id": 8667, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00008045", - "question_id": 8668, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003413", - "question_id": 8670, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"congas\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006468", - "question_id": 8672, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002573", - "question_id": 8674, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001935", - "question_id": 8677, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002721", - "question_id": 8678, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002620", - "question_id": 8679, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003980", - "question_id": 8680, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002486", - "question_id": 8681, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006988", - "question_id": 8684, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004179", - "question_id": 8685, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000204", - "question_id": 8686, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001094", - "question_id": 8687, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007966", - "question_id": 8690, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00004564", - "question_id": 8691, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000495", - "question_id": 8692, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003243", - "question_id": 8693, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"drum\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002520", - "question_id": 8694, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000771", - "question_id": 8695, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00001101", - "question_id": 8696, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007019", - "question_id": 8697, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000618", - "question_id": 8700, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007133", - "question_id": 8701, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006595", - "question_id": 8703, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003504", - "question_id": 8704, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004018", - "question_id": 8705, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005141", - "question_id": 8706, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00004903", - "question_id": 8707, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006266", - "question_id": 8710, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003310", - "question_id": 8719, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001376", - "question_id": 8720, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003375", - "question_id": 8721, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006507", - "question_id": 8722, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002151", - "question_id": 8723, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000279", - "question_id": 8724, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002165", - "question_id": 8725, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005980", - "question_id": 8727, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006584", - "question_id": 8728, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000773", - "question_id": 8729, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005853", - "question_id": 8731, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007875", - "question_id": 8732, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004524", - "question_id": 8735, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008111", - "question_id": 8736, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002025", - "question_id": 8737, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007094", - "question_id": 8740, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003518", - "question_id": 8742, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006869", - "question_id": 8743, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000018", - "question_id": 8745, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003673", - "question_id": 8746, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004098", - "question_id": 8747, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006620", - "question_id": 8750, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004721", - "question_id": 8751, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "ten" -}, { - "video_id": "00004722", - "question_id": 8752, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002849", - "question_id": 8753, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008390", - "question_id": 8755, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"acoustic_guitar\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003852", - "question_id": 8757, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00001637", - "question_id": 8758, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001692", - "question_id": 8759, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002937", - "question_id": 8760, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002578", - "question_id": 8761, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007400", - "question_id": 8763, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007619", - "question_id": 8764, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000739", - "question_id": 8766, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007616", - "question_id": 8767, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00008762", - "question_id": 8768, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008657", - "question_id": 8769, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001433", - "question_id": 8770, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008213", - "question_id": 8771, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00007569", - "question_id": 8773, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006352", - "question_id": 8774, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008860", - "question_id": 8775, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002860", - "question_id": 8776, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007990", - "question_id": 8777, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007436", - "question_id": 8778, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008843", - "question_id": 8779, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008257", - "question_id": 8780, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008150", - "question_id": 8781, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004457", - "question_id": 8782, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002686", - "question_id": 8783, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002408", - "question_id": 8784, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000733", - "question_id": 8786, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006152", - "question_id": 8787, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004686", - "question_id": 8788, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006968", - "question_id": 8789, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002636", - "question_id": 8790, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006231", - "question_id": 8795, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005369", - "question_id": 8797, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005570", - "question_id": 8798, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006860", - "question_id": 8800, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001903", - "question_id": 8803, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00007653", - "question_id": 8804, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006695", - "question_id": 8805, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000592", - "question_id": 8806, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00001490", - "question_id": 8807, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00001848", - "question_id": 8809, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008748", - "question_id": 8810, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006737", - "question_id": 8814, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004538", - "question_id": 8816, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008686", - "question_id": 8817, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000588", - "question_id": 8818, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006705", - "question_id": 8819, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005884", - "question_id": 8821, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005850", - "question_id": 8824, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005465", - "question_id": 8825, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00003164", - "question_id": 8826, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00006552", - "question_id": 8827, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004787", - "question_id": 8828, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001516", - "question_id": 8830, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004885", - "question_id": 8832, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000156", - "question_id": 8834, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007722", - "question_id": 8835, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002032", - "question_id": 8837, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001215", - "question_id": 8840, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004820", - "question_id": 8841, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007122", - "question_id": 8843, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004075", - "question_id": 8844, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000675", - "question_id": 8845, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001083", - "question_id": 8847, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006916", - "question_id": 8848, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00008803", - "question_id": 8849, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001385", - "question_id": 8851, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004821", - "question_id": 8852, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000999", - "question_id": 8853, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000090", - "question_id": 8854, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000957", - "question_id": 8855, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004955", - "question_id": 8857, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000378", - "question_id": 8858, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003077", - "question_id": 8859, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007922", - "question_id": 8860, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002766", - "question_id": 8861, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004572", - "question_id": 8862, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000683", - "question_id": 8863, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008799", - "question_id": 8865, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005107", - "question_id": 8866, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008275", - "question_id": 8867, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00007629", - "question_id": 8868, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00002231", - "question_id": 8869, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008425", - "question_id": 8870, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001512", - "question_id": 8871, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006633", - "question_id": 8873, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000715", - "question_id": 8874, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007795", - "question_id": 8876, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007295", - "question_id": 8878, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001555", - "question_id": 8879, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002652", - "question_id": 8881, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001525", - "question_id": 8882, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004131", - "question_id": 8884, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003600", - "question_id": 8887, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003725", - "question_id": 8888, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005542", - "question_id": 8890, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007495", - "question_id": 8891, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000714", - "question_id": 8894, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00002756", - "question_id": 8895, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005510", - "question_id": 8896, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006718", - "question_id": 8897, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005216", - "question_id": 8898, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002379", - "question_id": 8899, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003288", - "question_id": 8901, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001240", - "question_id": 8902, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00006128", - "question_id": 8903, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007823", - "question_id": 8904, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005485", - "question_id": 8905, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003976", - "question_id": 8907, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003166", - "question_id": 8908, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008106", - "question_id": 8909, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005039", - "question_id": 8913, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003490", - "question_id": 8914, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004342", - "question_id": 8916, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006610", - "question_id": 8917, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001278", - "question_id": 8918, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005216", - "question_id": 8919, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003561", - "question_id": 8921, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002766", - "question_id": 8922, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001507", - "question_id": 8923, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005471", - "question_id": 8924, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003825", - "question_id": 8925, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005277", - "question_id": 8930, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006494", - "question_id": 8933, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00008956", - "question_id": 8936, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002259", - "question_id": 8938, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004908", - "question_id": 8939, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006223", - "question_id": 8941, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001527", - "question_id": 8942, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008550", - "question_id": 8944, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007293", - "question_id": 8945, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002372", - "question_id": 8946, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005443", - "question_id": 8948, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002205", - "question_id": 8949, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001787", - "question_id": 8950, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005076", - "question_id": 8951, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003912", - "question_id": 8952, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006086", - "question_id": 8953, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002535", - "question_id": 8954, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001511", - "question_id": 8956, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00000648", - "question_id": 8959, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00000806", - "question_id": 8960, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00006530", - "question_id": 8961, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002744", - "question_id": 8963, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00002433", - "question_id": 8965, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006581", - "question_id": 8966, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007422", - "question_id": 8968, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005834", - "question_id": 8970, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004109", - "question_id": 8971, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00003205", - "question_id": 8973, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003054", - "question_id": 8974, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000097", - "question_id": 8975, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00005010", - "question_id": 8976, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004895", - "question_id": 8980, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007986", - "question_id": 8981, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008790", - "question_id": 8982, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005063", - "question_id": 8984, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003680", - "question_id": 8987, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001412", - "question_id": 8990, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004482", - "question_id": 8991, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001672", - "question_id": 8992, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"right\", \"erhu\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002765", - "question_id": 8993, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00003233", - "question_id": 8994, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000150", - "question_id": 8996, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006948", - "question_id": 8999, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"right\", \"violin\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004183", - "question_id": 9000, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001538", - "question_id": 9002, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008067", - "question_id": 9003, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006205", - "question_id": 9006, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004199", - "question_id": 9007, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006987", - "question_id": 9008, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000563", - "question_id": 9010, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007539", - "question_id": 9012, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001136", - "question_id": 9014, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002468", - "question_id": 9015, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008018", - "question_id": 9017, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008711", - "question_id": 9019, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003374", - "question_id": 9020, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00001186", - "question_id": 9024, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000232", - "question_id": 9025, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000591", - "question_id": 9026, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006272", - "question_id": 9027, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005784", - "question_id": 9030, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001975", - "question_id": 9033, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005312", - "question_id": 9036, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005125", - "question_id": 9038, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003509", - "question_id": 9039, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00004728", - "question_id": 9041, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004575", - "question_id": 9043, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002908", - "question_id": 9044, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000740", - "question_id": 9046, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005172", - "question_id": 9047, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004672", - "question_id": 9049, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004719", - "question_id": 9050, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001577", - "question_id": 9051, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003458", - "question_id": 9052, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003371", - "question_id": 9053, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003260", - "question_id": 9054, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008952", - "question_id": 9056, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002435", - "question_id": 9057, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003808", - "question_id": 9058, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007082", - "question_id": 9059, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006234", - "question_id": 9060, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002466", - "question_id": 9061, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008512", - "question_id": 9062, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00006225", - "question_id": 9063, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001002", - "question_id": 9064, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003486", - "question_id": 9066, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000059", - "question_id": 9067, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002465", - "question_id": 9068, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00005856", - "question_id": 9069, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005219", - "question_id": 9070, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007555", - "question_id": 9071, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00004409", - "question_id": 9074, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002634", - "question_id": 9077, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003720", - "question_id": 9078, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006877", - "question_id": 9079, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001166", - "question_id": 9080, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003889", - "question_id": 9082, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002991", - "question_id": 9083, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004089", - "question_id": 9084, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00002016", - "question_id": 9085, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001101", - "question_id": 9086, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008017", - "question_id": 9087, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001919", - "question_id": 9088, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002515", - "question_id": 9090, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008205", - "question_id": 9092, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003067", - "question_id": 9093, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008288", - "question_id": 9094, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005599", - "question_id": 9096, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00002660", - "question_id": 9097, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000909", - "question_id": 9100, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001972", - "question_id": 9101, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008895", - "question_id": 9102, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000171", - "question_id": 9103, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003480", - "question_id": 9104, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002208", - "question_id": 9108, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003412", - "question_id": 9109, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001773", - "question_id": 9110, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002015", - "question_id": 9111, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000818", - "question_id": 9112, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00008473", - "question_id": 9113, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00005262", - "question_id": 9115, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006497", - "question_id": 9116, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006657", - "question_id": 9118, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001948", - "question_id": 9121, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007919", - "question_id": 9124, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003534", - "question_id": 9125, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001684", - "question_id": 9127, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00008759", - "question_id": 9131, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00006021", - "question_id": 9132, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006021", - "question_id": 9132, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005920", - "question_id": 9133, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008948", - "question_id": 9134, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004189", - "question_id": 9136, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00007538", - "question_id": 9139, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006748", - "question_id": 9140, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007298", - "question_id": 9141, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000640", - "question_id": 9145, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001402", - "question_id": 9146, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004472", - "question_id": 9148, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00006886", - "question_id": 9150, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008040", - "question_id": 9151, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004177", - "question_id": 9153, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005498", - "question_id": 9154, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001752", - "question_id": 9156, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004535", - "question_id": 9159, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004214", - "question_id": 9160, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00006727", - "question_id": 9161, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006487", - "question_id": 9166, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00003559", - "question_id": 9168, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004778", - "question_id": 9171, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003628", - "question_id": 9172, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004389", - "question_id": 9177, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004953", - "question_id": 9178, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004811", - "question_id": 9179, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006732", - "question_id": 9180, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000222", - "question_id": 9182, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005132", - "question_id": 9183, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001206", - "question_id": 9184, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008132", - "question_id": 9185, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006375", - "question_id": 9187, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000565", - "question_id": 9190, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003024", - "question_id": 9191, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003175", - "question_id": 9194, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008766", - "question_id": 9195, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00000278", - "question_id": 9196, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001641", - "question_id": 9197, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003885", - "question_id": 9198, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002972", - "question_id": 9199, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008357", - "question_id": 9200, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008525", - "question_id": 9203, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"fourth\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00001963", - "question_id": 9205, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008288", - "question_id": 9206, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008280", - "question_id": 9207, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000494", - "question_id": 9209, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002741", - "question_id": 9210, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008528", - "question_id": 9211, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008107", - "question_id": 9214, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006697", - "question_id": 9215, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005489", - "question_id": 9216, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007006", - "question_id": 9221, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003411", - "question_id": 9224, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006040", - "question_id": 9225, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001177", - "question_id": 9226, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007830", - "question_id": 9227, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00008407", - "question_id": 9229, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005432", - "question_id": 9230, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003035", - "question_id": 9231, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005739", - "question_id": 9233, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003455", - "question_id": 9234, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003118", - "question_id": 9235, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003616", - "question_id": 9236, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001067", - "question_id": 9239, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001560", - "question_id": 9240, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003542", - "question_id": 9241, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004509", - "question_id": 9242, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008815", - "question_id": 9243, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001462", - "question_id": 9244, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000793", - "question_id": 9245, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007644", - "question_id": 9248, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000486", - "question_id": 9249, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001337", - "question_id": 9251, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000750", - "question_id": 9252, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005065", - "question_id": 9255, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00008521", - "question_id": 9256, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008439", - "question_id": 9258, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002098", - "question_id": 9259, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004276", - "question_id": 9260, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003036", - "question_id": 9261, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004825", - "question_id": 9262, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002658", - "question_id": 9263, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007316", - "question_id": 9266, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001063", - "question_id": 9267, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004756", - "question_id": 9268, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006288", - "question_id": 9269, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00002338", - "question_id": 9270, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007574", - "question_id": 9271, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003342", - "question_id": 9276, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004638", - "question_id": 9277, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006280", - "question_id": 9278, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003637", - "question_id": 9279, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002129", - "question_id": 9280, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00000903", - "question_id": 9281, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003829", - "question_id": 9282, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001778", - "question_id": 9285, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001063", - "question_id": 9286, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001981", - "question_id": 9288, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00004118", - "question_id": 9290, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001444", - "question_id": 9291, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003651", - "question_id": 9292, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"ukulele\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001299", - "question_id": 9295, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008426", - "question_id": 9297, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003802", - "question_id": 9299, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006919", - "question_id": 9300, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008891", - "question_id": 9301, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000486", - "question_id": 9302, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007374", - "question_id": 9303, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007915", - "question_id": 9305, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008268", - "question_id": 9306, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001051", - "question_id": 9307, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004179", - "question_id": 9308, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005288", - "question_id": 9309, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00005968", - "question_id": 9310, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007915", - "question_id": 9311, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003570", - "question_id": 9312, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001524", - "question_id": 9319, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000234", - "question_id": 9320, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008712", - "question_id": 9321, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006164", - "question_id": 9322, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006873", - "question_id": 9327, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001363", - "question_id": 9330, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008045", - "question_id": 9331, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004545", - "question_id": 9334, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005293", - "question_id": 9335, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000735", - "question_id": 9336, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004723", - "question_id": 9337, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001297", - "question_id": 9338, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001899", - "question_id": 9339, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004286", - "question_id": 9341, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00002195", - "question_id": 9343, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008921", - "question_id": 9344, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007604", - "question_id": 9347, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004353", - "question_id": 9348, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000206", - "question_id": 9349, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"acoustic_guitar\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005394", - "question_id": 9352, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002256", - "question_id": 9353, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000533", - "question_id": 9354, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005208", - "question_id": 9355, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007845", - "question_id": 9356, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008118", - "question_id": 9358, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008555", - "question_id": 9359, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004016", - "question_id": 9360, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005959", - "question_id": 9367, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008140", - "question_id": 9369, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006640", - "question_id": 9371, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000623", - "question_id": 9372, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001645", - "question_id": 9373, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004554", - "question_id": 9374, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004554", - "question_id": 9374, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007324", - "question_id": 9375, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"xylophone\", \"left\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007933", - "question_id": 9377, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004716", - "question_id": 9378, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006950", - "question_id": 9381, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00008409", - "question_id": 9383, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005828", - "question_id": 9385, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008616", - "question_id": 9387, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004353", - "question_id": 9388, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006585", - "question_id": 9389, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004206", - "question_id": 9390, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00007263", - "question_id": 9392, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001756", - "question_id": 9393, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003184", - "question_id": 9394, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006309", - "question_id": 9395, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000987", - "question_id": 9396, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002405", - "question_id": 9398, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005761", - "question_id": 9400, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00003490", - "question_id": 9401, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00001958", - "question_id": 9403, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00000547", - "question_id": 9404, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006464", - "question_id": 9405, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00001072", - "question_id": 9406, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008240", - "question_id": 9407, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004003", - "question_id": 9408, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000742", - "question_id": 9410, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"piano\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003127", - "question_id": 9411, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008135", - "question_id": 9413, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000753", - "question_id": 9414, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003523", - "question_id": 9415, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005359", - "question_id": 9416, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003634", - "question_id": 9417, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001687", - "question_id": 9418, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00007296", - "question_id": 9419, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008702", - "question_id": 9425, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005141", - "question_id": 9426, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004364", - "question_id": 9427, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002375", - "question_id": 9428, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"bassoon\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004268", - "question_id": 9429, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000176", - "question_id": 9430, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "seven" -}, { - "video_id": "00008575", - "question_id": 9431, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007770", - "question_id": 9432, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007888", - "question_id": 9433, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000899", - "question_id": 9435, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002477", - "question_id": 9436, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003579", - "question_id": 9437, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006426", - "question_id": 9438, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000810", - "question_id": 9439, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005162", - "question_id": 9440, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00002277", - "question_id": 9442, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003463", - "question_id": 9444, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008001", - "question_id": 9447, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007938", - "question_id": 9448, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007632", - "question_id": 9449, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007924", - "question_id": 9450, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008753", - "question_id": 9451, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005917", - "question_id": 9452, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005290", - "question_id": 9453, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007590", - "question_id": 9454, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006383", - "question_id": 9455, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000152", - "question_id": 9456, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003540", - "question_id": 9457, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008253", - "question_id": 9458, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007267", - "question_id": 9460, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001150", - "question_id": 9461, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006640", - "question_id": 9462, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00007024", - "question_id": 9463, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000235", - "question_id": 9467, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"middle\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000612", - "question_id": 9469, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00004566", - "question_id": 9474, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008231", - "question_id": 9475, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003261", - "question_id": 9476, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007954", - "question_id": 9477, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003322", - "question_id": 9478, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006711", - "question_id": 9479, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006913", - "question_id": 9481, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005355", - "question_id": 9486, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001655", - "question_id": 9488, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001468", - "question_id": 9489, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007453", - "question_id": 9490, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008945", - "question_id": 9493, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005948", - "question_id": 9497, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000832", - "question_id": 9499, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008362", - "question_id": 9502, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001557", - "question_id": 9503, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001427", - "question_id": 9504, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"middle\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005228", - "question_id": 9507, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006265", - "question_id": 9510, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006654", - "question_id": 9511, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000165", - "question_id": 9512, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002808", - "question_id": 9515, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008803", - "question_id": 9516, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008085", - "question_id": 9517, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008675", - "question_id": 9518, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00002211", - "question_id": 9521, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005888", - "question_id": 9523, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000200", - "question_id": 9526, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003222", - "question_id": 9527, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005468", - "question_id": 9528, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002654", - "question_id": 9529, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003019", - "question_id": 9530, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006098", - "question_id": 9531, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"piano\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006555", - "question_id": 9534, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001795", - "question_id": 9535, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003879", - "question_id": 9537, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00000726", - "question_id": 9538, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008606", - "question_id": 9540, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008589", - "question_id": 9541, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000466", - "question_id": 9542, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007780", - "question_id": 9544, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000707", - "question_id": 9546, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"bassoon\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008736", - "question_id": 9548, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000529", - "question_id": 9549, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000103", - "question_id": 9552, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000103", - "question_id": 9552, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003100", - "question_id": 9554, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000263", - "question_id": 9555, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00000847", - "question_id": 9556, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"saxophone\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000771", - "question_id": 9559, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004297", - "question_id": 9560, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003712", - "question_id": 9562, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003795", - "question_id": 9563, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005555", - "question_id": 9564, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001636", - "question_id": 9565, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000810", - "question_id": 9568, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00002354", - "question_id": 9570, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000155", - "question_id": 9571, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001596", - "question_id": 9573, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006789", - "question_id": 9575, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007825", - "question_id": 9577, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006243", - "question_id": 9578, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"last\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005397", - "question_id": 9580, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007583", - "question_id": 9581, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006100", - "question_id": 9584, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004175", - "question_id": 9585, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005918", - "question_id": 9586, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002244", - "question_id": 9588, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007987", - "question_id": 9589, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007563", - "question_id": 9592, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000767", - "question_id": 9594, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00004001", - "question_id": 9595, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004642", - "question_id": 9597, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001071", - "question_id": 9599, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005956", - "question_id": 9601, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003403", - "question_id": 9602, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000482", - "question_id": 9604, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001137", - "question_id": 9605, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003106", - "question_id": 9606, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008195", - "question_id": 9607, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004807", - "question_id": 9610, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002274", - "question_id": 9611, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"electric_bass\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006634", - "question_id": 9613, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008574", - "question_id": 9614, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006672", - "question_id": 9615, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006168", - "question_id": 9616, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002368", - "question_id": 9620, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003198", - "question_id": 9622, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007986", - "question_id": 9623, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002036", - "question_id": 9625, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008186", - "question_id": 9630, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00000832", - "question_id": 9632, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008360", - "question_id": 9634, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003917", - "question_id": 9635, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007787", - "question_id": 9636, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006443", - "question_id": 9638, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000359", - "question_id": 9640, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005846", - "question_id": 9641, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004071", - "question_id": 9642, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003583", - "question_id": 9646, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006040", - "question_id": 9647, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004389", - "question_id": 9651, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002961", - "question_id": 9652, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007845", - "question_id": 9653, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00000411", - "question_id": 9654, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"erhu\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002768", - "question_id": 9655, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004743", - "question_id": 9656, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001330", - "question_id": 9657, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004466", - "question_id": 9658, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006506", - "question_id": 9660, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002326", - "question_id": 9661, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006465", - "question_id": 9662, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003292", - "question_id": 9663, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001394", - "question_id": 9665, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001649", - "question_id": 9667, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006151", - "question_id": 9668, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001372", - "question_id": 9671, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000464", - "question_id": 9672, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004650", - "question_id": 9673, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008865", - "question_id": 9674, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007539", - "question_id": 9676, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004055", - "question_id": 9677, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007394", - "question_id": 9678, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003700", - "question_id": 9681, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000341", - "question_id": 9685, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003832", - "question_id": 9687, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005088", - "question_id": 9688, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bagpipe\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005475", - "question_id": 9689, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003912", - "question_id": 9691, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004434", - "question_id": 9692, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003790", - "question_id": 9693, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00003863", - "question_id": 9694, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001787", - "question_id": 9695, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003877", - "question_id": 9696, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004398", - "question_id": 9702, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006702", - "question_id": 9703, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000018", - "question_id": 9704, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008922", - "question_id": 9705, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001926", - "question_id": 9711, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001595", - "question_id": 9712, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008475", - "question_id": 9714, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006975", - "question_id": 9716, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005112", - "question_id": 9718, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002282", - "question_id": 9719, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004173", - "question_id": 9720, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007677", - "question_id": 9721, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004302", - "question_id": 9724, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008040", - "question_id": 9726, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006619", - "question_id": 9727, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002690", - "question_id": 9729, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005898", - "question_id": 9730, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005036", - "question_id": 9731, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006112", - "question_id": 9733, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008029", - "question_id": 9734, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008390", - "question_id": 9735, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008699", - "question_id": 9736, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008361", - "question_id": 9739, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"guzheng\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00008199", - "question_id": 9740, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008934", - "question_id": 9744, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000974", - "question_id": 9745, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000156", - "question_id": 9747, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002396", - "question_id": 9748, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003552", - "question_id": 9749, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00004031", - "question_id": 9750, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00008100", - "question_id": 9751, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003862", - "question_id": 9752, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00006628", - "question_id": 9753, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007367", - "question_id": 9754, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001823", - "question_id": 9756, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00001445", - "question_id": 9757, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006618", - "question_id": 9760, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003223", - "question_id": 9761, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002302", - "question_id": 9763, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008364", - "question_id": 9764, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002176", - "question_id": 9766, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00003036", - "question_id": 9767, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00006587", - "question_id": 9768, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001227", - "question_id": 9769, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00008460", - "question_id": 9770, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005499", - "question_id": 9772, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000433", - "question_id": 9773, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006174", - "question_id": 9774, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00005131", - "question_id": 9777, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002114", - "question_id": 9778, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000162", - "question_id": 9781, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002950", - "question_id": 9782, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008858", - "question_id": 9784, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000425", - "question_id": 9785, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003263", - "question_id": 9791, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008918", - "question_id": 9793, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00001759", - "question_id": 9794, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001181", - "question_id": 9795, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005454", - "question_id": 9796, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00004085", - "question_id": 9797, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001728", - "question_id": 9798, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004204", - "question_id": 9799, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000779", - "question_id": 9801, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001839", - "question_id": 9802, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000736", - "question_id": 9804, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003242", - "question_id": 9805, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000792", - "question_id": 9806, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002804", - "question_id": 9808, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00007630", - "question_id": 9809, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005358", - "question_id": 9813, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005009", - "question_id": 9814, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008692", - "question_id": 9816, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004055", - "question_id": 9817, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006110", - "question_id": 9818, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00007204", - "question_id": 9819, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008907", - "question_id": 9820, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"saxophone\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006681", - "question_id": 9823, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003624", - "question_id": 9825, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004416", - "question_id": 9829, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007404", - "question_id": 9830, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00000962", - "question_id": 9831, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005033", - "question_id": 9832, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002292", - "question_id": 9835, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003180", - "question_id": 9836, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006229", - "question_id": 9837, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004007", - "question_id": 9841, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002695", - "question_id": 9842, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002273", - "question_id": 9844, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007295", - "question_id": 9845, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007013", - "question_id": 9846, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00003012", - "question_id": 9848, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005201", - "question_id": 9850, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006212", - "question_id": 9851, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001894", - "question_id": 9852, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003647", - "question_id": 9853, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00000209", - "question_id": 9855, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000709", - "question_id": 9857, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004015", - "question_id": 9860, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"drum\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001572", - "question_id": 9863, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000454", - "question_id": 9864, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006748", - "question_id": 9865, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006711", - "question_id": 9870, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00008007", - "question_id": 9872, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006176", - "question_id": 9873, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00005598", - "question_id": 9874, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003039", - "question_id": 9875, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003575", - "question_id": 9876, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004555", - "question_id": 9877, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003470", - "question_id": 9883, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001830", - "question_id": 9884, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00004895", - "question_id": 9885, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000359", - "question_id": 9886, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002472", - "question_id": 9888, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00002108", - "question_id": 9889, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000463", - "question_id": 9890, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001845", - "question_id": 9891, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008447", - "question_id": 9893, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008832", - "question_id": 9894, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00000617", - "question_id": 9895, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001536", - "question_id": 9897, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000610", - "question_id": 9898, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006429", - "question_id": 9899, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005740", - "question_id": 9901, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00000266", - "question_id": 9902, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003762", - "question_id": 9903, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000839", - "question_id": 9904, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003459", - "question_id": 9905, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002856", - "question_id": 9906, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003479", - "question_id": 9907, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003096", - "question_id": 9908, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004023", - "question_id": 9909, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00006259", - "question_id": 9910, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00001926", - "question_id": 9911, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003138", - "question_id": 9912, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000153", - "question_id": 9913, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00001970", - "question_id": 9915, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004325", - "question_id": 9916, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00000072", - "question_id": 9917, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004719", - "question_id": 9918, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001784", - "question_id": 9920, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007382", - "question_id": 9921, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006718", - "question_id": 9923, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008956", - "question_id": 9924, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005358", - "question_id": 9925, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001869", - "question_id": 9927, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00005084", - "question_id": 9931, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008067", - "question_id": 9933, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007337", - "question_id": 9936, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007252", - "question_id": 9937, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001278", - "question_id": 9940, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003573", - "question_id": 9941, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000770", - "question_id": 9943, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003637", - "question_id": 9945, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003249", - "question_id": 9947, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005194", - "question_id": 9948, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006626", - "question_id": 9949, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002828", - "question_id": 9950, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00004478", - "question_id": 9952, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007201", - "question_id": 9954, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00002003", - "question_id": 9955, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002220", - "question_id": 9956, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00000809", - "question_id": 9957, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002193", - "question_id": 9958, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"electric_bass\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000005", - "question_id": 9959, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003866", - "question_id": 9960, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000403", - "question_id": 9962, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008401", - "question_id": 9963, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00000816", - "question_id": 9965, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003736", - "question_id": 9967, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003736", - "question_id": 9967, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005441", - "question_id": 9968, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003188", - "question_id": 9969, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005092", - "question_id": 9970, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003222", - "question_id": 9971, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005467", - "question_id": 9973, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003247", - "question_id": 9974, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006421", - "question_id": 9976, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007252", - "question_id": 9977, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001132", - "question_id": 9978, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002425", - "question_id": 9979, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000252", - "question_id": 9980, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000924", - "question_id": 9981, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00001007", - "question_id": 9982, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001588", - "question_id": 9983, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002784", - "question_id": 9984, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"middle\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007910", - "question_id": 9985, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007553", - "question_id": 9986, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004263", - "question_id": 9989, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001914", - "question_id": 9991, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00008423", - "question_id": 9993, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001624", - "question_id": 9994, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004311", - "question_id": 9995, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002923", - "question_id": 9996, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00002165", - "question_id": 9997, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002195", - "question_id": 9999, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000467", - "question_id": 10000, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003669", - "question_id": 10001, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004345", - "question_id": 10002, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005650", - "question_id": 10003, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00008837", - "question_id": 10005, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000814", - "question_id": 10006, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007249", - "question_id": 10007, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000948", - "question_id": 10008, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008674", - "question_id": 10010, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008872", - "question_id": 10011, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007522", - "question_id": 10012, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007515", - "question_id": 10013, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00002531", - "question_id": 10014, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002854", - "question_id": 10016, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"tuba\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00000115", - "question_id": 10017, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002131", - "question_id": 10020, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004003", - "question_id": 10021, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00002574", - "question_id": 10022, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"saxophone\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001909", - "question_id": 10025, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00002325", - "question_id": 10026, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008254", - "question_id": 10028, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003009", - "question_id": 10029, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000195", - "question_id": 10030, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003712", - "question_id": 10031, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007835", - "question_id": 10032, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008959", - "question_id": 10036, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008554", - "question_id": 10037, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001201", - "question_id": 10038, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"bassoon\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00004334", - "question_id": 10039, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007165", - "question_id": 10040, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"erhu\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003108", - "question_id": 10041, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003108", - "question_id": 10041, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005976", - "question_id": 10042, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007845", - "question_id": 10044, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00001650", - "question_id": 10045, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003514", - "question_id": 10046, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006793", - "question_id": 10047, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008824", - "question_id": 10048, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004053", - "question_id": 10052, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005685", - "question_id": 10053, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006253", - "question_id": 10054, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005710", - "question_id": 10055, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008546", - "question_id": 10056, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000833", - "question_id": 10058, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"middle\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001634", - "question_id": 10059, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001521", - "question_id": 10060, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002501", - "question_id": 10062, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005158", - "question_id": 10063, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000071", - "question_id": 10065, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005030", - "question_id": 10067, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000917", - "question_id": 10068, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"fourth\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00000917", - "question_id": 10068, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"fourth\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00007578", - "question_id": 10069, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002581", - "question_id": 10070, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001350", - "question_id": 10076, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004735", - "question_id": 10078, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004208", - "question_id": 10080, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004479", - "question_id": 10081, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008822", - "question_id": 10085, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00000588", - "question_id": 10086, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001469", - "question_id": 10087, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002516", - "question_id": 10088, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002684", - "question_id": 10089, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004523", - "question_id": 10091, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005146", - "question_id": 10092, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006427", - "question_id": 10093, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005423", - "question_id": 10096, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002840", - "question_id": 10097, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00004552", - "question_id": 10098, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002116", - "question_id": 10099, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002230", - "question_id": 10100, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00002744", - "question_id": 10101, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000637", - "question_id": 10102, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004213", - "question_id": 10103, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006214", - "question_id": 10104, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008808", - "question_id": 10105, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008090", - "question_id": 10106, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003616", - "question_id": 10107, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003026", - "question_id": 10108, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007460", - "question_id": 10110, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007431", - "question_id": 10111, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005374", - "question_id": 10112, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006727", - "question_id": 10114, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007653", - "question_id": 10115, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001626", - "question_id": 10116, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000202", - "question_id": 10118, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001275", - "question_id": 10119, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008701", - "question_id": 10120, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00000160", - "question_id": 10121, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003565", - "question_id": 10122, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002486", - "question_id": 10124, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006603", - "question_id": 10130, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007568", - "question_id": 10131, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000038", - "question_id": 10133, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00000450", - "question_id": 10135, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006084", - "question_id": 10136, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005229", - "question_id": 10137, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001299", - "question_id": 10138, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004565", - "question_id": 10139, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006112", - "question_id": 10144, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"clarinet\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001940", - "question_id": 10148, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008525", - "question_id": 10150, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002100", - "question_id": 10151, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002452", - "question_id": 10152, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007722", - "question_id": 10153, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00001116", - "question_id": 10154, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005886", - "question_id": 10155, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004951", - "question_id": 10156, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003136", - "question_id": 10157, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004852", - "question_id": 10159, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005275", - "question_id": 10160, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000117", - "question_id": 10161, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007180", - "question_id": 10164, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00008895", - "question_id": 10165, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002860", - "question_id": 10166, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007459", - "question_id": 10168, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002449", - "question_id": 10169, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008394", - "question_id": 10172, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007538", - "question_id": 10175, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005234", - "question_id": 10177, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008737", - "question_id": 10178, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"xylophone\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002082", - "question_id": 10179, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003676", - "question_id": 10182, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008740", - "question_id": 10184, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008342", - "question_id": 10185, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008234", - "question_id": 10186, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00008103", - "question_id": 10188, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006776", - "question_id": 10189, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00006473", - "question_id": 10190, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005707", - "question_id": 10191, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005799", - "question_id": 10193, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001790", - "question_id": 10194, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007977", - "question_id": 10195, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006862", - "question_id": 10196, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005563", - "question_id": 10197, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003449", - "question_id": 10200, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004883", - "question_id": 10202, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00006307", - "question_id": 10205, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004669", - "question_id": 10208, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001189", - "question_id": 10209, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000973", - "question_id": 10210, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008719", - "question_id": 10213, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004077", - "question_id": 10214, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001501", - "question_id": 10215, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001222", - "question_id": 10216, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002702", - "question_id": 10218, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004960", - "question_id": 10220, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000037", - "question_id": 10221, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008564", - "question_id": 10222, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00001536", - "question_id": 10223, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002431", - "question_id": 10224, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006766", - "question_id": 10225, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005908", - "question_id": 10227, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000743", - "question_id": 10228, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00004750", - "question_id": 10230, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008428", - "question_id": 10232, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002898", - "question_id": 10233, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00008481", - "question_id": 10234, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003223", - "question_id": 10235, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002090", - "question_id": 10237, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001268", - "question_id": 10241, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005777", - "question_id": 10242, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001217", - "question_id": 10244, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001329", - "question_id": 10253, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006081", - "question_id": 10254, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006081", - "question_id": 10254, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005296", - "question_id": 10255, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008365", - "question_id": 10256, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002569", - "question_id": 10257, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000237", - "question_id": 10258, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003299", - "question_id": 10259, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007478", - "question_id": 10260, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007855", - "question_id": 10261, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007563", - "question_id": 10263, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003546", - "question_id": 10266, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002137", - "question_id": 10271, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004406", - "question_id": 10272, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"fourth\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007938", - "question_id": 10273, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"middle\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003928", - "question_id": 10276, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00004721", - "question_id": 10277, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008238", - "question_id": 10278, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007297", - "question_id": 10279, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00004607", - "question_id": 10281, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008831", - "question_id": 10282, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003893", - "question_id": 10283, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000106", - "question_id": 10284, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005671", - "question_id": 10287, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00007437", - "question_id": 10289, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002928", - "question_id": 10292, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001010", - "question_id": 10293, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00003067", - "question_id": 10295, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003721", - "question_id": 10296, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000593", - "question_id": 10300, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00007480", - "question_id": 10301, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007617", - "question_id": 10302, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006138", - "question_id": 10303, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001865", - "question_id": 10304, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004877", - "question_id": 10306, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004241", - "question_id": 10307, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001046", - "question_id": 10310, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002187", - "question_id": 10313, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007798", - "question_id": 10314, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008013", - "question_id": 10315, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008063", - "question_id": 10316, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008592", - "question_id": 10317, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008699", - "question_id": 10319, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002367", - "question_id": 10320, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008046", - "question_id": 10321, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00001714", - "question_id": 10323, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005318", - "question_id": 10324, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006359", - "question_id": 10325, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006309", - "question_id": 10326, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00001633", - "question_id": 10327, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006246", - "question_id": 10328, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00003942", - "question_id": 10330, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002450", - "question_id": 10332, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006872", - "question_id": 10333, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"electric_bass\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003365", - "question_id": 10334, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000209", - "question_id": 10335, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005367", - "question_id": 10338, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000669", - "question_id": 10339, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"fourth\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00007556", - "question_id": 10341, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002698", - "question_id": 10342, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006776", - "question_id": 10343, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001221", - "question_id": 10345, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000092", - "question_id": 10346, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003854", - "question_id": 10349, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005256", - "question_id": 10350, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00006073", - "question_id": 10352, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00007339", - "question_id": 10353, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007162", - "question_id": 10354, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000012", - "question_id": 10356, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000678", - "question_id": 10357, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006387", - "question_id": 10358, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000711", - "question_id": 10359, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002974", - "question_id": 10361, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002401", - "question_id": 10364, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001928", - "question_id": 10365, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008467", - "question_id": 10366, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001984", - "question_id": 10367, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005749", - "question_id": 10368, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001547", - "question_id": 10369, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"banjo\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007760", - "question_id": 10371, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003269", - "question_id": 10374, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002974", - "question_id": 10377, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002239", - "question_id": 10378, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003553", - "question_id": 10379, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002201", - "question_id": 10380, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005459", - "question_id": 10382, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00001073", - "question_id": 10383, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008357", - "question_id": 10386, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006376", - "question_id": 10389, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007606", - "question_id": 10392, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007387", - "question_id": 10394, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003711", - "question_id": 10396, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006242", - "question_id": 10397, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000399", - "question_id": 10398, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003019", - "question_id": 10399, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000214", - "question_id": 10400, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001583", - "question_id": 10401, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002202", - "question_id": 10402, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008705", - "question_id": 10403, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005670", - "question_id": 10405, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005614", - "question_id": 10407, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00001277", - "question_id": 10413, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003423", - "question_id": 10414, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004803", - "question_id": 10415, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002879", - "question_id": 10416, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001933", - "question_id": 10417, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006314", - "question_id": 10420, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008455", - "question_id": 10421, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001382", - "question_id": 10422, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001887", - "question_id": 10425, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005644", - "question_id": 10427, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00006471", - "question_id": 10428, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007126", - "question_id": 10429, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004277", - "question_id": 10430, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000266", - "question_id": 10431, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005740", - "question_id": 10432, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004979", - "question_id": 10433, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001275", - "question_id": 10435, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003317", - "question_id": 10436, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002475", - "question_id": 10437, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007356", - "question_id": 10440, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003172", - "question_id": 10442, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002494", - "question_id": 10443, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005953", - "question_id": 10444, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002157", - "question_id": 10445, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00005054", - "question_id": 10447, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006322", - "question_id": 10448, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00002253", - "question_id": 10449, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002563", - "question_id": 10450, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00005487", - "question_id": 10451, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00003372", - "question_id": 10452, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005306", - "question_id": 10453, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002834", - "question_id": 10454, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005499", - "question_id": 10455, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006347", - "question_id": 10456, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001846", - "question_id": 10458, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007285", - "question_id": 10460, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007565", - "question_id": 10463, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000787", - "question_id": 10465, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007144", - "question_id": 10466, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00007982", - "question_id": 10467, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00006021", - "question_id": 10469, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00000349", - "question_id": 10470, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002321", - "question_id": 10472, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004385", - "question_id": 10473, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00003773", - "question_id": 10474, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00007948", - "question_id": 10476, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"bassoon\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008135", - "question_id": 10477, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000542", - "question_id": 10478, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006052", - "question_id": 10480, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008490", - "question_id": 10482, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003226", - "question_id": 10486, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005050", - "question_id": 10487, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001551", - "question_id": 10489, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004700", - "question_id": 10490, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000325", - "question_id": 10491, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001627", - "question_id": 10492, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"erhu\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001833", - "question_id": 10493, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005856", - "question_id": 10495, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004719", - "question_id": 10497, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007771", - "question_id": 10499, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002487", - "question_id": 10502, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004679", - "question_id": 10504, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000360", - "question_id": 10505, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"tuba\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006557", - "question_id": 10507, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001537", - "question_id": 10509, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00004586", - "question_id": 10514, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005048", - "question_id": 10515, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007541", - "question_id": 10516, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002608", - "question_id": 10517, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002960", - "question_id": 10519, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001937", - "question_id": 10520, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005747", - "question_id": 10521, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004601", - "question_id": 10522, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007647", - "question_id": 10523, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008907", - "question_id": 10524, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008621", - "question_id": 10525, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008273", - "question_id": 10526, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000012", - "question_id": 10527, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005868", - "question_id": 10528, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00000290", - "question_id": 10529, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000665", - "question_id": 10531, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005896", - "question_id": 10532, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007805", - "question_id": 10533, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008709", - "question_id": 10535, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003423", - "question_id": 10536, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002842", - "question_id": 10537, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007023", - "question_id": 10539, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002340", - "question_id": 10540, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003779", - "question_id": 10541, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002250", - "question_id": 10542, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"congas\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001909", - "question_id": 10547, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008598", - "question_id": 10549, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003723", - "question_id": 10550, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006555", - "question_id": 10551, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005704", - "question_id": 10552, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004937", - "question_id": 10553, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"xylophone\", \"middle\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001698", - "question_id": 10554, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"ukulele\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005524", - "question_id": 10555, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003722", - "question_id": 10557, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00004825", - "question_id": 10558, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008505", - "question_id": 10563, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003447", - "question_id": 10564, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000670", - "question_id": 10568, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005124", - "question_id": 10569, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004564", - "question_id": 10570, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00004880", - "question_id": 10571, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"xylophone\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001099", - "question_id": 10572, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00004833", - "question_id": 10573, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007698", - "question_id": 10575, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006391", - "question_id": 10576, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006846", - "question_id": 10577, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"drum\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006361", - "question_id": 10578, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008056", - "question_id": 10579, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008966", - "question_id": 10580, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008966", - "question_id": 10580, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008549", - "question_id": 10582, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00000667", - "question_id": 10583, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007192", - "question_id": 10585, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003842", - "question_id": 10588, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004396", - "question_id": 10589, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008172", - "question_id": 10590, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004944", - "question_id": 10591, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006761", - "question_id": 10592, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00002158", - "question_id": 10593, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001345", - "question_id": 10594, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006953", - "question_id": 10595, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007888", - "question_id": 10597, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006903", - "question_id": 10598, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004841", - "question_id": 10599, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003380", - "question_id": 10600, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004881", - "question_id": 10602, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007212", - "question_id": 10604, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000479", - "question_id": 10605, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005058", - "question_id": 10606, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004192", - "question_id": 10607, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001457", - "question_id": 10608, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002092", - "question_id": 10609, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003247", - "question_id": 10610, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007056", - "question_id": 10611, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003599", - "question_id": 10612, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006037", - "question_id": 10613, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004479", - "question_id": 10615, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005255", - "question_id": 10622, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004196", - "question_id": 10623, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000307", - "question_id": 10628, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008620", - "question_id": 10630, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000384", - "question_id": 10631, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004310", - "question_id": 10634, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001057", - "question_id": 10635, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000293", - "question_id": 10636, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00001648", - "question_id": 10637, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005207", - "question_id": 10639, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006641", - "question_id": 10640, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005918", - "question_id": 10641, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002432", - "question_id": 10642, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003724", - "question_id": 10645, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003110", - "question_id": 10647, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00002081", - "question_id": 10650, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008592", - "question_id": 10652, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000483", - "question_id": 10655, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006703", - "question_id": 10656, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003563", - "question_id": 10657, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008606", - "question_id": 10658, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00003861", - "question_id": 10661, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000022", - "question_id": 10663, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006760", - "question_id": 10664, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004904", - "question_id": 10665, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001963", - "question_id": 10671, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006108", - "question_id": 10674, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003232", - "question_id": 10675, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00002464", - "question_id": 10676, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00005210", - "question_id": 10678, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005968", - "question_id": 10679, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005968", - "question_id": 10679, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006120", - "question_id": 10680, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00001714", - "question_id": 10681, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000149", - "question_id": 10684, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000149", - "question_id": 10684, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003975", - "question_id": 10685, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007910", - "question_id": 10687, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00004839", - "question_id": 10688, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007481", - "question_id": 10691, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008882", - "question_id": 10692, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000950", - "question_id": 10694, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008025", - "question_id": 10695, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007722", - "question_id": 10697, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00008337", - "question_id": 10698, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005204", - "question_id": 10699, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005601", - "question_id": 10701, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008667", - "question_id": 10703, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006582", - "question_id": 10704, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007515", - "question_id": 10705, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007490", - "question_id": 10706, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006283", - "question_id": 10707, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"middle\", \"congas\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003493", - "question_id": 10708, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006708", - "question_id": 10709, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001787", - "question_id": 10711, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002122", - "question_id": 10714, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004400", - "question_id": 10715, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001021", - "question_id": 10716, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002371", - "question_id": 10717, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008792", - "question_id": 10718, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000225", - "question_id": 10720, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001968", - "question_id": 10721, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005714", - "question_id": 10723, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00008504", - "question_id": 10724, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000126", - "question_id": 10725, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000477", - "question_id": 10726, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008168", - "question_id": 10727, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002569", - "question_id": 10729, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008135", - "question_id": 10730, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002793", - "question_id": 10733, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006670", - "question_id": 10734, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008272", - "question_id": 10735, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001654", - "question_id": 10737, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007647", - "question_id": 10739, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005984", - "question_id": 10742, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004348", - "question_id": 10743, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000115", - "question_id": 10744, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007552", - "question_id": 10745, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005112", - "question_id": 10746, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007193", - "question_id": 10747, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000777", - "question_id": 10750, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006212", - "question_id": 10751, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006856", - "question_id": 10753, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007167", - "question_id": 10754, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008882", - "question_id": 10755, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008516", - "question_id": 10756, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001714", - "question_id": 10758, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007615", - "question_id": 10761, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006993", - "question_id": 10762, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005773", - "question_id": 10763, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005834", - "question_id": 10765, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"middle\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006214", - "question_id": 10766, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008705", - "question_id": 10767, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008459", - "question_id": 10770, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001316", - "question_id": 10772, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007567", - "question_id": 10773, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001513", - "question_id": 10775, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000726", - "question_id": 10777, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004273", - "question_id": 10778, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003824", - "question_id": 10779, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008656", - "question_id": 10780, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007142", - "question_id": 10782, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008906", - "question_id": 10783, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008862", - "question_id": 10786, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00005605", - "question_id": 10790, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000271", - "question_id": 10791, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006313", - "question_id": 10792, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003074", - "question_id": 10793, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004143", - "question_id": 10794, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005124", - "question_id": 10795, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003747", - "question_id": 10796, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008319", - "question_id": 10797, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005898", - "question_id": 10798, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004497", - "question_id": 10799, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004271", - "question_id": 10800, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001845", - "question_id": 10802, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004391", - "question_id": 10806, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000900", - "question_id": 10807, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00000339", - "question_id": 10808, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000945", - "question_id": 10812, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003128", - "question_id": 10813, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005863", - "question_id": 10818, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003501", - "question_id": 10819, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004430", - "question_id": 10820, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005071", - "question_id": 10821, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00000849", - "question_id": 10822, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001853", - "question_id": 10823, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007901", - "question_id": 10824, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005837", - "question_id": 10826, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007750", - "question_id": 10827, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008040", - "question_id": 10828, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008254", - "question_id": 10829, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008381", - "question_id": 10830, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001652", - "question_id": 10831, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002077", - "question_id": 10832, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007969", - "question_id": 10835, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000301", - "question_id": 10838, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007762", - "question_id": 10841, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00006843", - "question_id": 10843, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00007662", - "question_id": 10844, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008045", - "question_id": 10847, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"drum\", \"left\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003811", - "question_id": 10848, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006837", - "question_id": 10849, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003658", - "question_id": 10850, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008491", - "question_id": 10851, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004262", - "question_id": 10853, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005871", - "question_id": 10854, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005270", - "question_id": 10858, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003625", - "question_id": 10859, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007499", - "question_id": 10860, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007499", - "question_id": 10860, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000645", - "question_id": 10862, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"banjo\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006517", - "question_id": 10864, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005358", - "question_id": 10866, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000853", - "question_id": 10868, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004802", - "question_id": 10869, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00006400", - "question_id": 10870, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002433", - "question_id": 10872, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005455", - "question_id": 10876, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006289", - "question_id": 10877, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006771", - "question_id": 10879, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005431", - "question_id": 10881, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005861", - "question_id": 10883, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005170", - "question_id": 10884, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005474", - "question_id": 10885, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001189", - "question_id": 10886, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003493", - "question_id": 10888, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00004551", - "question_id": 10890, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001772", - "question_id": 10894, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007041", - "question_id": 10895, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007610", - "question_id": 10896, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"tuba\", \"right\", \"flute\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007770", - "question_id": 10898, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005326", - "question_id": 10899, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006894", - "question_id": 10900, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006894", - "question_id": 10900, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003695", - "question_id": 10901, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00002619", - "question_id": 10903, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001266", - "question_id": 10904, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00001910", - "question_id": 10905, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000712", - "question_id": 10906, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001113", - "question_id": 10908, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008910", - "question_id": 10909, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004983", - "question_id": 10910, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000490", - "question_id": 10913, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004487", - "question_id": 10914, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006773", - "question_id": 10915, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002331", - "question_id": 10916, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004302", - "question_id": 10917, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000042", - "question_id": 10918, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007185", - "question_id": 10921, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00000845", - "question_id": 10923, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003433", - "question_id": 10924, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003204", - "question_id": 10926, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003939", - "question_id": 10927, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007850", - "question_id": 10929, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003423", - "question_id": 10930, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"drum\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004169", - "question_id": 10931, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006841", - "question_id": 10933, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003201", - "question_id": 10934, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000652", - "question_id": 10937, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"drum\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003482", - "question_id": 10938, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008944", - "question_id": 10939, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006194", - "question_id": 10942, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006068", - "question_id": 10945, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004160", - "question_id": 10948, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002371", - "question_id": 10949, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"left\", \"trumpet\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002116", - "question_id": 10950, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000758", - "question_id": 10951, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000332", - "question_id": 10952, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003977", - "question_id": 10953, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008680", - "question_id": 10954, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00005114", - "question_id": 10955, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006228", - "question_id": 10956, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00003270", - "question_id": 10957, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003272", - "question_id": 10958, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007119", - "question_id": 10960, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008492", - "question_id": 10962, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008794", - "question_id": 10963, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005644", - "question_id": 10964, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003269", - "question_id": 10966, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004726", - "question_id": 10967, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003169", - "question_id": 10969, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007841", - "question_id": 10971, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008369", - "question_id": 10973, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007253", - "question_id": 10975, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002664", - "question_id": 10979, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008265", - "question_id": 10982, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004097", - "question_id": 10983, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008923", - "question_id": 10985, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001095", - "question_id": 10987, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007231", - "question_id": 10988, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006022", - "question_id": 10989, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"clarinet\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00001188", - "question_id": 10990, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00007838", - "question_id": 10991, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007085", - "question_id": 10992, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00005237", - "question_id": 10993, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"electric_bass\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001238", - "question_id": 10994, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008290", - "question_id": 10996, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005898", - "question_id": 10998, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005280", - "question_id": 11000, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007101", - "question_id": 11001, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003019", - "question_id": 11002, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002980", - "question_id": 11003, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008870", - "question_id": 11004, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00005978", - "question_id": 11005, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000070", - "question_id": 11006, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006557", - "question_id": 11007, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002359", - "question_id": 11009, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000723", - "question_id": 11010, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003155", - "question_id": 11012, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001754", - "question_id": 11013, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001754", - "question_id": 11013, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001230", - "question_id": 11014, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"drum\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00006841", - "question_id": 11016, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005326", - "question_id": 11018, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007176", - "question_id": 11019, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008632", - "question_id": 11022, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004684", - "question_id": 11023, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00006065", - "question_id": 11024, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000454", - "question_id": 11026, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007174", - "question_id": 11027, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002936", - "question_id": 11028, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"violin\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000966", - "question_id": 11029, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"ukulele\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003335", - "question_id": 11032, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002018", - "question_id": 11033, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007786", - "question_id": 11035, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001641", - "question_id": 11037, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"drum\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003431", - "question_id": 11039, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003801", - "question_id": 11041, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008519", - "question_id": 11043, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007875", - "question_id": 11044, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000174", - "question_id": 11046, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"saxophone\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002726", - "question_id": 11047, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003254", - "question_id": 11048, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002355", - "question_id": 11049, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001622", - "question_id": 11050, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00008461", - "question_id": 11051, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003136", - "question_id": 11052, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006225", - "question_id": 11054, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002074", - "question_id": 11055, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001736", - "question_id": 11059, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001587", - "question_id": 11060, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000234", - "question_id": 11061, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003626", - "question_id": 11062, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006080", - "question_id": 11063, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007516", - "question_id": 11064, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00006327", - "question_id": 11065, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002924", - "question_id": 11067, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000911", - "question_id": 11068, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001814", - "question_id": 11069, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003642", - "question_id": 11070, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006314", - "question_id": 11072, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001055", - "question_id": 11074, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007111", - "question_id": 11075, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"flute\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000946", - "question_id": 11076, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008335", - "question_id": 11078, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006765", - "question_id": 11081, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008341", - "question_id": 11082, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008027", - "question_id": 11083, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004903", - "question_id": 11084, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000591", - "question_id": 11085, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000224", - "question_id": 11086, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000837", - "question_id": 11087, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00006284", - "question_id": 11088, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005669", - "question_id": 11089, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006389", - "question_id": 11091, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004668", - "question_id": 11092, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007527", - "question_id": 11095, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004226", - "question_id": 11097, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00001829", - "question_id": 11098, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006963", - "question_id": 11099, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00008572", - "question_id": 11100, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"middle\", \"bassoon\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002983", - "question_id": 11101, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001621", - "question_id": 11103, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003122", - "question_id": 11106, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006008", - "question_id": 11107, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006171", - "question_id": 11108, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007809", - "question_id": 11109, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006333", - "question_id": 11110, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000403", - "question_id": 11114, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000564", - "question_id": 11118, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00007530", - "question_id": 11119, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001895", - "question_id": 11120, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"middle\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008815", - "question_id": 11121, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003426", - "question_id": 11124, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005175", - "question_id": 11125, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00003543", - "question_id": 11126, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002869", - "question_id": 11127, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000757", - "question_id": 11128, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000318", - "question_id": 11131, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007661", - "question_id": 11133, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005731", - "question_id": 11134, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001347", - "question_id": 11138, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008177", - "question_id": 11140, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002361", - "question_id": 11141, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000189", - "question_id": 11146, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000428", - "question_id": 11147, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008880", - "question_id": 11149, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004044", - "question_id": 11150, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002139", - "question_id": 11151, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004883", - "question_id": 11152, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00007972", - "question_id": 11154, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004268", - "question_id": 11155, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008787", - "question_id": 11157, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001303", - "question_id": 11159, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005815", - "question_id": 11160, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007388", - "question_id": 11161, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001388", - "question_id": 11172, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001301", - "question_id": 11174, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006523", - "question_id": 11175, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00006610", - "question_id": 11176, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008117", - "question_id": 11177, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001574", - "question_id": 11181, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006193", - "question_id": 11184, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004205", - "question_id": 11185, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002313", - "question_id": 11186, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00001634", - "question_id": 11189, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003910", - "question_id": 11190, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000094", - "question_id": 11191, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00008771", - "question_id": 11192, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"left\", \"tuba\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005502", - "question_id": 11193, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00004252", - "question_id": 11194, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006367", - "question_id": 11195, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001494", - "question_id": 11196, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007031", - "question_id": 11197, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000757", - "question_id": 11199, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007440", - "question_id": 11200, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007440", - "question_id": 11200, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000002", - "question_id": 11201, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007853", - "question_id": 11202, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"drum\", \"right\", \"electric_bass\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008816", - "question_id": 11203, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001484", - "question_id": 11204, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004769", - "question_id": 11205, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005666", - "question_id": 11207, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003538", - "question_id": 11208, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008672", - "question_id": 11209, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"acoustic_guitar\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007850", - "question_id": 11214, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007087", - "question_id": 11216, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002871", - "question_id": 11218, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002380", - "question_id": 11219, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003978", - "question_id": 11223, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005398", - "question_id": 11225, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006686", - "question_id": 11226, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007002", - "question_id": 11228, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007159", - "question_id": 11230, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004233", - "question_id": 11231, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007999", - "question_id": 11233, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001325", - "question_id": 11234, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001112", - "question_id": 11235, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005038", - "question_id": 11236, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001055", - "question_id": 11237, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001990", - "question_id": 11239, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001990", - "question_id": 11239, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008773", - "question_id": 11241, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006307", - "question_id": 11243, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000961", - "question_id": 11245, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001824", - "question_id": 11246, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00001218", - "question_id": 11247, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002080", - "question_id": 11249, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008594", - "question_id": 11251, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001383", - "question_id": 11253, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008489", - "question_id": 11254, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001631", - "question_id": 11255, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007190", - "question_id": 11257, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007877", - "question_id": 11258, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002569", - "question_id": 11259, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001023", - "question_id": 11260, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005467", - "question_id": 11261, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006213", - "question_id": 11263, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008272", - "question_id": 11265, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001212", - "question_id": 11267, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003628", - "question_id": 11268, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006486", - "question_id": 11269, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007428", - "question_id": 11272, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003792", - "question_id": 11275, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005911", - "question_id": 11276, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006580", - "question_id": 11277, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bagpipe\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002887", - "question_id": 11278, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001059", - "question_id": 11279, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000856", - "question_id": 11284, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003042", - "question_id": 11286, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007947", - "question_id": 11288, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002377", - "question_id": 11290, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00008010", - "question_id": 11292, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005541", - "question_id": 11294, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003252", - "question_id": 11295, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001814", - "question_id": 11296, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006514", - "question_id": 11298, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000590", - "question_id": 11303, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003930", - "question_id": 11304, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006096", - "question_id": 11305, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002883", - "question_id": 11306, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006272", - "question_id": 11307, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00006789", - "question_id": 11309, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006213", - "question_id": 11310, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005679", - "question_id": 11313, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003178", - "question_id": 11314, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000688", - "question_id": 11315, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006068", - "question_id": 11316, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005008", - "question_id": 11318, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000906", - "question_id": 11319, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006563", - "question_id": 11320, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001017", - "question_id": 11322, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007526", - "question_id": 11323, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007465", - "question_id": 11324, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008958", - "question_id": 11325, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007228", - "question_id": 11331, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008475", - "question_id": 11335, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001982", - "question_id": 11336, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006607", - "question_id": 11337, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007040", - "question_id": 11340, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006745", - "question_id": 11341, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"last\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004145", - "question_id": 11343, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003341", - "question_id": 11346, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006903", - "question_id": 11348, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006669", - "question_id": 11350, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00007153", - "question_id": 11353, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000651", - "question_id": 11355, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003039", - "question_id": 11356, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007294", - "question_id": 11358, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000354", - "question_id": 11359, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003630", - "question_id": 11360, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003314", - "question_id": 11361, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005705", - "question_id": 11362, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"drum\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001566", - "question_id": 11364, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000604", - "question_id": 11368, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000983", - "question_id": 11369, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006654", - "question_id": 11370, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002189", - "question_id": 11371, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00005821", - "question_id": 11372, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001375", - "question_id": 11373, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001084", - "question_id": 11374, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"right\", \"drum\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001792", - "question_id": 11375, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001828", - "question_id": 11376, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004756", - "question_id": 11378, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006798", - "question_id": 11379, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002019", - "question_id": 11381, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007510", - "question_id": 11382, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00003248", - "question_id": 11383, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005468", - "question_id": 11387, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000806", - "question_id": 11388, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008216", - "question_id": 11389, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003117", - "question_id": 11390, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004928", - "question_id": 11391, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006329", - "question_id": 11392, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000060", - "question_id": 11393, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008977", - "question_id": 11394, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001935", - "question_id": 11396, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004769", - "question_id": 11398, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006383", - "question_id": 11399, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006902", - "question_id": 11400, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000508", - "question_id": 11403, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000941", - "question_id": 11404, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006242", - "question_id": 11405, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001687", - "question_id": 11407, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008351", - "question_id": 11408, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000972", - "question_id": 11410, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004693", - "question_id": 11411, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006031", - "question_id": 11414, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005235", - "question_id": 11415, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005903", - "question_id": 11416, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002069", - "question_id": 11419, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004076", - "question_id": 11420, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002363", - "question_id": 11421, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002363", - "question_id": 11421, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007716", - "question_id": 11423, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00006286", - "question_id": 11425, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007731", - "question_id": 11426, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004713", - "question_id": 11428, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007744", - "question_id": 11429, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004179", - "question_id": 11430, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007736", - "question_id": 11431, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000294", - "question_id": 11433, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006320", - "question_id": 11434, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008537", - "question_id": 11435, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005440", - "question_id": 11437, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002069", - "question_id": 11439, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001567", - "question_id": 11440, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003107", - "question_id": 11441, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001717", - "question_id": 11442, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008560", - "question_id": 11443, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004743", - "question_id": 11445, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005886", - "question_id": 11446, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002408", - "question_id": 11449, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006524", - "question_id": 11450, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"pipa\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003831", - "question_id": 11451, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007291", - "question_id": 11453, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002838", - "question_id": 11454, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004668", - "question_id": 11456, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007790", - "question_id": 11457, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005234", - "question_id": 11458, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001331", - "question_id": 11461, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006664", - "question_id": 11462, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000247", - "question_id": 11463, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bagpipe\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006370", - "question_id": 11464, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004434", - "question_id": 11466, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00004692", - "question_id": 11467, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007133", - "question_id": 11468, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007143", - "question_id": 11469, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007246", - "question_id": 11471, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000596", - "question_id": 11472, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001933", - "question_id": 11473, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001925", - "question_id": 11474, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004874", - "question_id": 11477, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"xylophone\", \"right\", \"electric_bass\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004360", - "question_id": 11480, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006036", - "question_id": 11481, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001764", - "question_id": 11482, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005990", - "question_id": 11483, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002517", - "question_id": 11484, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001946", - "question_id": 11485, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008671", - "question_id": 11486, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002242", - "question_id": 11487, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006911", - "question_id": 11488, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004464", - "question_id": 11490, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006631", - "question_id": 11491, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003000", - "question_id": 11494, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005535", - "question_id": 11495, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000238", - "question_id": 11496, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003213", - "question_id": 11497, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006924", - "question_id": 11499, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004039", - "question_id": 11500, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008932", - "question_id": 11501, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002773", - "question_id": 11503, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002228", - "question_id": 11504, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"piano\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007064", - "question_id": 11505, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008252", - "question_id": 11507, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00008739", - "question_id": 11508, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002428", - "question_id": 11509, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002536", - "question_id": 11510, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007593", - "question_id": 11511, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000980", - "question_id": 11512, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002371", - "question_id": 11513, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000314", - "question_id": 11514, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007459", - "question_id": 11515, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002286", - "question_id": 11516, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001833", - "question_id": 11519, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005768", - "question_id": 11520, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006893", - "question_id": 11521, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004935", - "question_id": 11522, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004900", - "question_id": 11525, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003964", - "question_id": 11529, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001548", - "question_id": 11530, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001108", - "question_id": 11531, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007893", - "question_id": 11532, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001941", - "question_id": 11534, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00002549", - "question_id": 11535, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000761", - "question_id": 11536, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002023", - "question_id": 11539, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008574", - "question_id": 11540, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004371", - "question_id": 11541, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003814", - "question_id": 11542, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002865", - "question_id": 11543, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"right\", \"electric_bass\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003757", - "question_id": 11544, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000002", - "question_id": 11545, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002385", - "question_id": 11549, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003055", - "question_id": 11550, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006392", - "question_id": 11551, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008336", - "question_id": 11554, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006469", - "question_id": 11555, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006691", - "question_id": 11556, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004855", - "question_id": 11557, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000496", - "question_id": 11558, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006893", - "question_id": 11560, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004225", - "question_id": 11561, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bagpipe\", \"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005359", - "question_id": 11562, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002185", - "question_id": 11563, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003802", - "question_id": 11564, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002603", - "question_id": 11566, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003496", - "question_id": 11568, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000537", - "question_id": 11569, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001544", - "question_id": 11570, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001633", - "question_id": 11571, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008306", - "question_id": 11573, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008309", - "question_id": 11574, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00005591", - "question_id": 11576, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004410", - "question_id": 11577, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000557", - "question_id": 11578, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004832", - "question_id": 11579, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008195", - "question_id": 11580, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006525", - "question_id": 11581, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007631", - "question_id": 11582, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004551", - "question_id": 11584, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000083", - "question_id": 11585, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002231", - "question_id": 11587, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004135", - "question_id": 11589, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002680", - "question_id": 11591, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008814", - "question_id": 11593, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006841", - "question_id": 11594, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005954", - "question_id": 11595, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003451", - "question_id": 11596, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008910", - "question_id": 11597, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008290", - "question_id": 11598, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004709", - "question_id": 11599, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000390", - "question_id": 11600, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006398", - "question_id": 11602, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007548", - "question_id": 11604, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008285", - "question_id": 11605, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004415", - "question_id": 11606, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006790", - "question_id": 11607, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001835", - "question_id": 11608, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001679", - "question_id": 11609, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002651", - "question_id": 11610, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007036", - "question_id": 11611, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007034", - "question_id": 11614, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008471", - "question_id": 11616, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004124", - "question_id": 11619, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008753", - "question_id": 11620, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005899", - "question_id": 11621, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007282", - "question_id": 11623, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003548", - "question_id": 11625, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007420", - "question_id": 11626, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008486", - "question_id": 11627, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000105", - "question_id": 11628, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001795", - "question_id": 11629, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006828", - "question_id": 11630, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007316", - "question_id": 11631, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004506", - "question_id": 11632, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008339", - "question_id": 11633, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005925", - "question_id": 11634, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007239", - "question_id": 11636, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008258", - "question_id": 11638, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003974", - "question_id": 11641, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004970", - "question_id": 11642, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007219", - "question_id": 11643, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008728", - "question_id": 11644, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007566", - "question_id": 11645, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001148", - "question_id": 11647, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005278", - "question_id": 11648, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007240", - "question_id": 11650, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005339", - "question_id": 11652, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00002113", - "question_id": 11654, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00000944", - "question_id": 11659, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001753", - "question_id": 11662, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003505", - "question_id": 11663, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"last\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000445", - "question_id": 11664, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007739", - "question_id": 11665, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003964", - "question_id": 11666, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00008694", - "question_id": 11668, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002018", - "question_id": 11672, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002818", - "question_id": 11675, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004750", - "question_id": 11679, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008602", - "question_id": 11680, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00003874", - "question_id": 11682, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00000169", - "question_id": 11683, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007590", - "question_id": 11684, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001959", - "question_id": 11685, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003575", - "question_id": 11686, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002719", - "question_id": 11687, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003878", - "question_id": 11690, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002096", - "question_id": 11692, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00008359", - "question_id": 11693, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005185", - "question_id": 11695, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007119", - "question_id": 11697, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002050", - "question_id": 11698, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007907", - "question_id": 11699, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003259", - "question_id": 11700, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007511", - "question_id": 11701, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006576", - "question_id": 11702, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007461", - "question_id": 11703, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001428", - "question_id": 11705, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000319", - "question_id": 11706, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003592", - "question_id": 11707, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00004934", - "question_id": 11708, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006743", - "question_id": 11711, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"tuba\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008720", - "question_id": 11713, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"xylophone\", \"left\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008107", - "question_id": 11715, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008107", - "question_id": 11715, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001933", - "question_id": 11716, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002578", - "question_id": 11717, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004398", - "question_id": 11718, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007924", - "question_id": 11722, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002331", - "question_id": 11723, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002123", - "question_id": 11724, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00001429", - "question_id": 11725, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007454", - "question_id": 11727, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004641", - "question_id": 11728, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00002239", - "question_id": 11730, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001687", - "question_id": 11731, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002058", - "question_id": 11732, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008635", - "question_id": 11733, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007351", - "question_id": 11734, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006693", - "question_id": 11735, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006287", - "question_id": 11736, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004917", - "question_id": 11738, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007819", - "question_id": 11739, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003031", - "question_id": 11740, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002718", - "question_id": 11742, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007176", - "question_id": 11744, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006911", - "question_id": 11745, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007472", - "question_id": 11746, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001814", - "question_id": 11747, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008637", - "question_id": 11748, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001668", - "question_id": 11749, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008261", - "question_id": 11750, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002593", - "question_id": 11751, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008120", - "question_id": 11752, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001170", - "question_id": 11754, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000843", - "question_id": 11756, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000320", - "question_id": 11758, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002949", - "question_id": 11759, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001121", - "question_id": 11760, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003944", - "question_id": 11761, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000626", - "question_id": 11762, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002474", - "question_id": 11764, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00000181", - "question_id": 11765, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008527", - "question_id": 11766, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006594", - "question_id": 11767, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006931", - "question_id": 11768, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003187", - "question_id": 11769, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003713", - "question_id": 11770, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006782", - "question_id": 11771, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001957", - "question_id": 11773, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006862", - "question_id": 11777, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007131", - "question_id": 11779, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00008186", - "question_id": 11780, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004602", - "question_id": 11781, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00003111", - "question_id": 11782, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004493", - "question_id": 11785, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001153", - "question_id": 11786, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000965", - "question_id": 11788, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001143", - "question_id": 11792, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004247", - "question_id": 11794, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002991", - "question_id": 11796, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003599", - "question_id": 11798, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00004048", - "question_id": 11800, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001937", - "question_id": 11801, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000772", - "question_id": 11802, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006321", - "question_id": 11803, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000341", - "question_id": 11804, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002908", - "question_id": 11806, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005877", - "question_id": 11810, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000402", - "question_id": 11811, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00008464", - "question_id": 11814, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002422", - "question_id": 11816, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004363", - "question_id": 11817, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007961", - "question_id": 11818, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004409", - "question_id": 11819, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007948", - "question_id": 11821, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002796", - "question_id": 11822, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002179", - "question_id": 11826, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007960", - "question_id": 11827, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00002981", - "question_id": 11828, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001976", - "question_id": 11832, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003896", - "question_id": 11833, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001152", - "question_id": 11834, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003316", - "question_id": 11835, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000882", - "question_id": 11836, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00007472", - "question_id": 11838, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001352", - "question_id": 11839, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005784", - "question_id": 11840, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006595", - "question_id": 11841, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006251", - "question_id": 11844, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002864", - "question_id": 11845, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007413", - "question_id": 11847, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004747", - "question_id": 11849, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008614", - "question_id": 11852, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006559", - "question_id": 11853, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004508", - "question_id": 11856, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006314", - "question_id": 11860, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004325", - "question_id": 11862, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00001219", - "question_id": 11866, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003548", - "question_id": 11868, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003794", - "question_id": 11869, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001538", - "question_id": 11870, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004227", - "question_id": 11872, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000018", - "question_id": 11873, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008290", - "question_id": 11874, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007053", - "question_id": 11875, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00001109", - "question_id": 11876, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002046", - "question_id": 11877, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003872", - "question_id": 11878, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001481", - "question_id": 11880, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008058", - "question_id": 11881, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003348", - "question_id": 11883, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003009", - "question_id": 11884, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002862", - "question_id": 11885, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008822", - "question_id": 11886, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006166", - "question_id": 11887, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00000347", - "question_id": 11888, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008747", - "question_id": 11889, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003366", - "question_id": 11890, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006897", - "question_id": 11891, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006945", - "question_id": 11892, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000246", - "question_id": 11894, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00003717", - "question_id": 11895, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00000600", - "question_id": 11896, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000697", - "question_id": 11897, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008199", - "question_id": 11898, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001055", - "question_id": 11899, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00005576", - "question_id": 11900, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00004463", - "question_id": 11903, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004761", - "question_id": 11904, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001880", - "question_id": 11905, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00001744", - "question_id": 11907, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007946", - "question_id": 11908, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002285", - "question_id": 11911, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001760", - "question_id": 11915, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001124", - "question_id": 11917, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003604", - "question_id": 11918, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00000742", - "question_id": 11919, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006742", - "question_id": 11920, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00008710", - "question_id": 11921, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004415", - "question_id": 11922, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005217", - "question_id": 11925, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005214", - "question_id": 11926, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000181", - "question_id": 11927, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008938", - "question_id": 11928, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007767", - "question_id": 11929, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006656", - "question_id": 11934, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004210", - "question_id": 11935, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004234", - "question_id": 11937, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004457", - "question_id": 11941, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008121", - "question_id": 11942, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000662", - "question_id": 11944, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008341", - "question_id": 11945, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005979", - "question_id": 11946, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000002", - "question_id": 11947, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003285", - "question_id": 11948, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003285", - "question_id": 11948, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006825", - "question_id": 11950, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003856", - "question_id": 11951, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006749", - "question_id": 11952, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001216", - "question_id": 11953, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00008909", - "question_id": 11954, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005363", - "question_id": 11955, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007996", - "question_id": 11956, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001034", - "question_id": 11957, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007550", - "question_id": 11959, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000509", - "question_id": 11960, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00004152", - "question_id": 11961, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008536", - "question_id": 11964, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006525", - "question_id": 11965, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003450", - "question_id": 11966, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002778", - "question_id": 11967, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002432", - "question_id": 11969, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007090", - "question_id": 11971, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006919", - "question_id": 11972, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005083", - "question_id": 11973, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008217", - "question_id": 11975, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000861", - "question_id": 11976, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00006155", - "question_id": 11980, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004314", - "question_id": 11982, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00004216", - "question_id": 11984, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008691", - "question_id": 11985, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002699", - "question_id": 11987, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003749", - "question_id": 11988, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00008878", - "question_id": 11989, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004715", - "question_id": 11990, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006570", - "question_id": 11991, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001457", - "question_id": 11992, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"middle\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001301", - "question_id": 11993, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008978", - "question_id": 11994, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005121", - "question_id": 11995, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000599", - "question_id": 11996, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008330", - "question_id": 11998, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007642", - "question_id": 12000, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004509", - "question_id": 12002, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006014", - "question_id": 12003, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007984", - "question_id": 12007, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007274", - "question_id": 12008, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006246", - "question_id": 12009, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00000835", - "question_id": 12011, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008714", - "question_id": 12012, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008783", - "question_id": 12014, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006448", - "question_id": 12015, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004796", - "question_id": 12018, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008942", - "question_id": 12019, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008034", - "question_id": 12020, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000902", - "question_id": 12022, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001467", - "question_id": 12024, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"saxophone\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005327", - "question_id": 12025, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004215", - "question_id": 12026, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004936", - "question_id": 12028, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"middle\", \"tuba\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008662", - "question_id": 12029, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003283", - "question_id": 12030, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000407", - "question_id": 12031, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002223", - "question_id": 12032, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00003447", - "question_id": 12034, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005993", - "question_id": 12035, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00002623", - "question_id": 12038, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007031", - "question_id": 12040, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008399", - "question_id": 12041, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002411", - "question_id": 12042, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003492", - "question_id": 12045, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008582", - "question_id": 12046, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007748", - "question_id": 12047, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000870", - "question_id": 12049, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003435", - "question_id": 12053, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005167", - "question_id": 12054, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001508", - "question_id": 12055, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000201", - "question_id": 12056, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00006008", - "question_id": 12057, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001482", - "question_id": 12058, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"middle\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007871", - "question_id": 12060, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002843", - "question_id": 12061, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00006453", - "question_id": 12062, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006899", - "question_id": 12063, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001556", - "question_id": 12064, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004590", - "question_id": 12065, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001798", - "question_id": 12066, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005808", - "question_id": 12067, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007205", - "question_id": 12070, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004092", - "question_id": 12071, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002456", - "question_id": 12074, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008642", - "question_id": 12077, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003744", - "question_id": 12079, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006060", - "question_id": 12081, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004844", - "question_id": 12082, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007315", - "question_id": 12083, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007447", - "question_id": 12085, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00005454", - "question_id": 12086, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005410", - "question_id": 12088, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001566", - "question_id": 12091, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006805", - "question_id": 12092, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005561", - "question_id": 12093, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002476", - "question_id": 12094, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"electric_bass\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002766", - "question_id": 12096, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007623", - "question_id": 12098, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000097", - "question_id": 12099, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007490", - "question_id": 12102, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001052", - "question_id": 12103, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006657", - "question_id": 12104, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007637", - "question_id": 12106, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003755", - "question_id": 12107, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007889", - "question_id": 12109, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003417", - "question_id": 12110, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002870", - "question_id": 12111, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00007193", - "question_id": 12112, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00004976", - "question_id": 12113, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002579", - "question_id": 12114, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003738", - "question_id": 12115, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007335", - "question_id": 12117, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007953", - "question_id": 12118, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00004893", - "question_id": 12119, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002492", - "question_id": 12120, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001153", - "question_id": 12122, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002078", - "question_id": 12124, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005181", - "question_id": 12125, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005380", - "question_id": 12126, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005324", - "question_id": 12127, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000120", - "question_id": 12128, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008656", - "question_id": 12129, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00002464", - "question_id": 12130, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001325", - "question_id": 12131, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"tuba\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004362", - "question_id": 12132, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"xylophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007347", - "question_id": 12133, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002029", - "question_id": 12134, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000813", - "question_id": 12135, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"bassoon\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002531", - "question_id": 12136, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002563", - "question_id": 12138, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004458", - "question_id": 12139, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006992", - "question_id": 12140, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001579", - "question_id": 12141, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004748", - "question_id": 12143, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00000763", - "question_id": 12144, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"middle\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000414", - "question_id": 12145, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008405", - "question_id": 12146, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004423", - "question_id": 12147, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004696", - "question_id": 12148, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003109", - "question_id": 12151, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"bagpipe\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007595", - "question_id": 12153, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001771", - "question_id": 12154, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00001136", - "question_id": 12157, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "eight" -}, { - "video_id": "00008338", - "question_id": 12158, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002292", - "question_id": 12160, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004832", - "question_id": 12161, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005695", - "question_id": 12162, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000591", - "question_id": 12164, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00001474", - "question_id": 12165, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00008511", - "question_id": 12166, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00008710", - "question_id": 12167, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001909", - "question_id": 12168, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005655", - "question_id": 12169, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006766", - "question_id": 12170, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004244", - "question_id": 12174, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002197", - "question_id": 12175, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003834", - "question_id": 12176, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001638", - "question_id": 12178, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00001790", - "question_id": 12181, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005640", - "question_id": 12182, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007738", - "question_id": 12183, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005100", - "question_id": 12184, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00000915", - "question_id": 12185, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "more than ten" -}, { - "video_id": "00004573", - "question_id": 12186, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00000312", - "question_id": 12187, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00007556", - "question_id": 12188, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007497", - "question_id": 12189, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000020", - "question_id": 12192, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001791", - "question_id": 12193, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005936", - "question_id": 12194, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000479", - "question_id": 12195, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002057", - "question_id": 12196, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002339", - "question_id": 12197, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005907", - "question_id": 12198, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003165", - "question_id": 12199, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"congas\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000007", - "question_id": 12200, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004120", - "question_id": 12201, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003433", - "question_id": 12202, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000602", - "question_id": 12203, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003114", - "question_id": 12204, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00004393", - "question_id": 12206, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004831", - "question_id": 12207, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004186", - "question_id": 12208, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000039", - "question_id": 12209, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001519", - "question_id": 12210, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002400", - "question_id": 12211, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002318", - "question_id": 12212, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008244", - "question_id": 12213, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000263", - "question_id": 12215, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"drum\", \"right\", \"electric_bass\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002026", - "question_id": 12216, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"right\", \"bassoon\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007404", - "question_id": 12218, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001453", - "question_id": 12220, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"middle\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001359", - "question_id": 12222, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008780", - "question_id": 12225, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000207", - "question_id": 12227, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006527", - "question_id": 12228, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"bassoon\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001256", - "question_id": 12229, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000218", - "question_id": 12230, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002444", - "question_id": 12231, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004479", - "question_id": 12232, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003989", - "question_id": 12233, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002298", - "question_id": 12235, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005632", - "question_id": 12237, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005712", - "question_id": 12238, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007223", - "question_id": 12239, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "seven" -}, { - "video_id": "00004407", - "question_id": 12240, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005633", - "question_id": 12242, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007007", - "question_id": 12244, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002927", - "question_id": 12245, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000431", - "question_id": 12246, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008112", - "question_id": 12248, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006481", - "question_id": 12250, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008547", - "question_id": 12251, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004564", - "question_id": 12252, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005132", - "question_id": 12255, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007227", - "question_id": 12257, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004713", - "question_id": 12260, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008453", - "question_id": 12261, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004810", - "question_id": 12262, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00008260", - "question_id": 12263, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00008438", - "question_id": 12264, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004734", - "question_id": 12267, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006057", - "question_id": 12268, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005251", - "question_id": 12269, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008074", - "question_id": 12271, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00003358", - "question_id": 12272, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004656", - "question_id": 12273, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"middle\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005271", - "question_id": 12275, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00002124", - "question_id": 12277, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003443", - "question_id": 12278, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002471", - "question_id": 12279, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"middle\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001216", - "question_id": 12280, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000719", - "question_id": 12281, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003928", - "question_id": 12282, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005400", - "question_id": 12283, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"banjo\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004689", - "question_id": 12284, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003602", - "question_id": 12285, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007914", - "question_id": 12286, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002115", - "question_id": 12287, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008698", - "question_id": 12288, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"bassoon\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000318", - "question_id": 12289, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004058", - "question_id": 12291, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"middle\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004196", - "question_id": 12292, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008515", - "question_id": 12296, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002189", - "question_id": 12298, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005597", - "question_id": 12299, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007362", - "question_id": 12300, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007345", - "question_id": 12302, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005861", - "question_id": 12303, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005011", - "question_id": 12304, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006957", - "question_id": 12305, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008750", - "question_id": 12307, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002483", - "question_id": 12308, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000053", - "question_id": 12309, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003668", - "question_id": 12310, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "eight" -}, { - "video_id": "00003873", - "question_id": 12311, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001433", - "question_id": 12312, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00007847", - "question_id": 12313, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00006710", - "question_id": 12314, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003004", - "question_id": 12318, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00001473", - "question_id": 12320, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00000128", - "question_id": 12322, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007388", - "question_id": 12323, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002263", - "question_id": 12324, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001047", - "question_id": 12326, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008370", - "question_id": 12328, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007955", - "question_id": 12335, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003003", - "question_id": 12340, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001043", - "question_id": 12341, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001628", - "question_id": 12342, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000932", - "question_id": 12343, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007453", - "question_id": 12344, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008172", - "question_id": 12347, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005004", - "question_id": 12348, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00004719", - "question_id": 12349, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001506", - "question_id": 12350, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005866", - "question_id": 12352, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001565", - "question_id": 12353, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00005311", - "question_id": 12356, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000631", - "question_id": 12357, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004244", - "question_id": 12358, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000131", - "question_id": 12359, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001781", - "question_id": 12361, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001335", - "question_id": 12362, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000753", - "question_id": 12364, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002918", - "question_id": 12365, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004829", - "question_id": 12368, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008796", - "question_id": 12369, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00004201", - "question_id": 12372, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002941", - "question_id": 12374, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007720", - "question_id": 12375, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006688", - "question_id": 12376, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00001490", - "question_id": 12377, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001916", - "question_id": 12378, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002609", - "question_id": 12380, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000349", - "question_id": 12381, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007379", - "question_id": 12383, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003170", - "question_id": 12384, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001910", - "question_id": 12385, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004733", - "question_id": 12388, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008271", - "question_id": 12389, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008954", - "question_id": 12391, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002149", - "question_id": 12393, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006574", - "question_id": 12394, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005755", - "question_id": 12396, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000085", - "question_id": 12398, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008958", - "question_id": 12399, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003913", - "question_id": 12400, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00007039", - "question_id": 12403, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005825", - "question_id": 12404, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004930", - "question_id": 12405, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00007802", - "question_id": 12406, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008543", - "question_id": 12407, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008510", - "question_id": 12408, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001388", - "question_id": 12409, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00006325", - "question_id": 12412, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004291", - "question_id": 12414, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002715", - "question_id": 12416, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"bassoon\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007829", - "question_id": 12417, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003174", - "question_id": 12420, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00008358", - "question_id": 12421, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006276", - "question_id": 12422, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001491", - "question_id": 12423, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001165", - "question_id": 12424, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000167", - "question_id": 12426, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006333", - "question_id": 12427, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004147", - "question_id": 12428, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003797", - "question_id": 12429, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004891", - "question_id": 12430, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000724", - "question_id": 12431, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001949", - "question_id": 12432, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001489", - "question_id": 12433, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005360", - "question_id": 12434, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005078", - "question_id": 12436, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00000341", - "question_id": 12439, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006692", - "question_id": 12441, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004624", - "question_id": 12442, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001975", - "question_id": 12445, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002354", - "question_id": 12446, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005670", - "question_id": 12447, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006958", - "question_id": 12449, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003392", - "question_id": 12450, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002709", - "question_id": 12451, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004387", - "question_id": 12452, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007201", - "question_id": 12454, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003410", - "question_id": 12455, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003659", - "question_id": 12456, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00002530", - "question_id": 12457, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000429", - "question_id": 12458, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006332", - "question_id": 12460, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006536", - "question_id": 12463, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008898", - "question_id": 12471, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005081", - "question_id": 12472, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002961", - "question_id": 12475, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008295", - "question_id": 12477, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004237", - "question_id": 12478, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008594", - "question_id": 12481, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004086", - "question_id": 12482, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008366", - "question_id": 12484, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003728", - "question_id": 12485, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002187", - "question_id": 12486, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003625", - "question_id": 12487, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000860", - "question_id": 12489, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bagpipe\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001083", - "question_id": 12490, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002721", - "question_id": 12492, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002965", - "question_id": 12493, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004537", - "question_id": 12494, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003953", - "question_id": 12495, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007564", - "question_id": 12496, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004638", - "question_id": 12497, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000355", - "question_id": 12499, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00001071", - "question_id": 12500, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002368", - "question_id": 12501, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001072", - "question_id": 12505, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003902", - "question_id": 12506, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001676", - "question_id": 12507, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007329", - "question_id": 12508, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000971", - "question_id": 12509, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007252", - "question_id": 12510, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001184", - "question_id": 12512, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002625", - "question_id": 12516, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00001116", - "question_id": 12518, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007374", - "question_id": 12519, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003962", - "question_id": 12520, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004057", - "question_id": 12521, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"drum\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007701", - "question_id": 12523, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001580", - "question_id": 12524, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008483", - "question_id": 12526, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002332", - "question_id": 12527, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002746", - "question_id": 12528, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007637", - "question_id": 12529, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004784", - "question_id": 12530, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004599", - "question_id": 12531, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006580", - "question_id": 12533, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006009", - "question_id": 12534, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00007797", - "question_id": 12535, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006194", - "question_id": 12536, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005322", - "question_id": 12538, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001540", - "question_id": 12539, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001714", - "question_id": 12540, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003794", - "question_id": 12542, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002495", - "question_id": 12543, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003578", - "question_id": 12544, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002022", - "question_id": 12545, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003274", - "question_id": 12546, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004267", - "question_id": 12548, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001185", - "question_id": 12551, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001922", - "question_id": 12552, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003443", - "question_id": 12553, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001202", - "question_id": 12556, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007246", - "question_id": 12557, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003633", - "question_id": 12558, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000670", - "question_id": 12559, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007767", - "question_id": 12560, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002451", - "question_id": 12561, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004867", - "question_id": 12562, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001140", - "question_id": 12565, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001319", - "question_id": 12566, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002660", - "question_id": 12571, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"xylophone\", \"left\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006354", - "question_id": 12573, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006483", - "question_id": 12575, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001834", - "question_id": 12577, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002033", - "question_id": 12579, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003072", - "question_id": 12580, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002834", - "question_id": 12582, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004607", - "question_id": 12583, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004779", - "question_id": 12584, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000594", - "question_id": 12589, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002400", - "question_id": 12590, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000703", - "question_id": 12592, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004986", - "question_id": 12593, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006889", - "question_id": 12595, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001895", - "question_id": 12597, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000429", - "question_id": 12598, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001965", - "question_id": 12599, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007148", - "question_id": 12600, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002114", - "question_id": 12602, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"tuba\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007636", - "question_id": 12604, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005977", - "question_id": 12605, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00008871", - "question_id": 12607, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005512", - "question_id": 12608, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00003716", - "question_id": 12609, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002052", - "question_id": 12611, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002326", - "question_id": 12612, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005094", - "question_id": 12614, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006406", - "question_id": 12615, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00003163", - "question_id": 12618, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001817", - "question_id": 12619, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002351", - "question_id": 12620, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005312", - "question_id": 12621, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008796", - "question_id": 12624, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004503", - "question_id": 12626, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000869", - "question_id": 12628, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003995", - "question_id": 12629, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00003440", - "question_id": 12630, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002599", - "question_id": 12632, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00003664", - "question_id": 12634, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003876", - "question_id": 12636, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001161", - "question_id": 12637, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"erhu\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007477", - "question_id": 12641, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00003726", - "question_id": 12642, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007202", - "question_id": 12643, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00001515", - "question_id": 12644, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006068", - "question_id": 12646, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003596", - "question_id": 12647, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000355", - "question_id": 12648, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000101", - "question_id": 12649, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005785", - "question_id": 12653, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003977", - "question_id": 12654, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006846", - "question_id": 12655, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003724", - "question_id": 12657, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"middle\", \"trumpet\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001116", - "question_id": 12658, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004232", - "question_id": 12661, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00000213", - "question_id": 12663, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004166", - "question_id": 12664, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002498", - "question_id": 12666, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008968", - "question_id": 12667, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00007579", - "question_id": 12670, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003129", - "question_id": 12671, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000237", - "question_id": 12672, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006392", - "question_id": 12673, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00001317", - "question_id": 12674, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003066", - "question_id": 12675, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005589", - "question_id": 12678, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000695", - "question_id": 12679, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008503", - "question_id": 12680, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007566", - "question_id": 12681, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004869", - "question_id": 12683, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000213", - "question_id": 12685, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001642", - "question_id": 12686, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006265", - "question_id": 12687, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003958", - "question_id": 12689, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001017", - "question_id": 12690, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000274", - "question_id": 12692, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000541", - "question_id": 12694, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003608", - "question_id": 12697, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005910", - "question_id": 12698, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007486", - "question_id": 12699, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005276", - "question_id": 12700, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00006696", - "question_id": 12701, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005735", - "question_id": 12702, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005893", - "question_id": 12703, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004072", - "question_id": 12704, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002001", - "question_id": 12706, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005591", - "question_id": 12707, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000304", - "question_id": 12708, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004857", - "question_id": 12709, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006472", - "question_id": 12710, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002260", - "question_id": 12715, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003617", - "question_id": 12719, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00002038", - "question_id": 12722, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008954", - "question_id": 12723, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008856", - "question_id": 12725, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00000616", - "question_id": 12726, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006799", - "question_id": 12729, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003687", - "question_id": 12730, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003626", - "question_id": 12733, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001896", - "question_id": 12734, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005411", - "question_id": 12736, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006030", - "question_id": 12737, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000717", - "question_id": 12738, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000732", - "question_id": 12739, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002615", - "question_id": 12741, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005836", - "question_id": 12742, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007051", - "question_id": 12743, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003364", - "question_id": 12744, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007857", - "question_id": 12745, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005025", - "question_id": 12746, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00000656", - "question_id": 12747, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"xylophone\", \"left\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006038", - "question_id": 12749, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008445", - "question_id": 12750, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007251", - "question_id": 12751, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003688", - "question_id": 12754, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001667", - "question_id": 12756, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003971", - "question_id": 12758, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004430", - "question_id": 12762, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001216", - "question_id": 12763, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005088", - "question_id": 12764, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004421", - "question_id": 12765, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005302", - "question_id": 12766, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"congas\", \"left\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006566", - "question_id": 12767, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"bassoon\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006058", - "question_id": 12768, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001634", - "question_id": 12769, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003342", - "question_id": 12770, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005229", - "question_id": 12772, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000970", - "question_id": 12773, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003521", - "question_id": 12774, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002723", - "question_id": 12775, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005202", - "question_id": 12776, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005866", - "question_id": 12779, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007473", - "question_id": 12780, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004033", - "question_id": 12781, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002112", - "question_id": 12782, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001441", - "question_id": 12783, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"congas\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000082", - "question_id": 12785, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00003210", - "question_id": 12789, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006813", - "question_id": 12790, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002273", - "question_id": 12791, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006075", - "question_id": 12792, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005919", - "question_id": 12795, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00007044", - "question_id": 12796, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004979", - "question_id": 12800, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000981", - "question_id": 12801, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004146", - "question_id": 12802, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002244", - "question_id": 12803, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"middle\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003606", - "question_id": 12804, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008673", - "question_id": 12806, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006869", - "question_id": 12807, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005255", - "question_id": 12808, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000789", - "question_id": 12809, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00001528", - "question_id": 12810, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005135", - "question_id": 12812, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007608", - "question_id": 12813, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007832", - "question_id": 12814, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003602", - "question_id": 12815, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003522", - "question_id": 12816, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00001463", - "question_id": 12817, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004425", - "question_id": 12818, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005717", - "question_id": 12819, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002242", - "question_id": 12821, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005353", - "question_id": 12822, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006188", - "question_id": 12823, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008424", - "question_id": 12824, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007269", - "question_id": 12825, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"middle\", \"trumpet\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008604", - "question_id": 12828, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005590", - "question_id": 12829, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000186", - "question_id": 12830, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000467", - "question_id": 12831, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000577", - "question_id": 12832, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002917", - "question_id": 12834, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000940", - "question_id": 12835, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002832", - "question_id": 12836, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000666", - "question_id": 12837, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004611", - "question_id": 12839, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004890", - "question_id": 12840, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003892", - "question_id": 12841, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00007119", - "question_id": 12842, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005703", - "question_id": 12843, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001799", - "question_id": 12845, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006378", - "question_id": 12850, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006874", - "question_id": 12851, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005569", - "question_id": 12853, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000728", - "question_id": 12855, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005409", - "question_id": 12859, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000104", - "question_id": 12861, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002003", - "question_id": 12862, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005538", - "question_id": 12864, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000433", - "question_id": 12865, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000865", - "question_id": 12866, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002415", - "question_id": 12867, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005873", - "question_id": 12868, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008680", - "question_id": 12869, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000489", - "question_id": 12870, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008141", - "question_id": 12872, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006709", - "question_id": 12873, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002378", - "question_id": 12876, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003289", - "question_id": 12877, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008565", - "question_id": 12881, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00001548", - "question_id": 12885, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008978", - "question_id": 12886, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00001766", - "question_id": 12887, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000465", - "question_id": 12889, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007132", - "question_id": 12890, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008240", - "question_id": 12897, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003513", - "question_id": 12898, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006562", - "question_id": 12899, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008752", - "question_id": 12900, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007586", - "question_id": 12901, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003745", - "question_id": 12903, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000618", - "question_id": 12905, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003922", - "question_id": 12906, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003866", - "question_id": 12907, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007244", - "question_id": 12908, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006507", - "question_id": 12913, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003281", - "question_id": 12914, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002980", - "question_id": 12916, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00001645", - "question_id": 12917, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008193", - "question_id": 12918, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004411", - "question_id": 12919, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005207", - "question_id": 12921, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00005435", - "question_id": 12922, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00004426", - "question_id": 12925, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006485", - "question_id": 12926, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002468", - "question_id": 12927, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007471", - "question_id": 12928, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003321", - "question_id": 12929, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004891", - "question_id": 12930, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008512", - "question_id": 12931, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001915", - "question_id": 12932, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008728", - "question_id": 12933, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003309", - "question_id": 12934, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006688", - "question_id": 12935, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001007", - "question_id": 12936, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003877", - "question_id": 12937, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00008389", - "question_id": 12938, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000357", - "question_id": 12939, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005239", - "question_id": 12940, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008012", - "question_id": 12941, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00003714", - "question_id": 12943, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007128", - "question_id": 12944, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005636", - "question_id": 12945, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002361", - "question_id": 12946, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005076", - "question_id": 12948, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003408", - "question_id": 12949, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00007665", - "question_id": 12950, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005339", - "question_id": 12953, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002798", - "question_id": 12954, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002352", - "question_id": 12956, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00004532", - "question_id": 12957, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007133", - "question_id": 12958, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001059", - "question_id": 12961, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002580", - "question_id": 12963, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007493", - "question_id": 12967, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000959", - "question_id": 12969, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008819", - "question_id": 12972, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000571", - "question_id": 12973, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000633", - "question_id": 12974, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001826", - "question_id": 12975, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007980", - "question_id": 12976, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004500", - "question_id": 12978, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00005161", - "question_id": 12979, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008143", - "question_id": 12982, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000949", - "question_id": 12983, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005039", - "question_id": 12984, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001327", - "question_id": 12986, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000986", - "question_id": 12987, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006247", - "question_id": 12989, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007951", - "question_id": 12990, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003519", - "question_id": 12993, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004194", - "question_id": 12994, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002540", - "question_id": 12995, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003913", - "question_id": 12996, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001728", - "question_id": 12997, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005033", - "question_id": 12999, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004994", - "question_id": 13000, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005879", - "question_id": 13002, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000108", - "question_id": 13004, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000678", - "question_id": 13007, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008275", - "question_id": 13008, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"clarinet\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002318", - "question_id": 13009, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008583", - "question_id": 13010, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001464", - "question_id": 13012, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00008309", - "question_id": 13013, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000349", - "question_id": 13015, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003343", - "question_id": 13016, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004250", - "question_id": 13017, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000420", - "question_id": 13019, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001467", - "question_id": 13020, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007065", - "question_id": 13021, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001141", - "question_id": 13022, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004342", - "question_id": 13023, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004164", - "question_id": 13025, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000317", - "question_id": 13026, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007136", - "question_id": 13029, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007183", - "question_id": 13031, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000324", - "question_id": 13033, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008950", - "question_id": 13035, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008857", - "question_id": 13036, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "ten" -}, { - "video_id": "00006363", - "question_id": 13037, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002022", - "question_id": 13038, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003687", - "question_id": 13039, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006230", - "question_id": 13041, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003995", - "question_id": 13042, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003237", - "question_id": 13044, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007114", - "question_id": 13046, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003189", - "question_id": 13047, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005398", - "question_id": 13048, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003956", - "question_id": 13049, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000516", - "question_id": 13050, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007568", - "question_id": 13052, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001978", - "question_id": 13054, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001087", - "question_id": 13057, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008428", - "question_id": 13058, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008144", - "question_id": 13059, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000280", - "question_id": 13061, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004468", - "question_id": 13062, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003963", - "question_id": 13063, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007344", - "question_id": 13064, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005688", - "question_id": 13066, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005621", - "question_id": 13067, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007142", - "question_id": 13069, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003916", - "question_id": 13071, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008268", - "question_id": 13072, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001394", - "question_id": 13073, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006406", - "question_id": 13075, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"right\", \"electric_bass\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001144", - "question_id": 13076, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00005121", - "question_id": 13077, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008857", - "question_id": 13080, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007081", - "question_id": 13081, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002856", - "question_id": 13084, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008595", - "question_id": 13086, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006990", - "question_id": 13088, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006082", - "question_id": 13091, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006051", - "question_id": 13092, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003349", - "question_id": 13094, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"middle\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000456", - "question_id": 13095, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008604", - "question_id": 13100, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006094", - "question_id": 13102, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005310", - "question_id": 13104, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006802", - "question_id": 13105, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008838", - "question_id": 13106, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008948", - "question_id": 13109, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007935", - "question_id": 13111, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006563", - "question_id": 13112, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"tuba\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006468", - "question_id": 13114, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001830", - "question_id": 13115, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007281", - "question_id": 13116, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00004542", - "question_id": 13117, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005074", - "question_id": 13118, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002501", - "question_id": 13119, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008436", - "question_id": 13120, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004095", - "question_id": 13121, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001757", - "question_id": 13122, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004604", - "question_id": 13123, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003971", - "question_id": 13124, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00005464", - "question_id": 13125, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00007587", - "question_id": 13127, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006539", - "question_id": 13128, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004800", - "question_id": 13130, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006869", - "question_id": 13131, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00003224", - "question_id": 13132, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003749", - "question_id": 13134, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00008684", - "question_id": 13135, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005647", - "question_id": 13136, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006066", - "question_id": 13137, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006765", - "question_id": 13139, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006150", - "question_id": 13140, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002612", - "question_id": 13141, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001864", - "question_id": 13146, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008078", - "question_id": 13147, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00007007", - "question_id": 13148, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000223", - "question_id": 13149, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002958", - "question_id": 13151, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002161", - "question_id": 13152, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004474", - "question_id": 13153, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00002652", - "question_id": 13155, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002228", - "question_id": 13156, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002811", - "question_id": 13157, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006960", - "question_id": 13161, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"middle\", \"clarinet\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003759", - "question_id": 13162, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00005593", - "question_id": 13164, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008537", - "question_id": 13165, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004303", - "question_id": 13166, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001079", - "question_id": 13171, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003697", - "question_id": 13172, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008968", - "question_id": 13173, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005247", - "question_id": 13174, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"middle\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001520", - "question_id": 13175, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005278", - "question_id": 13176, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"trumpet\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003918", - "question_id": 13178, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "nine" -}, { - "video_id": "00007439", - "question_id": 13180, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004634", - "question_id": 13183, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002759", - "question_id": 13184, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001650", - "question_id": 13185, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005709", - "question_id": 13186, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001435", - "question_id": 13187, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006014", - "question_id": 13188, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00003847", - "question_id": 13189, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004502", - "question_id": 13190, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008296", - "question_id": 13191, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000124", - "question_id": 13193, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008824", - "question_id": 13196, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006471", - "question_id": 13197, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003640", - "question_id": 13200, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002315", - "question_id": 13201, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008216", - "question_id": 13202, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005944", - "question_id": 13203, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002300", - "question_id": 13204, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005562", - "question_id": 13205, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001202", - "question_id": 13207, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002830", - "question_id": 13208, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00005593", - "question_id": 13209, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004928", - "question_id": 13210, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005255", - "question_id": 13212, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00007100", - "question_id": 13213, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003048", - "question_id": 13214, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004759", - "question_id": 13215, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007483", - "question_id": 13217, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005031", - "question_id": 13219, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00005902", - "question_id": 13220, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007427", - "question_id": 13221, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005620", - "question_id": 13222, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001164", - "question_id": 13225, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005803", - "question_id": 13226, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008465", - "question_id": 13227, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003028", - "question_id": 13229, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bagpipe\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004867", - "question_id": 13230, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005917", - "question_id": 13231, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004168", - "question_id": 13232, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007645", - "question_id": 13234, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003876", - "question_id": 13236, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002513", - "question_id": 13237, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00002863", - "question_id": 13239, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007620", - "question_id": 13240, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008583", - "question_id": 13242, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003086", - "question_id": 13243, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006735", - "question_id": 13248, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004219", - "question_id": 13250, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008754", - "question_id": 13252, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00004670", - "question_id": 13253, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008798", - "question_id": 13254, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008554", - "question_id": 13255, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002092", - "question_id": 13259, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001735", - "question_id": 13261, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008004", - "question_id": 13262, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005673", - "question_id": 13263, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006799", - "question_id": 13264, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008567", - "question_id": 13265, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004172", - "question_id": 13266, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007996", - "question_id": 13268, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001167", - "question_id": 13270, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006178", - "question_id": 13273, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003562", - "question_id": 13274, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00004590", - "question_id": 13275, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002073", - "question_id": 13276, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004739", - "question_id": 13278, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006837", - "question_id": 13281, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008521", - "question_id": 13282, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008096", - "question_id": 13284, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006100", - "question_id": 13285, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002677", - "question_id": 13286, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00001858", - "question_id": 13287, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003515", - "question_id": 13288, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004391", - "question_id": 13289, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007370", - "question_id": 13292, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007213", - "question_id": 13294, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006201", - "question_id": 13295, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001194", - "question_id": 13296, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003311", - "question_id": 13297, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000293", - "question_id": 13299, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007147", - "question_id": 13300, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008481", - "question_id": 13302, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001140", - "question_id": 13304, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003565", - "question_id": 13305, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002413", - "question_id": 13307, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002371", - "question_id": 13310, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00003274", - "question_id": 13311, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008354", - "question_id": 13315, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008169", - "question_id": 13316, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000588", - "question_id": 13317, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000133", - "question_id": 13318, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008831", - "question_id": 13319, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008573", - "question_id": 13320, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00004950", - "question_id": 13325, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001466", - "question_id": 13326, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000633", - "question_id": 13327, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008396", - "question_id": 13328, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00008046", - "question_id": 13329, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008623", - "question_id": 13330, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008135", - "question_id": 13331, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000003", - "question_id": 13332, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00008468", - "question_id": 13334, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003327", - "question_id": 13335, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006132", - "question_id": 13338, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007235", - "question_id": 13339, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000040", - "question_id": 13341, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007141", - "question_id": 13343, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002552", - "question_id": 13344, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008729", - "question_id": 13345, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002015", - "question_id": 13346, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002733", - "question_id": 13348, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00003797", - "question_id": 13349, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002316", - "question_id": 13350, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00002277", - "question_id": 13352, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008346", - "question_id": 13353, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008346", - "question_id": 13353, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008943", - "question_id": 13354, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006955", - "question_id": 13356, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000701", - "question_id": 13357, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00006553", - "question_id": 13358, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000644", - "question_id": 13360, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008789", - "question_id": 13362, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006266", - "question_id": 13363, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006954", - "question_id": 13365, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001374", - "question_id": 13368, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006573", - "question_id": 13369, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003671", - "question_id": 13371, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001444", - "question_id": 13373, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006837", - "question_id": 13374, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003909", - "question_id": 13375, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007915", - "question_id": 13376, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004520", - "question_id": 13377, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007088", - "question_id": 13379, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005857", - "question_id": 13381, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002723", - "question_id": 13382, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003987", - "question_id": 13385, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002600", - "question_id": 13386, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000928", - "question_id": 13387, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007487", - "question_id": 13388, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000254", - "question_id": 13390, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00003395", - "question_id": 13391, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002773", - "question_id": 13393, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003018", - "question_id": 13394, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005265", - "question_id": 13395, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00003998", - "question_id": 13398, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003753", - "question_id": 13399, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003432", - "question_id": 13402, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007306", - "question_id": 13403, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006117", - "question_id": 13404, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006125", - "question_id": 13407, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000238", - "question_id": 13408, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008620", - "question_id": 13410, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005016", - "question_id": 13411, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007982", - "question_id": 13412, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"pipa\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00006439", - "question_id": 13414, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002592", - "question_id": 13416, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008844", - "question_id": 13419, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00007017", - "question_id": 13420, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001233", - "question_id": 13421, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"right\", \"guzheng\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005663", - "question_id": 13424, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002613", - "question_id": 13425, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004562", - "question_id": 13428, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001543", - "question_id": 13429, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00005527", - "question_id": 13430, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004411", - "question_id": 13431, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002945", - "question_id": 13432, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007511", - "question_id": 13433, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007654", - "question_id": 13434, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003782", - "question_id": 13435, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008642", - "question_id": 13436, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008017", - "question_id": 13437, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005253", - "question_id": 13438, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005530", - "question_id": 13439, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002474", - "question_id": 13442, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006123", - "question_id": 13444, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005669", - "question_id": 13446, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007916", - "question_id": 13449, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006686", - "question_id": 13450, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000773", - "question_id": 13452, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004812", - "question_id": 13453, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006672", - "question_id": 13454, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004953", - "question_id": 13455, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006803", - "question_id": 13457, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002390", - "question_id": 13458, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002594", - "question_id": 13459, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001894", - "question_id": 13460, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008201", - "question_id": 13462, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007658", - "question_id": 13463, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006498", - "question_id": 13465, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000543", - "question_id": 13466, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004668", - "question_id": 13467, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006591", - "question_id": 13468, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007957", - "question_id": 13469, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007229", - "question_id": 13472, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "eight" -}, { - "video_id": "00001967", - "question_id": 13473, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001261", - "question_id": 13474, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005906", - "question_id": 13475, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000315", - "question_id": 13477, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006375", - "question_id": 13478, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005814", - "question_id": 13480, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003012", - "question_id": 13482, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007907", - "question_id": 13483, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003632", - "question_id": 13484, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004853", - "question_id": 13485, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003448", - "question_id": 13486, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003604", - "question_id": 13488, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007045", - "question_id": 13490, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001741", - "question_id": 13491, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000743", - "question_id": 13492, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005726", - "question_id": 13493, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004116", - "question_id": 13494, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005550", - "question_id": 13496, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002802", - "question_id": 13497, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00003583", - "question_id": 13500, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002394", - "question_id": 13501, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005655", - "question_id": 13504, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008800", - "question_id": 13505, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006620", - "question_id": 13506, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001562", - "question_id": 13507, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004208", - "question_id": 13508, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002210", - "question_id": 13509, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003524", - "question_id": 13512, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001468", - "question_id": 13514, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005747", - "question_id": 13516, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006275", - "question_id": 13517, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006335", - "question_id": 13519, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006335", - "question_id": 13519, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001319", - "question_id": 13521, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00007348", - "question_id": 13522, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003971", - "question_id": 13523, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003842", - "question_id": 13524, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003682", - "question_id": 13528, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001732", - "question_id": 13529, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00003839", - "question_id": 13530, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007245", - "question_id": 13532, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00005858", - "question_id": 13533, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006651", - "question_id": 13534, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004308", - "question_id": 13537, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008195", - "question_id": 13538, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008480", - "question_id": 13540, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000700", - "question_id": 13541, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006612", - "question_id": 13542, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002670", - "question_id": 13543, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005698", - "question_id": 13544, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006726", - "question_id": 13546, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006546", - "question_id": 13547, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004752", - "question_id": 13548, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004323", - "question_id": 13552, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005290", - "question_id": 13553, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002892", - "question_id": 13554, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001960", - "question_id": 13555, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000671", - "question_id": 13556, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007551", - "question_id": 13557, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008251", - "question_id": 13558, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00000946", - "question_id": 13559, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007467", - "question_id": 13560, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003424", - "question_id": 13561, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004062", - "question_id": 13562, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004562", - "question_id": 13563, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000927", - "question_id": 13566, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007359", - "question_id": 13567, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00005081", - "question_id": 13568, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001278", - "question_id": 13569, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001950", - "question_id": 13570, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007723", - "question_id": 13572, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003673", - "question_id": 13573, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006421", - "question_id": 13574, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007374", - "question_id": 13576, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000474", - "question_id": 13579, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000846", - "question_id": 13580, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004812", - "question_id": 13581, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006166", - "question_id": 13582, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001383", - "question_id": 13583, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004385", - "question_id": 13585, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000968", - "question_id": 13586, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003783", - "question_id": 13587, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001226", - "question_id": 13590, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002822", - "question_id": 13591, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006754", - "question_id": 13594, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007263", - "question_id": 13595, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008960", - "question_id": 13597, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008565", - "question_id": 13599, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001210", - "question_id": 13600, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004106", - "question_id": 13601, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002848", - "question_id": 13602, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006383", - "question_id": 13605, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003348", - "question_id": 13606, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003922", - "question_id": 13607, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002590", - "question_id": 13608, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001844", - "question_id": 13611, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00008721", - "question_id": 13612, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007671", - "question_id": 13614, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005077", - "question_id": 13616, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004045", - "question_id": 13617, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00005287", - "question_id": 13621, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003861", - "question_id": 13622, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00007519", - "question_id": 13623, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007574", - "question_id": 13624, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000145", - "question_id": 13625, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001788", - "question_id": 13626, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001915", - "question_id": 13629, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002202", - "question_id": 13631, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006438", - "question_id": 13632, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004873", - "question_id": 13635, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004183", - "question_id": 13637, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003023", - "question_id": 13638, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00006289", - "question_id": 13640, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00002930", - "question_id": 13641, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00000933", - "question_id": 13642, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005358", - "question_id": 13643, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005454", - "question_id": 13644, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004784", - "question_id": 13645, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005903", - "question_id": 13646, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002278", - "question_id": 13647, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00006934", - "question_id": 13648, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00007222", - "question_id": 13649, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003968", - "question_id": 13651, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002516", - "question_id": 13652, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00002494", - "question_id": 13654, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006208", - "question_id": 13657, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007686", - "question_id": 13658, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005114", - "question_id": 13660, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008125", - "question_id": 13663, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00003260", - "question_id": 13665, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006893", - "question_id": 13666, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007163", - "question_id": 13667, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001652", - "question_id": 13668, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007176", - "question_id": 13670, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006485", - "question_id": 13673, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001775", - "question_id": 13674, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001060", - "question_id": 13675, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "seven" -}, { - "video_id": "00004296", - "question_id": 13676, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006425", - "question_id": 13677, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002051", - "question_id": 13680, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006297", - "question_id": 13681, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00007910", - "question_id": 13682, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"banjo\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00002537", - "question_id": 13683, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006463", - "question_id": 13686, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003667", - "question_id": 13687, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004664", - "question_id": 13688, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002963", - "question_id": 13690, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000113", - "question_id": 13693, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006217", - "question_id": 13694, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001553", - "question_id": 13697, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006989", - "question_id": 13698, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002532", - "question_id": 13699, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004204", - "question_id": 13700, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006132", - "question_id": 13701, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002567", - "question_id": 13703, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006681", - "question_id": 13704, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005676", - "question_id": 13705, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00008024", - "question_id": 13707, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005039", - "question_id": 13708, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002567", - "question_id": 13711, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000061", - "question_id": 13712, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007114", - "question_id": 13713, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002151", - "question_id": 13714, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004959", - "question_id": 13716, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002278", - "question_id": 13717, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006170", - "question_id": 13719, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002095", - "question_id": 13720, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003254", - "question_id": 13721, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001176", - "question_id": 13722, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008781", - "question_id": 13724, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003529", - "question_id": 13725, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00008980", - "question_id": 13728, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006848", - "question_id": 13729, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003618", - "question_id": 13732, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004744", - "question_id": 13733, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004815", - "question_id": 13734, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004593", - "question_id": 13736, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000658", - "question_id": 13737, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002818", - "question_id": 13743, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006592", - "question_id": 13744, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007820", - "question_id": 13745, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000055", - "question_id": 13746, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001560", - "question_id": 13747, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004836", - "question_id": 13750, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007120", - "question_id": 13751, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00001298", - "question_id": 13753, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003843", - "question_id": 13754, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006074", - "question_id": 13755, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"banjo\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006836", - "question_id": 13756, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006202", - "question_id": 13759, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002950", - "question_id": 13761, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005666", - "question_id": 13763, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007399", - "question_id": 13764, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007452", - "question_id": 13765, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005997", - "question_id": 13767, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002368", - "question_id": 13768, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007821", - "question_id": 13770, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001227", - "question_id": 13771, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000987", - "question_id": 13774, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008115", - "question_id": 13775, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006127", - "question_id": 13776, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007776", - "question_id": 13778, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003501", - "question_id": 13779, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004311", - "question_id": 13780, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002363", - "question_id": 13782, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006946", - "question_id": 13786, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003789", - "question_id": 13787, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001620", - "question_id": 13788, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005548", - "question_id": 13790, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002167", - "question_id": 13791, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004361", - "question_id": 13792, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001145", - "question_id": 13793, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00005525", - "question_id": 13794, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004919", - "question_id": 13795, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007595", - "question_id": 13796, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00004832", - "question_id": 13797, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007995", - "question_id": 13798, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000020", - "question_id": 13800, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008677", - "question_id": 13801, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003521", - "question_id": 13802, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008833", - "question_id": 13803, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007791", - "question_id": 13804, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007287", - "question_id": 13805, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008803", - "question_id": 13806, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004963", - "question_id": 13807, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001287", - "question_id": 13808, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000644", - "question_id": 13809, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004289", - "question_id": 13810, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007798", - "question_id": 13811, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007513", - "question_id": 13812, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001454", - "question_id": 13813, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008121", - "question_id": 13814, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00008552", - "question_id": 13815, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007569", - "question_id": 13817, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006363", - "question_id": 13818, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008919", - "question_id": 13819, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003301", - "question_id": 13820, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007935", - "question_id": 13822, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006167", - "question_id": 13823, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00005384", - "question_id": 13824, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001132", - "question_id": 13825, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004358", - "question_id": 13826, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006607", - "question_id": 13827, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005036", - "question_id": 13828, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002694", - "question_id": 13829, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003644", - "question_id": 13830, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006090", - "question_id": 13831, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00003969", - "question_id": 13832, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00001087", - "question_id": 13833, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008557", - "question_id": 13835, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006291", - "question_id": 13837, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007086", - "question_id": 13839, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00005389", - "question_id": 13844, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00004742", - "question_id": 13845, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004648", - "question_id": 13846, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001153", - "question_id": 13849, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008796", - "question_id": 13850, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003859", - "question_id": 13851, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002403", - "question_id": 13852, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002381", - "question_id": 13853, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002770", - "question_id": 13854, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000042", - "question_id": 13855, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000305", - "question_id": 13856, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000300", - "question_id": 13857, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005699", - "question_id": 13860, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004331", - "question_id": 13861, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006354", - "question_id": 13862, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005218", - "question_id": 13865, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007226", - "question_id": 13866, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004213", - "question_id": 13868, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004118", - "question_id": 13869, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00005316", - "question_id": 13870, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003063", - "question_id": 13871, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001601", - "question_id": 13872, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000416", - "question_id": 13873, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006673", - "question_id": 13875, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006485", - "question_id": 13877, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000510", - "question_id": 13878, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004260", - "question_id": 13880, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003506", - "question_id": 13882, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002157", - "question_id": 13883, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007132", - "question_id": 13884, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004120", - "question_id": 13885, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006428", - "question_id": 13887, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00005954", - "question_id": 13888, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006839", - "question_id": 13889, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003112", - "question_id": 13890, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008419", - "question_id": 13891, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005810", - "question_id": 13893, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006205", - "question_id": 13896, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004831", - "question_id": 13897, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004053", - "question_id": 13898, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00004690", - "question_id": 13899, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007608", - "question_id": 13900, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002113", - "question_id": 13902, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008750", - "question_id": 13903, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000474", - "question_id": 13905, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004014", - "question_id": 13906, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00002570", - "question_id": 13908, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002853", - "question_id": 13909, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000694", - "question_id": 13910, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000866", - "question_id": 13911, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005538", - "question_id": 13914, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002794", - "question_id": 13916, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007187", - "question_id": 13917, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005344", - "question_id": 13918, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006358", - "question_id": 13920, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006626", - "question_id": 13921, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001705", - "question_id": 13923, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005549", - "question_id": 13924, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00003015", - "question_id": 13926, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002406", - "question_id": 13928, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003588", - "question_id": 13931, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"bassoon\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004763", - "question_id": 13932, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002370", - "question_id": 13933, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002370", - "question_id": 13933, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003204", - "question_id": 13934, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002366", - "question_id": 13935, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002076", - "question_id": 13936, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004422", - "question_id": 13938, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002809", - "question_id": 13939, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000163", - "question_id": 13940, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007949", - "question_id": 13941, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005598", - "question_id": 13942, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005198", - "question_id": 13943, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00003750", - "question_id": 13944, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004703", - "question_id": 13945, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005232", - "question_id": 13946, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002644", - "question_id": 13947, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004725", - "question_id": 13948, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001772", - "question_id": 13951, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008070", - "question_id": 13952, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001661", - "question_id": 13954, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007754", - "question_id": 13955, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001263", - "question_id": 13958, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006378", - "question_id": 13959, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00007240", - "question_id": 13960, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002815", - "question_id": 13961, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001382", - "question_id": 13962, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003877", - "question_id": 13963, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007386", - "question_id": 13965, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001264", - "question_id": 13966, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003170", - "question_id": 13968, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007067", - "question_id": 13971, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003488", - "question_id": 13972, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00006552", - "question_id": 13973, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001102", - "question_id": 13978, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004112", - "question_id": 13980, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003563", - "question_id": 13982, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008151", - "question_id": 13983, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002316", - "question_id": 13984, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005311", - "question_id": 13985, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000264", - "question_id": 13987, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000296", - "question_id": 13989, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000545", - "question_id": 13991, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008530", - "question_id": 13993, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004343", - "question_id": 13995, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000686", - "question_id": 13997, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005800", - "question_id": 13998, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004723", - "question_id": 13999, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001154", - "question_id": 14000, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007010", - "question_id": 14001, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007059", - "question_id": 14005, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001719", - "question_id": 14007, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"accordion\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00007225", - "question_id": 14008, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001425", - "question_id": 14009, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002314", - "question_id": 14011, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000130", - "question_id": 14013, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006362", - "question_id": 14014, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003535", - "question_id": 14015, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008064", - "question_id": 14016, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008930", - "question_id": 14017, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000291", - "question_id": 14018, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008331", - "question_id": 14019, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007432", - "question_id": 14020, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005951", - "question_id": 14021, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007126", - "question_id": 14022, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007250", - "question_id": 14023, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006421", - "question_id": 14024, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002532", - "question_id": 14025, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007700", - "question_id": 14026, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00001208", - "question_id": 14027, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004754", - "question_id": 14030, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003304", - "question_id": 14031, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007653", - "question_id": 14034, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008477", - "question_id": 14035, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008311", - "question_id": 14036, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000027", - "question_id": 14037, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007569", - "question_id": 14038, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005855", - "question_id": 14039, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003028", - "question_id": 14040, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004502", - "question_id": 14041, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000434", - "question_id": 14043, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004556", - "question_id": 14044, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002598", - "question_id": 14045, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007556", - "question_id": 14047, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005197", - "question_id": 14050, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00007807", - "question_id": 14053, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003829", - "question_id": 14055, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007301", - "question_id": 14057, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00001124", - "question_id": 14058, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008977", - "question_id": 14059, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006530", - "question_id": 14060, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004251", - "question_id": 14063, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00003193", - "question_id": 14065, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008193", - "question_id": 14066, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000128", - "question_id": 14069, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002479", - "question_id": 14070, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007298", - "question_id": 14071, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006323", - "question_id": 14072, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006321", - "question_id": 14073, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007706", - "question_id": 14074, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005512", - "question_id": 14075, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000408", - "question_id": 14079, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005731", - "question_id": 14080, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002178", - "question_id": 14082, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00003133", - "question_id": 14085, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006012", - "question_id": 14086, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002613", - "question_id": 14087, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00001646", - "question_id": 14089, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001902", - "question_id": 14090, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005538", - "question_id": 14092, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000892", - "question_id": 14093, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008554", - "question_id": 14094, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002518", - "question_id": 14095, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00004392", - "question_id": 14096, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001400", - "question_id": 14097, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003710", - "question_id": 14098, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005774", - "question_id": 14099, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"right\", \"banjo\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006912", - "question_id": 14100, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005974", - "question_id": 14104, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001541", - "question_id": 14105, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003201", - "question_id": 14106, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007128", - "question_id": 14107, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003167", - "question_id": 14111, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000589", - "question_id": 14113, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000463", - "question_id": 14114, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008103", - "question_id": 14115, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008636", - "question_id": 14116, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00007021", - "question_id": 14117, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00004321", - "question_id": 14119, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007350", - "question_id": 14121, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007045", - "question_id": 14123, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007935", - "question_id": 14124, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004319", - "question_id": 14125, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007090", - "question_id": 14128, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000917", - "question_id": 14129, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"pipa\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00004661", - "question_id": 14130, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001523", - "question_id": 14132, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004723", - "question_id": 14133, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001051", - "question_id": 14135, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005382", - "question_id": 14139, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000795", - "question_id": 14141, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005251", - "question_id": 14142, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001117", - "question_id": 14143, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008120", - "question_id": 14145, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004344", - "question_id": 14146, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004624", - "question_id": 14148, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002922", - "question_id": 14150, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001197", - "question_id": 14153, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003557", - "question_id": 14155, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008045", - "question_id": 14159, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00004290", - "question_id": 14162, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00007209", - "question_id": 14163, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00005250", - "question_id": 14164, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007395", - "question_id": 14167, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008240", - "question_id": 14168, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008397", - "question_id": 14170, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007050", - "question_id": 14172, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003801", - "question_id": 14173, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007989", - "question_id": 14174, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000498", - "question_id": 14176, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002652", - "question_id": 14177, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002870", - "question_id": 14178, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004493", - "question_id": 14179, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000770", - "question_id": 14180, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000218", - "question_id": 14181, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007062", - "question_id": 14184, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003483", - "question_id": 14187, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002598", - "question_id": 14188, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007189", - "question_id": 14189, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004821", - "question_id": 14191, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005481", - "question_id": 14192, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003112", - "question_id": 14193, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005706", - "question_id": 14194, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003541", - "question_id": 14195, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006623", - "question_id": 14196, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003916", - "question_id": 14197, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006416", - "question_id": 14200, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005318", - "question_id": 14201, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005716", - "question_id": 14202, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008412", - "question_id": 14203, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007438", - "question_id": 14204, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007420", - "question_id": 14206, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004991", - "question_id": 14207, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001368", - "question_id": 14208, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005492", - "question_id": 14211, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002433", - "question_id": 14212, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000271", - "question_id": 14214, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00008637", - "question_id": 14218, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008894", - "question_id": 14219, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007477", - "question_id": 14221, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00003101", - "question_id": 14222, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008140", - "question_id": 14223, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00001748", - "question_id": 14224, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005182", - "question_id": 14225, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007673", - "question_id": 14226, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002140", - "question_id": 14227, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000684", - "question_id": 14229, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007520", - "question_id": 14230, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008789", - "question_id": 14231, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008355", - "question_id": 14232, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008486", - "question_id": 14234, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000360", - "question_id": 14235, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005808", - "question_id": 14236, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001212", - "question_id": 14237, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003802", - "question_id": 14238, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00004081", - "question_id": 14241, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007042", - "question_id": 14242, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006977", - "question_id": 14243, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005541", - "question_id": 14245, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004945", - "question_id": 14247, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004380", - "question_id": 14248, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003480", - "question_id": 14252, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005420", - "question_id": 14253, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"middle\", \"tuba\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002135", - "question_id": 14258, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00000129", - "question_id": 14262, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004055", - "question_id": 14264, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00000244", - "question_id": 14265, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003468", - "question_id": 14268, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002171", - "question_id": 14270, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00007653", - "question_id": 14271, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005319", - "question_id": 14274, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "seven" -}, { - "video_id": "00006830", - "question_id": 14276, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000913", - "question_id": 14279, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004648", - "question_id": 14280, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007056", - "question_id": 14282, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007240", - "question_id": 14283, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005636", - "question_id": 14284, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008613", - "question_id": 14286, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00005367", - "question_id": 14287, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003671", - "question_id": 14288, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008303", - "question_id": 14290, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004577", - "question_id": 14291, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005819", - "question_id": 14292, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002493", - "question_id": 14293, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00003073", - "question_id": 14294, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007702", - "question_id": 14297, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000223", - "question_id": 14299, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002037", - "question_id": 14300, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005696", - "question_id": 14301, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004203", - "question_id": 14302, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007951", - "question_id": 14304, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005993", - "question_id": 14306, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006449", - "question_id": 14309, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006299", - "question_id": 14310, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"erhu\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008015", - "question_id": 14311, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001450", - "question_id": 14312, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006878", - "question_id": 14314, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00005615", - "question_id": 14315, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002092", - "question_id": 14317, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002358", - "question_id": 14321, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001761", - "question_id": 14322, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003054", - "question_id": 14323, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003467", - "question_id": 14324, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002770", - "question_id": 14325, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007946", - "question_id": 14328, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001362", - "question_id": 14329, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004289", - "question_id": 14330, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000426", - "question_id": 14332, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006386", - "question_id": 14333, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003909", - "question_id": 14334, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002147", - "question_id": 14335, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002280", - "question_id": 14336, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008125", - "question_id": 14340, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007347", - "question_id": 14342, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007720", - "question_id": 14344, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007855", - "question_id": 14345, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007698", - "question_id": 14348, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006067", - "question_id": 14349, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00002483", - "question_id": 14351, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008329", - "question_id": 14354, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000935", - "question_id": 14355, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "more than ten" -}, { - "video_id": "00000748", - "question_id": 14356, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001867", - "question_id": 14358, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007191", - "question_id": 14359, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002716", - "question_id": 14360, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00008667", - "question_id": 14361, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001065", - "question_id": 14363, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001266", - "question_id": 14364, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002467", - "question_id": 14365, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008013", - "question_id": 14367, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003354", - "question_id": 14368, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007221", - "question_id": 14369, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000876", - "question_id": 14370, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00000561", - "question_id": 14371, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007737", - "question_id": 14372, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008964", - "question_id": 14373, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000839", - "question_id": 14374, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001699", - "question_id": 14375, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001898", - "question_id": 14377, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00007164", - "question_id": 14378, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006176", - "question_id": 14379, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001323", - "question_id": 14382, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000441", - "question_id": 14384, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003443", - "question_id": 14386, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001601", - "question_id": 14387, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000432", - "question_id": 14388, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000926", - "question_id": 14390, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001246", - "question_id": 14391, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002204", - "question_id": 14392, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"bassoon\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001342", - "question_id": 14393, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005569", - "question_id": 14394, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001693", - "question_id": 14395, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000798", - "question_id": 14397, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004363", - "question_id": 14401, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000377", - "question_id": 14402, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003433", - "question_id": 14404, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003071", - "question_id": 14406, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007271", - "question_id": 14407, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005212", - "question_id": 14409, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003063", - "question_id": 14410, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004681", - "question_id": 14411, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005547", - "question_id": 14412, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003000", - "question_id": 14416, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00005789", - "question_id": 14417, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001523", - "question_id": 14419, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002181", - "question_id": 14420, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00006988", - "question_id": 14422, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000311", - "question_id": 14425, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008144", - "question_id": 14427, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001637", - "question_id": 14428, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003447", - "question_id": 14429, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003346", - "question_id": 14430, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001970", - "question_id": 14431, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006522", - "question_id": 14433, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004311", - "question_id": 14434, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006981", - "question_id": 14435, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000366", - "question_id": 14436, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003138", - "question_id": 14440, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005450", - "question_id": 14441, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004839", - "question_id": 14442, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001336", - "question_id": 14443, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001260", - "question_id": 14444, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005978", - "question_id": 14445, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008943", - "question_id": 14446, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006537", - "question_id": 14447, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007483", - "question_id": 14448, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002806", - "question_id": 14449, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000796", - "question_id": 14450, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008486", - "question_id": 14451, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007677", - "question_id": 14452, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004328", - "question_id": 14454, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008002", - "question_id": 14455, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007006", - "question_id": 14457, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003233", - "question_id": 14458, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006656", - "question_id": 14459, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003593", - "question_id": 14462, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006530", - "question_id": 14464, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001029", - "question_id": 14465, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002431", - "question_id": 14469, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007468", - "question_id": 14471, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004257", - "question_id": 14472, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000465", - "question_id": 14473, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000987", - "question_id": 14475, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007421", - "question_id": 14477, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003526", - "question_id": 14479, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001063", - "question_id": 14480, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008445", - "question_id": 14482, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00005793", - "question_id": 14483, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006895", - "question_id": 14484, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008223", - "question_id": 14486, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002564", - "question_id": 14487, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004973", - "question_id": 14488, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006754", - "question_id": 14489, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000915", - "question_id": 14490, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004029", - "question_id": 14491, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004075", - "question_id": 14492, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008012", - "question_id": 14495, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003897", - "question_id": 14499, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006908", - "question_id": 14500, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005708", - "question_id": 14501, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004616", - "question_id": 14502, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"middle\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005767", - "question_id": 14505, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003924", - "question_id": 14507, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00000636", - "question_id": 14509, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008416", - "question_id": 14511, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001135", - "question_id": 14513, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004246", - "question_id": 14516, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00005730", - "question_id": 14517, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003928", - "question_id": 14518, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002326", - "question_id": 14519, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007282", - "question_id": 14520, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007336", - "question_id": 14521, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"ukulele\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008980", - "question_id": 14523, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002032", - "question_id": 14524, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004376", - "question_id": 14525, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003869", - "question_id": 14526, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00001590", - "question_id": 14527, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002802", - "question_id": 14528, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006090", - "question_id": 14534, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006540", - "question_id": 14535, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000486", - "question_id": 14536, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000748", - "question_id": 14537, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006281", - "question_id": 14538, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004079", - "question_id": 14539, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004318", - "question_id": 14540, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000543", - "question_id": 14541, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00007595", - "question_id": 14543, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000470", - "question_id": 14544, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004352", - "question_id": 14546, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00001754", - "question_id": 14547, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003796", - "question_id": 14548, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002869", - "question_id": 14549, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004694", - "question_id": 14550, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002498", - "question_id": 14551, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004656", - "question_id": 14552, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001635", - "question_id": 14553, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005950", - "question_id": 14554, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004942", - "question_id": 14556, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007334", - "question_id": 14557, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003036", - "question_id": 14558, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008567", - "question_id": 14560, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001471", - "question_id": 14563, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00007249", - "question_id": 14564, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003824", - "question_id": 14565, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008684", - "question_id": 14566, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005343", - "question_id": 14568, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00000401", - "question_id": 14569, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001110", - "question_id": 14570, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003566", - "question_id": 14571, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"pipa\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00003544", - "question_id": 14573, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003365", - "question_id": 14574, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003226", - "question_id": 14576, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008651", - "question_id": 14577, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000833", - "question_id": 14579, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007022", - "question_id": 14581, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00003773", - "question_id": 14583, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00006832", - "question_id": 14584, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"guzheng\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004014", - "question_id": 14588, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008643", - "question_id": 14589, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003242", - "question_id": 14590, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"drum\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006697", - "question_id": 14591, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008966", - "question_id": 14594, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00006357", - "question_id": 14595, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005775", - "question_id": 14597, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00007773", - "question_id": 14598, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000693", - "question_id": 14599, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005452", - "question_id": 14604, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005132", - "question_id": 14605, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005541", - "question_id": 14607, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000901", - "question_id": 14608, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00007607", - "question_id": 14610, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007402", - "question_id": 14611, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006480", - "question_id": 14614, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001255", - "question_id": 14615, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000182", - "question_id": 14617, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001426", - "question_id": 14619, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008302", - "question_id": 14620, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005514", - "question_id": 14621, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00001812", - "question_id": 14624, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00005525", - "question_id": 14626, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006882", - "question_id": 14627, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002995", - "question_id": 14628, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007860", - "question_id": 14630, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002920", - "question_id": 14632, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006726", - "question_id": 14633, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005440", - "question_id": 14634, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002107", - "question_id": 14635, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004923", - "question_id": 14636, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007279", - "question_id": 14637, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008305", - "question_id": 14638, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008670", - "question_id": 14639, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001380", - "question_id": 14640, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006258", - "question_id": 14641, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006653", - "question_id": 14642, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000407", - "question_id": 14643, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008626", - "question_id": 14645, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008134", - "question_id": 14647, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008122", - "question_id": 14648, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005142", - "question_id": 14651, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003361", - "question_id": 14652, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005875", - "question_id": 14653, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006008", - "question_id": 14657, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008592", - "question_id": 14658, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004907", - "question_id": 14661, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004243", - "question_id": 14662, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004076", - "question_id": 14663, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00004109", - "question_id": 14664, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004874", - "question_id": 14666, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005247", - "question_id": 14667, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001334", - "question_id": 14668, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007816", - "question_id": 14669, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002950", - "question_id": 14671, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008133", - "question_id": 14672, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008740", - "question_id": 14673, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000863", - "question_id": 14674, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008919", - "question_id": 14675, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003796", - "question_id": 14676, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003249", - "question_id": 14679, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000454", - "question_id": 14680, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005971", - "question_id": 14682, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005708", - "question_id": 14683, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001551", - "question_id": 14687, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008930", - "question_id": 14688, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001193", - "question_id": 14689, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000355", - "question_id": 14691, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005270", - "question_id": 14692, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006748", - "question_id": 14693, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008980", - "question_id": 14694, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008808", - "question_id": 14698, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001173", - "question_id": 14700, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"electric_bass\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007664", - "question_id": 14701, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005216", - "question_id": 14702, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001956", - "question_id": 14703, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000626", - "question_id": 14705, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000039", - "question_id": 14706, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001364", - "question_id": 14709, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004175", - "question_id": 14710, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000733", - "question_id": 14711, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001701", - "question_id": 14714, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001394", - "question_id": 14715, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004674", - "question_id": 14716, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002912", - "question_id": 14717, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003440", - "question_id": 14718, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00003358", - "question_id": 14720, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004083", - "question_id": 14721, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008556", - "question_id": 14722, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008430", - "question_id": 14723, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007951", - "question_id": 14724, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005976", - "question_id": 14725, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003233", - "question_id": 14726, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000737", - "question_id": 14728, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008190", - "question_id": 14729, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001828", - "question_id": 14731, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003022", - "question_id": 14732, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001716", - "question_id": 14734, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002255", - "question_id": 14736, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007078", - "question_id": 14738, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004847", - "question_id": 14741, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000583", - "question_id": 14742, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007658", - "question_id": 14744, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006964", - "question_id": 14745, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001010", - "question_id": 14746, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000589", - "question_id": 14747, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00003605", - "question_id": 14748, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007399", - "question_id": 14749, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001248", - "question_id": 14750, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001292", - "question_id": 14753, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008434", - "question_id": 14754, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003913", - "question_id": 14756, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007177", - "question_id": 14759, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005924", - "question_id": 14763, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006841", - "question_id": 14768, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002542", - "question_id": 14769, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00004861", - "question_id": 14770, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004861", - "question_id": 14770, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006202", - "question_id": 14771, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002938", - "question_id": 14772, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002235", - "question_id": 14773, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003880", - "question_id": 14774, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000624", - "question_id": 14779, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003587", - "question_id": 14780, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003774", - "question_id": 14782, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001645", - "question_id": 14783, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003875", - "question_id": 14785, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003483", - "question_id": 14786, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006986", - "question_id": 14788, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002739", - "question_id": 14789, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004641", - "question_id": 14791, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006741", - "question_id": 14792, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003571", - "question_id": 14793, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005673", - "question_id": 14794, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000699", - "question_id": 14797, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008317", - "question_id": 14800, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006029", - "question_id": 14805, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007766", - "question_id": 14806, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00004778", - "question_id": 14808, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004963", - "question_id": 14809, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005618", - "question_id": 14810, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000260", - "question_id": 14811, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006008", - "question_id": 14813, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001785", - "question_id": 14814, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00001005", - "question_id": 14815, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001137", - "question_id": 14816, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002954", - "question_id": 14818, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001116", - "question_id": 14819, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006648", - "question_id": 14822, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004662", - "question_id": 14823, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001158", - "question_id": 14825, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00001077", - "question_id": 14827, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004930", - "question_id": 14829, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008622", - "question_id": 14830, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00004385", - "question_id": 14831, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003576", - "question_id": 14833, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003576", - "question_id": 14833, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005467", - "question_id": 14835, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001331", - "question_id": 14836, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008114", - "question_id": 14837, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"drum\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006472", - "question_id": 14838, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00006981", - "question_id": 14840, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008300", - "question_id": 14842, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003491", - "question_id": 14843, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001962", - "question_id": 14844, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000553", - "question_id": 14845, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00002026", - "question_id": 14846, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005360", - "question_id": 14847, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001968", - "question_id": 14849, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000889", - "question_id": 14850, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002844", - "question_id": 14852, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004269", - "question_id": 14853, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001424", - "question_id": 14854, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001219", - "question_id": 14855, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002702", - "question_id": 14856, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008645", - "question_id": 14858, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008435", - "question_id": 14859, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008634", - "question_id": 14860, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005781", - "question_id": 14862, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007456", - "question_id": 14863, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006433", - "question_id": 14864, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006433", - "question_id": 14864, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000770", - "question_id": 14865, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005828", - "question_id": 14866, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007206", - "question_id": 14868, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005743", - "question_id": 14869, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007725", - "question_id": 14870, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005322", - "question_id": 14871, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000419", - "question_id": 14872, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004927", - "question_id": 14874, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000416", - "question_id": 14876, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005090", - "question_id": 14877, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001679", - "question_id": 14878, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002736", - "question_id": 14879, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001718", - "question_id": 14882, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003859", - "question_id": 14884, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002601", - "question_id": 14885, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005757", - "question_id": 14887, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005015", - "question_id": 14888, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002973", - "question_id": 14889, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000641", - "question_id": 14890, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004918", - "question_id": 14891, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002697", - "question_id": 14893, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005581", - "question_id": 14894, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001977", - "question_id": 14895, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007579", - "question_id": 14897, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003167", - "question_id": 14898, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00001600", - "question_id": 14902, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007172", - "question_id": 14903, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005908", - "question_id": 14904, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005755", - "question_id": 14905, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007098", - "question_id": 14906, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001604", - "question_id": 14907, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007889", - "question_id": 14909, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00003583", - "question_id": 14910, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002905", - "question_id": 14911, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007443", - "question_id": 14912, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005807", - "question_id": 14913, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008083", - "question_id": 14914, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000840", - "question_id": 14915, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000552", - "question_id": 14916, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000871", - "question_id": 14917, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001445", - "question_id": 14918, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00007734", - "question_id": 14920, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002838", - "question_id": 14921, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003573", - "question_id": 14922, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"accordion\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006398", - "question_id": 14923, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007919", - "question_id": 14924, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002483", - "question_id": 14925, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003889", - "question_id": 14926, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003457", - "question_id": 14927, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000261", - "question_id": 14928, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001919", - "question_id": 14930, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004234", - "question_id": 14931, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002317", - "question_id": 14932, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007557", - "question_id": 14933, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002103", - "question_id": 14934, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005524", - "question_id": 14935, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007063", - "question_id": 14936, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00000151", - "question_id": 14937, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008086", - "question_id": 14941, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008364", - "question_id": 14943, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006661", - "question_id": 14944, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000843", - "question_id": 14945, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007915", - "question_id": 14946, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002005", - "question_id": 14947, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00008698", - "question_id": 14951, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001711", - "question_id": 14952, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001316", - "question_id": 14953, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006612", - "question_id": 14954, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005045", - "question_id": 14955, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007981", - "question_id": 14956, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002859", - "question_id": 14957, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006427", - "question_id": 14958, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00004471", - "question_id": 14959, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000563", - "question_id": 14960, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004636", - "question_id": 14961, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000381", - "question_id": 14962, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000921", - "question_id": 14963, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00001328", - "question_id": 14965, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"xylophone\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000696", - "question_id": 14966, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00003340", - "question_id": 14968, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005676", - "question_id": 14969, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001263", - "question_id": 14972, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00008489", - "question_id": 14973, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00005422", - "question_id": 14974, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007401", - "question_id": 14975, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003480", - "question_id": 14976, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007862", - "question_id": 14977, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002346", - "question_id": 14978, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006801", - "question_id": 14979, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000483", - "question_id": 14980, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000880", - "question_id": 14983, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002979", - "question_id": 14986, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003977", - "question_id": 14989, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008514", - "question_id": 14991, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001672", - "question_id": 14992, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005919", - "question_id": 14993, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005328", - "question_id": 14995, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008225", - "question_id": 14996, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004314", - "question_id": 15001, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008201", - "question_id": 15002, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002460", - "question_id": 15003, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001602", - "question_id": 15005, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004116", - "question_id": 15006, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005260", - "question_id": 15007, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001366", - "question_id": 15009, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002238", - "question_id": 15012, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00003235", - "question_id": 15013, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007365", - "question_id": 15014, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005989", - "question_id": 15017, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000830", - "question_id": 15018, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00000686", - "question_id": 15019, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000900", - "question_id": 15020, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005544", - "question_id": 15022, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002998", - "question_id": 15023, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002129", - "question_id": 15025, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004942", - "question_id": 15026, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002686", - "question_id": 15028, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003924", - "question_id": 15029, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00004643", - "question_id": 15030, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00004346", - "question_id": 15031, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008920", - "question_id": 15032, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006642", - "question_id": 15034, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002449", - "question_id": 15035, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008620", - "question_id": 15036, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004201", - "question_id": 15037, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008535", - "question_id": 15038, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008174", - "question_id": 15040, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008144", - "question_id": 15043, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008455", - "question_id": 15044, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008567", - "question_id": 15045, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004466", - "question_id": 15046, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000218", - "question_id": 15047, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"middle\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003124", - "question_id": 15048, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004884", - "question_id": 15049, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006782", - "question_id": 15050, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00004792", - "question_id": 15052, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006390", - "question_id": 15056, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002745", - "question_id": 15057, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005795", - "question_id": 15059, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005646", - "question_id": 15061, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "more than ten" -}, { - "video_id": "00006076", - "question_id": 15068, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00000426", - "question_id": 15069, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004020", - "question_id": 15070, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000877", - "question_id": 15072, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003796", - "question_id": 15073, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007749", - "question_id": 15077, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006270", - "question_id": 15078, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002003", - "question_id": 15080, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008539", - "question_id": 15081, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006143", - "question_id": 15082, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003269", - "question_id": 15084, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001304", - "question_id": 15085, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00008465", - "question_id": 15086, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008580", - "question_id": 15087, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003338", - "question_id": 15088, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008767", - "question_id": 15090, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003126", - "question_id": 15091, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002778", - "question_id": 15094, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000509", - "question_id": 15095, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008220", - "question_id": 15097, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006788", - "question_id": 15098, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002970", - "question_id": 15099, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003923", - "question_id": 15100, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006677", - "question_id": 15101, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005935", - "question_id": 15102, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003805", - "question_id": 15103, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007341", - "question_id": 15104, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00005421", - "question_id": 15107, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007593", - "question_id": 15108, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001983", - "question_id": 15109, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002751", - "question_id": 15110, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007425", - "question_id": 15111, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00000642", - "question_id": 15112, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001755", - "question_id": 15113, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004792", - "question_id": 15114, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007978", - "question_id": 15117, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002832", - "question_id": 15118, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004572", - "question_id": 15120, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008600", - "question_id": 15122, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006828", - "question_id": 15125, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00008129", - "question_id": 15126, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00001962", - "question_id": 15127, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001556", - "question_id": 15128, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007682", - "question_id": 15129, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005065", - "question_id": 15130, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007439", - "question_id": 15131, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001573", - "question_id": 15132, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006997", - "question_id": 15134, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002515", - "question_id": 15135, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003504", - "question_id": 15136, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003509", - "question_id": 15137, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004053", - "question_id": 15140, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008907", - "question_id": 15141, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001977", - "question_id": 15142, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003223", - "question_id": 15143, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000784", - "question_id": 15144, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007458", - "question_id": 15146, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008385", - "question_id": 15147, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "seven" -}, { - "video_id": "00005113", - "question_id": 15148, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00005523", - "question_id": 15149, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005335", - "question_id": 15150, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000382", - "question_id": 15151, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005658", - "question_id": 15153, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00003227", - "question_id": 15155, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007275", - "question_id": 15157, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003342", - "question_id": 15158, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006637", - "question_id": 15159, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002036", - "question_id": 15160, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003242", - "question_id": 15162, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"drum\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007061", - "question_id": 15163, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005452", - "question_id": 15164, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000067", - "question_id": 15165, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005369", - "question_id": 15166, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006443", - "question_id": 15167, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001230", - "question_id": 15170, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"drum\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001917", - "question_id": 15172, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000198", - "question_id": 15173, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005997", - "question_id": 15174, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008523", - "question_id": 15177, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004115", - "question_id": 15178, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007191", - "question_id": 15180, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004198", - "question_id": 15181, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003479", - "question_id": 15182, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000454", - "question_id": 15183, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002619", - "question_id": 15184, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002116", - "question_id": 15186, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005821", - "question_id": 15188, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002161", - "question_id": 15189, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002153", - "question_id": 15190, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003726", - "question_id": 15192, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003227", - "question_id": 15195, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003641", - "question_id": 15196, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005915", - "question_id": 15197, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002027", - "question_id": 15198, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001021", - "question_id": 15199, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008534", - "question_id": 15200, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005035", - "question_id": 15201, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005815", - "question_id": 15203, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003154", - "question_id": 15204, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008249", - "question_id": 15205, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007897", - "question_id": 15206, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003104", - "question_id": 15207, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002627", - "question_id": 15208, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000643", - "question_id": 15209, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000479", - "question_id": 15210, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002160", - "question_id": 15213, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006798", - "question_id": 15215, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004897", - "question_id": 15216, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008126", - "question_id": 15217, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005009", - "question_id": 15219, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004460", - "question_id": 15220, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000106", - "question_id": 15222, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002972", - "question_id": 15223, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008132", - "question_id": 15224, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001606", - "question_id": 15225, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003353", - "question_id": 15226, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000634", - "question_id": 15227, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006385", - "question_id": 15228, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002982", - "question_id": 15229, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007148", - "question_id": 15230, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006087", - "question_id": 15231, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007437", - "question_id": 15235, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004529", - "question_id": 15237, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001862", - "question_id": 15240, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000337", - "question_id": 15243, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007504", - "question_id": 15244, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008836", - "question_id": 15246, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008480", - "question_id": 15247, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004774", - "question_id": 15248, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007958", - "question_id": 15251, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00000897", - "question_id": 15253, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007392", - "question_id": 15254, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007579", - "question_id": 15257, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00006971", - "question_id": 15258, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000698", - "question_id": 15259, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002039", - "question_id": 15260, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005029", - "question_id": 15261, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006248", - "question_id": 15263, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008183", - "question_id": 15270, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005033", - "question_id": 15271, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007426", - "question_id": 15272, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007504", - "question_id": 15274, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001040", - "question_id": 15275, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001420", - "question_id": 15276, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000655", - "question_id": 15277, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002228", - "question_id": 15278, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001698", - "question_id": 15280, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00003348", - "question_id": 15282, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008614", - "question_id": 15285, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008668", - "question_id": 15286, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002280", - "question_id": 15287, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000388", - "question_id": 15288, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005178", - "question_id": 15289, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008271", - "question_id": 15292, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005107", - "question_id": 15293, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002321", - "question_id": 15294, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004004", - "question_id": 15295, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001781", - "question_id": 15297, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003925", - "question_id": 15298, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004527", - "question_id": 15299, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003353", - "question_id": 15300, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007818", - "question_id": 15301, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001510", - "question_id": 15304, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007801", - "question_id": 15305, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004056", - "question_id": 15306, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007458", - "question_id": 15307, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006827", - "question_id": 15308, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000844", - "question_id": 15309, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00002815", - "question_id": 15310, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006815", - "question_id": 15311, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003462", - "question_id": 15313, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002241", - "question_id": 15315, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005934", - "question_id": 15316, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001742", - "question_id": 15317, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001742", - "question_id": 15317, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002023", - "question_id": 15318, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008717", - "question_id": 15319, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005485", - "question_id": 15321, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008261", - "question_id": 15322, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006418", - "question_id": 15323, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000146", - "question_id": 15325, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006264", - "question_id": 15326, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005417", - "question_id": 15327, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005802", - "question_id": 15328, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003552", - "question_id": 15329, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006778", - "question_id": 15332, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008277", - "question_id": 15333, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007232", - "question_id": 15334, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002243", - "question_id": 15335, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001462", - "question_id": 15336, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003726", - "question_id": 15337, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007198", - "question_id": 15340, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005926", - "question_id": 15342, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00008431", - "question_id": 15343, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003002", - "question_id": 15344, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00002573", - "question_id": 15345, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002461", - "question_id": 15346, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "more than ten" -}, { - "video_id": "00001805", - "question_id": 15347, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006773", - "question_id": 15350, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00004836", - "question_id": 15351, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008315", - "question_id": 15352, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000721", - "question_id": 15354, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001746", - "question_id": 15355, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002968", - "question_id": 15356, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004964", - "question_id": 15357, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007111", - "question_id": 15358, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005398", - "question_id": 15359, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000539", - "question_id": 15360, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001036", - "question_id": 15361, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004027", - "question_id": 15363, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00000465", - "question_id": 15366, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002928", - "question_id": 15368, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004275", - "question_id": 15369, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005310", - "question_id": 15370, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002608", - "question_id": 15372, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008214", - "question_id": 15373, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005061", - "question_id": 15374, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00008800", - "question_id": 15375, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006695", - "question_id": 15376, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000372", - "question_id": 15377, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bagpipe\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006898", - "question_id": 15378, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"drum\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008858", - "question_id": 15379, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007153", - "question_id": 15380, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005774", - "question_id": 15381, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00005886", - "question_id": 15382, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001983", - "question_id": 15384, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000403", - "question_id": 15385, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005948", - "question_id": 15386, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003548", - "question_id": 15387, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005567", - "question_id": 15388, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002955", - "question_id": 15390, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00005372", - "question_id": 15391, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005675", - "question_id": 15392, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005386", - "question_id": 15394, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001911", - "question_id": 15395, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008847", - "question_id": 15396, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007917", - "question_id": 15397, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006055", - "question_id": 15398, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004202", - "question_id": 15400, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004061", - "question_id": 15401, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002758", - "question_id": 15402, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000859", - "question_id": 15403, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001580", - "question_id": 15405, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000169", - "question_id": 15407, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000785", - "question_id": 15409, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006977", - "question_id": 15411, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002824", - "question_id": 15413, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003487", - "question_id": 15414, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007503", - "question_id": 15415, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008802", - "question_id": 15417, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002876", - "question_id": 15418, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004186", - "question_id": 15419, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003266", - "question_id": 15420, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005168", - "question_id": 15421, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003895", - "question_id": 15425, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006612", - "question_id": 15426, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000947", - "question_id": 15428, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006410", - "question_id": 15429, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00003855", - "question_id": 15430, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000599", - "question_id": 15431, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001793", - "question_id": 15432, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005986", - "question_id": 15433, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"banjo\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00007306", - "question_id": 15438, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008957", - "question_id": 15440, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008432", - "question_id": 15442, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005290", - "question_id": 15444, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002486", - "question_id": 15447, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004821", - "question_id": 15448, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008658", - "question_id": 15449, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000543", - "question_id": 15450, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002363", - "question_id": 15451, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002363", - "question_id": 15451, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006759", - "question_id": 15453, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006068", - "question_id": 15454, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00005878", - "question_id": 15455, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000693", - "question_id": 15456, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007670", - "question_id": 15458, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005105", - "question_id": 15459, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005600", - "question_id": 15460, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003328", - "question_id": 15461, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003408", - "question_id": 15462, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004372", - "question_id": 15463, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007812", - "question_id": 15464, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000057", - "question_id": 15465, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00003608", - "question_id": 15466, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006536", - "question_id": 15467, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006266", - "question_id": 15468, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005369", - "question_id": 15469, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007175", - "question_id": 15471, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005474", - "question_id": 15472, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001949", - "question_id": 15473, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"electric_bass\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000659", - "question_id": 15474, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"bassoon\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004086", - "question_id": 15476, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008140", - "question_id": 15477, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007193", - "question_id": 15478, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004859", - "question_id": 15480, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004928", - "question_id": 15482, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001011", - "question_id": 15483, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005025", - "question_id": 15485, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008622", - "question_id": 15486, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007669", - "question_id": 15487, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003002", - "question_id": 15488, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003099", - "question_id": 15491, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00005000", - "question_id": 15492, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002102", - "question_id": 15494, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002380", - "question_id": 15495, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bagpipe\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002146", - "question_id": 15496, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000787", - "question_id": 15498, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008105", - "question_id": 15500, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001753", - "question_id": 15501, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008977", - "question_id": 15502, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001202", - "question_id": 15503, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005377", - "question_id": 15504, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00003787", - "question_id": 15505, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004428", - "question_id": 15506, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"drum\", \"middle\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000360", - "question_id": 15508, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003928", - "question_id": 15509, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002868", - "question_id": 15511, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004804", - "question_id": 15513, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00007202", - "question_id": 15517, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005463", - "question_id": 15518, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00000968", - "question_id": 15519, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003761", - "question_id": 15521, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00004555", - "question_id": 15522, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007212", - "question_id": 15524, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002446", - "question_id": 15525, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000032", - "question_id": 15527, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003467", - "question_id": 15528, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006380", - "question_id": 15529, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006408", - "question_id": 15531, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006967", - "question_id": 15532, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000965", - "question_id": 15533, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006174", - "question_id": 15535, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005080", - "question_id": 15536, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000249", - "question_id": 15537, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003200", - "question_id": 15539, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006901", - "question_id": 15541, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003721", - "question_id": 15542, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002896", - "question_id": 15544, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003315", - "question_id": 15546, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002343", - "question_id": 15547, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007839", - "question_id": 15548, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001373", - "question_id": 15550, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00001616", - "question_id": 15553, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003389", - "question_id": 15554, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007606", - "question_id": 15557, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003948", - "question_id": 15559, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003907", - "question_id": 15561, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000840", - "question_id": 15562, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004632", - "question_id": 15563, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002035", - "question_id": 15564, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000279", - "question_id": 15567, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007392", - "question_id": 15569, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005475", - "question_id": 15571, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007957", - "question_id": 15572, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008737", - "question_id": 15573, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006276", - "question_id": 15576, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002809", - "question_id": 15577, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001052", - "question_id": 15578, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004646", - "question_id": 15579, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001963", - "question_id": 15580, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003202", - "question_id": 15581, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006234", - "question_id": 15583, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001197", - "question_id": 15585, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005374", - "question_id": 15586, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004578", - "question_id": 15587, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00008722", - "question_id": 15588, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008580", - "question_id": 15589, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005121", - "question_id": 15590, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007856", - "question_id": 15591, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007250", - "question_id": 15592, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003445", - "question_id": 15593, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006612", - "question_id": 15594, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002026", - "question_id": 15596, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005811", - "question_id": 15599, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006723", - "question_id": 15600, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005160", - "question_id": 15601, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006555", - "question_id": 15602, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"tuba\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006540", - "question_id": 15603, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00004982", - "question_id": 15605, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"electric_bass\", \"left\", \"suona\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008597", - "question_id": 15607, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00001907", - "question_id": 15608, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00000990", - "question_id": 15609, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000379", - "question_id": 15611, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005718", - "question_id": 15612, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001126", - "question_id": 15614, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006819", - "question_id": 15617, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002974", - "question_id": 15618, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000516", - "question_id": 15622, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006509", - "question_id": 15624, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003638", - "question_id": 15625, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00007292", - "question_id": 15626, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001690", - "question_id": 15627, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006954", - "question_id": 15628, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004215", - "question_id": 15630, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000837", - "question_id": 15631, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002651", - "question_id": 15633, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006814", - "question_id": 15634, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008073", - "question_id": 15638, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005998", - "question_id": 15639, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005990", - "question_id": 15640, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008428", - "question_id": 15643, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001827", - "question_id": 15644, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000794", - "question_id": 15646, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002940", - "question_id": 15648, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003346", - "question_id": 15651, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006366", - "question_id": 15652, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001368", - "question_id": 15653, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003782", - "question_id": 15656, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007342", - "question_id": 15657, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "seven" -}, { - "video_id": "00008660", - "question_id": 15662, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006581", - "question_id": 15665, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008216", - "question_id": 15667, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005549", - "question_id": 15669, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006202", - "question_id": 15673, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008033", - "question_id": 15676, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005777", - "question_id": 15677, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00002504", - "question_id": 15678, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003193", - "question_id": 15679, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002753", - "question_id": 15681, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000783", - "question_id": 15682, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008166", - "question_id": 15683, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002117", - "question_id": 15686, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000728", - "question_id": 15687, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000862", - "question_id": 15688, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008128", - "question_id": 15689, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002476", - "question_id": 15690, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"electric_bass\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000993", - "question_id": 15691, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004510", - "question_id": 15692, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004517", - "question_id": 15693, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00008189", - "question_id": 15694, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002613", - "question_id": 15695, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001070", - "question_id": 15696, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008093", - "question_id": 15697, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001025", - "question_id": 15698, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008931", - "question_id": 15699, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005330", - "question_id": 15701, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00008811", - "question_id": 15703, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003072", - "question_id": 15707, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001451", - "question_id": 15708, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001203", - "question_id": 15709, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000056", - "question_id": 15710, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008482", - "question_id": 15711, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004254", - "question_id": 15712, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005915", - "question_id": 15713, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002690", - "question_id": 15714, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00001795", - "question_id": 15715, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005316", - "question_id": 15716, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00008325", - "question_id": 15722, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002362", - "question_id": 15724, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006829", - "question_id": 15726, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008260", - "question_id": 15728, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007683", - "question_id": 15729, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000494", - "question_id": 15730, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00003587", - "question_id": 15731, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00001505", - "question_id": 15735, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00004685", - "question_id": 15736, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002981", - "question_id": 15739, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002531", - "question_id": 15741, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002414", - "question_id": 15742, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008394", - "question_id": 15743, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005903", - "question_id": 15744, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003693", - "question_id": 15745, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001771", - "question_id": 15748, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007625", - "question_id": 15749, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002593", - "question_id": 15751, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005191", - "question_id": 15753, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004161", - "question_id": 15754, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003303", - "question_id": 15755, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007930", - "question_id": 15757, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004706", - "question_id": 15759, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001758", - "question_id": 15760, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000115", - "question_id": 15761, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008472", - "question_id": 15762, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002613", - "question_id": 15763, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008170", - "question_id": 15764, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007428", - "question_id": 15765, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001820", - "question_id": 15766, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002695", - "question_id": 15767, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006749", - "question_id": 15768, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003277", - "question_id": 15769, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004275", - "question_id": 15770, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001841", - "question_id": 15771, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002182", - "question_id": 15773, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00003806", - "question_id": 15777, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005104", - "question_id": 15778, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004290", - "question_id": 15779, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008512", - "question_id": 15782, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006663", - "question_id": 15783, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003013", - "question_id": 15785, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001820", - "question_id": 15787, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004551", - "question_id": 15791, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004011", - "question_id": 15793, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006582", - "question_id": 15795, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003167", - "question_id": 15796, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004228", - "question_id": 15797, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004143", - "question_id": 15798, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "nine" -}, { - "video_id": "00007736", - "question_id": 15799, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000967", - "question_id": 15802, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004923", - "question_id": 15803, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008355", - "question_id": 15804, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00006427", - "question_id": 15805, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006443", - "question_id": 15806, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005957", - "question_id": 15807, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007281", - "question_id": 15808, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008126", - "question_id": 15809, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007869", - "question_id": 15810, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005748", - "question_id": 15811, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001373", - "question_id": 15815, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004630", - "question_id": 15817, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000983", - "question_id": 15819, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000037", - "question_id": 15820, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00007302", - "question_id": 15823, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000633", - "question_id": 15825, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002981", - "question_id": 15826, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003857", - "question_id": 15827, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008159", - "question_id": 15828, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004877", - "question_id": 15831, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001295", - "question_id": 15832, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005140", - "question_id": 15834, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004035", - "question_id": 15835, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006395", - "question_id": 15838, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008736", - "question_id": 15839, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003114", - "question_id": 15841, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005951", - "question_id": 15842, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002111", - "question_id": 15843, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007031", - "question_id": 15845, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000654", - "question_id": 15846, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002980", - "question_id": 15849, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000380", - "question_id": 15850, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005446", - "question_id": 15852, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008361", - "question_id": 15853, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00008125", - "question_id": 15854, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008875", - "question_id": 15856, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005887", - "question_id": 15857, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005625", - "question_id": 15858, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008485", - "question_id": 15860, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"drum\", \"right\", \"electric_bass\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007177", - "question_id": 15862, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006993", - "question_id": 15864, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005145", - "question_id": 15867, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002840", - "question_id": 15868, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001515", - "question_id": 15869, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001090", - "question_id": 15870, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004910", - "question_id": 15871, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003377", - "question_id": 15872, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003911", - "question_id": 15873, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005612", - "question_id": 15874, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001512", - "question_id": 15875, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008585", - "question_id": 15876, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005724", - "question_id": 15877, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001891", - "question_id": 15880, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00001310", - "question_id": 15881, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003405", - "question_id": 15882, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007660", - "question_id": 15883, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005167", - "question_id": 15884, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003351", - "question_id": 15885, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004011", - "question_id": 15887, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001401", - "question_id": 15888, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004147", - "question_id": 15890, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008161", - "question_id": 15892, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004437", - "question_id": 15893, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002439", - "question_id": 15894, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008745", - "question_id": 15895, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000425", - "question_id": 15896, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005653", - "question_id": 15899, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003209", - "question_id": 15900, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002517", - "question_id": 15902, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003428", - "question_id": 15906, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006951", - "question_id": 15910, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008143", - "question_id": 15911, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005178", - "question_id": 15915, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005459", - "question_id": 15916, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001392", - "question_id": 15917, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002917", - "question_id": 15918, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007278", - "question_id": 15919, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003537", - "question_id": 15920, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003703", - "question_id": 15922, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007672", - "question_id": 15923, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005878", - "question_id": 15924, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001204", - "question_id": 15925, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008318", - "question_id": 15927, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005313", - "question_id": 15929, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002056", - "question_id": 15930, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007071", - "question_id": 15931, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bassoon\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006654", - "question_id": 15932, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002112", - "question_id": 15934, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00001930", - "question_id": 15935, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002035", - "question_id": 15936, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004260", - "question_id": 15940, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006720", - "question_id": 15941, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007172", - "question_id": 15943, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00003547", - "question_id": 15944, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000496", - "question_id": 15949, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005405", - "question_id": 15950, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00003802", - "question_id": 15952, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000376", - "question_id": 15955, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007028", - "question_id": 15956, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000970", - "question_id": 15957, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003659", - "question_id": 15958, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001567", - "question_id": 15959, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002471", - "question_id": 15962, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008075", - "question_id": 15964, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007821", - "question_id": 15968, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002904", - "question_id": 15969, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00000194", - "question_id": 15970, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005013", - "question_id": 15973, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007411", - "question_id": 15975, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000156", - "question_id": 15977, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001505", - "question_id": 15978, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00006280", - "question_id": 15980, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005665", - "question_id": 15981, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00004003", - "question_id": 15982, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002922", - "question_id": 15983, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005146", - "question_id": 15984, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003841", - "question_id": 15985, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008461", - "question_id": 15986, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005856", - "question_id": 15989, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006283", - "question_id": 15990, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007660", - "question_id": 15993, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005856", - "question_id": 15994, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003127", - "question_id": 15996, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007914", - "question_id": 15998, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00004883", - "question_id": 16001, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002741", - "question_id": 16003, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001024", - "question_id": 16005, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006413", - "question_id": 16006, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002586", - "question_id": 16008, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003387", - "question_id": 16010, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008900", - "question_id": 16011, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00001290", - "question_id": 16012, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008921", - "question_id": 16014, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003257", - "question_id": 16015, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005629", - "question_id": 16016, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005741", - "question_id": 16017, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006065", - "question_id": 16019, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000063", - "question_id": 16021, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001623", - "question_id": 16022, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008633", - "question_id": 16026, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001124", - "question_id": 16027, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003079", - "question_id": 16029, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003438", - "question_id": 16030, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004784", - "question_id": 16031, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006713", - "question_id": 16032, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006713", - "question_id": 16032, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004458", - "question_id": 16034, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007891", - "question_id": 16035, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006874", - "question_id": 16036, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006580", - "question_id": 16037, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002813", - "question_id": 16038, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007644", - "question_id": 16039, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00001731", - "question_id": 16040, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003866", - "question_id": 16041, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002348", - "question_id": 16042, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001260", - "question_id": 16044, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001949", - "question_id": 16046, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006028", - "question_id": 16048, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000390", - "question_id": 16049, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008019", - "question_id": 16051, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00001609", - "question_id": 16053, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004197", - "question_id": 16055, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000811", - "question_id": 16056, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004022", - "question_id": 16057, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002272", - "question_id": 16059, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002407", - "question_id": 16060, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006238", - "question_id": 16061, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005034", - "question_id": 16062, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00004340", - "question_id": 16065, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004248", - "question_id": 16069, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001952", - "question_id": 16071, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007769", - "question_id": 16074, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006129", - "question_id": 16077, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005625", - "question_id": 16078, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004509", - "question_id": 16081, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005947", - "question_id": 16082, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00001969", - "question_id": 16083, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004577", - "question_id": 16084, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004538", - "question_id": 16086, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005223", - "question_id": 16089, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000574", - "question_id": 16090, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000489", - "question_id": 16091, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006759", - "question_id": 16092, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003452", - "question_id": 16093, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003656", - "question_id": 16095, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006886", - "question_id": 16096, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001776", - "question_id": 16098, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006319", - "question_id": 16100, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002229", - "question_id": 16103, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005595", - "question_id": 16104, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008065", - "question_id": 16105, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005804", - "question_id": 16106, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005006", - "question_id": 16107, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003772", - "question_id": 16108, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007039", - "question_id": 16109, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007074", - "question_id": 16110, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006608", - "question_id": 16111, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004264", - "question_id": 16112, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006769", - "question_id": 16116, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005873", - "question_id": 16117, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000907", - "question_id": 16118, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006585", - "question_id": 16122, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006881", - "question_id": 16123, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001681", - "question_id": 16124, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003384", - "question_id": 16126, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00003910", - "question_id": 16127, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007901", - "question_id": 16128, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006511", - "question_id": 16130, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003826", - "question_id": 16131, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001877", - "question_id": 16132, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00003420", - "question_id": 16133, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003545", - "question_id": 16139, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001301", - "question_id": 16140, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003070", - "question_id": 16141, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008018", - "question_id": 16144, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000440", - "question_id": 16148, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007294", - "question_id": 16149, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004373", - "question_id": 16150, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008412", - "question_id": 16151, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003852", - "question_id": 16152, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007459", - "question_id": 16154, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003239", - "question_id": 16155, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001843", - "question_id": 16156, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006632", - "question_id": 16158, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007940", - "question_id": 16159, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007581", - "question_id": 16160, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000529", - "question_id": 16163, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006005", - "question_id": 16165, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000845", - "question_id": 16167, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007192", - "question_id": 16169, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00000430", - "question_id": 16170, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000055", - "question_id": 16172, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005097", - "question_id": 16175, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006401", - "question_id": 16176, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000601", - "question_id": 16177, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001034", - "question_id": 16181, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000910", - "question_id": 16182, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002067", - "question_id": 16185, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001452", - "question_id": 16188, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006704", - "question_id": 16189, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008832", - "question_id": 16191, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006876", - "question_id": 16194, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001016", - "question_id": 16197, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004270", - "question_id": 16198, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005829", - "question_id": 16199, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007503", - "question_id": 16200, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00004661", - "question_id": 16201, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00004840", - "question_id": 16202, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006553", - "question_id": 16203, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006231", - "question_id": 16204, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000303", - "question_id": 16205, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00002172", - "question_id": 16206, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008295", - "question_id": 16207, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002631", - "question_id": 16208, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006163", - "question_id": 16209, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003079", - "question_id": 16211, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004848", - "question_id": 16213, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004649", - "question_id": 16215, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"fourth\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008590", - "question_id": 16216, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003144", - "question_id": 16218, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004553", - "question_id": 16219, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007458", - "question_id": 16221, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005265", - "question_id": 16222, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008745", - "question_id": 16223, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004821", - "question_id": 16226, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002664", - "question_id": 16228, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008713", - "question_id": 16229, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003194", - "question_id": 16231, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005071", - "question_id": 16232, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006517", - "question_id": 16234, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008440", - "question_id": 16235, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005448", - "question_id": 16236, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008414", - "question_id": 16238, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005424", - "question_id": 16242, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005338", - "question_id": 16243, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008318", - "question_id": 16244, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003089", - "question_id": 16245, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006236", - "question_id": 16246, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002645", - "question_id": 16247, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001170", - "question_id": 16248, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"cello\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008056", - "question_id": 16249, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006668", - "question_id": 16251, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007642", - "question_id": 16252, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00005057", - "question_id": 16253, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000941", - "question_id": 16255, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007180", - "question_id": 16256, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005335", - "question_id": 16258, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000620", - "question_id": 16260, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002284", - "question_id": 16261, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003375", - "question_id": 16262, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001608", - "question_id": 16263, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008139", - "question_id": 16265, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001615", - "question_id": 16266, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004044", - "question_id": 16267, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003217", - "question_id": 16268, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001788", - "question_id": 16271, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002394", - "question_id": 16272, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004446", - "question_id": 16273, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001842", - "question_id": 16277, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001246", - "question_id": 16278, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005244", - "question_id": 16279, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005968", - "question_id": 16280, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003508", - "question_id": 16281, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002244", - "question_id": 16282, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000131", - "question_id": 16285, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00008501", - "question_id": 16286, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000413", - "question_id": 16290, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008864", - "question_id": 16291, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006693", - "question_id": 16292, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008506", - "question_id": 16294, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001358", - "question_id": 16295, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001358", - "question_id": 16295, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002372", - "question_id": 16296, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000907", - "question_id": 16297, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005376", - "question_id": 16298, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007757", - "question_id": 16299, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004198", - "question_id": 16302, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005296", - "question_id": 16303, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006593", - "question_id": 16305, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005437", - "question_id": 16307, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"fourth\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00002472", - "question_id": 16308, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001359", - "question_id": 16309, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000389", - "question_id": 16310, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007508", - "question_id": 16312, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002131", - "question_id": 16316, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008874", - "question_id": 16319, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007230", - "question_id": 16320, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000770", - "question_id": 16322, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002962", - "question_id": 16323, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006160", - "question_id": 16324, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00000542", - "question_id": 16326, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006975", - "question_id": 16327, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000793", - "question_id": 16328, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004557", - "question_id": 16329, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003686", - "question_id": 16331, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000955", - "question_id": 16332, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004005", - "question_id": 16333, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002610", - "question_id": 16335, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008703", - "question_id": 16336, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001732", - "question_id": 16337, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007031", - "question_id": 16338, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001922", - "question_id": 16340, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007557", - "question_id": 16341, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004020", - "question_id": 16343, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004644", - "question_id": 16344, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008211", - "question_id": 16345, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006474", - "question_id": 16346, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006018", - "question_id": 16347, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003673", - "question_id": 16348, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004112", - "question_id": 16349, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003552", - "question_id": 16350, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001869", - "question_id": 16353, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007913", - "question_id": 16354, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004411", - "question_id": 16355, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007565", - "question_id": 16356, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000344", - "question_id": 16357, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004925", - "question_id": 16358, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008838", - "question_id": 16359, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004524", - "question_id": 16360, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008574", - "question_id": 16361, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007491", - "question_id": 16362, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00001547", - "question_id": 16363, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00008850", - "question_id": 16365, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000588", - "question_id": 16367, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"middle\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000698", - "question_id": 16368, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000168", - "question_id": 16369, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007382", - "question_id": 16371, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007947", - "question_id": 16372, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000724", - "question_id": 16373, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008732", - "question_id": 16374, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000586", - "question_id": 16375, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002614", - "question_id": 16376, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000827", - "question_id": 16377, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007100", - "question_id": 16378, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005330", - "question_id": 16379, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002773", - "question_id": 16380, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006572", - "question_id": 16381, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008809", - "question_id": 16382, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007049", - "question_id": 16383, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004302", - "question_id": 16385, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008403", - "question_id": 16386, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000619", - "question_id": 16387, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006596", - "question_id": 16388, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004622", - "question_id": 16389, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003004", - "question_id": 16390, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001018", - "question_id": 16392, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001493", - "question_id": 16393, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000101", - "question_id": 16394, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004693", - "question_id": 16395, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007548", - "question_id": 16396, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000249", - "question_id": 16398, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007740", - "question_id": 16399, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00008355", - "question_id": 16400, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001190", - "question_id": 16402, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005993", - "question_id": 16403, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007554", - "question_id": 16404, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008086", - "question_id": 16405, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00008573", - "question_id": 16407, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000164", - "question_id": 16408, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002916", - "question_id": 16409, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003491", - "question_id": 16410, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002171", - "question_id": 16412, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006840", - "question_id": 16413, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004167", - "question_id": 16414, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008073", - "question_id": 16418, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000043", - "question_id": 16420, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001884", - "question_id": 16421, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004552", - "question_id": 16422, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002528", - "question_id": 16424, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004669", - "question_id": 16426, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007430", - "question_id": 16427, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00003411", - "question_id": 16430, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007984", - "question_id": 16431, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00003393", - "question_id": 16434, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003063", - "question_id": 16436, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008708", - "question_id": 16437, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001854", - "question_id": 16439, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001222", - "question_id": 16440, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002712", - "question_id": 16443, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006349", - "question_id": 16445, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006048", - "question_id": 16450, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007161", - "question_id": 16451, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003991", - "question_id": 16453, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002300", - "question_id": 16455, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001891", - "question_id": 16456, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004146", - "question_id": 16457, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006978", - "question_id": 16459, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005463", - "question_id": 16460, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003136", - "question_id": 16461, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005748", - "question_id": 16463, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003646", - "question_id": 16464, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007607", - "question_id": 16465, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007960", - "question_id": 16466, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002110", - "question_id": 16467, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00003677", - "question_id": 16468, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001483", - "question_id": 16469, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006724", - "question_id": 16471, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000483", - "question_id": 16472, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001252", - "question_id": 16473, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003059", - "question_id": 16474, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000218", - "question_id": 16479, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004330", - "question_id": 16480, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007713", - "question_id": 16481, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00001290", - "question_id": 16483, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002073", - "question_id": 16484, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001016", - "question_id": 16485, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00002434", - "question_id": 16486, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001201", - "question_id": 16487, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008832", - "question_id": 16488, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002554", - "question_id": 16489, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001755", - "question_id": 16490, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002680", - "question_id": 16493, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004874", - "question_id": 16494, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"xylophone\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001878", - "question_id": 16495, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008522", - "question_id": 16496, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000501", - "question_id": 16497, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002661", - "question_id": 16499, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00008298", - "question_id": 16500, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004424", - "question_id": 16501, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008402", - "question_id": 16503, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008518", - "question_id": 16504, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00000857", - "question_id": 16505, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004496", - "question_id": 16506, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007545", - "question_id": 16507, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003857", - "question_id": 16508, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006787", - "question_id": 16510, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00000442", - "question_id": 16512, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003321", - "question_id": 16514, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000527", - "question_id": 16515, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006218", - "question_id": 16516, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006144", - "question_id": 16517, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005825", - "question_id": 16518, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00002561", - "question_id": 16519, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005633", - "question_id": 16520, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005625", - "question_id": 16521, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001077", - "question_id": 16523, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000479", - "question_id": 16525, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00000669", - "question_id": 16527, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007454", - "question_id": 16528, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002045", - "question_id": 16530, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003023", - "question_id": 16531, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004693", - "question_id": 16532, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006882", - "question_id": 16534, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008501", - "question_id": 16536, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007522", - "question_id": 16542, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000415", - "question_id": 16543, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008955", - "question_id": 16545, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00008941", - "question_id": 16546, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000393", - "question_id": 16547, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008362", - "question_id": 16551, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000288", - "question_id": 16552, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004232", - "question_id": 16554, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006932", - "question_id": 16558, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004520", - "question_id": 16559, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002559", - "question_id": 16560, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003019", - "question_id": 16562, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002883", - "question_id": 16566, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006745", - "question_id": 16569, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003734", - "question_id": 16570, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00005822", - "question_id": 16571, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006021", - "question_id": 16572, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006021", - "question_id": 16572, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005950", - "question_id": 16575, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008669", - "question_id": 16577, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003232", - "question_id": 16578, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000737", - "question_id": 16580, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000045", - "question_id": 16582, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002188", - "question_id": 16586, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003353", - "question_id": 16587, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006748", - "question_id": 16589, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00004237", - "question_id": 16591, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003701", - "question_id": 16592, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001917", - "question_id": 16594, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004907", - "question_id": 16596, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000697", - "question_id": 16597, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006414", - "question_id": 16598, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007757", - "question_id": 16599, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000202", - "question_id": 16600, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006830", - "question_id": 16601, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006288", - "question_id": 16602, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00007073", - "question_id": 16603, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008540", - "question_id": 16604, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007724", - "question_id": 16605, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00003002", - "question_id": 16607, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00004787", - "question_id": 16608, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003965", - "question_id": 16610, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003003", - "question_id": 16611, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001345", - "question_id": 16613, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006282", - "question_id": 16615, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003226", - "question_id": 16616, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005938", - "question_id": 16618, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007163", - "question_id": 16620, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007971", - "question_id": 16621, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004622", - "question_id": 16622, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007683", - "question_id": 16624, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006303", - "question_id": 16625, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002452", - "question_id": 16627, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006982", - "question_id": 16628, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006481", - "question_id": 16629, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006319", - "question_id": 16632, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008722", - "question_id": 16636, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000230", - "question_id": 16637, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008201", - "question_id": 16638, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007470", - "question_id": 16639, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00008625", - "question_id": 16640, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002542", - "question_id": 16642, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005563", - "question_id": 16643, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003011", - "question_id": 16644, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000520", - "question_id": 16648, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006950", - "question_id": 16649, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007048", - "question_id": 16650, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007125", - "question_id": 16651, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006314", - "question_id": 16652, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005647", - "question_id": 16654, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007192", - "question_id": 16656, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006277", - "question_id": 16657, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004112", - "question_id": 16658, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006021", - "question_id": 16659, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001234", - "question_id": 16660, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007853", - "question_id": 16661, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00008642", - "question_id": 16662, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006549", - "question_id": 16663, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000697", - "question_id": 16664, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003360", - "question_id": 16665, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000097", - "question_id": 16666, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004570", - "question_id": 16667, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004681", - "question_id": 16669, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007232", - "question_id": 16670, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001628", - "question_id": 16673, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005521", - "question_id": 16674, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00006804", - "question_id": 16675, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006650", - "question_id": 16676, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007741", - "question_id": 16677, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005292", - "question_id": 16678, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005917", - "question_id": 16679, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002596", - "question_id": 16681, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003940", - "question_id": 16682, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006714", - "question_id": 16683, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000740", - "question_id": 16684, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008550", - "question_id": 16685, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000859", - "question_id": 16686, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002947", - "question_id": 16689, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005312", - "question_id": 16690, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00008333", - "question_id": 16691, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"piano\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003074", - "question_id": 16692, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000796", - "question_id": 16693, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001331", - "question_id": 16694, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002310", - "question_id": 16695, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008088", - "question_id": 16697, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001599", - "question_id": 16698, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003447", - "question_id": 16699, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008916", - "question_id": 16700, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002775", - "question_id": 16701, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001543", - "question_id": 16703, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002213", - "question_id": 16704, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00005433", - "question_id": 16705, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002486", - "question_id": 16706, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001775", - "question_id": 16707, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005826", - "question_id": 16709, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002552", - "question_id": 16710, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002197", - "question_id": 16711, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000207", - "question_id": 16712, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001829", - "question_id": 16713, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008614", - "question_id": 16714, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006450", - "question_id": 16715, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00007106", - "question_id": 16716, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00007651", - "question_id": 16717, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004606", - "question_id": 16718, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006875", - "question_id": 16719, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00008726", - "question_id": 16721, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000743", - "question_id": 16723, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008058", - "question_id": 16724, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005422", - "question_id": 16725, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004352", - "question_id": 16727, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008183", - "question_id": 16728, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005731", - "question_id": 16729, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003611", - "question_id": 16730, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008722", - "question_id": 16732, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000609", - "question_id": 16733, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006099", - "question_id": 16735, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004564", - "question_id": 16737, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007453", - "question_id": 16738, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000679", - "question_id": 16739, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003021", - "question_id": 16741, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006157", - "question_id": 16742, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002045", - "question_id": 16744, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004726", - "question_id": 16745, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00001697", - "question_id": 16746, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001766", - "question_id": 16747, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004859", - "question_id": 16748, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002529", - "question_id": 16751, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000205", - "question_id": 16753, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002256", - "question_id": 16754, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007929", - "question_id": 16756, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00002677", - "question_id": 16758, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003944", - "question_id": 16762, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002972", - "question_id": 16763, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005691", - "question_id": 16766, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005962", - "question_id": 16767, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004120", - "question_id": 16768, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002737", - "question_id": 16770, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00004233", - "question_id": 16771, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008765", - "question_id": 16772, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001999", - "question_id": 16773, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001076", - "question_id": 16774, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004441", - "question_id": 16775, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bagpipe\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000426", - "question_id": 16778, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006938", - "question_id": 16779, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005657", - "question_id": 16781, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00006149", - "question_id": 16782, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007522", - "question_id": 16783, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00000078", - "question_id": 16784, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004550", - "question_id": 16785, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000071", - "question_id": 16786, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007597", - "question_id": 16788, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001747", - "question_id": 16789, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004603", - "question_id": 16790, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003011", - "question_id": 16791, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000521", - "question_id": 16792, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008950", - "question_id": 16795, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00002166", - "question_id": 16796, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007923", - "question_id": 16798, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003485", - "question_id": 16799, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003297", - "question_id": 16800, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00000505", - "question_id": 16801, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000777", - "question_id": 16802, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007968", - "question_id": 16803, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005050", - "question_id": 16804, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003640", - "question_id": 16805, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00005355", - "question_id": 16809, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003735", - "question_id": 16810, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004439", - "question_id": 16811, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005967", - "question_id": 16813, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"saxophone\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00000615", - "question_id": 16814, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000289", - "question_id": 16817, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000382", - "question_id": 16819, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003303", - "question_id": 16820, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002357", - "question_id": 16822, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006888", - "question_id": 16823, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008950", - "question_id": 16824, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008202", - "question_id": 16827, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006805", - "question_id": 16829, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002387", - "question_id": 16830, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001841", - "question_id": 16832, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00008727", - "question_id": 16833, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002602", - "question_id": 16834, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005475", - "question_id": 16835, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005806", - "question_id": 16836, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00002919", - "question_id": 16837, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004980", - "question_id": 16838, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005927", - "question_id": 16839, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"left\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002174", - "question_id": 16840, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005389", - "question_id": 16841, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002619", - "question_id": 16842, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000058", - "question_id": 16846, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00000025", - "question_id": 16847, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008281", - "question_id": 16851, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002372", - "question_id": 16853, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002426", - "question_id": 16855, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00004153", - "question_id": 16856, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006966", - "question_id": 16857, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003948", - "question_id": 16858, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003752", - "question_id": 16860, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006466", - "question_id": 16861, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006536", - "question_id": 16864, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001507", - "question_id": 16865, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004595", - "question_id": 16867, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00007320", - "question_id": 16868, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001284", - "question_id": 16869, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002081", - "question_id": 16870, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003912", - "question_id": 16871, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007370", - "question_id": 16873, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002913", - "question_id": 16876, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004497", - "question_id": 16877, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000692", - "question_id": 16878, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007935", - "question_id": 16879, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007511", - "question_id": 16880, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004878", - "question_id": 16881, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003509", - "question_id": 16884, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003228", - "question_id": 16886, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002981", - "question_id": 16887, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007813", - "question_id": 16888, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004337", - "question_id": 16889, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001339", - "question_id": 16890, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00008227", - "question_id": 16891, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008961", - "question_id": 16892, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004101", - "question_id": 16893, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002634", - "question_id": 16894, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004903", - "question_id": 16895, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004751", - "question_id": 16899, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000994", - "question_id": 16901, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007106", - "question_id": 16902, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006188", - "question_id": 16904, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003043", - "question_id": 16905, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006737", - "question_id": 16908, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004953", - "question_id": 16910, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002756", - "question_id": 16911, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007343", - "question_id": 16912, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002422", - "question_id": 16913, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006950", - "question_id": 16914, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000461", - "question_id": 16915, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005546", - "question_id": 16916, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005688", - "question_id": 16917, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005039", - "question_id": 16918, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00004775", - "question_id": 16921, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00004662", - "question_id": 16923, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00007762", - "question_id": 16924, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007361", - "question_id": 16925, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001459", - "question_id": 16927, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002216", - "question_id": 16928, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000830", - "question_id": 16929, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007126", - "question_id": 16930, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004315", - "question_id": 16931, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000626", - "question_id": 16932, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000051", - "question_id": 16933, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00004081", - "question_id": 16935, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002509", - "question_id": 16936, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001044", - "question_id": 16938, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005173", - "question_id": 16940, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008246", - "question_id": 16941, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004646", - "question_id": 16942, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001102", - "question_id": 16945, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003431", - "question_id": 16946, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006752", - "question_id": 16948, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008614", - "question_id": 16953, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004918", - "question_id": 16954, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008968", - "question_id": 16955, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00004181", - "question_id": 16956, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005690", - "question_id": 16957, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004435", - "question_id": 16958, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005021", - "question_id": 16959, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003018", - "question_id": 16962, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004944", - "question_id": 16963, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00001118", - "question_id": 16965, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007856", - "question_id": 16966, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003307", - "question_id": 16967, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005338", - "question_id": 16968, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005081", - "question_id": 16972, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001193", - "question_id": 16973, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00002884", - "question_id": 16974, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00003131", - "question_id": 16975, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006013", - "question_id": 16978, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000527", - "question_id": 16980, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003016", - "question_id": 16985, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"congas\", \"right\", \"congas\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005471", - "question_id": 16986, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004274", - "question_id": 16987, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004507", - "question_id": 16988, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00000297", - "question_id": 16989, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001842", - "question_id": 16990, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002168", - "question_id": 16993, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002832", - "question_id": 16994, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008926", - "question_id": 16995, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007135", - "question_id": 16996, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007115", - "question_id": 16997, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001455", - "question_id": 16998, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002538", - "question_id": 16999, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00003625", - "question_id": 17000, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006484", - "question_id": 17001, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006324", - "question_id": 17002, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001486", - "question_id": 17003, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001487", - "question_id": 17004, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007669", - "question_id": 17006, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004296", - "question_id": 17007, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003629", - "question_id": 17008, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005015", - "question_id": 17009, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002366", - "question_id": 17010, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003117", - "question_id": 17011, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008528", - "question_id": 17012, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000362", - "question_id": 17013, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004908", - "question_id": 17014, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00005690", - "question_id": 17015, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005109", - "question_id": 17017, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006719", - "question_id": 17018, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001312", - "question_id": 17019, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007135", - "question_id": 17021, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005388", - "question_id": 17023, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"electric_bass\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004583", - "question_id": 17024, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005405", - "question_id": 17027, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00008826", - "question_id": 17029, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006774", - "question_id": 17031, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004106", - "question_id": 17037, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"pipa\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005637", - "question_id": 17039, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002893", - "question_id": 17040, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002342", - "question_id": 17042, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006126", - "question_id": 17043, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007428", - "question_id": 17044, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007396", - "question_id": 17045, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003885", - "question_id": 17046, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008175", - "question_id": 17050, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008380", - "question_id": 17052, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007866", - "question_id": 17055, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006860", - "question_id": 17057, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000310", - "question_id": 17060, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003466", - "question_id": 17062, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006287", - "question_id": 17063, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003243", - "question_id": 17064, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008789", - "question_id": 17065, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006030", - "question_id": 17066, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007661", - "question_id": 17067, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003366", - "question_id": 17071, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004796", - "question_id": 17072, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006222", - "question_id": 17075, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001543", - "question_id": 17076, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000783", - "question_id": 17078, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002540", - "question_id": 17079, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004013", - "question_id": 17080, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007632", - "question_id": 17082, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003784", - "question_id": 17083, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001337", - "question_id": 17084, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002682", - "question_id": 17086, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003858", - "question_id": 17087, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005246", - "question_id": 17088, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00008234", - "question_id": 17089, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006391", - "question_id": 17090, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006234", - "question_id": 17092, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001418", - "question_id": 17093, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006025", - "question_id": 17094, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000162", - "question_id": 17095, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003002", - "question_id": 17096, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002966", - "question_id": 17097, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00002882", - "question_id": 17098, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001084", - "question_id": 17100, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007520", - "question_id": 17101, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000711", - "question_id": 17103, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002325", - "question_id": 17106, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000889", - "question_id": 17107, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005794", - "question_id": 17109, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003686", - "question_id": 17110, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005581", - "question_id": 17111, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002662", - "question_id": 17113, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006865", - "question_id": 17114, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008902", - "question_id": 17116, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003398", - "question_id": 17117, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008482", - "question_id": 17119, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004645", - "question_id": 17120, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005100", - "question_id": 17121, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004560", - "question_id": 17123, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006579", - "question_id": 17125, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002576", - "question_id": 17126, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007202", - "question_id": 17127, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008407", - "question_id": 17128, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002725", - "question_id": 17130, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00004566", - "question_id": 17134, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008174", - "question_id": 17135, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006791", - "question_id": 17136, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004357", - "question_id": 17138, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00006281", - "question_id": 17140, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000914", - "question_id": 17142, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008830", - "question_id": 17143, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003805", - "question_id": 17144, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007419", - "question_id": 17145, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008230", - "question_id": 17146, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000801", - "question_id": 17147, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000885", - "question_id": 17149, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002001", - "question_id": 17150, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002439", - "question_id": 17151, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005641", - "question_id": 17152, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006491", - "question_id": 17153, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000357", - "question_id": 17154, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000018", - "question_id": 17156, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002066", - "question_id": 17157, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003807", - "question_id": 17160, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00004422", - "question_id": 17161, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000697", - "question_id": 17163, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005697", - "question_id": 17164, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001927", - "question_id": 17165, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001733", - "question_id": 17166, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004837", - "question_id": 17167, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003740", - "question_id": 17169, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005531", - "question_id": 17170, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007350", - "question_id": 17171, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006516", - "question_id": 17172, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006622", - "question_id": 17174, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007084", - "question_id": 17175, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006453", - "question_id": 17177, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000536", - "question_id": 17178, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005950", - "question_id": 17179, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000972", - "question_id": 17180, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007444", - "question_id": 17182, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006998", - "question_id": 17183, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006310", - "question_id": 17185, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005355", - "question_id": 17186, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000958", - "question_id": 17188, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000274", - "question_id": 17191, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004960", - "question_id": 17192, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008477", - "question_id": 17195, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005582", - "question_id": 17197, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004332", - "question_id": 17203, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003995", - "question_id": 17204, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007802", - "question_id": 17206, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003344", - "question_id": 17208, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008642", - "question_id": 17209, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007339", - "question_id": 17216, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002077", - "question_id": 17219, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00007907", - "question_id": 17220, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008440", - "question_id": 17221, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001405", - "question_id": 17222, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004806", - "question_id": 17223, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000749", - "question_id": 17226, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001643", - "question_id": 17227, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005566", - "question_id": 17229, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000211", - "question_id": 17230, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002503", - "question_id": 17232, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005159", - "question_id": 17233, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002459", - "question_id": 17234, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003071", - "question_id": 17236, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006030", - "question_id": 17237, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002502", - "question_id": 17238, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00003128", - "question_id": 17239, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002939", - "question_id": 17241, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005516", - "question_id": 17242, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002946", - "question_id": 17243, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00002184", - "question_id": 17245, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000471", - "question_id": 17246, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007860", - "question_id": 17247, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004414", - "question_id": 17248, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001611", - "question_id": 17250, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004203", - "question_id": 17251, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003873", - "question_id": 17253, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005782", - "question_id": 17256, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007288", - "question_id": 17258, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005139", - "question_id": 17259, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005287", - "question_id": 17260, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002628", - "question_id": 17261, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003762", - "question_id": 17262, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008412", - "question_id": 17265, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00007015", - "question_id": 17266, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003787", - "question_id": 17267, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008268", - "question_id": 17268, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"drum\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001908", - "question_id": 17269, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001908", - "question_id": 17269, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001907", - "question_id": 17271, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00005443", - "question_id": 17272, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006074", - "question_id": 17273, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005092", - "question_id": 17276, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008181", - "question_id": 17277, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004936", - "question_id": 17278, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001484", - "question_id": 17279, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005793", - "question_id": 17280, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008894", - "question_id": 17282, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002192", - "question_id": 17283, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00007603", - "question_id": 17286, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008498", - "question_id": 17287, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003909", - "question_id": 17289, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008747", - "question_id": 17291, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"middle\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005242", - "question_id": 17292, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000192", - "question_id": 17293, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00002227", - "question_id": 17294, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005965", - "question_id": 17295, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005318", - "question_id": 17297, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001141", - "question_id": 17298, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000981", - "question_id": 17302, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002710", - "question_id": 17303, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004621", - "question_id": 17305, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00007129", - "question_id": 17306, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005221", - "question_id": 17309, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005852", - "question_id": 17310, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002334", - "question_id": 17311, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006948", - "question_id": 17314, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003755", - "question_id": 17315, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003009", - "question_id": 17316, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004670", - "question_id": 17318, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00006012", - "question_id": 17319, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007599", - "question_id": 17321, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007527", - "question_id": 17322, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00002427", - "question_id": 17324, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005244", - "question_id": 17325, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003366", - "question_id": 17327, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005244", - "question_id": 17328, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006676", - "question_id": 17329, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005361", - "question_id": 17330, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005359", - "question_id": 17331, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001497", - "question_id": 17334, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007116", - "question_id": 17336, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003375", - "question_id": 17337, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000358", - "question_id": 17340, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005127", - "question_id": 17341, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003198", - "question_id": 17342, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005010", - "question_id": 17343, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00004243", - "question_id": 17344, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002474", - "question_id": 17346, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002945", - "question_id": 17348, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00002348", - "question_id": 17349, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00002601", - "question_id": 17350, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005440", - "question_id": 17351, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00008686", - "question_id": 17352, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002614", - "question_id": 17354, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005686", - "question_id": 17355, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00007682", - "question_id": 17356, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005083", - "question_id": 17357, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004273", - "question_id": 17359, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005197", - "question_id": 17360, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008873", - "question_id": 17362, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005721", - "question_id": 17364, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006623", - "question_id": 17365, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003008", - "question_id": 17367, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006993", - "question_id": 17370, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000109", - "question_id": 17371, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004085", - "question_id": 17372, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001422", - "question_id": 17374, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008098", - "question_id": 17375, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003783", - "question_id": 17377, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00001426", - "question_id": 17379, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003804", - "question_id": 17380, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006736", - "question_id": 17381, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000390", - "question_id": 17382, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002736", - "question_id": 17383, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005647", - "question_id": 17385, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007944", - "question_id": 17386, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001136", - "question_id": 17387, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000481", - "question_id": 17389, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008249", - "question_id": 17393, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001109", - "question_id": 17394, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001277", - "question_id": 17396, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004683", - "question_id": 17397, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000083", - "question_id": 17399, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006069", - "question_id": 17400, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005717", - "question_id": 17401, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003279", - "question_id": 17402, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001230", - "question_id": 17403, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00008305", - "question_id": 17404, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004139", - "question_id": 17406, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002883", - "question_id": 17408, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007287", - "question_id": 17409, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001172", - "question_id": 17411, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003908", - "question_id": 17412, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002296", - "question_id": 17415, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000178", - "question_id": 17416, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006920", - "question_id": 17419, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007529", - "question_id": 17420, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006692", - "question_id": 17425, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002185", - "question_id": 17426, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008274", - "question_id": 17427, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000751", - "question_id": 17428, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001778", - "question_id": 17429, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002050", - "question_id": 17432, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000966", - "question_id": 17435, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000737", - "question_id": 17436, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005281", - "question_id": 17437, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001032", - "question_id": 17439, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005114", - "question_id": 17440, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005622", - "question_id": 17441, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007161", - "question_id": 17442, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006357", - "question_id": 17444, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008502", - "question_id": 17445, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001031", - "question_id": 17446, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004568", - "question_id": 17447, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00002976", - "question_id": 17452, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007413", - "question_id": 17453, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"xylophone\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008167", - "question_id": 17456, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002685", - "question_id": 17460, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000377", - "question_id": 17462, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00005298", - "question_id": 17464, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006648", - "question_id": 17465, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"guzheng\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00001715", - "question_id": 17466, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004205", - "question_id": 17467, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008379", - "question_id": 17468, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007506", - "question_id": 17469, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002323", - "question_id": 17471, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003264", - "question_id": 17473, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006953", - "question_id": 17474, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003112", - "question_id": 17476, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007600", - "question_id": 17478, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008556", - "question_id": 17480, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001630", - "question_id": 17481, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007502", - "question_id": 17482, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008317", - "question_id": 17483, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001300", - "question_id": 17484, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003114", - "question_id": 17486, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003138", - "question_id": 17487, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001703", - "question_id": 17489, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00003163", - "question_id": 17490, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003214", - "question_id": 17491, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006629", - "question_id": 17492, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001956", - "question_id": 17494, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007367", - "question_id": 17496, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00005438", - "question_id": 17497, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00000440", - "question_id": 17499, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000868", - "question_id": 17500, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008913", - "question_id": 17501, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00004584", - "question_id": 17502, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007704", - "question_id": 17503, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004733", - "question_id": 17504, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00001469", - "question_id": 17506, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00004870", - "question_id": 17507, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008579", - "question_id": 17509, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000553", - "question_id": 17510, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005513", - "question_id": 17511, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004070", - "question_id": 17514, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007898", - "question_id": 17515, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003735", - "question_id": 17516, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005571", - "question_id": 17517, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00003689", - "question_id": 17518, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003790", - "question_id": 17522, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007748", - "question_id": 17523, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004737", - "question_id": 17525, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005639", - "question_id": 17527, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006663", - "question_id": 17528, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000367", - "question_id": 17530, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004737", - "question_id": 17531, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"drum\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006413", - "question_id": 17533, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006350", - "question_id": 17534, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007532", - "question_id": 17535, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000689", - "question_id": 17536, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008044", - "question_id": 17537, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006264", - "question_id": 17538, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00008155", - "question_id": 17539, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005194", - "question_id": 17540, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00006789", - "question_id": 17541, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008031", - "question_id": 17542, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000258", - "question_id": 17544, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003354", - "question_id": 17545, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008446", - "question_id": 17546, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002655", - "question_id": 17547, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00007169", - "question_id": 17548, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006724", - "question_id": 17550, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005943", - "question_id": 17551, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"congas\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002252", - "question_id": 17553, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007681", - "question_id": 17554, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004952", - "question_id": 17555, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005048", - "question_id": 17557, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002718", - "question_id": 17559, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008032", - "question_id": 17561, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004873", - "question_id": 17563, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000440", - "question_id": 17564, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005280", - "question_id": 17567, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002627", - "question_id": 17571, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00007933", - "question_id": 17573, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004641", - "question_id": 17576, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002087", - "question_id": 17578, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000094", - "question_id": 17582, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007713", - "question_id": 17583, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003043", - "question_id": 17584, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008100", - "question_id": 17585, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000133", - "question_id": 17587, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"pipa\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000917", - "question_id": 17589, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008685", - "question_id": 17592, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000714", - "question_id": 17594, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00002116", - "question_id": 17596, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005489", - "question_id": 17597, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002148", - "question_id": 17598, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006678", - "question_id": 17600, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001622", - "question_id": 17601, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008885", - "question_id": 17602, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003426", - "question_id": 17603, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003546", - "question_id": 17608, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001673", - "question_id": 17609, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005497", - "question_id": 17610, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00006014", - "question_id": 17612, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005263", - "question_id": 17614, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00001915", - "question_id": 17615, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008439", - "question_id": 17616, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00006946", - "question_id": 17617, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005321", - "question_id": 17619, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001782", - "question_id": 17622, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008867", - "question_id": 17623, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001654", - "question_id": 17626, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006403", - "question_id": 17628, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006722", - "question_id": 17629, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00008267", - "question_id": 17630, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004101", - "question_id": 17631, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003468", - "question_id": 17632, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00004742", - "question_id": 17633, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005621", - "question_id": 17634, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000710", - "question_id": 17636, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002384", - "question_id": 17638, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004532", - "question_id": 17639, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004156", - "question_id": 17640, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002446", - "question_id": 17641, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001473", - "question_id": 17643, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007277", - "question_id": 17645, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00004698", - "question_id": 17646, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000435", - "question_id": 17647, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008651", - "question_id": 17648, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000718", - "question_id": 17651, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007183", - "question_id": 17656, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003830", - "question_id": 17657, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006932", - "question_id": 17658, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007464", - "question_id": 17659, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008078", - "question_id": 17660, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00005514", - "question_id": 17663, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004656", - "question_id": 17664, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004820", - "question_id": 17666, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003557", - "question_id": 17669, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004428", - "question_id": 17672, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005298", - "question_id": 17673, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006445", - "question_id": 17674, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002563", - "question_id": 17675, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00005486", - "question_id": 17677, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002587", - "question_id": 17680, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004848", - "question_id": 17681, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00007447", - "question_id": 17682, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00002382", - "question_id": 17683, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005285", - "question_id": 17685, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002641", - "question_id": 17686, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008412", - "question_id": 17687, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005321", - "question_id": 17688, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005696", - "question_id": 17689, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005555", - "question_id": 17690, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000622", - "question_id": 17691, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004139", - "question_id": 17692, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008946", - "question_id": 17694, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007912", - "question_id": 17696, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008504", - "question_id": 17698, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000867", - "question_id": 17700, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001077", - "question_id": 17702, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001441", - "question_id": 17703, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008614", - "question_id": 17706, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002237", - "question_id": 17707, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000578", - "question_id": 17708, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00006179", - "question_id": 17711, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"ukulele\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00000999", - "question_id": 17712, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006081", - "question_id": 17713, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005120", - "question_id": 17715, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001098", - "question_id": 17716, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007269", - "question_id": 17717, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004492", - "question_id": 17718, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001887", - "question_id": 17719, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008115", - "question_id": 17720, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007542", - "question_id": 17721, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002366", - "question_id": 17722, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00000599", - "question_id": 17723, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006339", - "question_id": 17725, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001544", - "question_id": 17726, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006526", - "question_id": 17727, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008688", - "question_id": 17728, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003809", - "question_id": 17730, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002168", - "question_id": 17731, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007431", - "question_id": 17732, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005869", - "question_id": 17736, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00002924", - "question_id": 17737, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000544", - "question_id": 17740, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005410", - "question_id": 17741, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008381", - "question_id": 17745, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002959", - "question_id": 17746, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001529", - "question_id": 17747, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000570", - "question_id": 17749, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004806", - "question_id": 17750, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001632", - "question_id": 17752, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006300", - "question_id": 17757, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000009", - "question_id": 17758, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001025", - "question_id": 17762, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00002368", - "question_id": 17763, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003712", - "question_id": 17764, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000332", - "question_id": 17765, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002940", - "question_id": 17766, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007807", - "question_id": 17769, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001070", - "question_id": 17770, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006469", - "question_id": 17772, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002506", - "question_id": 17773, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007606", - "question_id": 17774, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00005719", - "question_id": 17775, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "seven" -}, { - "video_id": "00004548", - "question_id": 17776, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008766", - "question_id": 17777, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004445", - "question_id": 17778, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005580", - "question_id": 17779, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006096", - "question_id": 17780, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007966", - "question_id": 17781, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000241", - "question_id": 17783, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005581", - "question_id": 17785, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000869", - "question_id": 17789, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004606", - "question_id": 17790, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005741", - "question_id": 17791, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005442", - "question_id": 17793, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007471", - "question_id": 17794, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004317", - "question_id": 17796, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007046", - "question_id": 17797, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004486", - "question_id": 17800, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005282", - "question_id": 17801, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008178", - "question_id": 17804, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002179", - "question_id": 17805, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008724", - "question_id": 17806, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007745", - "question_id": 17808, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007840", - "question_id": 17809, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005057", - "question_id": 17810, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000831", - "question_id": 17811, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007243", - "question_id": 17812, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003502", - "question_id": 17814, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"tuba\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002876", - "question_id": 17815, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000317", - "question_id": 17817, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008797", - "question_id": 17818, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001185", - "question_id": 17819, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008964", - "question_id": 17822, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005287", - "question_id": 17823, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008017", - "question_id": 17824, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008118", - "question_id": 17825, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007105", - "question_id": 17826, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003279", - "question_id": 17827, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007899", - "question_id": 17828, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005452", - "question_id": 17829, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000025", - "question_id": 17830, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002298", - "question_id": 17831, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002543", - "question_id": 17834, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008894", - "question_id": 17835, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001242", - "question_id": 17836, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008521", - "question_id": 17837, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003761", - "question_id": 17838, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008720", - "question_id": 17839, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003803", - "question_id": 17840, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000462", - "question_id": 17844, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000527", - "question_id": 17845, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003309", - "question_id": 17847, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001970", - "question_id": 17848, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00000135", - "question_id": 17851, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007214", - "question_id": 17852, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001876", - "question_id": 17853, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001114", - "question_id": 17854, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002723", - "question_id": 17855, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001526", - "question_id": 17856, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001381", - "question_id": 17858, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002352", - "question_id": 17859, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008698", - "question_id": 17860, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007615", - "question_id": 17862, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"banjo\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00005335", - "question_id": 17863, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"bassoon\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003973", - "question_id": 17865, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000517", - "question_id": 17866, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001545", - "question_id": 17870, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005191", - "question_id": 17871, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004425", - "question_id": 17872, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007951", - "question_id": 17873, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000314", - "question_id": 17874, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00007121", - "question_id": 17875, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007977", - "question_id": 17876, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003535", - "question_id": 17877, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002819", - "question_id": 17878, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008036", - "question_id": 17881, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004572", - "question_id": 17882, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005635", - "question_id": 17883, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008844", - "question_id": 17884, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007992", - "question_id": 17887, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007708", - "question_id": 17888, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001080", - "question_id": 17889, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008888", - "question_id": 17890, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004768", - "question_id": 17891, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003617", - "question_id": 17892, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004778", - "question_id": 17894, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004440", - "question_id": 17895, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003750", - "question_id": 17896, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001764", - "question_id": 17897, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007964", - "question_id": 17898, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003607", - "question_id": 17899, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003497", - "question_id": 17901, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000300", - "question_id": 17902, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006837", - "question_id": 17903, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004840", - "question_id": 17904, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007456", - "question_id": 17905, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008731", - "question_id": 17908, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003317", - "question_id": 17912, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005633", - "question_id": 17913, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006852", - "question_id": 17915, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008176", - "question_id": 17916, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002264", - "question_id": 17920, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004248", - "question_id": 17921, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007212", - "question_id": 17923, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002021", - "question_id": 17927, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008564", - "question_id": 17929, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002997", - "question_id": 17930, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00003490", - "question_id": 17931, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003490", - "question_id": 17932, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00006180", - "question_id": 17933, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000655", - "question_id": 17934, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000773", - "question_id": 17935, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003940", - "question_id": 17936, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003596", - "question_id": 17937, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004308", - "question_id": 17938, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000705", - "question_id": 17939, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002176", - "question_id": 17940, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007364", - "question_id": 17942, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000688", - "question_id": 17944, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004347", - "question_id": 17945, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002990", - "question_id": 17948, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00001268", - "question_id": 17954, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002751", - "question_id": 17955, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00002957", - "question_id": 17956, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004845", - "question_id": 17957, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002634", - "question_id": 17958, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004858", - "question_id": 17959, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004209", - "question_id": 17960, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001201", - "question_id": 17961, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008048", - "question_id": 17962, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000519", - "question_id": 17963, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003452", - "question_id": 17964, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000815", - "question_id": 17965, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003693", - "question_id": 17966, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001834", - "question_id": 17968, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006072", - "question_id": 17969, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005563", - "question_id": 17971, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007532", - "question_id": 17973, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007305", - "question_id": 17974, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008124", - "question_id": 17975, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007229", - "question_id": 17980, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008076", - "question_id": 17982, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006648", - "question_id": 17984, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000264", - "question_id": 17985, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007867", - "question_id": 17986, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000367", - "question_id": 17987, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008555", - "question_id": 17989, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002155", - "question_id": 17990, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001615", - "question_id": 17991, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003297", - "question_id": 17992, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00008862", - "question_id": 17994, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000520", - "question_id": 17995, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007066", - "question_id": 17996, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"cello\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00004975", - "question_id": 17998, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006907", - "question_id": 18000, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008705", - "question_id": 18002, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007444", - "question_id": 18004, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008276", - "question_id": 18005, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002855", - "question_id": 18006, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004646", - "question_id": 18008, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000197", - "question_id": 18009, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001471", - "question_id": 18010, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000366", - "question_id": 18011, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008466", - "question_id": 18014, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001375", - "question_id": 18015, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00002892", - "question_id": 18016, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008549", - "question_id": 18017, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003664", - "question_id": 18020, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"electric_bass\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002424", - "question_id": 18021, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008105", - "question_id": 18022, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008759", - "question_id": 18023, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007999", - "question_id": 18025, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007893", - "question_id": 18026, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007966", - "question_id": 18029, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002897", - "question_id": 18030, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001022", - "question_id": 18032, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004433", - "question_id": 18035, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004571", - "question_id": 18036, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004278", - "question_id": 18037, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00006714", - "question_id": 18039, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007007", - "question_id": 18040, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006488", - "question_id": 18041, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004740", - "question_id": 18044, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003032", - "question_id": 18045, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007345", - "question_id": 18046, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005846", - "question_id": 18048, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00005824", - "question_id": 18049, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004829", - "question_id": 18051, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "more than ten" -}, { - "video_id": "00006825", - "question_id": 18052, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000334", - "question_id": 18053, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001383", - "question_id": 18055, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005281", - "question_id": 18056, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000506", - "question_id": 18057, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00002159", - "question_id": 18058, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000003", - "question_id": 18062, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003532", - "question_id": 18064, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007227", - "question_id": 18065, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007651", - "question_id": 18066, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001123", - "question_id": 18067, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006441", - "question_id": 18068, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005761", - "question_id": 18069, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008021", - "question_id": 18071, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002503", - "question_id": 18073, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006532", - "question_id": 18077, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003591", - "question_id": 18078, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000805", - "question_id": 18081, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002478", - "question_id": 18082, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005270", - "question_id": 18084, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005671", - "question_id": 18085, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006004", - "question_id": 18086, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005867", - "question_id": 18087, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002780", - "question_id": 18089, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001385", - "question_id": 18092, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005832", - "question_id": 18094, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001722", - "question_id": 18095, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008615", - "question_id": 18098, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007138", - "question_id": 18099, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001237", - "question_id": 18100, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008737", - "question_id": 18102, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001029", - "question_id": 18103, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005230", - "question_id": 18104, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001820", - "question_id": 18109, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007101", - "question_id": 18111, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008627", - "question_id": 18112, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006593", - "question_id": 18114, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006346", - "question_id": 18117, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002178", - "question_id": 18118, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"flute\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00007140", - "question_id": 18119, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003778", - "question_id": 18120, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000826", - "question_id": 18121, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002927", - "question_id": 18122, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004778", - "question_id": 18124, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006888", - "question_id": 18125, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00006668", - "question_id": 18126, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00008483", - "question_id": 18127, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005932", - "question_id": 18129, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007127", - "question_id": 18130, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001246", - "question_id": 18131, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002204", - "question_id": 18132, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005336", - "question_id": 18134, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007989", - "question_id": 18135, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006367", - "question_id": 18136, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005197", - "question_id": 18138, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004016", - "question_id": 18139, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00003329", - "question_id": 18140, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005234", - "question_id": 18142, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005219", - "question_id": 18143, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003160", - "question_id": 18144, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003314", - "question_id": 18146, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00006105", - "question_id": 18147, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000060", - "question_id": 18149, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007506", - "question_id": 18150, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004664", - "question_id": 18151, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001655", - "question_id": 18152, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001217", - "question_id": 18153, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005692", - "question_id": 18154, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005369", - "question_id": 18156, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004674", - "question_id": 18157, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002741", - "question_id": 18162, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002940", - "question_id": 18163, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007960", - "question_id": 18164, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000155", - "question_id": 18165, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005102", - "question_id": 18166, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002209", - "question_id": 18168, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000040", - "question_id": 18169, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008786", - "question_id": 18171, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001758", - "question_id": 18172, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002671", - "question_id": 18173, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008975", - "question_id": 18174, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008401", - "question_id": 18175, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000777", - "question_id": 18177, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00005437", - "question_id": 18178, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001688", - "question_id": 18180, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00001600", - "question_id": 18181, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003857", - "question_id": 18182, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008717", - "question_id": 18183, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005183", - "question_id": 18186, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006819", - "question_id": 18188, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000746", - "question_id": 18189, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003445", - "question_id": 18191, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006051", - "question_id": 18192, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004094", - "question_id": 18193, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008168", - "question_id": 18194, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002811", - "question_id": 18195, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005664", - "question_id": 18196, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002996", - "question_id": 18197, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00005331", - "question_id": 18200, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000779", - "question_id": 18201, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004664", - "question_id": 18202, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001175", - "question_id": 18203, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00004606", - "question_id": 18204, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006803", - "question_id": 18208, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001500", - "question_id": 18209, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003566", - "question_id": 18210, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006400", - "question_id": 18211, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008325", - "question_id": 18212, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000517", - "question_id": 18213, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007741", - "question_id": 18214, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008082", - "question_id": 18215, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005074", - "question_id": 18217, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002550", - "question_id": 18218, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001924", - "question_id": 18219, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008643", - "question_id": 18221, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002635", - "question_id": 18225, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006842", - "question_id": 18226, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002052", - "question_id": 18227, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007688", - "question_id": 18229, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002167", - "question_id": 18230, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003543", - "question_id": 18231, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004709", - "question_id": 18232, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000532", - "question_id": 18233, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006616", - "question_id": 18235, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003034", - "question_id": 18237, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002480", - "question_id": 18238, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006388", - "question_id": 18239, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005143", - "question_id": 18240, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001737", - "question_id": 18241, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006368", - "question_id": 18242, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007861", - "question_id": 18243, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00002739", - "question_id": 18244, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007599", - "question_id": 18245, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007606", - "question_id": 18246, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001298", - "question_id": 18247, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000319", - "question_id": 18248, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004695", - "question_id": 18249, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006793", - "question_id": 18250, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004226", - "question_id": 18254, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001389", - "question_id": 18255, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007847", - "question_id": 18256, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004129", - "question_id": 18257, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000772", - "question_id": 18258, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006327", - "question_id": 18259, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005328", - "question_id": 18260, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002513", - "question_id": 18261, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005952", - "question_id": 18262, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001399", - "question_id": 18263, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002573", - "question_id": 18264, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005733", - "question_id": 18265, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006279", - "question_id": 18266, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008404", - "question_id": 18267, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003056", - "question_id": 18268, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005362", - "question_id": 18269, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005083", - "question_id": 18271, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00000695", - "question_id": 18274, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001978", - "question_id": 18275, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003257", - "question_id": 18276, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002951", - "question_id": 18277, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007760", - "question_id": 18278, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000414", - "question_id": 18279, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001243", - "question_id": 18280, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"middle\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007844", - "question_id": 18281, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000398", - "question_id": 18282, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001884", - "question_id": 18284, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001422", - "question_id": 18286, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000878", - "question_id": 18287, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005359", - "question_id": 18288, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000054", - "question_id": 18289, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001736", - "question_id": 18290, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001016", - "question_id": 18292, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005049", - "question_id": 18293, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001393", - "question_id": 18294, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005842", - "question_id": 18295, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00004171", - "question_id": 18296, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005417", - "question_id": 18297, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001607", - "question_id": 18298, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001837", - "question_id": 18299, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006518", - "question_id": 18301, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"xylophone\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003753", - "question_id": 18302, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001626", - "question_id": 18304, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000830", - "question_id": 18305, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006896", - "question_id": 18306, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005510", - "question_id": 18307, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001958", - "question_id": 18308, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001535", - "question_id": 18309, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003969", - "question_id": 18313, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00002668", - "question_id": 18314, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003721", - "question_id": 18315, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006181", - "question_id": 18317, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008200", - "question_id": 18318, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005530", - "question_id": 18319, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002069", - "question_id": 18320, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008742", - "question_id": 18321, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005803", - "question_id": 18322, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003291", - "question_id": 18324, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000539", - "question_id": 18328, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000319", - "question_id": 18330, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002832", - "question_id": 18331, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006152", - "question_id": 18332, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002672", - "question_id": 18333, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003092", - "question_id": 18334, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003361", - "question_id": 18336, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002534", - "question_id": 18337, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008308", - "question_id": 18338, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005838", - "question_id": 18339, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003057", - "question_id": 18340, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"middle\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000535", - "question_id": 18342, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003341", - "question_id": 18343, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008864", - "question_id": 18344, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00008275", - "question_id": 18345, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003391", - "question_id": 18348, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007010", - "question_id": 18350, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003958", - "question_id": 18351, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007913", - "question_id": 18352, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002278", - "question_id": 18353, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00000843", - "question_id": 18354, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008009", - "question_id": 18357, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001262", - "question_id": 18358, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005705", - "question_id": 18359, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007343", - "question_id": 18360, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006355", - "question_id": 18362, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00001861", - "question_id": 18363, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003653", - "question_id": 18364, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003572", - "question_id": 18367, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003390", - "question_id": 18369, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002056", - "question_id": 18370, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005278", - "question_id": 18372, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002853", - "question_id": 18375, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004482", - "question_id": 18376, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001606", - "question_id": 18377, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003799", - "question_id": 18379, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006126", - "question_id": 18381, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000806", - "question_id": 18382, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004862", - "question_id": 18385, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003225", - "question_id": 18386, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008486", - "question_id": 18387, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008730", - "question_id": 18388, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000438", - "question_id": 18389, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003164", - "question_id": 18390, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008966", - "question_id": 18391, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000477", - "question_id": 18393, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006413", - "question_id": 18394, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006877", - "question_id": 18395, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007273", - "question_id": 18396, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003746", - "question_id": 18398, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000498", - "question_id": 18399, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000441", - "question_id": 18400, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005196", - "question_id": 18401, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002001", - "question_id": 18402, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005953", - "question_id": 18404, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004856", - "question_id": 18406, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005605", - "question_id": 18407, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005705", - "question_id": 18411, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004352", - "question_id": 18412, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002138", - "question_id": 18413, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001195", - "question_id": 18414, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004050", - "question_id": 18415, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002468", - "question_id": 18416, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004610", - "question_id": 18417, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00008044", - "question_id": 18418, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000424", - "question_id": 18419, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001634", - "question_id": 18421, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002459", - "question_id": 18423, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004344", - "question_id": 18424, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001812", - "question_id": 18425, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005302", - "question_id": 18426, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003384", - "question_id": 18427, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005846", - "question_id": 18429, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003897", - "question_id": 18430, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004870", - "question_id": 18431, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000809", - "question_id": 18432, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004645", - "question_id": 18435, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006236", - "question_id": 18437, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00004146", - "question_id": 18438, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000278", - "question_id": 18439, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008921", - "question_id": 18440, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000976", - "question_id": 18442, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006791", - "question_id": 18443, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"banjo\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004588", - "question_id": 18444, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"electric_bass\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001589", - "question_id": 18445, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00004703", - "question_id": 18448, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007005", - "question_id": 18451, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006573", - "question_id": 18452, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002793", - "question_id": 18454, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001744", - "question_id": 18455, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005609", - "question_id": 18457, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000751", - "question_id": 18458, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006670", - "question_id": 18459, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001863", - "question_id": 18461, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003260", - "question_id": 18462, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008934", - "question_id": 18464, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005962", - "question_id": 18468, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000971", - "question_id": 18469, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004638", - "question_id": 18471, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005179", - "question_id": 18472, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007380", - "question_id": 18473, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002753", - "question_id": 18474, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007658", - "question_id": 18476, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008734", - "question_id": 18478, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007334", - "question_id": 18481, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000416", - "question_id": 18482, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000571", - "question_id": 18483, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005059", - "question_id": 18485, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008842", - "question_id": 18487, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007017", - "question_id": 18488, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008619", - "question_id": 18489, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000522", - "question_id": 18490, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000975", - "question_id": 18491, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000659", - "question_id": 18493, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001983", - "question_id": 18494, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006600", - "question_id": 18495, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00005711", - "question_id": 18497, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"xylophone\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001537", - "question_id": 18499, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003538", - "question_id": 18501, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001762", - "question_id": 18502, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006696", - "question_id": 18504, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002472", - "question_id": 18505, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004893", - "question_id": 18507, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000541", - "question_id": 18508, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005168", - "question_id": 18511, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000442", - "question_id": 18512, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004850", - "question_id": 18513, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001865", - "question_id": 18515, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002766", - "question_id": 18516, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003560", - "question_id": 18520, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008143", - "question_id": 18521, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008830", - "question_id": 18523, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008797", - "question_id": 18527, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005704", - "question_id": 18528, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003117", - "question_id": 18529, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005512", - "question_id": 18532, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001172", - "question_id": 18533, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000585", - "question_id": 18534, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004263", - "question_id": 18535, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000741", - "question_id": 18538, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000057", - "question_id": 18539, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008503", - "question_id": 18542, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003014", - "question_id": 18543, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001503", - "question_id": 18544, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008894", - "question_id": 18545, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008249", - "question_id": 18546, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002558", - "question_id": 18547, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"congas\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002971", - "question_id": 18549, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004588", - "question_id": 18550, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007906", - "question_id": 18551, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001669", - "question_id": 18553, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005966", - "question_id": 18554, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005325", - "question_id": 18556, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006802", - "question_id": 18558, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007516", - "question_id": 18559, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005936", - "question_id": 18560, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007587", - "question_id": 18561, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007895", - "question_id": 18562, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003638", - "question_id": 18563, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004446", - "question_id": 18565, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008014", - "question_id": 18566, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00003773", - "question_id": 18567, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00007800", - "question_id": 18570, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006943", - "question_id": 18572, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006256", - "question_id": 18573, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008369", - "question_id": 18574, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"electric_bass\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002137", - "question_id": 18575, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003082", - "question_id": 18577, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005612", - "question_id": 18578, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004169", - "question_id": 18579, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003472", - "question_id": 18581, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006145", - "question_id": 18583, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000364", - "question_id": 18584, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007367", - "question_id": 18585, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008677", - "question_id": 18586, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003881", - "question_id": 18587, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000188", - "question_id": 18588, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008939", - "question_id": 18589, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "seven" -}, { - "video_id": "00006479", - "question_id": 18591, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006379", - "question_id": 18592, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008490", - "question_id": 18593, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008960", - "question_id": 18594, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006053", - "question_id": 18595, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003280", - "question_id": 18597, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003693", - "question_id": 18599, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004143", - "question_id": 18600, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005300", - "question_id": 18601, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007339", - "question_id": 18603, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007100", - "question_id": 18604, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005029", - "question_id": 18606, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000397", - "question_id": 18607, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004190", - "question_id": 18609, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007283", - "question_id": 18610, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008797", - "question_id": 18612, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003647", - "question_id": 18615, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008450", - "question_id": 18616, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005526", - "question_id": 18620, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006695", - "question_id": 18621, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007201", - "question_id": 18623, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008435", - "question_id": 18624, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001601", - "question_id": 18625, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006271", - "question_id": 18626, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002977", - "question_id": 18627, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002897", - "question_id": 18630, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008057", - "question_id": 18631, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000747", - "question_id": 18632, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004878", - "question_id": 18634, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000816", - "question_id": 18636, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006153", - "question_id": 18637, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002433", - "question_id": 18640, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003691", - "question_id": 18641, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007763", - "question_id": 18642, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000773", - "question_id": 18643, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005465", - "question_id": 18648, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008276", - "question_id": 18649, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004280", - "question_id": 18650, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008811", - "question_id": 18651, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008386", - "question_id": 18653, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001450", - "question_id": 18654, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005270", - "question_id": 18655, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002291", - "question_id": 18657, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002532", - "question_id": 18659, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002469", - "question_id": 18660, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004354", - "question_id": 18661, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003419", - "question_id": 18663, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008968", - "question_id": 18664, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005311", - "question_id": 18667, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004521", - "question_id": 18669, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003617", - "question_id": 18671, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003653", - "question_id": 18672, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"xylophone\", \"left\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005747", - "question_id": 18673, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004192", - "question_id": 18674, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001522", - "question_id": 18675, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000621", - "question_id": 18676, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008801", - "question_id": 18677, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008209", - "question_id": 18678, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006845", - "question_id": 18680, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004312", - "question_id": 18681, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008647", - "question_id": 18682, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000060", - "question_id": 18683, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006988", - "question_id": 18685, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00002459", - "question_id": 18686, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003217", - "question_id": 18687, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004925", - "question_id": 18688, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008137", - "question_id": 18689, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004289", - "question_id": 18691, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007450", - "question_id": 18693, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002247", - "question_id": 18694, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006395", - "question_id": 18695, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000618", - "question_id": 18696, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006474", - "question_id": 18697, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008667", - "question_id": 18698, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004439", - "question_id": 18701, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006675", - "question_id": 18703, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002564", - "question_id": 18704, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000913", - "question_id": 18705, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005841", - "question_id": 18709, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005144", - "question_id": 18711, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007808", - "question_id": 18713, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006703", - "question_id": 18715, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002420", - "question_id": 18716, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000599", - "question_id": 18717, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001731", - "question_id": 18720, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002982", - "question_id": 18721, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008644", - "question_id": 18726, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002820", - "question_id": 18727, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002640", - "question_id": 18728, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002966", - "question_id": 18730, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002887", - "question_id": 18731, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000408", - "question_id": 18733, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001020", - "question_id": 18736, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002628", - "question_id": 18737, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008027", - "question_id": 18738, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003393", - "question_id": 18739, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00005000", - "question_id": 18741, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006073", - "question_id": 18742, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008668", - "question_id": 18743, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003679", - "question_id": 18744, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002100", - "question_id": 18746, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004400", - "question_id": 18747, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004058", - "question_id": 18749, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006512", - "question_id": 18750, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005036", - "question_id": 18751, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008949", - "question_id": 18752, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008440", - "question_id": 18753, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008232", - "question_id": 18754, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001747", - "question_id": 18755, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004310", - "question_id": 18757, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007093", - "question_id": 18761, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000475", - "question_id": 18762, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005840", - "question_id": 18763, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008217", - "question_id": 18764, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000596", - "question_id": 18766, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000974", - "question_id": 18767, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005821", - "question_id": 18768, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000667", - "question_id": 18769, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00004802", - "question_id": 18771, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006190", - "question_id": 18772, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007505", - "question_id": 18773, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003508", - "question_id": 18774, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004023", - "question_id": 18775, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002207", - "question_id": 18776, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001165", - "question_id": 18777, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00002498", - "question_id": 18778, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007172", - "question_id": 18779, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005833", - "question_id": 18781, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002261", - "question_id": 18782, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002558", - "question_id": 18785, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003809", - "question_id": 18786, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008832", - "question_id": 18787, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002967", - "question_id": 18788, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001142", - "question_id": 18789, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005097", - "question_id": 18790, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001725", - "question_id": 18791, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004854", - "question_id": 18792, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004988", - "question_id": 18793, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001706", - "question_id": 18794, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003975", - "question_id": 18795, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003570", - "question_id": 18796, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002695", - "question_id": 18797, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007706", - "question_id": 18798, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005877", - "question_id": 18800, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000722", - "question_id": 18802, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007629", - "question_id": 18804, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007492", - "question_id": 18805, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005547", - "question_id": 18806, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000835", - "question_id": 18808, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002184", - "question_id": 18810, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004007", - "question_id": 18811, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001879", - "question_id": 18812, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002662", - "question_id": 18813, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00005955", - "question_id": 18814, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000603", - "question_id": 18815, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004545", - "question_id": 18818, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004218", - "question_id": 18819, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00000582", - "question_id": 18821, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000898", - "question_id": 18822, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006489", - "question_id": 18824, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001137", - "question_id": 18829, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003981", - "question_id": 18830, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"congas\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005622", - "question_id": 18833, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005143", - "question_id": 18834, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001148", - "question_id": 18836, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008569", - "question_id": 18839, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005457", - "question_id": 18841, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008597", - "question_id": 18842, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002209", - "question_id": 18843, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000086", - "question_id": 18844, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004205", - "question_id": 18845, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006128", - "question_id": 18847, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007404", - "question_id": 18848, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005392", - "question_id": 18849, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003504", - "question_id": 18850, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000697", - "question_id": 18852, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005646", - "question_id": 18853, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000171", - "question_id": 18854, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001308", - "question_id": 18855, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001839", - "question_id": 18856, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001296", - "question_id": 18857, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007907", - "question_id": 18859, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008038", - "question_id": 18860, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007274", - "question_id": 18861, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005163", - "question_id": 18862, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005221", - "question_id": 18863, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008619", - "question_id": 18864, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005126", - "question_id": 18865, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000917", - "question_id": 18866, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001109", - "question_id": 18867, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007824", - "question_id": 18868, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003619", - "question_id": 18869, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00000913", - "question_id": 18870, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008882", - "question_id": 18871, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007440", - "question_id": 18872, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000943", - "question_id": 18873, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004155", - "question_id": 18874, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003128", - "question_id": 18875, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001483", - "question_id": 18876, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004555", - "question_id": 18878, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001258", - "question_id": 18880, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005800", - "question_id": 18882, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006759", - "question_id": 18884, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000940", - "question_id": 18885, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004715", - "question_id": 18886, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000671", - "question_id": 18887, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004081", - "question_id": 18888, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008038", - "question_id": 18889, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006647", - "question_id": 18890, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007305", - "question_id": 18891, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005941", - "question_id": 18894, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000624", - "question_id": 18895, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006918", - "question_id": 18897, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007655", - "question_id": 18898, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006478", - "question_id": 18899, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006522", - "question_id": 18900, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000849", - "question_id": 18901, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003421", - "question_id": 18902, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001363", - "question_id": 18904, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006404", - "question_id": 18905, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006061", - "question_id": 18906, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005733", - "question_id": 18907, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005777", - "question_id": 18908, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000371", - "question_id": 18910, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007879", - "question_id": 18911, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"tuba\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006032", - "question_id": 18913, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003505", - "question_id": 18914, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004449", - "question_id": 18915, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006255", - "question_id": 18916, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004191", - "question_id": 18917, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00008745", - "question_id": 18918, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007147", - "question_id": 18920, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007849", - "question_id": 18921, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001880", - "question_id": 18922, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006293", - "question_id": 18923, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008855", - "question_id": 18924, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004907", - "question_id": 18926, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004460", - "question_id": 18927, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002215", - "question_id": 18929, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001114", - "question_id": 18931, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007136", - "question_id": 18932, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000890", - "question_id": 18933, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007478", - "question_id": 18934, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001553", - "question_id": 18935, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003472", - "question_id": 18936, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007268", - "question_id": 18937, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002260", - "question_id": 18940, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004162", - "question_id": 18941, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004432", - "question_id": 18947, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006737", - "question_id": 18948, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007779", - "question_id": 18949, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005233", - "question_id": 18953, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001631", - "question_id": 18954, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005498", - "question_id": 18955, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001381", - "question_id": 18957, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008149", - "question_id": 18958, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003133", - "question_id": 18960, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002324", - "question_id": 18961, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002168", - "question_id": 18962, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008169", - "question_id": 18963, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007833", - "question_id": 18964, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001370", - "question_id": 18965, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002609", - "question_id": 18967, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008247", - "question_id": 18968, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004536", - "question_id": 18971, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000335", - "question_id": 18972, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004846", - "question_id": 18973, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006840", - "question_id": 18974, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004266", - "question_id": 18975, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008898", - "question_id": 18976, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001238", - "question_id": 18977, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000512", - "question_id": 18978, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007802", - "question_id": 18979, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002919", - "question_id": 18980, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008559", - "question_id": 18981, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003542", - "question_id": 18982, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005407", - "question_id": 18983, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003192", - "question_id": 18984, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001090", - "question_id": 18988, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001123", - "question_id": 18990, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008796", - "question_id": 18991, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000798", - "question_id": 18992, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006190", - "question_id": 18993, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006632", - "question_id": 18996, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006754", - "question_id": 18998, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008527", - "question_id": 18999, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006070", - "question_id": 19000, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003437", - "question_id": 19001, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003732", - "question_id": 19002, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005080", - "question_id": 19003, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000579", - "question_id": 19005, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001381", - "question_id": 19006, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000841", - "question_id": 19008, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004666", - "question_id": 19009, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003119", - "question_id": 19011, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001300", - "question_id": 19012, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007554", - "question_id": 19014, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00008687", - "question_id": 19015, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000747", - "question_id": 19016, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008259", - "question_id": 19018, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000999", - "question_id": 19019, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00005350", - "question_id": 19020, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008451", - "question_id": 19023, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003958", - "question_id": 19024, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007878", - "question_id": 19025, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007232", - "question_id": 19027, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001601", - "question_id": 19028, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006809", - "question_id": 19029, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001767", - "question_id": 19030, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000615", - "question_id": 19031, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005670", - "question_id": 19032, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005567", - "question_id": 19033, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004219", - "question_id": 19034, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007922", - "question_id": 19036, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002558", - "question_id": 19037, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00008423", - "question_id": 19040, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001947", - "question_id": 19041, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002194", - "question_id": 19042, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006572", - "question_id": 19043, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002837", - "question_id": 19044, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002626", - "question_id": 19045, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007265", - "question_id": 19046, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"xylophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005033", - "question_id": 19047, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008830", - "question_id": 19048, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006474", - "question_id": 19050, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005566", - "question_id": 19051, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008205", - "question_id": 19052, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00001024", - "question_id": 19053, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004633", - "question_id": 19054, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002395", - "question_id": 19056, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00005250", - "question_id": 19057, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00006668", - "question_id": 19058, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002503", - "question_id": 19059, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007224", - "question_id": 19060, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008704", - "question_id": 19061, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00001182", - "question_id": 19062, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008292", - "question_id": 19063, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003508", - "question_id": 19064, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004173", - "question_id": 19065, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"middle\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008805", - "question_id": 19066, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002615", - "question_id": 19068, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000744", - "question_id": 19069, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004336", - "question_id": 19070, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000888", - "question_id": 19071, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006817", - "question_id": 19074, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003613", - "question_id": 19075, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004421", - "question_id": 19076, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000472", - "question_id": 19078, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bagpipe\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000189", - "question_id": 19079, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003161", - "question_id": 19081, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00007288", - "question_id": 19082, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005837", - "question_id": 19083, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002908", - "question_id": 19087, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006169", - "question_id": 19089, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"piano\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002576", - "question_id": 19090, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003849", - "question_id": 19091, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004642", - "question_id": 19092, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000596", - "question_id": 19093, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008006", - "question_id": 19095, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000924", - "question_id": 19096, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005319", - "question_id": 19099, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001407", - "question_id": 19100, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003141", - "question_id": 19104, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000604", - "question_id": 19108, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00006055", - "question_id": 19110, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003097", - "question_id": 19112, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002775", - "question_id": 19114, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003608", - "question_id": 19116, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002390", - "question_id": 19117, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001183", - "question_id": 19118, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007411", - "question_id": 19120, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007699", - "question_id": 19121, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003570", - "question_id": 19122, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001350", - "question_id": 19123, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003691", - "question_id": 19124, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000967", - "question_id": 19126, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006245", - "question_id": 19127, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001534", - "question_id": 19128, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003444", - "question_id": 19129, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007900", - "question_id": 19130, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004872", - "question_id": 19131, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001065", - "question_id": 19132, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007959", - "question_id": 19133, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002856", - "question_id": 19134, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00001772", - "question_id": 19135, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00004071", - "question_id": 19137, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005833", - "question_id": 19140, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005305", - "question_id": 19144, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007916", - "question_id": 19145, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002686", - "question_id": 19146, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004138", - "question_id": 19147, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004705", - "question_id": 19148, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001635", - "question_id": 19149, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005233", - "question_id": 19151, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002262", - "question_id": 19153, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003315", - "question_id": 19154, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003619", - "question_id": 19156, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002312", - "question_id": 19157, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002905", - "question_id": 19158, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00004174", - "question_id": 19159, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003989", - "question_id": 19160, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007366", - "question_id": 19163, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004705", - "question_id": 19164, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002789", - "question_id": 19165, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001116", - "question_id": 19166, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005957", - "question_id": 19167, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008067", - "question_id": 19169, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002263", - "question_id": 19170, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004903", - "question_id": 19171, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006060", - "question_id": 19172, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008964", - "question_id": 19173, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002074", - "question_id": 19174, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008674", - "question_id": 19176, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00007545", - "question_id": 19177, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003008", - "question_id": 19178, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007991", - "question_id": 19179, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004764", - "question_id": 19181, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002232", - "question_id": 19183, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007863", - "question_id": 19185, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000664", - "question_id": 19186, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002202", - "question_id": 19187, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "seven" -}, { - "video_id": "00006576", - "question_id": 19188, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006778", - "question_id": 19190, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007173", - "question_id": 19191, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003849", - "question_id": 19192, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002213", - "question_id": 19193, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001176", - "question_id": 19194, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000527", - "question_id": 19195, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00006886", - "question_id": 19196, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001424", - "question_id": 19198, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"fourth\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006957", - "question_id": 19199, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002192", - "question_id": 19201, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008216", - "question_id": 19202, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000054", - "question_id": 19204, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005268", - "question_id": 19205, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003553", - "question_id": 19206, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001502", - "question_id": 19207, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006709", - "question_id": 19208, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008551", - "question_id": 19209, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003147", - "question_id": 19210, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004996", - "question_id": 19211, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002364", - "question_id": 19213, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006138", - "question_id": 19215, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006751", - "question_id": 19216, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004776", - "question_id": 19218, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008721", - "question_id": 19221, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007284", - "question_id": 19223, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003966", - "question_id": 19224, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001895", - "question_id": 19226, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003275", - "question_id": 19230, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007358", - "question_id": 19231, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004386", - "question_id": 19236, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004054", - "question_id": 19238, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001335", - "question_id": 19239, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002885", - "question_id": 19240, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003629", - "question_id": 19241, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001676", - "question_id": 19242, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003766", - "question_id": 19243, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008331", - "question_id": 19245, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008517", - "question_id": 19246, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008428", - "question_id": 19247, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003570", - "question_id": 19248, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000608", - "question_id": 19249, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002202", - "question_id": 19250, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006330", - "question_id": 19251, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008945", - "question_id": 19252, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007049", - "question_id": 19254, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005129", - "question_id": 19256, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004496", - "question_id": 19257, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001616", - "question_id": 19258, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003392", - "question_id": 19259, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002817", - "question_id": 19262, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008533", - "question_id": 19263, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006883", - "question_id": 19264, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001414", - "question_id": 19266, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001100", - "question_id": 19267, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006075", - "question_id": 19269, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004482", - "question_id": 19270, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005752", - "question_id": 19272, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001109", - "question_id": 19273, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003127", - "question_id": 19274, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006632", - "question_id": 19278, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007894", - "question_id": 19279, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002239", - "question_id": 19280, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005779", - "question_id": 19282, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007277", - "question_id": 19283, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008190", - "question_id": 19286, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000563", - "question_id": 19289, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006659", - "question_id": 19290, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008188", - "question_id": 19291, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000024", - "question_id": 19294, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001427", - "question_id": 19296, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000285", - "question_id": 19297, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006218", - "question_id": 19298, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005613", - "question_id": 19299, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002337", - "question_id": 19300, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003384", - "question_id": 19301, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002820", - "question_id": 19302, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003106", - "question_id": 19303, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005790", - "question_id": 19305, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001930", - "question_id": 19306, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001154", - "question_id": 19308, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003235", - "question_id": 19309, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002744", - "question_id": 19310, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005187", - "question_id": 19311, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007339", - "question_id": 19312, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000800", - "question_id": 19313, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006565", - "question_id": 19314, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003802", - "question_id": 19315, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003591", - "question_id": 19316, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006699", - "question_id": 19318, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001314", - "question_id": 19320, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008635", - "question_id": 19321, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00006577", - "question_id": 19322, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005906", - "question_id": 19323, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004303", - "question_id": 19324, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006995", - "question_id": 19325, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003667", - "question_id": 19326, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000643", - "question_id": 19328, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001837", - "question_id": 19329, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007475", - "question_id": 19330, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005913", - "question_id": 19331, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000822", - "question_id": 19332, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003380", - "question_id": 19333, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007672", - "question_id": 19334, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002265", - "question_id": 19336, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002238", - "question_id": 19338, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005618", - "question_id": 19339, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004260", - "question_id": 19341, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007284", - "question_id": 19342, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001840", - "question_id": 19343, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005837", - "question_id": 19344, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006733", - "question_id": 19345, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003087", - "question_id": 19346, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003079", - "question_id": 19347, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005059", - "question_id": 19349, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005484", - "question_id": 19354, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005901", - "question_id": 19355, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008199", - "question_id": 19356, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004333", - "question_id": 19357, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007442", - "question_id": 19359, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001185", - "question_id": 19360, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004017", - "question_id": 19361, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000138", - "question_id": 19362, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002861", - "question_id": 19363, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003322", - "question_id": 19365, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000036", - "question_id": 19366, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004602", - "question_id": 19367, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008141", - "question_id": 19368, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008461", - "question_id": 19370, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003288", - "question_id": 19372, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005562", - "question_id": 19373, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003655", - "question_id": 19377, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004658", - "question_id": 19379, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008382", - "question_id": 19380, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00004220", - "question_id": 19381, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001099", - "question_id": 19382, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005077", - "question_id": 19383, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005948", - "question_id": 19385, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002881", - "question_id": 19386, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006960", - "question_id": 19387, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00004037", - "question_id": 19389, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006135", - "question_id": 19390, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008677", - "question_id": 19391, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002562", - "question_id": 19392, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006031", - "question_id": 19393, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008130", - "question_id": 19394, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00008556", - "question_id": 19395, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001102", - "question_id": 19397, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008105", - "question_id": 19400, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003576", - "question_id": 19401, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000945", - "question_id": 19403, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006325", - "question_id": 19404, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007241", - "question_id": 19405, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007241", - "question_id": 19405, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002661", - "question_id": 19406, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003213", - "question_id": 19407, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000281", - "question_id": 19408, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"tuba\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001023", - "question_id": 19409, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008583", - "question_id": 19410, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007152", - "question_id": 19411, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003520", - "question_id": 19412, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005865", - "question_id": 19413, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003529", - "question_id": 19414, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008096", - "question_id": 19415, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003886", - "question_id": 19416, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007329", - "question_id": 19417, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008806", - "question_id": 19419, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002545", - "question_id": 19421, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000750", - "question_id": 19422, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002360", - "question_id": 19423, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004977", - "question_id": 19425, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008967", - "question_id": 19426, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008310", - "question_id": 19427, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001241", - "question_id": 19428, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008402", - "question_id": 19429, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001678", - "question_id": 19430, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003227", - "question_id": 19431, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001313", - "question_id": 19433, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "more than ten" -}, { - "video_id": "00006817", - "question_id": 19435, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003610", - "question_id": 19436, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000512", - "question_id": 19439, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00003749", - "question_id": 19440, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004117", - "question_id": 19441, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003438", - "question_id": 19442, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006844", - "question_id": 19443, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000122", - "question_id": 19444, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003406", - "question_id": 19445, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000231", - "question_id": 19446, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003512", - "question_id": 19449, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007132", - "question_id": 19451, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005926", - "question_id": 19452, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008926", - "question_id": 19453, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000781", - "question_id": 19455, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004536", - "question_id": 19456, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003870", - "question_id": 19460, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000142", - "question_id": 19464, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"drum\", \"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000715", - "question_id": 19465, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004276", - "question_id": 19466, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000714", - "question_id": 19467, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000737", - "question_id": 19468, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005871", - "question_id": 19469, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008196", - "question_id": 19470, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006531", - "question_id": 19472, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008173", - "question_id": 19475, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005223", - "question_id": 19476, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006732", - "question_id": 19477, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003190", - "question_id": 19478, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008297", - "question_id": 19480, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002494", - "question_id": 19481, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000066", - "question_id": 19482, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00006848", - "question_id": 19483, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008956", - "question_id": 19484, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000333", - "question_id": 19485, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002799", - "question_id": 19489, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000974", - "question_id": 19491, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003272", - "question_id": 19492, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005901", - "question_id": 19493, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005739", - "question_id": 19494, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008629", - "question_id": 19496, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004195", - "question_id": 19497, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007696", - "question_id": 19498, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004021", - "question_id": 19500, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004021", - "question_id": 19500, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008831", - "question_id": 19501, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004391", - "question_id": 19503, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004263", - "question_id": 19505, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008342", - "question_id": 19506, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007642", - "question_id": 19507, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007663", - "question_id": 19508, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008353", - "question_id": 19509, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001314", - "question_id": 19511, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000979", - "question_id": 19513, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003527", - "question_id": 19515, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002471", - "question_id": 19516, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007147", - "question_id": 19517, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003055", - "question_id": 19518, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008706", - "question_id": 19519, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000602", - "question_id": 19522, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003714", - "question_id": 19525, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005735", - "question_id": 19527, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008475", - "question_id": 19528, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006506", - "question_id": 19529, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005003", - "question_id": 19530, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006947", - "question_id": 19531, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002670", - "question_id": 19532, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002537", - "question_id": 19534, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00004483", - "question_id": 19535, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007482", - "question_id": 19536, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00001540", - "question_id": 19537, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002491", - "question_id": 19538, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005249", - "question_id": 19540, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001397", - "question_id": 19541, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004977", - "question_id": 19543, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00004566", - "question_id": 19544, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000451", - "question_id": 19547, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006414", - "question_id": 19548, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005513", - "question_id": 19550, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006440", - "question_id": 19551, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005969", - "question_id": 19552, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005464", - "question_id": 19554, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001374", - "question_id": 19555, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004818", - "question_id": 19556, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006931", - "question_id": 19557, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006931", - "question_id": 19557, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006498", - "question_id": 19558, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000224", - "question_id": 19559, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002213", - "question_id": 19560, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003136", - "question_id": 19562, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001861", - "question_id": 19564, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000459", - "question_id": 19565, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007690", - "question_id": 19566, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005071", - "question_id": 19567, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004631", - "question_id": 19568, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008419", - "question_id": 19569, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007624", - "question_id": 19570, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006373", - "question_id": 19573, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002649", - "question_id": 19578, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006079", - "question_id": 19579, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003901", - "question_id": 19581, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002960", - "question_id": 19583, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004056", - "question_id": 19585, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008485", - "question_id": 19588, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005797", - "question_id": 19590, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005718", - "question_id": 19591, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005768", - "question_id": 19592, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005588", - "question_id": 19593, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003962", - "question_id": 19594, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000427", - "question_id": 19595, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002312", - "question_id": 19596, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002771", - "question_id": 19597, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007195", - "question_id": 19598, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005102", - "question_id": 19599, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002227", - "question_id": 19600, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008815", - "question_id": 19601, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00003399", - "question_id": 19602, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003419", - "question_id": 19603, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002611", - "question_id": 19606, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002611", - "question_id": 19606, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008767", - "question_id": 19607, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004082", - "question_id": 19608, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007087", - "question_id": 19611, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000201", - "question_id": 19614, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002586", - "question_id": 19615, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006599", - "question_id": 19616, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008058", - "question_id": 19617, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001088", - "question_id": 19619, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001372", - "question_id": 19620, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004252", - "question_id": 19621, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007846", - "question_id": 19622, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002809", - "question_id": 19623, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00006191", - "question_id": 19624, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000724", - "question_id": 19625, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004065", - "question_id": 19626, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005687", - "question_id": 19627, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004828", - "question_id": 19628, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000209", - "question_id": 19629, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001960", - "question_id": 19630, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006356", - "question_id": 19631, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007866", - "question_id": 19632, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002628", - "question_id": 19634, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008726", - "question_id": 19635, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006970", - "question_id": 19636, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000856", - "question_id": 19638, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002609", - "question_id": 19640, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00001880", - "question_id": 19642, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004938", - "question_id": 19643, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005162", - "question_id": 19644, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003161", - "question_id": 19645, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005228", - "question_id": 19646, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003635", - "question_id": 19648, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007136", - "question_id": 19649, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002284", - "question_id": 19651, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006549", - "question_id": 19656, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002287", - "question_id": 19657, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007214", - "question_id": 19658, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003925", - "question_id": 19659, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008516", - "question_id": 19663, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001989", - "question_id": 19664, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002435", - "question_id": 19665, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002389", - "question_id": 19666, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006845", - "question_id": 19667, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004232", - "question_id": 19670, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001688", - "question_id": 19671, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005160", - "question_id": 19672, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003297", - "question_id": 19673, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00002073", - "question_id": 19674, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008301", - "question_id": 19675, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006225", - "question_id": 19676, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00008202", - "question_id": 19680, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006687", - "question_id": 19681, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008423", - "question_id": 19682, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007727", - "question_id": 19684, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "seven" -}, { - "video_id": "00006885", - "question_id": 19685, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000739", - "question_id": 19687, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006045", - "question_id": 19688, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00005632", - "question_id": 19690, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00000458", - "question_id": 19696, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00006388", - "question_id": 19697, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001979", - "question_id": 19698, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007685", - "question_id": 19703, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006999", - "question_id": 19705, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00007865", - "question_id": 19706, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000310", - "question_id": 19707, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007065", - "question_id": 19708, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003302", - "question_id": 19709, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008485", - "question_id": 19710, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00007879", - "question_id": 19711, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003110", - "question_id": 19712, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000964", - "question_id": 19714, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003259", - "question_id": 19715, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005405", - "question_id": 19716, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001766", - "question_id": 19717, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005738", - "question_id": 19718, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00003971", - "question_id": 19719, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007038", - "question_id": 19720, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001647", - "question_id": 19721, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00005908", - "question_id": 19722, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004084", - "question_id": 19724, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000903", - "question_id": 19725, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004018", - "question_id": 19726, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005606", - "question_id": 19727, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008093", - "question_id": 19728, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008491", - "question_id": 19729, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001843", - "question_id": 19730, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007240", - "question_id": 19732, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003073", - "question_id": 19734, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000631", - "question_id": 19737, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000530", - "question_id": 19738, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003037", - "question_id": 19739, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002946", - "question_id": 19740, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"electric_bass\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001464", - "question_id": 19741, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00007126", - "question_id": 19742, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005264", - "question_id": 19743, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004272", - "question_id": 19744, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000796", - "question_id": 19745, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00000648", - "question_id": 19746, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002891", - "question_id": 19749, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004190", - "question_id": 19750, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004912", - "question_id": 19751, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003100", - "question_id": 19752, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005804", - "question_id": 19754, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005938", - "question_id": 19756, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002039", - "question_id": 19757, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00004472", - "question_id": 19758, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006047", - "question_id": 19759, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000147", - "question_id": 19760, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007327", - "question_id": 19761, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003220", - "question_id": 19762, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004660", - "question_id": 19765, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001329", - "question_id": 19767, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00005673", - "question_id": 19768, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003326", - "question_id": 19769, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003397", - "question_id": 19771, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00001589", - "question_id": 19772, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000587", - "question_id": 19773, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000047", - "question_id": 19774, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007758", - "question_id": 19775, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005590", - "question_id": 19776, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007511", - "question_id": 19778, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005561", - "question_id": 19779, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007477", - "question_id": 19780, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008253", - "question_id": 19782, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008253", - "question_id": 19782, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001241", - "question_id": 19783, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006996", - "question_id": 19784, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004804", - "question_id": 19785, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008209", - "question_id": 19786, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006697", - "question_id": 19787, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000983", - "question_id": 19788, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008859", - "question_id": 19789, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003272", - "question_id": 19791, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003174", - "question_id": 19792, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000040", - "question_id": 19793, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005357", - "question_id": 19796, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006795", - "question_id": 19797, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003830", - "question_id": 19799, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000818", - "question_id": 19800, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005782", - "question_id": 19801, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007936", - "question_id": 19802, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008685", - "question_id": 19803, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001687", - "question_id": 19805, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001227", - "question_id": 19806, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001467", - "question_id": 19807, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001803", - "question_id": 19808, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004775", - "question_id": 19810, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007671", - "question_id": 19811, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005895", - "question_id": 19812, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00005169", - "question_id": 19813, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007523", - "question_id": 19815, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002339", - "question_id": 19817, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006084", - "question_id": 19818, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008562", - "question_id": 19819, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003468", - "question_id": 19822, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000930", - "question_id": 19823, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004753", - "question_id": 19824, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00003732", - "question_id": 19825, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00001546", - "question_id": 19827, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002351", - "question_id": 19829, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005370", - "question_id": 19831, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001589", - "question_id": 19833, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005193", - "question_id": 19835, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000146", - "question_id": 19836, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003941", - "question_id": 19837, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002074", - "question_id": 19839, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004825", - "question_id": 19840, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003724", - "question_id": 19841, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005147", - "question_id": 19843, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004274", - "question_id": 19845, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007952", - "question_id": 19846, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008971", - "question_id": 19849, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006446", - "question_id": 19850, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008262", - "question_id": 19851, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000087", - "question_id": 19852, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000174", - "question_id": 19853, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007743", - "question_id": 19854, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002790", - "question_id": 19855, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007564", - "question_id": 19856, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00001590", - "question_id": 19859, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006167", - "question_id": 19860, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008906", - "question_id": 19861, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007442", - "question_id": 19863, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002653", - "question_id": 19864, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008584", - "question_id": 19865, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004517", - "question_id": 19868, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005074", - "question_id": 19870, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006229", - "question_id": 19871, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001180", - "question_id": 19872, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007414", - "question_id": 19874, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00004356", - "question_id": 19875, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00005380", - "question_id": 19876, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000731", - "question_id": 19877, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002256", - "question_id": 19878, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007631", - "question_id": 19879, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003828", - "question_id": 19881, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002584", - "question_id": 19882, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004056", - "question_id": 19884, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004314", - "question_id": 19885, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"tuba\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004334", - "question_id": 19886, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000570", - "question_id": 19888, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002763", - "question_id": 19890, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005464", - "question_id": 19891, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001917", - "question_id": 19893, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003653", - "question_id": 19894, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004871", - "question_id": 19895, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00000485", - "question_id": 19896, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00006463", - "question_id": 19897, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002802", - "question_id": 19898, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004426", - "question_id": 19900, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002096", - "question_id": 19901, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007953", - "question_id": 19902, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001590", - "question_id": 19904, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002302", - "question_id": 19905, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007206", - "question_id": 19906, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005328", - "question_id": 19907, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003573", - "question_id": 19908, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006852", - "question_id": 19909, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00001112", - "question_id": 19910, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"right\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005397", - "question_id": 19911, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006228", - "question_id": 19912, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007420", - "question_id": 19913, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007207", - "question_id": 19914, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00001290", - "question_id": 19915, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005324", - "question_id": 19918, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002636", - "question_id": 19925, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001043", - "question_id": 19926, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003281", - "question_id": 19927, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008178", - "question_id": 19929, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006134", - "question_id": 19931, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002702", - "question_id": 19932, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001799", - "question_id": 19933, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004987", - "question_id": 19934, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000918", - "question_id": 19935, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00006774", - "question_id": 19938, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000410", - "question_id": 19939, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006554", - "question_id": 19941, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000446", - "question_id": 19942, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000032", - "question_id": 19943, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003381", - "question_id": 19944, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005325", - "question_id": 19945, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004700", - "question_id": 19947, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003331", - "question_id": 19949, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007700", - "question_id": 19950, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000608", - "question_id": 19951, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002810", - "question_id": 19952, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00004330", - "question_id": 19953, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007470", - "question_id": 19954, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007470", - "question_id": 19954, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005741", - "question_id": 19955, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000077", - "question_id": 19956, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00008540", - "question_id": 19958, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000935", - "question_id": 19959, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003206", - "question_id": 19960, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008027", - "question_id": 19962, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000859", - "question_id": 19963, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004634", - "question_id": 19964, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008282", - "question_id": 19965, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001387", - "question_id": 19966, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005921", - "question_id": 19968, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003529", - "question_id": 19969, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007376", - "question_id": 19970, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007123", - "question_id": 19971, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005333", - "question_id": 19972, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004100", - "question_id": 19973, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008170", - "question_id": 19975, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003342", - "question_id": 19978, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008295", - "question_id": 19979, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006290", - "question_id": 19982, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003547", - "question_id": 19983, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004354", - "question_id": 19984, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004666", - "question_id": 19986, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007011", - "question_id": 19987, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007808", - "question_id": 19989, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007498", - "question_id": 19990, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006521", - "question_id": 19991, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001454", - "question_id": 19992, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000263", - "question_id": 19993, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00006861", - "question_id": 19994, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004398", - "question_id": 19995, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003952", - "question_id": 19996, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004514", - "question_id": 19997, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006232", - "question_id": 19998, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005482", - "question_id": 19999, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007418", - "question_id": 20000, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"bassoon\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006353", - "question_id": 20001, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005740", - "question_id": 20003, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006185", - "question_id": 20004, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008074", - "question_id": 20005, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00008628", - "question_id": 20007, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000456", - "question_id": 20008, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000076", - "question_id": 20009, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000165", - "question_id": 20011, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002915", - "question_id": 20013, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005064", - "question_id": 20014, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005561", - "question_id": 20015, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002773", - "question_id": 20017, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007221", - "question_id": 20018, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003606", - "question_id": 20019, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00005662", - "question_id": 20021, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001812", - "question_id": 20022, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001175", - "question_id": 20023, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004533", - "question_id": 20024, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00003352", - "question_id": 20025, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006302", - "question_id": 20026, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001551", - "question_id": 20027, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003850", - "question_id": 20028, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001864", - "question_id": 20030, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005743", - "question_id": 20031, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003638", - "question_id": 20032, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001155", - "question_id": 20035, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004432", - "question_id": 20037, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001476", - "question_id": 20038, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007546", - "question_id": 20039, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004088", - "question_id": 20040, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003344", - "question_id": 20042, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008964", - "question_id": 20044, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004641", - "question_id": 20045, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001393", - "question_id": 20047, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004068", - "question_id": 20048, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003232", - "question_id": 20050, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003232", - "question_id": 20050, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001214", - "question_id": 20051, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003549", - "question_id": 20052, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003561", - "question_id": 20053, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007619", - "question_id": 20054, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003977", - "question_id": 20055, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000596", - "question_id": 20056, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002740", - "question_id": 20058, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003421", - "question_id": 20061, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001624", - "question_id": 20062, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001619", - "question_id": 20063, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002225", - "question_id": 20065, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005534", - "question_id": 20066, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006176", - "question_id": 20067, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002415", - "question_id": 20068, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002339", - "question_id": 20069, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006955", - "question_id": 20070, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005543", - "question_id": 20072, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005707", - "question_id": 20073, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007081", - "question_id": 20075, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002593", - "question_id": 20077, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001619", - "question_id": 20078, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003709", - "question_id": 20080, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000241", - "question_id": 20082, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00004718", - "question_id": 20083, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000304", - "question_id": 20085, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002426", - "question_id": 20087, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006254", - "question_id": 20088, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008666", - "question_id": 20089, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005929", - "question_id": 20090, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001734", - "question_id": 20091, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005749", - "question_id": 20092, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004667", - "question_id": 20093, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004520", - "question_id": 20094, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00002602", - "question_id": 20095, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002582", - "question_id": 20096, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003058", - "question_id": 20097, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000616", - "question_id": 20098, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005407", - "question_id": 20100, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007630", - "question_id": 20101, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004444", - "question_id": 20103, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006736", - "question_id": 20105, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007578", - "question_id": 20106, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006453", - "question_id": 20109, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008065", - "question_id": 20110, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006502", - "question_id": 20111, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006284", - "question_id": 20112, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002313", - "question_id": 20113, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000320", - "question_id": 20115, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003008", - "question_id": 20117, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00001898", - "question_id": 20118, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008892", - "question_id": 20119, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00006716", - "question_id": 20121, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001383", - "question_id": 20122, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000387", - "question_id": 20124, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004579", - "question_id": 20125, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001370", - "question_id": 20127, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001350", - "question_id": 20128, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004321", - "question_id": 20129, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003560", - "question_id": 20130, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008605", - "question_id": 20132, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002178", - "question_id": 20135, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002393", - "question_id": 20136, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006717", - "question_id": 20137, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007394", - "question_id": 20140, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008455", - "question_id": 20141, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001448", - "question_id": 20142, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002292", - "question_id": 20143, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004619", - "question_id": 20144, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004230", - "question_id": 20145, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002335", - "question_id": 20146, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000853", - "question_id": 20147, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007552", - "question_id": 20148, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004976", - "question_id": 20152, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002359", - "question_id": 20153, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007224", - "question_id": 20154, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000326", - "question_id": 20155, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000269", - "question_id": 20156, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005785", - "question_id": 20157, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"suona\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007265", - "question_id": 20158, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001927", - "question_id": 20159, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003048", - "question_id": 20160, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008052", - "question_id": 20161, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007440", - "question_id": 20165, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002381", - "question_id": 20167, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007979", - "question_id": 20168, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001414", - "question_id": 20169, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003191", - "question_id": 20170, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006589", - "question_id": 20171, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002139", - "question_id": 20172, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00000047", - "question_id": 20173, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00001465", - "question_id": 20174, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001012", - "question_id": 20176, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001012", - "question_id": 20176, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006792", - "question_id": 20177, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007903", - "question_id": 20178, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004271", - "question_id": 20179, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008657", - "question_id": 20180, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007292", - "question_id": 20182, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001260", - "question_id": 20183, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00001069", - "question_id": 20184, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006585", - "question_id": 20185, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002128", - "question_id": 20186, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006767", - "question_id": 20188, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004661", - "question_id": 20192, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001017", - "question_id": 20194, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001926", - "question_id": 20195, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002999", - "question_id": 20196, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007468", - "question_id": 20197, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00007145", - "question_id": 20199, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006274", - "question_id": 20200, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007025", - "question_id": 20201, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004342", - "question_id": 20203, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008615", - "question_id": 20204, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003840", - "question_id": 20205, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003237", - "question_id": 20206, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006457", - "question_id": 20207, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00004724", - "question_id": 20209, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005202", - "question_id": 20211, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007187", - "question_id": 20212, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002840", - "question_id": 20213, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003658", - "question_id": 20215, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00004245", - "question_id": 20218, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008361", - "question_id": 20219, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006647", - "question_id": 20220, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006711", - "question_id": 20223, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004950", - "question_id": 20225, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004759", - "question_id": 20226, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001515", - "question_id": 20227, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000288", - "question_id": 20229, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005431", - "question_id": 20230, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004803", - "question_id": 20233, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004790", - "question_id": 20235, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008548", - "question_id": 20236, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000285", - "question_id": 20237, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003223", - "question_id": 20238, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004127", - "question_id": 20239, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004344", - "question_id": 20240, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006474", - "question_id": 20244, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007313", - "question_id": 20245, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006499", - "question_id": 20247, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001925", - "question_id": 20248, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000852", - "question_id": 20250, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002390", - "question_id": 20251, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000666", - "question_id": 20252, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00007914", - "question_id": 20253, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004285", - "question_id": 20255, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00005489", - "question_id": 20257, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006386", - "question_id": 20258, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008178", - "question_id": 20259, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008069", - "question_id": 20260, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006754", - "question_id": 20263, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003664", - "question_id": 20264, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00007473", - "question_id": 20267, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000204", - "question_id": 20268, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00002454", - "question_id": 20269, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002395", - "question_id": 20270, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001839", - "question_id": 20272, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00001622", - "question_id": 20274, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001127", - "question_id": 20275, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004121", - "question_id": 20276, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007388", - "question_id": 20277, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006902", - "question_id": 20278, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003553", - "question_id": 20280, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006875", - "question_id": 20281, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002864", - "question_id": 20282, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000022", - "question_id": 20283, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001109", - "question_id": 20284, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008252", - "question_id": 20285, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005544", - "question_id": 20286, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008228", - "question_id": 20287, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00000139", - "question_id": 20288, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000581", - "question_id": 20289, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001971", - "question_id": 20290, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004588", - "question_id": 20291, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003450", - "question_id": 20292, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003676", - "question_id": 20293, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001741", - "question_id": 20295, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00002880", - "question_id": 20296, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005223", - "question_id": 20298, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002336", - "question_id": 20300, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004171", - "question_id": 20304, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002831", - "question_id": 20305, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001830", - "question_id": 20306, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004495", - "question_id": 20309, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00004981", - "question_id": 20310, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002827", - "question_id": 20311, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000615", - "question_id": 20313, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001906", - "question_id": 20316, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008204", - "question_id": 20318, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001465", - "question_id": 20319, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "seven" -}, { - "video_id": "00000291", - "question_id": 20320, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007413", - "question_id": 20322, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001534", - "question_id": 20323, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007470", - "question_id": 20324, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003455", - "question_id": 20327, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004571", - "question_id": 20329, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000132", - "question_id": 20332, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003074", - "question_id": 20334, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006069", - "question_id": 20336, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004838", - "question_id": 20337, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008406", - "question_id": 20338, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004166", - "question_id": 20339, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005212", - "question_id": 20341, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001126", - "question_id": 20342, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004145", - "question_id": 20343, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000869", - "question_id": 20345, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002382", - "question_id": 20347, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006853", - "question_id": 20348, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004615", - "question_id": 20350, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00002601", - "question_id": 20352, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000779", - "question_id": 20353, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00008378", - "question_id": 20354, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003948", - "question_id": 20355, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000287", - "question_id": 20356, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002301", - "question_id": 20358, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001769", - "question_id": 20359, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004807", - "question_id": 20360, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003178", - "question_id": 20362, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005592", - "question_id": 20363, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003960", - "question_id": 20364, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002542", - "question_id": 20367, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00004659", - "question_id": 20369, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004689", - "question_id": 20370, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005248", - "question_id": 20371, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003462", - "question_id": 20372, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007135", - "question_id": 20373, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006033", - "question_id": 20374, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000333", - "question_id": 20377, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000485", - "question_id": 20378, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001504", - "question_id": 20380, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007056", - "question_id": 20381, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005181", - "question_id": 20383, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007482", - "question_id": 20385, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00008765", - "question_id": 20386, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002634", - "question_id": 20387, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005223", - "question_id": 20390, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002051", - "question_id": 20392, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004501", - "question_id": 20393, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006968", - "question_id": 20394, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005346", - "question_id": 20395, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001944", - "question_id": 20398, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007862", - "question_id": 20399, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007599", - "question_id": 20400, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001975", - "question_id": 20401, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00003684", - "question_id": 20403, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000685", - "question_id": 20406, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008878", - "question_id": 20408, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005920", - "question_id": 20409, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001107", - "question_id": 20410, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000528", - "question_id": 20412, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007468", - "question_id": 20413, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002925", - "question_id": 20415, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003294", - "question_id": 20416, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004123", - "question_id": 20417, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000652", - "question_id": 20418, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00001020", - "question_id": 20419, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003669", - "question_id": 20420, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00003811", - "question_id": 20421, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"electric_bass\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001830", - "question_id": 20423, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00001538", - "question_id": 20425, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006098", - "question_id": 20426, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001632", - "question_id": 20429, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005355", - "question_id": 20430, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00004095", - "question_id": 20432, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005357", - "question_id": 20433, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004974", - "question_id": 20434, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007197", - "question_id": 20436, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001651", - "question_id": 20437, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006284", - "question_id": 20438, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002490", - "question_id": 20439, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006651", - "question_id": 20441, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007889", - "question_id": 20442, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004576", - "question_id": 20443, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008681", - "question_id": 20444, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001090", - "question_id": 20445, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003635", - "question_id": 20446, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008365", - "question_id": 20447, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000419", - "question_id": 20448, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006693", - "question_id": 20449, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005733", - "question_id": 20451, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002258", - "question_id": 20452, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002504", - "question_id": 20454, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008148", - "question_id": 20456, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004523", - "question_id": 20459, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007137", - "question_id": 20462, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006864", - "question_id": 20463, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006068", - "question_id": 20464, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007497", - "question_id": 20465, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004217", - "question_id": 20466, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006577", - "question_id": 20467, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008459", - "question_id": 20469, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001613", - "question_id": 20470, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003357", - "question_id": 20472, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001579", - "question_id": 20473, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003554", - "question_id": 20475, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006517", - "question_id": 20476, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004010", - "question_id": 20478, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004987", - "question_id": 20479, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00004300", - "question_id": 20480, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007106", - "question_id": 20481, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006806", - "question_id": 20482, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007231", - "question_id": 20483, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007491", - "question_id": 20484, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006384", - "question_id": 20486, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003954", - "question_id": 20488, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000036", - "question_id": 20489, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002649", - "question_id": 20491, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006640", - "question_id": 20492, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002587", - "question_id": 20493, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002819", - "question_id": 20494, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000223", - "question_id": 20495, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006259", - "question_id": 20496, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00003489", - "question_id": 20497, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003806", - "question_id": 20498, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002088", - "question_id": 20502, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008576", - "question_id": 20505, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00007772", - "question_id": 20506, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004922", - "question_id": 20507, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004825", - "question_id": 20508, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008192", - "question_id": 20509, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000480", - "question_id": 20510, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001569", - "question_id": 20511, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002879", - "question_id": 20512, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002879", - "question_id": 20512, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007250", - "question_id": 20514, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005050", - "question_id": 20515, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006597", - "question_id": 20516, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008197", - "question_id": 20518, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006400", - "question_id": 20520, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005793", - "question_id": 20526, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003352", - "question_id": 20527, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004234", - "question_id": 20528, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006109", - "question_id": 20531, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002450", - "question_id": 20532, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000318", - "question_id": 20533, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00003285", - "question_id": 20535, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008681", - "question_id": 20536, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003206", - "question_id": 20537, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002760", - "question_id": 20540, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007425", - "question_id": 20541, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001204", - "question_id": 20544, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00001795", - "question_id": 20545, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001366", - "question_id": 20546, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004088", - "question_id": 20550, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002637", - "question_id": 20551, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001644", - "question_id": 20552, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002701", - "question_id": 20553, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006379", - "question_id": 20554, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000055", - "question_id": 20556, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003089", - "question_id": 20557, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007356", - "question_id": 20562, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005978", - "question_id": 20563, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00007958", - "question_id": 20564, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004417", - "question_id": 20566, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007125", - "question_id": 20568, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005183", - "question_id": 20569, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000533", - "question_id": 20570, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007355", - "question_id": 20571, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007355", - "question_id": 20571, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008464", - "question_id": 20572, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00000883", - "question_id": 20573, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006523", - "question_id": 20576, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002657", - "question_id": 20577, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006366", - "question_id": 20578, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002528", - "question_id": 20579, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008767", - "question_id": 20583, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001817", - "question_id": 20584, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00001633", - "question_id": 20585, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002499", - "question_id": 20586, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003632", - "question_id": 20587, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000985", - "question_id": 20592, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007267", - "question_id": 20594, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002321", - "question_id": 20597, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001677", - "question_id": 20600, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000371", - "question_id": 20601, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002236", - "question_id": 20603, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003402", - "question_id": 20604, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005382", - "question_id": 20605, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006360", - "question_id": 20607, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001056", - "question_id": 20608, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008319", - "question_id": 20609, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001587", - "question_id": 20610, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008673", - "question_id": 20611, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008703", - "question_id": 20614, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002203", - "question_id": 20615, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002612", - "question_id": 20616, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002725", - "question_id": 20617, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002500", - "question_id": 20618, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007403", - "question_id": 20619, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008790", - "question_id": 20620, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002990", - "question_id": 20621, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007953", - "question_id": 20622, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004367", - "question_id": 20623, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003030", - "question_id": 20625, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00008080", - "question_id": 20626, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003555", - "question_id": 20627, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004438", - "question_id": 20629, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000930", - "question_id": 20630, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005309", - "question_id": 20632, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003792", - "question_id": 20633, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007361", - "question_id": 20635, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004131", - "question_id": 20636, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004590", - "question_id": 20637, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000947", - "question_id": 20638, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003443", - "question_id": 20639, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000072", - "question_id": 20640, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001655", - "question_id": 20641, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007614", - "question_id": 20643, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00003098", - "question_id": 20644, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001224", - "question_id": 20645, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005712", - "question_id": 20646, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001506", - "question_id": 20647, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00008360", - "question_id": 20648, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007403", - "question_id": 20650, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006160", - "question_id": 20651, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007146", - "question_id": 20653, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002812", - "question_id": 20654, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002433", - "question_id": 20655, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008057", - "question_id": 20661, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003056", - "question_id": 20662, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003534", - "question_id": 20663, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002263", - "question_id": 20664, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008067", - "question_id": 20666, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006617", - "question_id": 20667, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007881", - "question_id": 20669, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007411", - "question_id": 20671, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007217", - "question_id": 20672, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006918", - "question_id": 20674, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001457", - "question_id": 20675, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008057", - "question_id": 20677, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002499", - "question_id": 20679, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004122", - "question_id": 20680, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00003712", - "question_id": 20686, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001005", - "question_id": 20687, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002174", - "question_id": 20689, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000267", - "question_id": 20690, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001637", - "question_id": 20691, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000066", - "question_id": 20692, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003045", - "question_id": 20693, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002473", - "question_id": 20695, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007725", - "question_id": 20696, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003188", - "question_id": 20697, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006391", - "question_id": 20699, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006131", - "question_id": 20700, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006510", - "question_id": 20701, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005690", - "question_id": 20702, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001463", - "question_id": 20703, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004521", - "question_id": 20705, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008017", - "question_id": 20709, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007893", - "question_id": 20711, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005992", - "question_id": 20712, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00004281", - "question_id": 20713, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005569", - "question_id": 20715, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003965", - "question_id": 20716, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008087", - "question_id": 20717, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003532", - "question_id": 20721, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005845", - "question_id": 20723, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002160", - "question_id": 20724, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003637", - "question_id": 20725, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008054", - "question_id": 20726, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001194", - "question_id": 20727, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008559", - "question_id": 20731, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00005813", - "question_id": 20732, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00004008", - "question_id": 20734, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006989", - "question_id": 20735, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001363", - "question_id": 20739, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002648", - "question_id": 20741, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001894", - "question_id": 20742, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006932", - "question_id": 20743, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007738", - "question_id": 20744, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007898", - "question_id": 20745, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008162", - "question_id": 20746, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006647", - "question_id": 20747, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001620", - "question_id": 20749, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000064", - "question_id": 20751, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002977", - "question_id": 20752, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004037", - "question_id": 20753, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007482", - "question_id": 20754, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003833", - "question_id": 20759, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008844", - "question_id": 20760, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004475", - "question_id": 20761, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003635", - "question_id": 20763, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002510", - "question_id": 20765, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003029", - "question_id": 20767, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00003167", - "question_id": 20768, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006440", - "question_id": 20771, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002876", - "question_id": 20773, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004043", - "question_id": 20775, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004875", - "question_id": 20777, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001903", - "question_id": 20780, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00000138", - "question_id": 20781, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003862", - "question_id": 20782, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000610", - "question_id": 20788, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000826", - "question_id": 20790, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003635", - "question_id": 20792, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002135", - "question_id": 20793, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003986", - "question_id": 20794, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002324", - "question_id": 20797, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002387", - "question_id": 20798, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004576", - "question_id": 20799, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000445", - "question_id": 20801, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007042", - "question_id": 20802, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006920", - "question_id": 20805, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001822", - "question_id": 20806, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008548", - "question_id": 20807, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008298", - "question_id": 20808, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002807", - "question_id": 20809, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006827", - "question_id": 20810, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003827", - "question_id": 20811, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005836", - "question_id": 20812, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00005848", - "question_id": 20813, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004936", - "question_id": 20815, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00005097", - "question_id": 20817, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00008167", - "question_id": 20819, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006429", - "question_id": 20820, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"saxophone\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006147", - "question_id": 20822, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005838", - "question_id": 20823, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007642", - "question_id": 20826, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008634", - "question_id": 20827, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001730", - "question_id": 20829, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00002158", - "question_id": 20830, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008289", - "question_id": 20833, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002216", - "question_id": 20834, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008416", - "question_id": 20836, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004204", - "question_id": 20840, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"xylophone\", \"left\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004204", - "question_id": 20840, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"xylophone\", \"left\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008848", - "question_id": 20842, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00007871", - "question_id": 20843, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001445", - "question_id": 20844, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007491", - "question_id": 20845, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005899", - "question_id": 20846, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000695", - "question_id": 20847, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003433", - "question_id": 20848, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004323", - "question_id": 20849, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003927", - "question_id": 20850, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004836", - "question_id": 20852, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003690", - "question_id": 20857, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006080", - "question_id": 20858, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000029", - "question_id": 20859, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00005150", - "question_id": 20860, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006346", - "question_id": 20861, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002068", - "question_id": 20863, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007214", - "question_id": 20866, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000078", - "question_id": 20867, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004973", - "question_id": 20869, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004097", - "question_id": 20870, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006360", - "question_id": 20872, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007887", - "question_id": 20874, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000540", - "question_id": 20876, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004924", - "question_id": 20877, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000458", - "question_id": 20879, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006588", - "question_id": 20880, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"congas\", \"left\", \"congas\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000655", - "question_id": 20881, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006797", - "question_id": 20882, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005928", - "question_id": 20884, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004833", - "question_id": 20885, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003365", - "question_id": 20886, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003578", - "question_id": 20887, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000651", - "question_id": 20888, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004246", - "question_id": 20889, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006817", - "question_id": 20890, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002955", - "question_id": 20891, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003863", - "question_id": 20892, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008360", - "question_id": 20894, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007037", - "question_id": 20895, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001673", - "question_id": 20896, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006952", - "question_id": 20898, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008558", - "question_id": 20899, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00008409", - "question_id": 20900, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004554", - "question_id": 20901, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00004554", - "question_id": 20901, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00007357", - "question_id": 20903, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003733", - "question_id": 20904, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006722", - "question_id": 20905, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006430", - "question_id": 20907, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003592", - "question_id": 20909, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007209", - "question_id": 20910, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007922", - "question_id": 20914, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005229", - "question_id": 20916, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002456", - "question_id": 20917, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007465", - "question_id": 20918, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000729", - "question_id": 20919, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007115", - "question_id": 20920, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002499", - "question_id": 20921, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008235", - "question_id": 20925, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005020", - "question_id": 20926, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006822", - "question_id": 20931, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007970", - "question_id": 20932, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00000945", - "question_id": 20933, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001320", - "question_id": 20935, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001404", - "question_id": 20936, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00003221", - "question_id": 20937, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005051", - "question_id": 20938, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000042", - "question_id": 20939, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004393", - "question_id": 20941, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006396", - "question_id": 20942, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00004084", - "question_id": 20943, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002241", - "question_id": 20944, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005173", - "question_id": 20945, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008633", - "question_id": 20947, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004375", - "question_id": 20949, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007888", - "question_id": 20950, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003716", - "question_id": 20951, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002932", - "question_id": 20953, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008577", - "question_id": 20954, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002777", - "question_id": 20955, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008702", - "question_id": 20956, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006601", - "question_id": 20957, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00002514", - "question_id": 20958, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005795", - "question_id": 20959, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007772", - "question_id": 20960, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002584", - "question_id": 20961, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00001953", - "question_id": 20962, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007220", - "question_id": 20963, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000693", - "question_id": 20964, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008521", - "question_id": 20966, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002620", - "question_id": 20967, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"middle\", \"clarinet\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002932", - "question_id": 20968, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007957", - "question_id": 20969, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00001073", - "question_id": 20970, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007689", - "question_id": 20973, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002629", - "question_id": 20974, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002492", - "question_id": 20975, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00003281", - "question_id": 20976, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006302", - "question_id": 20979, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006938", - "question_id": 20980, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002458", - "question_id": 20982, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00006461", - "question_id": 20983, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003628", - "question_id": 20984, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008901", - "question_id": 20985, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001680", - "question_id": 20987, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00006881", - "question_id": 20989, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00008569", - "question_id": 20990, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007183", - "question_id": 20991, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008503", - "question_id": 20992, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002768", - "question_id": 20993, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00008247", - "question_id": 20994, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000541", - "question_id": 20997, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001755", - "question_id": 20998, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000242", - "question_id": 21000, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001769", - "question_id": 21001, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007250", - "question_id": 21002, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007798", - "question_id": 21004, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001876", - "question_id": 21005, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000440", - "question_id": 21006, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001961", - "question_id": 21007, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001252", - "question_id": 21008, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002600", - "question_id": 21009, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006450", - "question_id": 21010, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008722", - "question_id": 21011, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006104", - "question_id": 21014, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000729", - "question_id": 21016, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003640", - "question_id": 21018, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000578", - "question_id": 21019, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002109", - "question_id": 21021, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001222", - "question_id": 21022, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001753", - "question_id": 21023, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001511", - "question_id": 21024, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"saxophone\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00004402", - "question_id": 21025, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008597", - "question_id": 21027, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000996", - "question_id": 21029, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002603", - "question_id": 21030, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004456", - "question_id": 21032, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008447", - "question_id": 21033, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005896", - "question_id": 21034, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00005915", - "question_id": 21035, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003586", - "question_id": 21038, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001905", - "question_id": 21039, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007629", - "question_id": 21040, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008948", - "question_id": 21041, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005322", - "question_id": 21044, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002521", - "question_id": 21045, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001450", - "question_id": 21046, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004288", - "question_id": 21047, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000720", - "question_id": 21048, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007995", - "question_id": 21049, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003700", - "question_id": 21050, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001947", - "question_id": 21051, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005534", - "question_id": 21052, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007517", - "question_id": 21056, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004356", - "question_id": 21059, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004998", - "question_id": 21060, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004998", - "question_id": 21060, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004003", - "question_id": 21061, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008381", - "question_id": 21063, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001105", - "question_id": 21064, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000251", - "question_id": 21065, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004026", - "question_id": 21067, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003146", - "question_id": 21068, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006589", - "question_id": 21069, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007809", - "question_id": 21071, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006704", - "question_id": 21072, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000025", - "question_id": 21073, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008924", - "question_id": 21074, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000306", - "question_id": 21076, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008765", - "question_id": 21077, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001382", - "question_id": 21078, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002209", - "question_id": 21079, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00002479", - "question_id": 21080, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003560", - "question_id": 21082, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00002269", - "question_id": 21084, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004077", - "question_id": 21085, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001774", - "question_id": 21086, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00007505", - "question_id": 21088, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004550", - "question_id": 21089, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008810", - "question_id": 21090, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006167", - "question_id": 21091, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007197", - "question_id": 21093, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00001520", - "question_id": 21094, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007678", - "question_id": 21095, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002570", - "question_id": 21096, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004297", - "question_id": 21097, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007600", - "question_id": 21099, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008202", - "question_id": 21102, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003431", - "question_id": 21104, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002680", - "question_id": 21105, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001150", - "question_id": 21106, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001676", - "question_id": 21108, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005979", - "question_id": 21109, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001176", - "question_id": 21111, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001904", - "question_id": 21112, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005489", - "question_id": 21113, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001554", - "question_id": 21114, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000839", - "question_id": 21115, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004643", - "question_id": 21117, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006870", - "question_id": 21119, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00002670", - "question_id": 21120, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007031", - "question_id": 21121, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008685", - "question_id": 21123, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001752", - "question_id": 21124, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001916", - "question_id": 21126, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00001712", - "question_id": 21127, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000124", - "question_id": 21129, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001172", - "question_id": 21131, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006549", - "question_id": 21133, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006045", - "question_id": 21134, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003286", - "question_id": 21136, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000129", - "question_id": 21137, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003320", - "question_id": 21139, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003896", - "question_id": 21140, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005106", - "question_id": 21141, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005554", - "question_id": 21142, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008415", - "question_id": 21143, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003034", - "question_id": 21144, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001154", - "question_id": 21145, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00005408", - "question_id": 21146, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002261", - "question_id": 21147, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000630", - "question_id": 21148, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003623", - "question_id": 21150, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008489", - "question_id": 21152, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007399", - "question_id": 21153, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005952", - "question_id": 21155, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006150", - "question_id": 21156, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003830", - "question_id": 21157, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000019", - "question_id": 21160, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006398", - "question_id": 21161, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000070", - "question_id": 21162, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008678", - "question_id": 21163, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002676", - "question_id": 21165, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008299", - "question_id": 21167, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007855", - "question_id": 21168, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008083", - "question_id": 21172, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00001623", - "question_id": 21175, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002059", - "question_id": 21176, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001399", - "question_id": 21178, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"drum\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002899", - "question_id": 21180, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001452", - "question_id": 21181, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005281", - "question_id": 21182, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002385", - "question_id": 21183, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005141", - "question_id": 21185, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001025", - "question_id": 21186, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008635", - "question_id": 21187, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007984", - "question_id": 21188, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001535", - "question_id": 21189, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002688", - "question_id": 21190, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008758", - "question_id": 21191, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001403", - "question_id": 21193, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003803", - "question_id": 21194, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006176", - "question_id": 21195, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003377", - "question_id": 21196, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001560", - "question_id": 21197, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000674", - "question_id": 21198, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003228", - "question_id": 21199, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003118", - "question_id": 21200, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001885", - "question_id": 21201, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00008924", - "question_id": 21202, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003783", - "question_id": 21203, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001560", - "question_id": 21204, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006230", - "question_id": 21206, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006691", - "question_id": 21208, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00007222", - "question_id": 21209, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006509", - "question_id": 21210, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002857", - "question_id": 21211, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000370", - "question_id": 21212, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00007526", - "question_id": 21213, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001086", - "question_id": 21216, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00005424", - "question_id": 21218, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002367", - "question_id": 21219, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005993", - "question_id": 21220, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000928", - "question_id": 21222, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00007896", - "question_id": 21223, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003308", - "question_id": 21225, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001579", - "question_id": 21226, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00008099", - "question_id": 21227, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008698", - "question_id": 21229, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007187", - "question_id": 21231, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006338", - "question_id": 21232, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00004613", - "question_id": 21234, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00007122", - "question_id": 21235, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004429", - "question_id": 21236, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003536", - "question_id": 21237, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004755", - "question_id": 21238, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006527", - "question_id": 21240, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00003277", - "question_id": 21242, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001375", - "question_id": 21243, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002372", - "question_id": 21244, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007014", - "question_id": 21245, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005603", - "question_id": 21246, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005410", - "question_id": 21247, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004577", - "question_id": 21248, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006561", - "question_id": 21249, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008940", - "question_id": 21250, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005489", - "question_id": 21251, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008122", - "question_id": 21252, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00008932", - "question_id": 21254, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006430", - "question_id": 21255, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005768", - "question_id": 21258, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001998", - "question_id": 21259, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007300", - "question_id": 21260, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008856", - "question_id": 21261, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"middle\", \"pipa\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005066", - "question_id": 21262, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001854", - "question_id": 21263, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005847", - "question_id": 21264, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005645", - "question_id": 21265, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006347", - "question_id": 21266, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002175", - "question_id": 21269, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007480", - "question_id": 21270, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007902", - "question_id": 21272, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007743", - "question_id": 21273, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002497", - "question_id": 21275, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007837", - "question_id": 21278, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000591", - "question_id": 21279, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008803", - "question_id": 21281, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00002402", - "question_id": 21282, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006075", - "question_id": 21283, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002654", - "question_id": 21284, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003317", - "question_id": 21285, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005963", - "question_id": 21287, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007757", - "question_id": 21290, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002903", - "question_id": 21291, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008145", - "question_id": 21292, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006365", - "question_id": 21293, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005689", - "question_id": 21295, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003242", - "question_id": 21297, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000919", - "question_id": 21298, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00004859", - "question_id": 21299, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000470", - "question_id": 21300, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006267", - "question_id": 21302, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000449", - "question_id": 21303, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002541", - "question_id": 21304, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00005362", - "question_id": 21305, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005592", - "question_id": 21306, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00004062", - "question_id": 21307, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006897", - "question_id": 21308, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006641", - "question_id": 21312, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005185", - "question_id": 21313, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003097", - "question_id": 21314, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006275", - "question_id": 21315, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00002069", - "question_id": 21316, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00003414", - "question_id": 21317, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008687", - "question_id": 21318, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004527", - "question_id": 21319, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008465", - "question_id": 21323, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000626", - "question_id": 21324, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007111", - "question_id": 21326, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006413", - "question_id": 21327, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00008629", - "question_id": 21328, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00004093", - "question_id": 21330, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008615", - "question_id": 21331, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005443", - "question_id": 21332, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00004094", - "question_id": 21333, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00001114", - "question_id": 21334, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004650", - "question_id": 21335, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002211", - "question_id": 21337, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004189", - "question_id": 21341, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002586", - "question_id": 21343, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004935", - "question_id": 21344, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00004152", - "question_id": 21346, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004115", - "question_id": 21347, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001741", - "question_id": 21348, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006037", - "question_id": 21349, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007399", - "question_id": 21350, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005977", - "question_id": 21351, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006514", - "question_id": 21352, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000709", - "question_id": 21353, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003038", - "question_id": 21356, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005874", - "question_id": 21357, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003991", - "question_id": 21361, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000686", - "question_id": 21362, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000778", - "question_id": 21363, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007038", - "question_id": 21364, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00008823", - "question_id": 21366, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006463", - "question_id": 21367, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002636", - "question_id": 21368, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007415", - "question_id": 21369, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003294", - "question_id": 21370, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008337", - "question_id": 21371, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002604", - "question_id": 21373, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004379", - "question_id": 21376, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000126", - "question_id": 21378, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002816", - "question_id": 21380, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001547", - "question_id": 21381, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002899", - "question_id": 21385, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000961", - "question_id": 21387, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003111", - "question_id": 21389, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005128", - "question_id": 21390, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002905", - "question_id": 21392, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006807", - "question_id": 21393, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008339", - "question_id": 21394, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000692", - "question_id": 21395, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002354", - "question_id": 21396, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004202", - "question_id": 21399, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005216", - "question_id": 21400, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000672", - "question_id": 21401, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00002714", - "question_id": 21402, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00000797", - "question_id": 21405, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003287", - "question_id": 21406, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008932", - "question_id": 21407, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004752", - "question_id": 21408, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002744", - "question_id": 21410, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"right\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002623", - "question_id": 21411, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003355", - "question_id": 21413, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003318", - "question_id": 21414, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003879", - "question_id": 21415, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00004483", - "question_id": 21416, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008923", - "question_id": 21418, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002367", - "question_id": 21422, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008172", - "question_id": 21423, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000859", - "question_id": 21424, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003426", - "question_id": 21425, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006616", - "question_id": 21427, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003809", - "question_id": 21428, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007437", - "question_id": 21430, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003399", - "question_id": 21431, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003238", - "question_id": 21432, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008463", - "question_id": 21433, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004917", - "question_id": 21434, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007197", - "question_id": 21435, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004234", - "question_id": 21438, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005282", - "question_id": 21439, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006806", - "question_id": 21440, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000070", - "question_id": 21441, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00008283", - "question_id": 21442, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003231", - "question_id": 21443, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005903", - "question_id": 21444, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008939", - "question_id": 21445, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006855", - "question_id": 21446, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00000325", - "question_id": 21447, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001402", - "question_id": 21449, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003199", - "question_id": 21452, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"accordion\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006579", - "question_id": 21454, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001429", - "question_id": 21455, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001668", - "question_id": 21456, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002013", - "question_id": 21457, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00003261", - "question_id": 21459, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00005474", - "question_id": 21460, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004375", - "question_id": 21461, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006504", - "question_id": 21462, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006939", - "question_id": 21463, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005841", - "question_id": 21465, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"xylophone\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004661", - "question_id": 21466, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"pipa\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000744", - "question_id": 21467, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007818", - "question_id": 21468, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003572", - "question_id": 21469, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005600", - "question_id": 21470, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000135", - "question_id": 21472, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006674", - "question_id": 21473, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002056", - "question_id": 21474, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008891", - "question_id": 21477, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001132", - "question_id": 21479, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001233", - "question_id": 21484, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004444", - "question_id": 21488, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004270", - "question_id": 21489, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00001829", - "question_id": 21490, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007520", - "question_id": 21491, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006174", - "question_id": 21492, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005864", - "question_id": 21493, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006362", - "question_id": 21494, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001111", - "question_id": 21495, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004397", - "question_id": 21496, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001345", - "question_id": 21497, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006320", - "question_id": 21502, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001129", - "question_id": 21504, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004662", - "question_id": 21506, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005217", - "question_id": 21508, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001982", - "question_id": 21511, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002142", - "question_id": 21512, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008304", - "question_id": 21513, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003124", - "question_id": 21514, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000746", - "question_id": 21515, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007393", - "question_id": 21516, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004323", - "question_id": 21517, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003571", - "question_id": 21518, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002516", - "question_id": 21519, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000783", - "question_id": 21524, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006702", - "question_id": 21528, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002491", - "question_id": 21529, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008095", - "question_id": 21530, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000870", - "question_id": 21532, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001364", - "question_id": 21533, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002029", - "question_id": 21536, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005431", - "question_id": 21537, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005593", - "question_id": 21539, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002005", - "question_id": 21540, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005168", - "question_id": 21543, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008742", - "question_id": 21544, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004685", - "question_id": 21545, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000534", - "question_id": 21547, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007381", - "question_id": 21548, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001344", - "question_id": 21551, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004278", - "question_id": 21552, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003848", - "question_id": 21553, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000865", - "question_id": 21554, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005422", - "question_id": 21557, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004885", - "question_id": 21558, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008414", - "question_id": 21559, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002590", - "question_id": 21560, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008172", - "question_id": 21561, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000069", - "question_id": 21563, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005799", - "question_id": 21564, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005799", - "question_id": 21564, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006501", - "question_id": 21565, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007252", - "question_id": 21569, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003210", - "question_id": 21570, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007808", - "question_id": 21572, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001699", - "question_id": 21573, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00007871", - "question_id": 21575, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007905", - "question_id": 21576, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008862", - "question_id": 21577, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001009", - "question_id": 21578, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001009", - "question_id": 21578, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005672", - "question_id": 21582, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002230", - "question_id": 21583, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"xylophone\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00003463", - "question_id": 21584, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003097", - "question_id": 21585, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008890", - "question_id": 21588, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006750", - "question_id": 21589, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001083", - "question_id": 21592, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001250", - "question_id": 21593, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005924", - "question_id": 21594, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008166", - "question_id": 21595, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000108", - "question_id": 21596, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001884", - "question_id": 21597, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006414", - "question_id": 21600, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002554", - "question_id": 21601, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007259", - "question_id": 21602, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002180", - "question_id": 21603, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00008977", - "question_id": 21604, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005051", - "question_id": 21607, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006974", - "question_id": 21609, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000246", - "question_id": 21610, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002065", - "question_id": 21611, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003146", - "question_id": 21613, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008801", - "question_id": 21615, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003557", - "question_id": 21616, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000244", - "question_id": 21623, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004500", - "question_id": 21624, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007541", - "question_id": 21626, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001974", - "question_id": 21627, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00006938", - "question_id": 21628, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001537", - "question_id": 21630, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008148", - "question_id": 21631, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008592", - "question_id": 21632, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000814", - "question_id": 21634, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002823", - "question_id": 21636, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008604", - "question_id": 21637, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00002403", - "question_id": 21638, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00004347", - "question_id": 21642, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002715", - "question_id": 21643, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003880", - "question_id": 21644, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003485", - "question_id": 21646, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002575", - "question_id": 21647, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008709", - "question_id": 21648, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007372", - "question_id": 21650, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000510", - "question_id": 21652, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00006664", - "question_id": 21653, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003048", - "question_id": 21655, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005543", - "question_id": 21656, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003941", - "question_id": 21658, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008239", - "question_id": 21659, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006733", - "question_id": 21660, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006181", - "question_id": 21661, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001625", - "question_id": 21662, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004323", - "question_id": 21663, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002501", - "question_id": 21665, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007957", - "question_id": 21666, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005245", - "question_id": 21667, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00000182", - "question_id": 21668, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001822", - "question_id": 21669, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005285", - "question_id": 21670, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004471", - "question_id": 21671, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004884", - "question_id": 21672, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008962", - "question_id": 21673, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004446", - "question_id": 21674, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007306", - "question_id": 21675, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005300", - "question_id": 21676, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003086", - "question_id": 21678, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007041", - "question_id": 21679, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000763", - "question_id": 21680, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008507", - "question_id": 21681, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004179", - "question_id": 21683, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001405", - "question_id": 21685, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007362", - "question_id": 21686, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002984", - "question_id": 21687, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"trumpet\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003024", - "question_id": 21688, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00006991", - "question_id": 21689, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000691", - "question_id": 21690, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001817", - "question_id": 21691, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001774", - "question_id": 21692, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00006487", - "question_id": 21693, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002582", - "question_id": 21694, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007899", - "question_id": 21695, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004537", - "question_id": 21696, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005439", - "question_id": 21697, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003990", - "question_id": 21698, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00008214", - "question_id": 21699, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005139", - "question_id": 21700, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003560", - "question_id": 21701, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005445", - "question_id": 21702, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003801", - "question_id": 21703, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005710", - "question_id": 21704, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002831", - "question_id": 21706, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000594", - "question_id": 21707, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007996", - "question_id": 21708, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007546", - "question_id": 21709, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00008669", - "question_id": 21711, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006118", - "question_id": 21714, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004754", - "question_id": 21715, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006562", - "question_id": 21716, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001729", - "question_id": 21718, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008702", - "question_id": 21719, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006151", - "question_id": 21720, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00004973", - "question_id": 21721, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005990", - "question_id": 21722, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006963", - "question_id": 21723, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001930", - "question_id": 21724, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004755", - "question_id": 21725, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002028", - "question_id": 21726, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003238", - "question_id": 21728, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008476", - "question_id": 21729, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00000067", - "question_id": 21731, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000493", - "question_id": 21732, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000847", - "question_id": 21733, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000631", - "question_id": 21734, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006433", - "question_id": 21735, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00008782", - "question_id": 21736, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005116", - "question_id": 21737, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00007239", - "question_id": 21739, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008384", - "question_id": 21740, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001975", - "question_id": 21741, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007961", - "question_id": 21742, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003177", - "question_id": 21743, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00005658", - "question_id": 21745, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001718", - "question_id": 21746, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005319", - "question_id": 21747, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007859", - "question_id": 21749, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005815", - "question_id": 21750, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006397", - "question_id": 21751, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003233", - "question_id": 21752, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002521", - "question_id": 21754, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005947", - "question_id": 21759, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005101", - "question_id": 21760, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007862", - "question_id": 21761, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006969", - "question_id": 21762, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006662", - "question_id": 21763, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000727", - "question_id": 21765, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007160", - "question_id": 21767, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001588", - "question_id": 21768, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005976", - "question_id": 21769, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000562", - "question_id": 21770, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007524", - "question_id": 21772, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"fourth\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00002685", - "question_id": 21773, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003358", - "question_id": 21774, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006034", - "question_id": 21775, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002394", - "question_id": 21777, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002481", - "question_id": 21781, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005452", - "question_id": 21784, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006895", - "question_id": 21785, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000734", - "question_id": 21786, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005118", - "question_id": 21788, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005762", - "question_id": 21790, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005814", - "question_id": 21791, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006425", - "question_id": 21792, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003407", - "question_id": 21793, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00001158", - "question_id": 21794, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005327", - "question_id": 21795, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007295", - "question_id": 21796, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"acoustic_guitar\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000993", - "question_id": 21797, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003370", - "question_id": 21798, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001413", - "question_id": 21799, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001413", - "question_id": 21799, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002566", - "question_id": 21801, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00002409", - "question_id": 21803, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003787", - "question_id": 21804, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006448", - "question_id": 21806, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008534", - "question_id": 21807, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003176", - "question_id": 21809, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00005951", - "question_id": 21814, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002485", - "question_id": 21815, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002485", - "question_id": 21815, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006351", - "question_id": 21817, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00000007", - "question_id": 21818, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000910", - "question_id": 21820, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00002160", - "question_id": 21822, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002902", - "question_id": 21823, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000616", - "question_id": 21824, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001864", - "question_id": 21825, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001504", - "question_id": 21826, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006183", - "question_id": 21827, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003194", - "question_id": 21828, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00007249", - "question_id": 21829, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004292", - "question_id": 21831, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006401", - "question_id": 21833, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003783", - "question_id": 21835, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004776", - "question_id": 21837, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00007018", - "question_id": 21839, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000560", - "question_id": 21841, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002551", - "question_id": 21842, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004991", - "question_id": 21843, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002925", - "question_id": 21844, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00001791", - "question_id": 21846, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001538", - "question_id": 21848, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007797", - "question_id": 21849, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002600", - "question_id": 21850, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007129", - "question_id": 21851, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004181", - "question_id": 21852, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006765", - "question_id": 21854, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004560", - "question_id": 21856, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004314", - "question_id": 21858, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004006", - "question_id": 21862, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00007767", - "question_id": 21863, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001233", - "question_id": 21866, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003911", - "question_id": 21867, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006945", - "question_id": 21868, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001647", - "question_id": 21869, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005032", - "question_id": 21870, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001420", - "question_id": 21871, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005555", - "question_id": 21872, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001602", - "question_id": 21873, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004372", - "question_id": 21874, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00003901", - "question_id": 21875, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006535", - "question_id": 21876, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000315", - "question_id": 21877, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006499", - "question_id": 21878, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003697", - "question_id": 21879, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007645", - "question_id": 21880, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007400", - "question_id": 21881, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "ten" -}, { - "video_id": "00004510", - "question_id": 21883, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005388", - "question_id": 21886, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000928", - "question_id": 21887, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008681", - "question_id": 21888, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006701", - "question_id": 21889, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005412", - "question_id": 21891, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006217", - "question_id": 21892, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00000632", - "question_id": 21893, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007017", - "question_id": 21895, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007878", - "question_id": 21896, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001502", - "question_id": 21897, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00006245", - "question_id": 21898, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003192", - "question_id": 21899, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003096", - "question_id": 21901, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008663", - "question_id": 21902, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008018", - "question_id": 21903, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004540", - "question_id": 21904, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005136", - "question_id": 21905, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000458", - "question_id": 21906, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002617", - "question_id": 21908, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002419", - "question_id": 21912, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004090", - "question_id": 21913, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003854", - "question_id": 21914, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001973", - "question_id": 21916, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00006117", - "question_id": 21917, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00000982", - "question_id": 21918, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001440", - "question_id": 21920, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006726", - "question_id": 21922, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005546", - "question_id": 21923, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003956", - "question_id": 21924, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005619", - "question_id": 21927, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00004348", - "question_id": 21929, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002970", - "question_id": 21931, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00006636", - "question_id": 21932, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005954", - "question_id": 21934, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008873", - "question_id": 21935, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002783", - "question_id": 21936, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007074", - "question_id": 21938, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001827", - "question_id": 21940, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004613", - "question_id": 21941, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000526", - "question_id": 21942, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001829", - "question_id": 21943, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006389", - "question_id": 21944, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000841", - "question_id": 21945, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004734", - "question_id": 21946, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001671", - "question_id": 21947, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00003483", - "question_id": 21950, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006768", - "question_id": 21951, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008239", - "question_id": 21952, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00001663", - "question_id": 21953, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001862", - "question_id": 21954, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000726", - "question_id": 21955, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00001965", - "question_id": 21957, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001577", - "question_id": 21958, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004471", - "question_id": 21959, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004872", - "question_id": 21963, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002108", - "question_id": 21965, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003436", - "question_id": 21966, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005546", - "question_id": 21967, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001430", - "question_id": 21969, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002346", - "question_id": 21970, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004445", - "question_id": 21971, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001001", - "question_id": 21972, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00002177", - "question_id": 21974, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005832", - "question_id": 21976, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002381", - "question_id": 21977, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005803", - "question_id": 21978, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003954", - "question_id": 21979, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001406", - "question_id": 21980, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001700", - "question_id": 21981, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002843", - "question_id": 21982, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000464", - "question_id": 21983, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004658", - "question_id": 21985, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003593", - "question_id": 21986, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00003666", - "question_id": 21987, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00000517", - "question_id": 21989, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000949", - "question_id": 21990, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005868", - "question_id": 21993, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007443", - "question_id": 21994, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004919", - "question_id": 21996, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003978", - "question_id": 21997, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008816", - "question_id": 21998, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008448", - "question_id": 22002, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000889", - "question_id": 22003, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000955", - "question_id": 22004, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006196", - "question_id": 22005, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00004816", - "question_id": 22006, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003818", - "question_id": 22007, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004680", - "question_id": 22008, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000251", - "question_id": 22009, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000129", - "question_id": 22010, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002535", - "question_id": 22011, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003980", - "question_id": 22013, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002321", - "question_id": 22015, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006152", - "question_id": 22016, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001366", - "question_id": 22017, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006035", - "question_id": 22018, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002706", - "question_id": 22020, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003218", - "question_id": 22021, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005803", - "question_id": 22022, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007013", - "question_id": 22023, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007034", - "question_id": 22024, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00007174", - "question_id": 22025, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008509", - "question_id": 22028, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001624", - "question_id": 22029, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001853", - "question_id": 22030, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003709", - "question_id": 22031, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002795", - "question_id": 22032, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001961", - "question_id": 22033, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00007625", - "question_id": 22034, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004124", - "question_id": 22039, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001040", - "question_id": 22040, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004964", - "question_id": 22041, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005752", - "question_id": 22042, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006433", - "question_id": 22043, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008078", - "question_id": 22045, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005087", - "question_id": 22046, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00008655", - "question_id": 22047, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006279", - "question_id": 22048, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007550", - "question_id": 22049, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00000601", - "question_id": 22051, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003525", - "question_id": 22052, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00005021", - "question_id": 22054, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00006106", - "question_id": 22055, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00002247", - "question_id": 22056, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003600", - "question_id": 22057, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000076", - "question_id": 22059, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004607", - "question_id": 22060, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007791", - "question_id": 22063, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008504", - "question_id": 22064, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006892", - "question_id": 22065, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004022", - "question_id": 22066, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002842", - "question_id": 22067, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002595", - "question_id": 22068, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006327", - "question_id": 22069, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004044", - "question_id": 22070, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002609", - "question_id": 22072, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002364", - "question_id": 22074, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008453", - "question_id": 22075, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002148", - "question_id": 22076, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000344", - "question_id": 22077, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001205", - "question_id": 22079, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005127", - "question_id": 22082, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008227", - "question_id": 22083, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008354", - "question_id": 22084, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004348", - "question_id": 22085, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002113", - "question_id": 22086, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004849", - "question_id": 22088, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000176", - "question_id": 22090, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008531", - "question_id": 22091, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00002835", - "question_id": 22092, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00000075", - "question_id": 22095, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001302", - "question_id": 22097, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003402", - "question_id": 22099, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007100", - "question_id": 22102, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004651", - "question_id": 22103, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00008945", - "question_id": 22104, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"pipa\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003630", - "question_id": 22105, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001488", - "question_id": 22107, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003266", - "question_id": 22109, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00001577", - "question_id": 22111, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007527", - "question_id": 22112, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000334", - "question_id": 22113, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008346", - "question_id": 22115, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007941", - "question_id": 22117, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008820", - "question_id": 22118, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001051", - "question_id": 22119, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000999", - "question_id": 22122, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004861", - "question_id": 22124, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000496", - "question_id": 22126, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008892", - "question_id": 22129, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001835", - "question_id": 22130, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006992", - "question_id": 22133, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00005585", - "question_id": 22134, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002836", - "question_id": 22135, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006319", - "question_id": 22136, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008335", - "question_id": 22137, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006887", - "question_id": 22138, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006902", - "question_id": 22141, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001408", - "question_id": 22142, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000316", - "question_id": 22143, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008126", - "question_id": 22145, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003215", - "question_id": 22146, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000972", - "question_id": 22147, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005381", - "question_id": 22148, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008792", - "question_id": 22149, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008561", - "question_id": 22150, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006982", - "question_id": 22151, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001955", - "question_id": 22152, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004115", - "question_id": 22153, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00000727", - "question_id": 22154, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004262", - "question_id": 22155, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00000964", - "question_id": 22156, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003371", - "question_id": 22157, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001009", - "question_id": 22158, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002108", - "question_id": 22159, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008938", - "question_id": 22160, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005155", - "question_id": 22161, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007597", - "question_id": 22162, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008770", - "question_id": 22164, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003729", - "question_id": 22165, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00004388", - "question_id": 22167, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005179", - "question_id": 22169, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003528", - "question_id": 22171, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001566", - "question_id": 22172, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00003723", - "question_id": 22173, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001418", - "question_id": 22175, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007691", - "question_id": 22176, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006502", - "question_id": 22177, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004382", - "question_id": 22179, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003875", - "question_id": 22181, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001616", - "question_id": 22182, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001160", - "question_id": 22183, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004191", - "question_id": 22184, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003069", - "question_id": 22185, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006504", - "question_id": 22186, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004245", - "question_id": 22187, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007367", - "question_id": 22188, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002185", - "question_id": 22189, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00008675", - "question_id": 22190, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002519", - "question_id": 22191, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007939", - "question_id": 22192, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008896", - "question_id": 22193, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006044", - "question_id": 22194, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004757", - "question_id": 22195, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007797", - "question_id": 22196, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007431", - "question_id": 22197, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007838", - "question_id": 22198, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001139", - "question_id": 22199, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001670", - "question_id": 22200, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"xylophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002287", - "question_id": 22201, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007168", - "question_id": 22203, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003794", - "question_id": 22205, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000629", - "question_id": 22206, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00001007", - "question_id": 22207, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"xylophone\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006166", - "question_id": 22208, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008325", - "question_id": 22210, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004783", - "question_id": 22213, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006246", - "question_id": 22215, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00004447", - "question_id": 22216, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004026", - "question_id": 22217, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004026", - "question_id": 22217, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005095", - "question_id": 22218, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001246", - "question_id": 22219, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006915", - "question_id": 22223, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002477", - "question_id": 22225, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003560", - "question_id": 22227, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002412", - "question_id": 22228, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007950", - "question_id": 22230, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00000534", - "question_id": 22232, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002310", - "question_id": 22233, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003850", - "question_id": 22234, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003039", - "question_id": 22235, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000952", - "question_id": 22237, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005614", - "question_id": 22238, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008084", - "question_id": 22240, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004221", - "question_id": 22241, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004256", - "question_id": 22243, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004185", - "question_id": 22244, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008168", - "question_id": 22245, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001296", - "question_id": 22246, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004244", - "question_id": 22247, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002600", - "question_id": 22248, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006339", - "question_id": 22249, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006273", - "question_id": 22250, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001199", - "question_id": 22251, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007123", - "question_id": 22252, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008880", - "question_id": 22253, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007133", - "question_id": 22254, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004098", - "question_id": 22255, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000818", - "question_id": 22257, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001727", - "question_id": 22258, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007567", - "question_id": 22259, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000288", - "question_id": 22261, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003338", - "question_id": 22262, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000763", - "question_id": 22265, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003331", - "question_id": 22266, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003610", - "question_id": 22269, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000259", - "question_id": 22270, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001834", - "question_id": 22272, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000689", - "question_id": 22274, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001729", - "question_id": 22275, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003596", - "question_id": 22276, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004347", - "question_id": 22277, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006821", - "question_id": 22279, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007571", - "question_id": 22280, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008179", - "question_id": 22281, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006624", - "question_id": 22284, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003994", - "question_id": 22286, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008962", - "question_id": 22288, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008531", - "question_id": 22289, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007372", - "question_id": 22290, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007728", - "question_id": 22291, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005357", - "question_id": 22293, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002481", - "question_id": 22294, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008929", - "question_id": 22295, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005123", - "question_id": 22297, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000678", - "question_id": 22298, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003905", - "question_id": 22300, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004961", - "question_id": 22301, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008282", - "question_id": 22302, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003375", - "question_id": 22303, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004372", - "question_id": 22304, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004091", - "question_id": 22306, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005516", - "question_id": 22309, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008460", - "question_id": 22310, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00007892", - "question_id": 22312, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008598", - "question_id": 22313, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "eight" -}, { - "video_id": "00008711", - "question_id": 22315, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007277", - "question_id": 22316, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000253", - "question_id": 22317, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00000962", - "question_id": 22319, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002249", - "question_id": 22320, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006440", - "question_id": 22321, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008453", - "question_id": 22322, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000149", - "question_id": 22323, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002606", - "question_id": 22324, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003469", - "question_id": 22325, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007940", - "question_id": 22328, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006852", - "question_id": 22329, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008562", - "question_id": 22330, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00008850", - "question_id": 22332, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003321", - "question_id": 22333, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00000464", - "question_id": 22334, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007616", - "question_id": 22338, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005934", - "question_id": 22339, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001323", - "question_id": 22340, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002575", - "question_id": 22342, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007604", - "question_id": 22343, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00001812", - "question_id": 22344, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001115", - "question_id": 22345, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007253", - "question_id": 22346, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002723", - "question_id": 22347, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007969", - "question_id": 22350, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008303", - "question_id": 22351, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005815", - "question_id": 22352, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005252", - "question_id": 22354, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004456", - "question_id": 22356, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004065", - "question_id": 22357, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001818", - "question_id": 22358, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004467", - "question_id": 22359, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000264", - "question_id": 22360, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002269", - "question_id": 22362, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004890", - "question_id": 22364, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002765", - "question_id": 22365, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002400", - "question_id": 22366, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000951", - "question_id": 22367, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003706", - "question_id": 22371, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00007620", - "question_id": 22373, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003395", - "question_id": 22374, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00008271", - "question_id": 22376, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005745", - "question_id": 22379, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008474", - "question_id": 22385, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008585", - "question_id": 22386, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007097", - "question_id": 22387, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007628", - "question_id": 22388, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005702", - "question_id": 22389, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008925", - "question_id": 22390, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008085", - "question_id": 22391, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005435", - "question_id": 22392, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002819", - "question_id": 22393, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00000481", - "question_id": 22394, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006702", - "question_id": 22395, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002687", - "question_id": 22397, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007014", - "question_id": 22399, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008399", - "question_id": 22400, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00006048", - "question_id": 22401, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007039", - "question_id": 22403, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008046", - "question_id": 22404, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007980", - "question_id": 22406, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003373", - "question_id": 22407, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006234", - "question_id": 22408, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007493", - "question_id": 22411, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002646", - "question_id": 22412, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002631", - "question_id": 22413, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003519", - "question_id": 22414, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004749", - "question_id": 22415, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000372", - "question_id": 22416, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007150", - "question_id": 22417, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005869", - "question_id": 22418, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00001309", - "question_id": 22419, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008266", - "question_id": 22420, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005006", - "question_id": 22422, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000561", - "question_id": 22423, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008459", - "question_id": 22425, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "seven" -}, { - "video_id": "00002891", - "question_id": 22427, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001315", - "question_id": 22428, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002857", - "question_id": 22429, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006637", - "question_id": 22431, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000985", - "question_id": 22432, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008024", - "question_id": 22435, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00003143", - "question_id": 22436, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000098", - "question_id": 22438, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008536", - "question_id": 22439, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006053", - "question_id": 22441, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000167", - "question_id": 22444, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008624", - "question_id": 22445, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002473", - "question_id": 22446, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001179", - "question_id": 22447, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001088", - "question_id": 22450, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001988", - "question_id": 22452, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007682", - "question_id": 22453, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008271", - "question_id": 22454, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00000408", - "question_id": 22455, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004264", - "question_id": 22456, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007128", - "question_id": 22457, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00005629", - "question_id": 22458, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005496", - "question_id": 22461, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005739", - "question_id": 22464, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00003391", - "question_id": 22465, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003218", - "question_id": 22466, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006744", - "question_id": 22468, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006418", - "question_id": 22469, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004915", - "question_id": 22470, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007343", - "question_id": 22471, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003395", - "question_id": 22473, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007046", - "question_id": 22475, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005781", - "question_id": 22476, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008633", - "question_id": 22478, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004685", - "question_id": 22479, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005959", - "question_id": 22480, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006699", - "question_id": 22481, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000915", - "question_id": 22482, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003778", - "question_id": 22484, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008801", - "question_id": 22485, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003787", - "question_id": 22487, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001525", - "question_id": 22488, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004850", - "question_id": 22490, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008519", - "question_id": 22494, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00005122", - "question_id": 22497, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007422", - "question_id": 22498, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004398", - "question_id": 22500, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004828", - "question_id": 22502, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007162", - "question_id": 22505, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005841", - "question_id": 22506, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001914", - "question_id": 22508, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001944", - "question_id": 22511, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007592", - "question_id": 22512, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008767", - "question_id": 22513, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006809", - "question_id": 22516, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00006469", - "question_id": 22517, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006100", - "question_id": 22518, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007441", - "question_id": 22519, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"electric_bass\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008073", - "question_id": 22520, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007226", - "question_id": 22522, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000071", - "question_id": 22526, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001094", - "question_id": 22528, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003316", - "question_id": 22529, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007241", - "question_id": 22530, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006788", - "question_id": 22531, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002876", - "question_id": 22532, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00007906", - "question_id": 22533, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004139", - "question_id": 22535, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001899", - "question_id": 22536, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000819", - "question_id": 22539, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002163", - "question_id": 22541, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003323", - "question_id": 22544, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003406", - "question_id": 22545, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007485", - "question_id": 22546, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003835", - "question_id": 22547, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004904", - "question_id": 22549, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002265", - "question_id": 22550, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007816", - "question_id": 22551, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00005202", - "question_id": 22553, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003432", - "question_id": 22554, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001169", - "question_id": 22555, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006732", - "question_id": 22556, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006742", - "question_id": 22557, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002079", - "question_id": 22560, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00003537", - "question_id": 22561, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005366", - "question_id": 22562, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001911", - "question_id": 22563, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004691", - "question_id": 22564, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000429", - "question_id": 22565, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006188", - "question_id": 22566, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000985", - "question_id": 22567, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008714", - "question_id": 22568, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006704", - "question_id": 22569, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008550", - "question_id": 22570, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005464", - "question_id": 22572, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008381", - "question_id": 22573, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006353", - "question_id": 22575, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007773", - "question_id": 22576, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006323", - "question_id": 22577, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003868", - "question_id": 22578, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000424", - "question_id": 22580, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006630", - "question_id": 22581, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004739", - "question_id": 22582, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007304", - "question_id": 22583, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008262", - "question_id": 22584, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003149", - "question_id": 22587, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000890", - "question_id": 22588, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007786", - "question_id": 22591, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004064", - "question_id": 22593, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003863", - "question_id": 22595, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008502", - "question_id": 22596, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007986", - "question_id": 22599, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002132", - "question_id": 22600, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003695", - "question_id": 22601, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000986", - "question_id": 22602, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006700", - "question_id": 22603, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00001508", - "question_id": 22604, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002062", - "question_id": 22605, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005776", - "question_id": 22606, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004472", - "question_id": 22607, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007260", - "question_id": 22610, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00003832", - "question_id": 22611, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007013", - "question_id": 22612, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00000573", - "question_id": 22616, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002235", - "question_id": 22617, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006674", - "question_id": 22619, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00006259", - "question_id": 22620, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006473", - "question_id": 22621, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007945", - "question_id": 22624, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001541", - "question_id": 22625, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00008147", - "question_id": 22626, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002816", - "question_id": 22628, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00005608", - "question_id": 22629, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003864", - "question_id": 22630, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006334", - "question_id": 22632, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007092", - "question_id": 22634, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008441", - "question_id": 22635, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008112", - "question_id": 22637, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008731", - "question_id": 22639, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003720", - "question_id": 22642, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00003189", - "question_id": 22644, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00003656", - "question_id": 22646, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006760", - "question_id": 22647, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002945", - "question_id": 22649, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008084", - "question_id": 22650, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00002417", - "question_id": 22652, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005852", - "question_id": 22653, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008031", - "question_id": 22655, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000305", - "question_id": 22656, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00003655", - "question_id": 22658, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008727", - "question_id": 22662, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002034", - "question_id": 22664, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008455", - "question_id": 22665, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00004460", - "question_id": 22667, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006788", - "question_id": 22668, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000546", - "question_id": 22669, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003953", - "question_id": 22670, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006917", - "question_id": 22671, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006275", - "question_id": 22673, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001562", - "question_id": 22674, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004356", - "question_id": 22675, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006192", - "question_id": 22676, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001323", - "question_id": 22677, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003067", - "question_id": 22679, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00002557", - "question_id": 22680, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000742", - "question_id": 22681, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007892", - "question_id": 22682, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004763", - "question_id": 22683, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008890", - "question_id": 22685, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001269", - "question_id": 22686, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000789", - "question_id": 22687, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001391", - "question_id": 22688, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002999", - "question_id": 22689, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005239", - "question_id": 22690, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008502", - "question_id": 22693, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006104", - "question_id": 22694, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005036", - "question_id": 22697, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000861", - "question_id": 22698, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000718", - "question_id": 22700, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005558", - "question_id": 22703, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006729", - "question_id": 22704, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006011", - "question_id": 22705, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008953", - "question_id": 22706, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002530", - "question_id": 22707, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007289", - "question_id": 22709, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007309", - "question_id": 22710, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006418", - "question_id": 22711, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005003", - "question_id": 22712, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007723", - "question_id": 22713, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005695", - "question_id": 22714, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008600", - "question_id": 22715, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001846", - "question_id": 22716, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006877", - "question_id": 22717, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006056", - "question_id": 22718, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008804", - "question_id": 22719, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001604", - "question_id": 22720, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002625", - "question_id": 22721, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005448", - "question_id": 22722, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00005189", - "question_id": 22723, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002427", - "question_id": 22724, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001648", - "question_id": 22725, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001719", - "question_id": 22726, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00001746", - "question_id": 22727, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005318", - "question_id": 22729, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004662", - "question_id": 22730, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000387", - "question_id": 22732, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003176", - "question_id": 22733, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00000337", - "question_id": 22735, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001634", - "question_id": 22736, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005016", - "question_id": 22738, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008217", - "question_id": 22739, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00007891", - "question_id": 22741, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"congas\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000674", - "question_id": 22742, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006377", - "question_id": 22744, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002717", - "question_id": 22745, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002252", - "question_id": 22746, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005396", - "question_id": 22748, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007100", - "question_id": 22753, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00002317", - "question_id": 22757, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007681", - "question_id": 22758, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008737", - "question_id": 22760, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000004", - "question_id": 22761, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006293", - "question_id": 22762, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006553", - "question_id": 22763, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002926", - "question_id": 22764, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003387", - "question_id": 22765, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007190", - "question_id": 22766, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002706", - "question_id": 22768, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002182", - "question_id": 22769, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004673", - "question_id": 22770, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003134", - "question_id": 22772, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006086", - "question_id": 22773, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004567", - "question_id": 22774, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003646", - "question_id": 22775, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000895", - "question_id": 22776, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000674", - "question_id": 22778, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002250", - "question_id": 22779, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002735", - "question_id": 22780, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005850", - "question_id": 22782, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007764", - "question_id": 22783, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000035", - "question_id": 22784, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004096", - "question_id": 22786, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004334", - "question_id": 22787, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008087", - "question_id": 22789, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"tuba\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004123", - "question_id": 22791, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008725", - "question_id": 22793, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000918", - "question_id": 22794, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00003917", - "question_id": 22795, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001051", - "question_id": 22796, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000014", - "question_id": 22797, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"tuba\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003748", - "question_id": 22799, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00004750", - "question_id": 22801, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006689", - "question_id": 22805, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004455", - "question_id": 22806, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00008886", - "question_id": 22807, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006711", - "question_id": 22808, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003180", - "question_id": 22811, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008935", - "question_id": 22812, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"tuba\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005261", - "question_id": 22813, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004307", - "question_id": 22817, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005269", - "question_id": 22818, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006660", - "question_id": 22819, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008300", - "question_id": 22821, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00000400", - "question_id": 22822, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00000247", - "question_id": 22824, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "seven" -}, { - "video_id": "00001473", - "question_id": 22826, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008537", - "question_id": 22829, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00002500", - "question_id": 22830, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000701", - "question_id": 22832, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007430", - "question_id": 22833, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005484", - "question_id": 22834, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007702", - "question_id": 22837, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000651", - "question_id": 22842, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003625", - "question_id": 22843, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004545", - "question_id": 22847, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001015", - "question_id": 22848, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005557", - "question_id": 22849, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003744", - "question_id": 22850, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002715", - "question_id": 22851, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003021", - "question_id": 22852, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008468", - "question_id": 22853, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004310", - "question_id": 22854, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005417", - "question_id": 22857, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005855", - "question_id": 22858, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004447", - "question_id": 22859, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00008025", - "question_id": 22861, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002067", - "question_id": 22863, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004235", - "question_id": 22866, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004039", - "question_id": 22869, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001064", - "question_id": 22870, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000281", - "question_id": 22871, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00008560", - "question_id": 22873, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008232", - "question_id": 22874, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004316", - "question_id": 22875, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001347", - "question_id": 22876, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001037", - "question_id": 22877, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000571", - "question_id": 22878, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007793", - "question_id": 22880, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000339", - "question_id": 22883, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006301", - "question_id": 22884, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00007391", - "question_id": 22889, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005254", - "question_id": 22890, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001776", - "question_id": 22891, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006029", - "question_id": 22892, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004915", - "question_id": 22893, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008888", - "question_id": 22894, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003916", - "question_id": 22895, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002581", - "question_id": 22899, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003035", - "question_id": 22900, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007121", - "question_id": 22901, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006196", - "question_id": 22906, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "seven" -}, { - "video_id": "00001962", - "question_id": 22907, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006412", - "question_id": 22909, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002924", - "question_id": 22911, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004621", - "question_id": 22912, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007889", - "question_id": 22913, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001297", - "question_id": 22914, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002295", - "question_id": 22916, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002707", - "question_id": 22917, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007765", - "question_id": 22919, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00001981", - "question_id": 22920, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002850", - "question_id": 22921, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000885", - "question_id": 22922, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008238", - "question_id": 22923, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003411", - "question_id": 22924, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001911", - "question_id": 22925, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004487", - "question_id": 22926, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006310", - "question_id": 22927, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001420", - "question_id": 22928, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001292", - "question_id": 22930, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006893", - "question_id": 22931, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004307", - "question_id": 22932, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008592", - "question_id": 22933, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002480", - "question_id": 22934, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006834", - "question_id": 22935, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008309", - "question_id": 22937, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006828", - "question_id": 22940, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001599", - "question_id": 22941, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001602", - "question_id": 22942, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006723", - "question_id": 22944, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006469", - "question_id": 22948, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002424", - "question_id": 22949, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00003354", - "question_id": 22953, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004129", - "question_id": 22954, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002494", - "question_id": 22955, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004381", - "question_id": 22956, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00006624", - "question_id": 22957, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006294", - "question_id": 22959, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00001028", - "question_id": 22962, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00000457", - "question_id": 22963, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004100", - "question_id": 22964, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00005997", - "question_id": 22965, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006626", - "question_id": 22966, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005442", - "question_id": 22967, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000111", - "question_id": 22969, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000918", - "question_id": 22972, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001562", - "question_id": 22973, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002078", - "question_id": 22974, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00000955", - "question_id": 22975, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000780", - "question_id": 22976, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00008192", - "question_id": 22977, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001904", - "question_id": 22978, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000384", - "question_id": 22979, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003643", - "question_id": 22980, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008849", - "question_id": 22983, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005404", - "question_id": 22988, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003142", - "question_id": 22989, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000393", - "question_id": 22990, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001549", - "question_id": 22992, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00003895", - "question_id": 22993, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00004151", - "question_id": 22994, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002345", - "question_id": 22996, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005305", - "question_id": 22997, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001681", - "question_id": 22998, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008258", - "question_id": 22999, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007718", - "question_id": 23000, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003979", - "question_id": 23001, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004312", - "question_id": 23002, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007617", - "question_id": 23003, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000652", - "question_id": 23009, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003008", - "question_id": 23010, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006125", - "question_id": 23011, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007791", - "question_id": 23013, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"guzheng\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00006292", - "question_id": 23015, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002726", - "question_id": 23017, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004738", - "question_id": 23018, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003716", - "question_id": 23019, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004636", - "question_id": 23020, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004461", - "question_id": 23023, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007740", - "question_id": 23024, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006335", - "question_id": 23026, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002187", - "question_id": 23027, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006299", - "question_id": 23028, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00000722", - "question_id": 23031, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00007162", - "question_id": 23035, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00003637", - "question_id": 23037, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002343", - "question_id": 23038, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005829", - "question_id": 23039, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001749", - "question_id": 23040, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001123", - "question_id": 23043, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005484", - "question_id": 23045, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003323", - "question_id": 23047, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00002681", - "question_id": 23049, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005895", - "question_id": 23050, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"xylophone\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007879", - "question_id": 23051, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"congas\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004180", - "question_id": 23053, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002310", - "question_id": 23055, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003200", - "question_id": 23056, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003238", - "question_id": 23057, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000475", - "question_id": 23058, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006254", - "question_id": 23059, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001023", - "question_id": 23060, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001424", - "question_id": 23061, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001609", - "question_id": 23062, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001465", - "question_id": 23063, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005844", - "question_id": 23065, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001206", - "question_id": 23066, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00000398", - "question_id": 23068, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005141", - "question_id": 23069, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001715", - "question_id": 23070, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006482", - "question_id": 23071, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00004785", - "question_id": 23072, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001366", - "question_id": 23073, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"flute\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00001396", - "question_id": 23075, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00000008", - "question_id": 23076, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008026", - "question_id": 23077, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004871", - "question_id": 23079, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008483", - "question_id": 23081, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001798", - "question_id": 23083, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006437", - "question_id": 23084, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000488", - "question_id": 23085, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00007109", - "question_id": 23087, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001032", - "question_id": 23090, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005539", - "question_id": 23091, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001215", - "question_id": 23092, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007538", - "question_id": 23096, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00006864", - "question_id": 23097, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008458", - "question_id": 23098, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007321", - "question_id": 23100, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00008656", - "question_id": 23102, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006411", - "question_id": 23103, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00000331", - "question_id": 23104, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008377", - "question_id": 23106, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003357", - "question_id": 23107, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00007075", - "question_id": 23108, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00008909", - "question_id": 23109, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00000855", - "question_id": 23110, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005893", - "question_id": 23112, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00008810", - "question_id": 23113, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001364", - "question_id": 23114, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000683", - "question_id": 23115, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000241", - "question_id": 23116, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00002261", - "question_id": 23119, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004995", - "question_id": 23120, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00007548", - "question_id": 23121, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004894", - "question_id": 23122, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001152", - "question_id": 23123, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005883", - "question_id": 23124, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003299", - "question_id": 23125, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008947", - "question_id": 23126, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008734", - "question_id": 23128, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001181", - "question_id": 23129, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00007673", - "question_id": 23133, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008542", - "question_id": 23135, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003587", - "question_id": 23137, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005695", - "question_id": 23138, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00000495", - "question_id": 23139, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005937", - "question_id": 23141, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000660", - "question_id": 23142, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004368", - "question_id": 23143, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000397", - "question_id": 23144, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004704", - "question_id": 23147, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007979", - "question_id": 23149, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006132", - "question_id": 23150, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004974", - "question_id": 23151, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001393", - "question_id": 23152, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001668", - "question_id": 23155, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006574", - "question_id": 23156, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00007494", - "question_id": 23157, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002675", - "question_id": 23158, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004719", - "question_id": 23159, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002957", - "question_id": 23160, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003209", - "question_id": 23162, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008583", - "question_id": 23163, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001441", - "question_id": 23164, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00000448", - "question_id": 23165, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003136", - "question_id": 23169, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007179", - "question_id": 23170, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004879", - "question_id": 23173, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008246", - "question_id": 23175, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001277", - "question_id": 23176, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005961", - "question_id": 23178, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008685", - "question_id": 23179, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002181", - "question_id": 23180, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00008964", - "question_id": 23181, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003011", - "question_id": 23182, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00006677", - "question_id": 23183, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001126", - "question_id": 23184, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00000784", - "question_id": 23185, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00007908", - "question_id": 23186, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00007887", - "question_id": 23187, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008725", - "question_id": 23188, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005956", - "question_id": 23189, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004769", - "question_id": 23190, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001351", - "question_id": 23192, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00008064", - "question_id": 23193, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00003428", - "question_id": 23195, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001926", - "question_id": 23196, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004167", - "question_id": 23197, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00004747", - "question_id": 23198, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005767", - "question_id": 23200, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006831", - "question_id": 23201, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006239", - "question_id": 23204, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00000139", - "question_id": 23205, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003766", - "question_id": 23207, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008507", - "question_id": 23209, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00006855", - "question_id": 23210, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003606", - "question_id": 23212, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004203", - "question_id": 23215, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000632", - "question_id": 23216, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004757", - "question_id": 23217, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002543", - "question_id": 23218, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00000309", - "question_id": 23219, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001469", - "question_id": 23220, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000672", - "question_id": 23221, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002970", - "question_id": 23222, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"suona\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002825", - "question_id": 23223, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001854", - "question_id": 23224, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002288", - "question_id": 23225, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000994", - "question_id": 23227, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007933", - "question_id": 23228, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005845", - "question_id": 23229, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007255", - "question_id": 23231, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002576", - "question_id": 23232, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000899", - "question_id": 23233, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003602", - "question_id": 23234, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00005254", - "question_id": 23236, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007575", - "question_id": 23237, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002995", - "question_id": 23238, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004029", - "question_id": 23240, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003036", - "question_id": 23241, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002312", - "question_id": 23244, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004952", - "question_id": 23245, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00000632", - "question_id": 23247, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003501", - "question_id": 23248, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000080", - "question_id": 23250, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001670", - "question_id": 23251, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"xylophone\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00004669", - "question_id": 23252, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001616", - "question_id": 23253, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005978", - "question_id": 23255, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004136", - "question_id": 23256, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007058", - "question_id": 23257, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000790", - "question_id": 23258, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002743", - "question_id": 23259, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007717", - "question_id": 23260, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"ukulele\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001084", - "question_id": 23262, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002525", - "question_id": 23263, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006742", - "question_id": 23264, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004219", - "question_id": 23265, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000947", - "question_id": 23266, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000248", - "question_id": 23267, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"right\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004425", - "question_id": 23268, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00007821", - "question_id": 23270, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003289", - "question_id": 23273, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001083", - "question_id": 23277, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008142", - "question_id": 23279, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00000339", - "question_id": 23282, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004442", - "question_id": 23284, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008519", - "question_id": 23285, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004107", - "question_id": 23286, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006044", - "question_id": 23288, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003469", - "question_id": 23289, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00005641", - "question_id": 23290, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004336", - "question_id": 23294, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001746", - "question_id": 23295, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008335", - "question_id": 23296, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002450", - "question_id": 23299, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00005372", - "question_id": 23300, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004170", - "question_id": 23304, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005575", - "question_id": 23305, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006263", - "question_id": 23306, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003351", - "question_id": 23308, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000864", - "question_id": 23310, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006044", - "question_id": 23312, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002891", - "question_id": 23314, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003251", - "question_id": 23315, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007235", - "question_id": 23318, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005937", - "question_id": 23319, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00008496", - "question_id": 23320, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006929", - "question_id": 23321, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008771", - "question_id": 23322, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002295", - "question_id": 23323, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000197", - "question_id": 23324, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001068", - "question_id": 23325, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006297", - "question_id": 23326, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003387", - "question_id": 23327, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006349", - "question_id": 23330, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000211", - "question_id": 23332, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00002854", - "question_id": 23333, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"tuba\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007213", - "question_id": 23335, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00005840", - "question_id": 23338, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002320", - "question_id": 23339, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006769", - "question_id": 23341, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000288", - "question_id": 23342, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007094", - "question_id": 23343, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00003812", - "question_id": 23345, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004908", - "question_id": 23346, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004099", - "question_id": 23347, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004272", - "question_id": 23350, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002653", - "question_id": 23351, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003978", - "question_id": 23353, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002047", - "question_id": 23354, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004548", - "question_id": 23356, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007688", - "question_id": 23357, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"right\", \"violin\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004468", - "question_id": 23358, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002151", - "question_id": 23359, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004090", - "question_id": 23360, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004667", - "question_id": 23361, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00001956", - "question_id": 23362, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003544", - "question_id": 23363, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"ukulele\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002529", - "question_id": 23365, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00002414", - "question_id": 23367, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007138", - "question_id": 23368, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004589", - "question_id": 23369, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004764", - "question_id": 23371, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006546", - "question_id": 23372, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004337", - "question_id": 23373, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001367", - "question_id": 23376, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007048", - "question_id": 23378, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002164", - "question_id": 23379, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000717", - "question_id": 23381, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001397", - "question_id": 23383, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002506", - "question_id": 23384, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004026", - "question_id": 23385, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004844", - "question_id": 23386, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005063", - "question_id": 23387, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007650", - "question_id": 23388, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00007213", - "question_id": 23389, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000981", - "question_id": 23391, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007996", - "question_id": 23392, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004090", - "question_id": 23393, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007563", - "question_id": 23400, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"drum\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005444", - "question_id": 23402, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007578", - "question_id": 23404, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005974", - "question_id": 23406, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005069", - "question_id": 23407, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006028", - "question_id": 23410, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006993", - "question_id": 23411, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000131", - "question_id": 23412, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004780", - "question_id": 23413, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001481", - "question_id": 23414, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002171", - "question_id": 23417, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00003881", - "question_id": 23419, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001591", - "question_id": 23420, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000413", - "question_id": 23421, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002100", - "question_id": 23422, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00001736", - "question_id": 23423, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"trumpet\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002454", - "question_id": 23425, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001524", - "question_id": 23426, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006800", - "question_id": 23427, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001455", - "question_id": 23428, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000805", - "question_id": 23429, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001255", - "question_id": 23430, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005602", - "question_id": 23432, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006330", - "question_id": 23433, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000597", - "question_id": 23435, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005145", - "question_id": 23437, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002598", - "question_id": 23438, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005402", - "question_id": 23439, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00000911", - "question_id": 23440, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007852", - "question_id": 23441, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003864", - "question_id": 23443, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004042", - "question_id": 23444, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004463", - "question_id": 23448, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"xylophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001408", - "question_id": 23449, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007185", - "question_id": 23450, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004895", - "question_id": 23451, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006256", - "question_id": 23452, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002771", - "question_id": 23454, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00008853", - "question_id": 23455, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001816", - "question_id": 23456, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000534", - "question_id": 23457, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00000237", - "question_id": 23459, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000026", - "question_id": 23460, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000626", - "question_id": 23461, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001065", - "question_id": 23462, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001272", - "question_id": 23463, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003010", - "question_id": 23464, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006212", - "question_id": 23465, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001250", - "question_id": 23470, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002156", - "question_id": 23472, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004653", - "question_id": 23474, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003324", - "question_id": 23475, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003963", - "question_id": 23478, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001289", - "question_id": 23479, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002983", - "question_id": 23481, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001678", - "question_id": 23485, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005705", - "question_id": 23486, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005048", - "question_id": 23487, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003451", - "question_id": 23488, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008435", - "question_id": 23489, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"saxophone\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00003003", - "question_id": 23490, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007172", - "question_id": 23491, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00001143", - "question_id": 23492, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003062", - "question_id": 23493, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001904", - "question_id": 23494, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008576", - "question_id": 23495, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007852", - "question_id": 23498, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004113", - "question_id": 23499, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003648", - "question_id": 23501, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001653", - "question_id": 23502, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003014", - "question_id": 23503, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007949", - "question_id": 23505, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008151", - "question_id": 23506, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005459", - "question_id": 23507, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003720", - "question_id": 23510, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001273", - "question_id": 23511, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"tuba\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005176", - "question_id": 23512, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004171", - "question_id": 23513, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001702", - "question_id": 23514, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005357", - "question_id": 23515, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005116", - "question_id": 23516, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003351", - "question_id": 23517, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006644", - "question_id": 23518, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002672", - "question_id": 23520, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"tuba\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007485", - "question_id": 23521, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002789", - "question_id": 23522, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008137", - "question_id": 23523, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001717", - "question_id": 23524, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003981", - "question_id": 23525, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"congas\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008149", - "question_id": 23526, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001347", - "question_id": 23527, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001742", - "question_id": 23528, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000333", - "question_id": 23529, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005283", - "question_id": 23530, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001289", - "question_id": 23538, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001945", - "question_id": 23539, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004840", - "question_id": 23540, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005777", - "question_id": 23541, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001105", - "question_id": 23543, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008093", - "question_id": 23545, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006512", - "question_id": 23548, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007936", - "question_id": 23549, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003163", - "question_id": 23550, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001495", - "question_id": 23551, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006239", - "question_id": 23553, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004483", - "question_id": 23554, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007427", - "question_id": 23557, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000380", - "question_id": 23558, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000320", - "question_id": 23559, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001964", - "question_id": 23562, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002185", - "question_id": 23563, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007535", - "question_id": 23564, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002985", - "question_id": 23565, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001395", - "question_id": 23568, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003567", - "question_id": 23569, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005231", - "question_id": 23570, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004849", - "question_id": 23571, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002199", - "question_id": 23572, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00002006", - "question_id": 23573, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004959", - "question_id": 23574, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001917", - "question_id": 23575, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005550", - "question_id": 23576, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001935", - "question_id": 23577, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007972", - "question_id": 23578, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002301", - "question_id": 23581, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008421", - "question_id": 23582, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001572", - "question_id": 23584, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"banjo\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001550", - "question_id": 23585, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004644", - "question_id": 23586, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002213", - "question_id": 23590, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00007025", - "question_id": 23592, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004104", - "question_id": 23593, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004409", - "question_id": 23594, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000362", - "question_id": 23596, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008409", - "question_id": 23598, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005366", - "question_id": 23599, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00007596", - "question_id": 23600, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006964", - "question_id": 23601, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007132", - "question_id": 23603, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001218", - "question_id": 23604, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004584", - "question_id": 23605, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007101", - "question_id": 23606, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004696", - "question_id": 23607, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007793", - "question_id": 23608, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007061", - "question_id": 23610, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"trumpet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002471", - "question_id": 23611, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004283", - "question_id": 23612, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003931", - "question_id": 23613, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002361", - "question_id": 23615, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000244", - "question_id": 23616, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00002399", - "question_id": 23619, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003218", - "question_id": 23620, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"banjo\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002398", - "question_id": 23621, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007803", - "question_id": 23622, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002587", - "question_id": 23623, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00000825", - "question_id": 23624, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006035", - "question_id": 23625, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005514", - "question_id": 23626, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002932", - "question_id": 23628, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007087", - "question_id": 23629, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007683", - "question_id": 23630, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005654", - "question_id": 23631, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005106", - "question_id": 23632, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006898", - "question_id": 23633, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003729", - "question_id": 23634, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004650", - "question_id": 23639, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006576", - "question_id": 23640, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00001210", - "question_id": 23641, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002301", - "question_id": 23642, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002450", - "question_id": 23643, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006394", - "question_id": 23644, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001970", - "question_id": 23645, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006524", - "question_id": 23646, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00007951", - "question_id": 23650, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005058", - "question_id": 23652, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003302", - "question_id": 23655, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006245", - "question_id": 23661, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000573", - "question_id": 23662, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003233", - "question_id": 23663, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006825", - "question_id": 23664, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000212", - "question_id": 23667, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002029", - "question_id": 23672, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007130", - "question_id": 23674, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008971", - "question_id": 23675, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007666", - "question_id": 23677, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001665", - "question_id": 23679, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000032", - "question_id": 23680, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004161", - "question_id": 23681, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004386", - "question_id": 23682, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005210", - "question_id": 23683, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002279", - "question_id": 23684, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002279", - "question_id": 23684, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004402", - "question_id": 23685, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008128", - "question_id": 23687, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005430", - "question_id": 23689, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004811", - "question_id": 23691, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001352", - "question_id": 23692, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000051", - "question_id": 23693, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"guzheng\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00003821", - "question_id": 23694, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"banjo\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008974", - "question_id": 23695, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005892", - "question_id": 23696, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008349", - "question_id": 23699, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001156", - "question_id": 23701, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000064", - "question_id": 23703, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001609", - "question_id": 23704, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00003848", - "question_id": 23705, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002303", - "question_id": 23706, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00001261", - "question_id": 23707, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008280", - "question_id": 23708, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001542", - "question_id": 23710, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00006313", - "question_id": 23712, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00001730", - "question_id": 23713, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001844", - "question_id": 23717, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007519", - "question_id": 23718, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002306", - "question_id": 23719, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000400", - "question_id": 23720, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008073", - "question_id": 23721, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004720", - "question_id": 23722, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006691", - "question_id": 23723, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00000458", - "question_id": 23724, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003501", - "question_id": 23726, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007936", - "question_id": 23728, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002015", - "question_id": 23729, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005673", - "question_id": 23730, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007255", - "question_id": 23732, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008337", - "question_id": 23733, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008365", - "question_id": 23735, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007835", - "question_id": 23736, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008784", - "question_id": 23737, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003631", - "question_id": 23738, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"violin\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003631", - "question_id": 23738, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"violin\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002264", - "question_id": 23739, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001054", - "question_id": 23741, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005153", - "question_id": 23742, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005638", - "question_id": 23743, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008342", - "question_id": 23744, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004079", - "question_id": 23745, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007477", - "question_id": 23746, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006813", - "question_id": 23749, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001269", - "question_id": 23750, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008247", - "question_id": 23751, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006403", - "question_id": 23752, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007516", - "question_id": 23753, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006270", - "question_id": 23754, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00006489", - "question_id": 23757, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00007281", - "question_id": 23758, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002996", - "question_id": 23760, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004699", - "question_id": 23761, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002605", - "question_id": 23762, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001905", - "question_id": 23763, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00008821", - "question_id": 23764, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007653", - "question_id": 23765, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000087", - "question_id": 23768, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001009", - "question_id": 23769, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003938", - "question_id": 23770, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002910", - "question_id": 23771, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008840", - "question_id": 23773, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003722", - "question_id": 23775, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003745", - "question_id": 23776, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005011", - "question_id": 23779, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004438", - "question_id": 23780, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00007124", - "question_id": 23781, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00002164", - "question_id": 23782, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003518", - "question_id": 23784, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003981", - "question_id": 23785, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"congas\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004420", - "question_id": 23786, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006127", - "question_id": 23787, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00000990", - "question_id": 23791, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003154", - "question_id": 23792, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003407", - "question_id": 23793, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007085", - "question_id": 23794, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004673", - "question_id": 23795, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004732", - "question_id": 23796, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"erhu\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00003336", - "question_id": 23797, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002185", - "question_id": 23800, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001758", - "question_id": 23801, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004119", - "question_id": 23802, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007954", - "question_id": 23804, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008111", - "question_id": 23805, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003322", - "question_id": 23808, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005855", - "question_id": 23809, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006900", - "question_id": 23810, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003058", - "question_id": 23811, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008815", - "question_id": 23812, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007038", - "question_id": 23813, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001530", - "question_id": 23815, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000136", - "question_id": 23816, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002871", - "question_id": 23817, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00007320", - "question_id": 23819, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007312", - "question_id": 23821, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000439", - "question_id": 23822, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000713", - "question_id": 23823, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000380", - "question_id": 23824, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004651", - "question_id": 23825, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005375", - "question_id": 23826, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006766", - "question_id": 23827, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003903", - "question_id": 23830, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00000320", - "question_id": 23831, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001086", - "question_id": 23832, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008760", - "question_id": 23835, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001200", - "question_id": 23836, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003319", - "question_id": 23839, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001685", - "question_id": 23840, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006286", - "question_id": 23841, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003600", - "question_id": 23842, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001961", - "question_id": 23843, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00008773", - "question_id": 23844, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000704", - "question_id": 23845, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004597", - "question_id": 23846, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"banjo\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002840", - "question_id": 23847, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007578", - "question_id": 23848, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000807", - "question_id": 23851, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00005058", - "question_id": 23852, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006629", - "question_id": 23853, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005864", - "question_id": 23855, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000254", - "question_id": 23857, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007971", - "question_id": 23858, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000817", - "question_id": 23859, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"middle\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001440", - "question_id": 23860, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003889", - "question_id": 23861, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"tuba\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004031", - "question_id": 23862, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003318", - "question_id": 23863, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006178", - "question_id": 23866, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007877", - "question_id": 23868, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000466", - "question_id": 23871, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00003098", - "question_id": 23872, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"drum\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001479", - "question_id": 23873, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000093", - "question_id": 23875, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005136", - "question_id": 23876, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00008351", - "question_id": 23877, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008851", - "question_id": 23878, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003931", - "question_id": 23879, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008012", - "question_id": 23880, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003965", - "question_id": 23882, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008853", - "question_id": 23885, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005404", - "question_id": 23886, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00001477", - "question_id": 23889, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000934", - "question_id": 23890, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00005387", - "question_id": 23891, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008502", - "question_id": 23893, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005096", - "question_id": 23894, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007963", - "question_id": 23895, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008861", - "question_id": 23896, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006969", - "question_id": 23897, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002812", - "question_id": 23901, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000072", - "question_id": 23902, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008450", - "question_id": 23903, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005193", - "question_id": 23904, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005381", - "question_id": 23907, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004566", - "question_id": 23908, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002192", - "question_id": 23909, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008777", - "question_id": 23913, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006116", - "question_id": 23916, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00004718", - "question_id": 23917, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003172", - "question_id": 23919, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000192", - "question_id": 23920, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007394", - "question_id": 23922, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002154", - "question_id": 23923, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000590", - "question_id": 23925, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007292", - "question_id": 23927, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"congas\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006067", - "question_id": 23928, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007018", - "question_id": 23929, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005448", - "question_id": 23932, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"drum\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003537", - "question_id": 23933, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008123", - "question_id": 23934, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001488", - "question_id": 23935, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00000774", - "question_id": 23936, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00001433", - "question_id": 23937, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008169", - "question_id": 23938, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003234", - "question_id": 23941, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004181", - "question_id": 23943, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004480", - "question_id": 23944, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008446", - "question_id": 23946, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00007396", - "question_id": 23948, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008211", - "question_id": 23949, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001995", - "question_id": 23950, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00004658", - "question_id": 23952, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008026", - "question_id": 23953, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004728", - "question_id": 23954, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00003520", - "question_id": 23955, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006541", - "question_id": 23957, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00004138", - "question_id": 23959, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001967", - "question_id": 23960, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008595", - "question_id": 23962, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00001627", - "question_id": 23963, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000027", - "question_id": 23964, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003275", - "question_id": 23967, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00001650", - "question_id": 23970, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001219", - "question_id": 23972, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002761", - "question_id": 23973, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006242", - "question_id": 23975, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003863", - "question_id": 23976, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000980", - "question_id": 23977, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007380", - "question_id": 23978, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000242", - "question_id": 23980, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001038", - "question_id": 23981, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003739", - "question_id": 23985, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008262", - "question_id": 23989, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006360", - "question_id": 23990, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00008403", - "question_id": 23991, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00005335", - "question_id": 23992, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008239", - "question_id": 23993, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004530", - "question_id": 23994, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006109", - "question_id": 23995, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000825", - "question_id": 23996, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002025", - "question_id": 24001, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005730", - "question_id": 24004, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001773", - "question_id": 24006, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003486", - "question_id": 24008, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003942", - "question_id": 24009, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008922", - "question_id": 24010, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"flute\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000763", - "question_id": 24011, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007988", - "question_id": 24012, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007223", - "question_id": 24013, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00007125", - "question_id": 24014, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005818", - "question_id": 24015, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"electric_bass\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004485", - "question_id": 24016, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006000", - "question_id": 24019, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00007758", - "question_id": 24020, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004845", - "question_id": 24021, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000343", - "question_id": 24022, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00006126", - "question_id": 24023, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002190", - "question_id": 24024, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004711", - "question_id": 24027, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002551", - "question_id": 24028, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000238", - "question_id": 24029, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007776", - "question_id": 24031, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005306", - "question_id": 24033, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00006878", - "question_id": 24036, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004922", - "question_id": 24037, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006773", - "question_id": 24038, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005540", - "question_id": 24042, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001836", - "question_id": 24043, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007772", - "question_id": 24044, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004790", - "question_id": 24046, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000619", - "question_id": 24048, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008306", - "question_id": 24049, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"middle\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007282", - "question_id": 24051, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007592", - "question_id": 24052, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003680", - "question_id": 24054, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000577", - "question_id": 24055, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006628", - "question_id": 24056, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006628", - "question_id": 24056, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00007626", - "question_id": 24057, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000443", - "question_id": 24058, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002520", - "question_id": 24059, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000795", - "question_id": 24060, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007591", - "question_id": 24062, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002457", - "question_id": 24063, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006445", - "question_id": 24064, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005120", - "question_id": 24069, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002443", - "question_id": 24071, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004360", - "question_id": 24072, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008649", - "question_id": 24074, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005029", - "question_id": 24076, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008147", - "question_id": 24077, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008266", - "question_id": 24078, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005207", - "question_id": 24080, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00005069", - "question_id": 24081, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00003795", - "question_id": 24082, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008587", - "question_id": 24083, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002092", - "question_id": 24084, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005441", - "question_id": 24085, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002907", - "question_id": 24086, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00005439", - "question_id": 24088, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007981", - "question_id": 24089, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007012", - "question_id": 24090, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008624", - "question_id": 24091, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004607", - "question_id": 24093, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001213", - "question_id": 24096, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004837", - "question_id": 24097, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001582", - "question_id": 24098, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002990", - "question_id": 24099, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004590", - "question_id": 24100, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000446", - "question_id": 24101, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008575", - "question_id": 24102, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006531", - "question_id": 24105, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00007365", - "question_id": 24107, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006636", - "question_id": 24108, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006929", - "question_id": 24109, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008380", - "question_id": 24111, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006389", - "question_id": 24112, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006428", - "question_id": 24113, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003340", - "question_id": 24114, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005204", - "question_id": 24115, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006259", - "question_id": 24116, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003589", - "question_id": 24117, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008211", - "question_id": 24118, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006504", - "question_id": 24119, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000292", - "question_id": 24120, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005523", - "question_id": 24123, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005384", - "question_id": 24124, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001755", - "question_id": 24125, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000645", - "question_id": 24126, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005344", - "question_id": 24127, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005617", - "question_id": 24128, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007718", - "question_id": 24129, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008302", - "question_id": 24130, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005460", - "question_id": 24133, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000727", - "question_id": 24134, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00004171", - "question_id": 24136, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001433", - "question_id": 24139, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007487", - "question_id": 24140, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00003850", - "question_id": 24141, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004105", - "question_id": 24142, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002497", - "question_id": 24144, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008406", - "question_id": 24147, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008783", - "question_id": 24148, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008862", - "question_id": 24150, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007677", - "question_id": 24152, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007409", - "question_id": 24154, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003983", - "question_id": 24155, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004907", - "question_id": 24159, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000805", - "question_id": 24160, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001168", - "question_id": 24161, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002727", - "question_id": 24163, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002822", - "question_id": 24164, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006138", - "question_id": 24165, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002232", - "question_id": 24166, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007374", - "question_id": 24167, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007347", - "question_id": 24168, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004072", - "question_id": 24170, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005316", - "question_id": 24171, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008435", - "question_id": 24172, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007547", - "question_id": 24173, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003099", - "question_id": 24174, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005647", - "question_id": 24175, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008033", - "question_id": 24176, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004751", - "question_id": 24177, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00008671", - "question_id": 24178, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005813", - "question_id": 24179, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000273", - "question_id": 24180, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008438", - "question_id": 24181, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004363", - "question_id": 24183, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006090", - "question_id": 24184, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008704", - "question_id": 24185, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003311", - "question_id": 24186, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00007307", - "question_id": 24187, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002352", - "question_id": 24189, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001947", - "question_id": 24190, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007288", - "question_id": 24191, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003307", - "question_id": 24192, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003660", - "question_id": 24193, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"tuba\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000019", - "question_id": 24195, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006150", - "question_id": 24196, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001684", - "question_id": 24198, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007534", - "question_id": 24201, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005294", - "question_id": 24207, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008933", - "question_id": 24208, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00005684", - "question_id": 24209, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"electric_bass\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003139", - "question_id": 24210, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005217", - "question_id": 24211, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008131", - "question_id": 24214, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002450", - "question_id": 24215, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006250", - "question_id": 24216, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006107", - "question_id": 24217, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005530", - "question_id": 24218, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00005311", - "question_id": 24219, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000504", - "question_id": 24220, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004083", - "question_id": 24225, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00005502", - "question_id": 24226, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003224", - "question_id": 24228, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001931", - "question_id": 24229, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005532", - "question_id": 24230, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00008539", - "question_id": 24231, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001113", - "question_id": 24234, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004093", - "question_id": 24235, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002604", - "question_id": 24236, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001374", - "question_id": 24237, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004179", - "question_id": 24238, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001902", - "question_id": 24239, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007341", - "question_id": 24241, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00000822", - "question_id": 24242, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003615", - "question_id": 24243, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004245", - "question_id": 24244, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"middle\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006448", - "question_id": 24248, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00000949", - "question_id": 24249, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002512", - "question_id": 24250, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008203", - "question_id": 24251, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00001704", - "question_id": 24252, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001749", - "question_id": 24253, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006835", - "question_id": 24254, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002357", - "question_id": 24257, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000636", - "question_id": 24258, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000283", - "question_id": 24260, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00005046", - "question_id": 24261, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008556", - "question_id": 24262, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005641", - "question_id": 24265, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000299", - "question_id": 24266, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"middle\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005399", - "question_id": 24268, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005278", - "question_id": 24269, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005613", - "question_id": 24270, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00008595", - "question_id": 24272, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008595", - "question_id": 24272, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002038", - "question_id": 24275, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000231", - "question_id": 24279, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00000861", - "question_id": 24280, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00008812", - "question_id": 24281, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008920", - "question_id": 24283, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000438", - "question_id": 24285, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007896", - "question_id": 24286, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001138", - "question_id": 24287, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004599", - "question_id": 24290, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004625", - "question_id": 24291, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006741", - "question_id": 24292, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00001692", - "question_id": 24293, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007183", - "question_id": 24294, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007551", - "question_id": 24295, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007309", - "question_id": 24297, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008504", - "question_id": 24299, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004673", - "question_id": 24302, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003588", - "question_id": 24304, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008546", - "question_id": 24306, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000423", - "question_id": 24309, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005141", - "question_id": 24311, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00000755", - "question_id": 24313, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002042", - "question_id": 24314, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00003097", - "question_id": 24315, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005693", - "question_id": 24316, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00004251", - "question_id": 24317, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006939", - "question_id": 24318, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008853", - "question_id": 24319, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00004791", - "question_id": 24320, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008752", - "question_id": 24322, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000679", - "question_id": 24323, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000500", - "question_id": 24325, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006751", - "question_id": 24326, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003305", - "question_id": 24329, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008304", - "question_id": 24330, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003690", - "question_id": 24332, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008458", - "question_id": 24333, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003544", - "question_id": 24334, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003665", - "question_id": 24337, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008476", - "question_id": 24338, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005421", - "question_id": 24339, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006902", - "question_id": 24340, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007418", - "question_id": 24341, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005706", - "question_id": 24342, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002188", - "question_id": 24343, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008064", - "question_id": 24344, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004428", - "question_id": 24348, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003172", - "question_id": 24349, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006108", - "question_id": 24350, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001652", - "question_id": 24352, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00007346", - "question_id": 24353, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004104", - "question_id": 24354, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000765", - "question_id": 24355, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002090", - "question_id": 24357, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001528", - "question_id": 24358, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003676", - "question_id": 24359, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001850", - "question_id": 24360, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001567", - "question_id": 24364, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007970", - "question_id": 24367, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006223", - "question_id": 24368, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007776", - "question_id": 24370, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001771", - "question_id": 24371, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008546", - "question_id": 24373, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008134", - "question_id": 24375, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007156", - "question_id": 24377, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001339", - "question_id": 24378, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005736", - "question_id": 24379, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006281", - "question_id": 24380, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006040", - "question_id": 24382, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000896", - "question_id": 24385, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003903", - "question_id": 24386, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006868", - "question_id": 24387, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006272", - "question_id": 24388, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000772", - "question_id": 24390, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008805", - "question_id": 24391, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007835", - "question_id": 24394, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008892", - "question_id": 24395, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"tuba\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003681", - "question_id": 24396, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006890", - "question_id": 24397, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006087", - "question_id": 24399, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008649", - "question_id": 24400, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003428", - "question_id": 24401, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001380", - "question_id": 24403, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000376", - "question_id": 24404, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00000892", - "question_id": 24406, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000252", - "question_id": 24407, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002107", - "question_id": 24409, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bagpipe\", \"left\", \"bagpipe\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006914", - "question_id": 24410, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004867", - "question_id": 24411, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006297", - "question_id": 24412, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"electric_bass\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006661", - "question_id": 24417, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000833", - "question_id": 24418, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004290", - "question_id": 24419, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004181", - "question_id": 24420, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00007808", - "question_id": 24422, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003814", - "question_id": 24423, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008762", - "question_id": 24424, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003996", - "question_id": 24425, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000921", - "question_id": 24426, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008210", - "question_id": 24430, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007812", - "question_id": 24433, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008895", - "question_id": 24435, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000498", - "question_id": 24438, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008010", - "question_id": 24439, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001500", - "question_id": 24440, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007596", - "question_id": 24442, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001713", - "question_id": 24443, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00008839", - "question_id": 24444, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00000862", - "question_id": 24445, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000200", - "question_id": 24447, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007912", - "question_id": 24449, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008405", - "question_id": 24450, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006277", - "question_id": 24451, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008458", - "question_id": 24452, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004848", - "question_id": 24453, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006987", - "question_id": 24454, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008311", - "question_id": 24457, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00008311", - "question_id": 24457, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00003357", - "question_id": 24458, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006527", - "question_id": 24459, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00007086", - "question_id": 24462, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001539", - "question_id": 24463, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007081", - "question_id": 24464, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006025", - "question_id": 24465, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005064", - "question_id": 24466, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004979", - "question_id": 24467, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001415", - "question_id": 24468, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007486", - "question_id": 24471, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004842", - "question_id": 24472, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001780", - "question_id": 24474, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004118", - "question_id": 24475, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004037", - "question_id": 24476, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004180", - "question_id": 24478, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006945", - "question_id": 24481, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000463", - "question_id": 24484, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001548", - "question_id": 24485, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002606", - "question_id": 24488, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006598", - "question_id": 24489, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008310", - "question_id": 24490, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001283", - "question_id": 24491, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000672", - "question_id": 24492, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004798", - "question_id": 24493, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"congas\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002270", - "question_id": 24497, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003375", - "question_id": 24501, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"electric_bass\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008238", - "question_id": 24504, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005762", - "question_id": 24505, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002734", - "question_id": 24506, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001325", - "question_id": 24507, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002561", - "question_id": 24508, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002559", - "question_id": 24509, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005360", - "question_id": 24510, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007994", - "question_id": 24511, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00000029", - "question_id": 24512, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002248", - "question_id": 24513, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003547", - "question_id": 24514, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"suona\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007375", - "question_id": 24516, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003189", - "question_id": 24517, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00007384", - "question_id": 24519, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004246", - "question_id": 24520, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007324", - "question_id": 24521, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004376", - "question_id": 24523, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006939", - "question_id": 24524, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"congas\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007636", - "question_id": 24527, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006155", - "question_id": 24528, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00008046", - "question_id": 24530, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00008920", - "question_id": 24531, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000117", - "question_id": 24532, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004538", - "question_id": 24537, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001265", - "question_id": 24538, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00006553", - "question_id": 24544, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001270", - "question_id": 24549, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001682", - "question_id": 24551, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006471", - "question_id": 24553, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006415", - "question_id": 24554, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"drum\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004539", - "question_id": 24555, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001593", - "question_id": 24556, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004695", - "question_id": 24557, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000254", - "question_id": 24558, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007704", - "question_id": 24559, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006560", - "question_id": 24560, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000581", - "question_id": 24562, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004573", - "question_id": 24563, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008041", - "question_id": 24564, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000331", - "question_id": 24565, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006887", - "question_id": 24566, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004177", - "question_id": 24569, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004772", - "question_id": 24572, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00002904", - "question_id": 24573, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002424", - "question_id": 24575, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007065", - "question_id": 24577, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003467", - "question_id": 24579, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006769", - "question_id": 24580, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006223", - "question_id": 24582, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005523", - "question_id": 24585, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007290", - "question_id": 24586, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00003344", - "question_id": 24587, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"suona\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007005", - "question_id": 24589, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008562", - "question_id": 24590, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007851", - "question_id": 24592, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000164", - "question_id": 24593, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002912", - "question_id": 24595, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008197", - "question_id": 24597, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001213", - "question_id": 24598, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008249", - "question_id": 24599, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003335", - "question_id": 24602, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004816", - "question_id": 24603, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008602", - "question_id": 24605, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001105", - "question_id": 24607, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007447", - "question_id": 24610, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"congas\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008310", - "question_id": 24611, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002733", - "question_id": 24612, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004738", - "question_id": 24613, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007801", - "question_id": 24615, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000124", - "question_id": 24616, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002977", - "question_id": 24618, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007592", - "question_id": 24620, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007335", - "question_id": 24621, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007676", - "question_id": 24622, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004950", - "question_id": 24623, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002018", - "question_id": 24625, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007057", - "question_id": 24627, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000319", - "question_id": 24628, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001586", - "question_id": 24631, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002402", - "question_id": 24634, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008909", - "question_id": 24635, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004949", - "question_id": 24636, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004913", - "question_id": 24637, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001711", - "question_id": 24639, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000736", - "question_id": 24640, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001956", - "question_id": 24641, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001274", - "question_id": 24642, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008552", - "question_id": 24644, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004759", - "question_id": 24645, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001775", - "question_id": 24647, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007777", - "question_id": 24649, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001393", - "question_id": 24652, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003458", - "question_id": 24653, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002445", - "question_id": 24654, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007739", - "question_id": 24655, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005257", - "question_id": 24656, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000832", - "question_id": 24657, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004241", - "question_id": 24658, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008537", - "question_id": 24659, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002847", - "question_id": 24660, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006739", - "question_id": 24663, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002154", - "question_id": 24664, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002331", - "question_id": 24665, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002584", - "question_id": 24666, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"xylophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007346", - "question_id": 24668, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00003258", - "question_id": 24669, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002380", - "question_id": 24670, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00008025", - "question_id": 24672, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005634", - "question_id": 24675, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001635", - "question_id": 24676, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001779", - "question_id": 24678, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006447", - "question_id": 24679, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008273", - "question_id": 24680, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006056", - "question_id": 24682, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004885", - "question_id": 24683, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005481", - "question_id": 24684, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004810", - "question_id": 24685, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003422", - "question_id": 24686, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001597", - "question_id": 24687, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001800", - "question_id": 24692, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003513", - "question_id": 24693, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"guzheng\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00008412", - "question_id": 24695, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003642", - "question_id": 24696, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005606", - "question_id": 24701, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004615", - "question_id": 24706, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002137", - "question_id": 24707, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003811", - "question_id": 24708, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008850", - "question_id": 24710, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001466", - "question_id": 24711, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000021", - "question_id": 24712, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007391", - "question_id": 24714, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008917", - "question_id": 24715, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008597", - "question_id": 24716, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001656", - "question_id": 24717, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007073", - "question_id": 24719, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002560", - "question_id": 24720, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008626", - "question_id": 24721, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005340", - "question_id": 24723, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002543", - "question_id": 24727, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001309", - "question_id": 24729, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003116", - "question_id": 24730, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003158", - "question_id": 24731, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00006367", - "question_id": 24732, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"flute\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00004178", - "question_id": 24733, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007812", - "question_id": 24734, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001472", - "question_id": 24735, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00002860", - "question_id": 24737, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003373", - "question_id": 24739, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000290", - "question_id": 24740, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"suona\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004191", - "question_id": 24742, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004038", - "question_id": 24744, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002770", - "question_id": 24746, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004410", - "question_id": 24747, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001041", - "question_id": 24748, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005134", - "question_id": 24749, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005432", - "question_id": 24750, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007883", - "question_id": 24752, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000695", - "question_id": 24753, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00008666", - "question_id": 24755, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001418", - "question_id": 24756, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002177", - "question_id": 24757, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001769", - "question_id": 24758, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000185", - "question_id": 24759, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003374", - "question_id": 24761, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003331", - "question_id": 24762, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008001", - "question_id": 24763, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001186", - "question_id": 24765, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006453", - "question_id": 24767, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002260", - "question_id": 24769, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008733", - "question_id": 24774, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006919", - "question_id": 24775, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005209", - "question_id": 24776, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003612", - "question_id": 24779, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007636", - "question_id": 24780, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003165", - "question_id": 24782, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007514", - "question_id": 24784, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000564", - "question_id": 24786, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000108", - "question_id": 24787, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001862", - "question_id": 24789, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007248", - "question_id": 24790, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006439", - "question_id": 24792, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006928", - "question_id": 24794, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006437", - "question_id": 24795, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001609", - "question_id": 24798, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000569", - "question_id": 24799, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006943", - "question_id": 24800, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007059", - "question_id": 24801, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000642", - "question_id": 24802, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006203", - "question_id": 24803, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000428", - "question_id": 24804, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003825", - "question_id": 24805, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007575", - "question_id": 24806, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000016", - "question_id": 24809, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000432", - "question_id": 24810, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004448", - "question_id": 24811, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006666", - "question_id": 24812, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008233", - "question_id": 24814, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003563", - "question_id": 24816, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001169", - "question_id": 24818, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002293", - "question_id": 24820, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005666", - "question_id": 24823, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002123", - "question_id": 24824, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007787", - "question_id": 24825, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002683", - "question_id": 24826, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006623", - "question_id": 24827, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004162", - "question_id": 24828, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007288", - "question_id": 24829, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006186", - "question_id": 24833, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005190", - "question_id": 24836, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007009", - "question_id": 24837, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003775", - "question_id": 24838, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004667", - "question_id": 24841, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005509", - "question_id": 24842, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006438", - "question_id": 24845, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"banjo\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003198", - "question_id": 24847, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004087", - "question_id": 24849, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004894", - "question_id": 24851, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003404", - "question_id": 24852, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004629", - "question_id": 24853, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006442", - "question_id": 24854, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002443", - "question_id": 24855, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00000931", - "question_id": 24860, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005436", - "question_id": 24862, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007860", - "question_id": 24863, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000569", - "question_id": 24864, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004477", - "question_id": 24865, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006883", - "question_id": 24867, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004998", - "question_id": 24870, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002342", - "question_id": 24871, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007429", - "question_id": 24872, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006152", - "question_id": 24875, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001300", - "question_id": 24876, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003963", - "question_id": 24878, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001472", - "question_id": 24880, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007236", - "question_id": 24881, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006839", - "question_id": 24882, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000587", - "question_id": 24884, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002369", - "question_id": 24885, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004346", - "question_id": 24886, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001555", - "question_id": 24887, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007702", - "question_id": 24888, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001845", - "question_id": 24889, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006831", - "question_id": 24890, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000633", - "question_id": 24892, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000364", - "question_id": 24893, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003689", - "question_id": 24894, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003637", - "question_id": 24895, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007295", - "question_id": 24897, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003719", - "question_id": 24898, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007763", - "question_id": 24899, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007140", - "question_id": 24902, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00000077", - "question_id": 24905, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002874", - "question_id": 24907, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000769", - "question_id": 24910, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004221", - "question_id": 24912, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00003746", - "question_id": 24913, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002818", - "question_id": 24915, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002331", - "question_id": 24919, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005892", - "question_id": 24920, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006250", - "question_id": 24923, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003437", - "question_id": 24924, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00001316", - "question_id": 24925, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004980", - "question_id": 24927, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006483", - "question_id": 24928, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004043", - "question_id": 24929, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005640", - "question_id": 24931, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00000674", - "question_id": 24932, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001073", - "question_id": 24933, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002041", - "question_id": 24934, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001737", - "question_id": 24936, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00000445", - "question_id": 24938, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007806", - "question_id": 24939, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005610", - "question_id": 24941, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00005920", - "question_id": 24942, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00001621", - "question_id": 24944, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002783", - "question_id": 24945, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005756", - "question_id": 24946, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004950", - "question_id": 24947, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003302", - "question_id": 24949, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004910", - "question_id": 24950, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007090", - "question_id": 24952, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001147", - "question_id": 24953, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006003", - "question_id": 24954, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"ukulele\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006112", - "question_id": 24955, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00008168", - "question_id": 24956, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000157", - "question_id": 24957, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001155", - "question_id": 24959, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007912", - "question_id": 24960, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006209", - "question_id": 24962, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003766", - "question_id": 24963, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007933", - "question_id": 24964, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004171", - "question_id": 24965, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001651", - "question_id": 24967, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005490", - "question_id": 24968, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007959", - "question_id": 24971, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004601", - "question_id": 24973, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002392", - "question_id": 24975, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00000381", - "question_id": 24976, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00000430", - "question_id": 24977, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008487", - "question_id": 24980, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007229", - "question_id": 24981, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005336", - "question_id": 24982, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00007786", - "question_id": 24983, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00008421", - "question_id": 24984, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00003239", - "question_id": 24985, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002986", - "question_id": 24988, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008941", - "question_id": 24989, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003038", - "question_id": 24991, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003949", - "question_id": 24992, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000113", - "question_id": 24994, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00000852", - "question_id": 24995, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008762", - "question_id": 24997, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"drum\", \"middle\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003647", - "question_id": 24998, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005976", - "question_id": 25001, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000768", - "question_id": 25003, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005925", - "question_id": 25006, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003048", - "question_id": 25007, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001344", - "question_id": 25009, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006993", - "question_id": 25011, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006113", - "question_id": 25013, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002153", - "question_id": 25014, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00006750", - "question_id": 25020, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001544", - "question_id": 25021, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008396", - "question_id": 25022, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005233", - "question_id": 25024, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002110", - "question_id": 25026, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004744", - "question_id": 25031, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004595", - "question_id": 25033, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001308", - "question_id": 25034, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007448", - "question_id": 25035, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"congas\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005421", - "question_id": 25036, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000899", - "question_id": 25037, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006758", - "question_id": 25039, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00002375", - "question_id": 25040, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004088", - "question_id": 25041, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006990", - "question_id": 25044, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004893", - "question_id": 25045, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00002100", - "question_id": 25047, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008019", - "question_id": 25048, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001731", - "question_id": 25049, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002034", - "question_id": 25050, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001118", - "question_id": 25051, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002763", - "question_id": 25052, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001344", - "question_id": 25053, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006025", - "question_id": 25056, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006653", - "question_id": 25057, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007637", - "question_id": 25058, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00002804", - "question_id": 25060, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004794", - "question_id": 25061, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008345", - "question_id": 25062, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006830", - "question_id": 25063, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007296", - "question_id": 25064, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002904", - "question_id": 25065, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006746", - "question_id": 25068, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00004790", - "question_id": 25071, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007684", - "question_id": 25072, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006094", - "question_id": 25073, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002412", - "question_id": 25074, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004974", - "question_id": 25075, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007868", - "question_id": 25077, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001874", - "question_id": 25081, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005046", - "question_id": 25082, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002708", - "question_id": 25085, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007351", - "question_id": 25086, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003778", - "question_id": 25087, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003990", - "question_id": 25088, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006947", - "question_id": 25091, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000843", - "question_id": 25093, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008580", - "question_id": 25095, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001885", - "question_id": 25096, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006498", - "question_id": 25097, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002877", - "question_id": 25098, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005785", - "question_id": 25099, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005231", - "question_id": 25100, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004758", - "question_id": 25101, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001695", - "question_id": 25103, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00007513", - "question_id": 25104, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006065", - "question_id": 25106, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001432", - "question_id": 25107, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002587", - "question_id": 25109, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005680", - "question_id": 25110, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008246", - "question_id": 25111, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008574", - "question_id": 25113, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001086", - "question_id": 25115, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00000526", - "question_id": 25116, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005822", - "question_id": 25117, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004113", - "question_id": 25120, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003336", - "question_id": 25121, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005401", - "question_id": 25122, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000579", - "question_id": 25124, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008545", - "question_id": 25125, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00000303", - "question_id": 25126, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007884", - "question_id": 25129, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005949", - "question_id": 25130, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001570", - "question_id": 25131, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003535", - "question_id": 25132, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008096", - "question_id": 25133, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000551", - "question_id": 25134, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008975", - "question_id": 25135, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001934", - "question_id": 25136, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004078", - "question_id": 25137, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005825", - "question_id": 25138, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005456", - "question_id": 25139, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002877", - "question_id": 25141, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001444", - "question_id": 25142, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007939", - "question_id": 25144, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007542", - "question_id": 25145, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006057", - "question_id": 25149, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003197", - "question_id": 25150, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007051", - "question_id": 25151, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001934", - "question_id": 25152, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006370", - "question_id": 25153, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000212", - "question_id": 25155, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000281", - "question_id": 25156, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007121", - "question_id": 25157, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003336", - "question_id": 25158, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008911", - "question_id": 25159, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"piano\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005054", - "question_id": 25161, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005352", - "question_id": 25162, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003872", - "question_id": 25163, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006543", - "question_id": 25164, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00003038", - "question_id": 25165, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003335", - "question_id": 25166, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00003195", - "question_id": 25167, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002311", - "question_id": 25168, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003701", - "question_id": 25169, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004610", - "question_id": 25170, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00005263", - "question_id": 25173, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00002055", - "question_id": 25175, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004260", - "question_id": 25176, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002582", - "question_id": 25177, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005741", - "question_id": 25179, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00004766", - "question_id": 25180, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003144", - "question_id": 25182, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000552", - "question_id": 25183, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00006466", - "question_id": 25184, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002629", - "question_id": 25185, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00006307", - "question_id": 25186, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003985", - "question_id": 25187, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004001", - "question_id": 25188, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002448", - "question_id": 25189, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003077", - "question_id": 25190, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001640", - "question_id": 25191, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007456", - "question_id": 25192, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000779", - "question_id": 25193, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006118", - "question_id": 25194, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006254", - "question_id": 25196, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008558", - "question_id": 25197, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003931", - "question_id": 25198, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005522", - "question_id": 25200, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006986", - "question_id": 25201, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003659", - "question_id": 25202, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002080", - "question_id": 25203, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007242", - "question_id": 25205, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000187", - "question_id": 25206, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003669", - "question_id": 25207, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000427", - "question_id": 25208, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007978", - "question_id": 25209, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007761", - "question_id": 25211, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006601", - "question_id": 25215, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008010", - "question_id": 25216, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00007534", - "question_id": 25217, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004977", - "question_id": 25219, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008348", - "question_id": 25220, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002848", - "question_id": 25222, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005939", - "question_id": 25223, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003780", - "question_id": 25224, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004165", - "question_id": 25225, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003852", - "question_id": 25227, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006952", - "question_id": 25228, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002734", - "question_id": 25232, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001594", - "question_id": 25233, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006281", - "question_id": 25234, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002698", - "question_id": 25237, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002604", - "question_id": 25238, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005510", - "question_id": 25239, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003028", - "question_id": 25241, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002977", - "question_id": 25242, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006457", - "question_id": 25243, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00000810", - "question_id": 25248, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004550", - "question_id": 25249, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004167", - "question_id": 25250, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008658", - "question_id": 25251, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004426", - "question_id": 25254, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008704", - "question_id": 25255, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002396", - "question_id": 25258, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00006851", - "question_id": 25259, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005888", - "question_id": 25261, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006577", - "question_id": 25262, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002078", - "question_id": 25264, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005043", - "question_id": 25265, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004476", - "question_id": 25267, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007692", - "question_id": 25269, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007841", - "question_id": 25270, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006744", - "question_id": 25271, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001047", - "question_id": 25272, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006714", - "question_id": 25274, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008098", - "question_id": 25275, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004150", - "question_id": 25276, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000073", - "question_id": 25277, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00000144", - "question_id": 25278, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008860", - "question_id": 25280, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003540", - "question_id": 25283, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001139", - "question_id": 25284, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00007515", - "question_id": 25288, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004573", - "question_id": 25289, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002445", - "question_id": 25290, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001723", - "question_id": 25291, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00006594", - "question_id": 25294, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00001255", - "question_id": 25295, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000713", - "question_id": 25296, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001587", - "question_id": 25297, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001409", - "question_id": 25298, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008571", - "question_id": 25299, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006017", - "question_id": 25300, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005396", - "question_id": 25301, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000749", - "question_id": 25302, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007994", - "question_id": 25303, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005539", - "question_id": 25304, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00002109", - "question_id": 25305, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007393", - "question_id": 25306, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002997", - "question_id": 25307, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002346", - "question_id": 25308, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002403", - "question_id": 25311, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00001448", - "question_id": 25312, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002525", - "question_id": 25315, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005915", - "question_id": 25317, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006439", - "question_id": 25320, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00000480", - "question_id": 25321, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00003243", - "question_id": 25322, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"drum\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000590", - "question_id": 25323, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005989", - "question_id": 25324, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004654", - "question_id": 25325, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008173", - "question_id": 25328, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007801", - "question_id": 25329, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008325", - "question_id": 25330, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006067", - "question_id": 25331, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00008098", - "question_id": 25334, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001281", - "question_id": 25336, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006557", - "question_id": 25338, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002203", - "question_id": 25340, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005268", - "question_id": 25341, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001638", - "question_id": 25342, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007063", - "question_id": 25343, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00006056", - "question_id": 25344, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004798", - "question_id": 25346, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002759", - "question_id": 25351, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00003444", - "question_id": 25352, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003966", - "question_id": 25355, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004343", - "question_id": 25356, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002427", - "question_id": 25357, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001160", - "question_id": 25359, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008811", - "question_id": 25360, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006644", - "question_id": 25361, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006419", - "question_id": 25364, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000707", - "question_id": 25366, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001805", - "question_id": 25367, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003662", - "question_id": 25369, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002801", - "question_id": 25370, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004391", - "question_id": 25372, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006218", - "question_id": 25374, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00005433", - "question_id": 25378, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000146", - "question_id": 25379, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008610", - "question_id": 25380, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002982", - "question_id": 25381, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007482", - "question_id": 25382, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006483", - "question_id": 25383, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002592", - "question_id": 25384, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00004392", - "question_id": 25386, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00001740", - "question_id": 25387, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005123", - "question_id": 25388, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00003411", - "question_id": 25390, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002324", - "question_id": 25392, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003427", - "question_id": 25393, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007786", - "question_id": 25395, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008445", - "question_id": 25397, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006153", - "question_id": 25400, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00003826", - "question_id": 25401, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002142", - "question_id": 25402, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006039", - "question_id": 25404, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002651", - "question_id": 25405, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005232", - "question_id": 25406, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003316", - "question_id": 25408, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001658", - "question_id": 25409, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000017", - "question_id": 25410, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000609", - "question_id": 25411, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007210", - "question_id": 25412, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002074", - "question_id": 25414, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00002722", - "question_id": 25416, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003548", - "question_id": 25419, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004142", - "question_id": 25420, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004933", - "question_id": 25421, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002220", - "question_id": 25422, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006814", - "question_id": 25424, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006673", - "question_id": 25425, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003771", - "question_id": 25426, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004873", - "question_id": 25427, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006036", - "question_id": 25429, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000654", - "question_id": 25431, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00002212", - "question_id": 25432, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005128", - "question_id": 25435, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008133", - "question_id": 25438, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008759", - "question_id": 25439, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004408", - "question_id": 25440, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00001858", - "question_id": 25442, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003322", - "question_id": 25443, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007351", - "question_id": 25444, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006646", - "question_id": 25448, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006302", - "question_id": 25450, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001946", - "question_id": 25455, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007476", - "question_id": 25458, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003660", - "question_id": 25460, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005195", - "question_id": 25461, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00003282", - "question_id": 25464, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000431", - "question_id": 25466, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005521", - "question_id": 25467, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00000521", - "question_id": 25468, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00008121", - "question_id": 25469, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003514", - "question_id": 25470, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003083", - "question_id": 25474, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007343", - "question_id": 25476, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008559", - "question_id": 25478, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00003424", - "question_id": 25479, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004156", - "question_id": 25480, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000246", - "question_id": 25481, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000866", - "question_id": 25483, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006786", - "question_id": 25484, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004956", - "question_id": 25485, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005558", - "question_id": 25486, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004652", - "question_id": 25488, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003605", - "question_id": 25490, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006628", - "question_id": 25491, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008325", - "question_id": 25493, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001802", - "question_id": 25495, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006490", - "question_id": 25496, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007493", - "question_id": 25497, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003588", - "question_id": 25498, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008756", - "question_id": 25499, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004177", - "question_id": 25500, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002169", - "question_id": 25501, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006415", - "question_id": 25502, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007545", - "question_id": 25504, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007222", - "question_id": 25506, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004980", - "question_id": 25507, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00001022", - "question_id": 25508, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005717", - "question_id": 25510, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006446", - "question_id": 25511, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004407", - "question_id": 25512, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004199", - "question_id": 25516, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007414", - "question_id": 25517, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005239", - "question_id": 25518, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007896", - "question_id": 25520, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006904", - "question_id": 25521, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001465", - "question_id": 25523, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005767", - "question_id": 25524, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001919", - "question_id": 25526, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00006707", - "question_id": 25528, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006377", - "question_id": 25530, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003689", - "question_id": 25532, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006407", - "question_id": 25533, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005698", - "question_id": 25534, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000654", - "question_id": 25535, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00001330", - "question_id": 25537, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006553", - "question_id": 25538, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002885", - "question_id": 25540, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004885", - "question_id": 25541, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008837", - "question_id": 25543, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003981", - "question_id": 25545, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00003920", - "question_id": 25546, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00003761", - "question_id": 25547, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008859", - "question_id": 25548, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008289", - "question_id": 25549, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004647", - "question_id": 25550, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007965", - "question_id": 25551, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000534", - "question_id": 25552, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008316", - "question_id": 25553, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004796", - "question_id": 25555, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005479", - "question_id": 25556, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005543", - "question_id": 25557, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002336", - "question_id": 25558, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004295", - "question_id": 25559, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002519", - "question_id": 25563, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008013", - "question_id": 25564, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007702", - "question_id": 25565, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008643", - "question_id": 25566, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005080", - "question_id": 25567, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007470", - "question_id": 25568, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001480", - "question_id": 25570, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00000139", - "question_id": 25571, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003974", - "question_id": 25572, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002712", - "question_id": 25575, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000924", - "question_id": 25577, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002515", - "question_id": 25579, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006356", - "question_id": 25581, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006844", - "question_id": 25583, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006511", - "question_id": 25584, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00002384", - "question_id": 25585, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00001161", - "question_id": 25586, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00001735", - "question_id": 25588, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003154", - "question_id": 25589, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00007753", - "question_id": 25590, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000544", - "question_id": 25591, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000725", - "question_id": 25592, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004088", - "question_id": 25594, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001641", - "question_id": 25599, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003744", - "question_id": 25603, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004376", - "question_id": 25604, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004197", - "question_id": 25605, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006045", - "question_id": 25608, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004680", - "question_id": 25610, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004039", - "question_id": 25611, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002729", - "question_id": 25612, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008384", - "question_id": 25614, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008188", - "question_id": 25615, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008947", - "question_id": 25616, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005366", - "question_id": 25617, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007745", - "question_id": 25618, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00005338", - "question_id": 25619, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003005", - "question_id": 25620, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006734", - "question_id": 25621, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004517", - "question_id": 25622, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001135", - "question_id": 25623, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004286", - "question_id": 25624, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004748", - "question_id": 25625, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005637", - "question_id": 25627, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002757", - "question_id": 25628, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000786", - "question_id": 25629, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003792", - "question_id": 25630, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004937", - "question_id": 25631, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004364", - "question_id": 25632, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005094", - "question_id": 25634, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001038", - "question_id": 25635, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005447", - "question_id": 25636, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008939", - "question_id": 25637, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004195", - "question_id": 25638, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001298", - "question_id": 25639, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004755", - "question_id": 25640, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000954", - "question_id": 25642, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004654", - "question_id": 25643, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007092", - "question_id": 25644, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007000", - "question_id": 25646, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00004406", - "question_id": 25647, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001268", - "question_id": 25648, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007104", - "question_id": 25649, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005883", - "question_id": 25650, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004336", - "question_id": 25651, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005057", - "question_id": 25652, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004260", - "question_id": 25653, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002680", - "question_id": 25655, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006777", - "question_id": 25657, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003171", - "question_id": 25658, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002454", - "question_id": 25659, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000053", - "question_id": 25660, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002124", - "question_id": 25661, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004209", - "question_id": 25663, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007478", - "question_id": 25664, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000622", - "question_id": 25665, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008790", - "question_id": 25667, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003142", - "question_id": 25668, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005071", - "question_id": 25669, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007401", - "question_id": 25671, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006394", - "question_id": 25672, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00002410", - "question_id": 25674, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004235", - "question_id": 25675, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004235", - "question_id": 25677, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002706", - "question_id": 25678, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002957", - "question_id": 25679, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004853", - "question_id": 25680, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00005844", - "question_id": 25681, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002538", - "question_id": 25683, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00002836", - "question_id": 25685, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002210", - "question_id": 25686, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006839", - "question_id": 25687, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00007707", - "question_id": 25688, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00008555", - "question_id": 25689, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006165", - "question_id": 25690, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00002562", - "question_id": 25691, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006634", - "question_id": 25692, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004253", - "question_id": 25693, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007532", - "question_id": 25694, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000276", - "question_id": 25696, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006434", - "question_id": 25698, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003179", - "question_id": 25699, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003826", - "question_id": 25701, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005133", - "question_id": 25703, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001709", - "question_id": 25705, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000160", - "question_id": 25707, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004383", - "question_id": 25708, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000316", - "question_id": 25709, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005063", - "question_id": 25710, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003578", - "question_id": 25712, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007342", - "question_id": 25713, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005761", - "question_id": 25714, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005930", - "question_id": 25715, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000111", - "question_id": 25717, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001079", - "question_id": 25718, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00006969", - "question_id": 25719, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003180", - "question_id": 25720, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002022", - "question_id": 25721, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00005069", - "question_id": 25723, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007911", - "question_id": 25724, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000080", - "question_id": 25726, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007489", - "question_id": 25727, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003619", - "question_id": 25728, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004522", - "question_id": 25730, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002758", - "question_id": 25731, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00007372", - "question_id": 25732, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000899", - "question_id": 25733, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008819", - "question_id": 25734, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006347", - "question_id": 25736, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002986", - "question_id": 25741, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00002954", - "question_id": 25742, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001428", - "question_id": 25743, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006355", - "question_id": 25744, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005648", - "question_id": 25747, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003750", - "question_id": 25748, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006784", - "question_id": 25750, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003506", - "question_id": 25751, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"congas\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006518", - "question_id": 25752, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005606", - "question_id": 25753, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00003726", - "question_id": 25755, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003656", - "question_id": 25757, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008557", - "question_id": 25758, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00007679", - "question_id": 25759, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001908", - "question_id": 25760, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003551", - "question_id": 25761, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004315", - "question_id": 25762, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008883", - "question_id": 25764, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00007011", - "question_id": 25766, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007275", - "question_id": 25767, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004390", - "question_id": 25768, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003587", - "question_id": 25769, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007115", - "question_id": 25770, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001682", - "question_id": 25771, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005824", - "question_id": 25772, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000893", - "question_id": 25773, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000536", - "question_id": 25774, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006433", - "question_id": 25775, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006433", - "question_id": 25775, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000519", - "question_id": 25777, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00001133", - "question_id": 25778, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00001737", - "question_id": 25779, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004612", - "question_id": 25780, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007466", - "question_id": 25781, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006573", - "question_id": 25782, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003195", - "question_id": 25783, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00001593", - "question_id": 25785, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005323", - "question_id": 25786, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006363", - "question_id": 25787, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005150", - "question_id": 25788, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003470", - "question_id": 25790, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00003769", - "question_id": 25791, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005150", - "question_id": 25792, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002646", - "question_id": 25793, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001989", - "question_id": 25796, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006453", - "question_id": 25797, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007152", - "question_id": 25799, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00008902", - "question_id": 25800, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000936", - "question_id": 25802, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001941", - "question_id": 25804, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00005820", - "question_id": 25805, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003430", - "question_id": 25806, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003339", - "question_id": 25807, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004437", - "question_id": 25808, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000021", - "question_id": 25809, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00001591", - "question_id": 25810, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"xylophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005919", - "question_id": 25812, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00004442", - "question_id": 25814, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006478", - "question_id": 25815, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008581", - "question_id": 25817, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008712", - "question_id": 25819, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003060", - "question_id": 25821, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004711", - "question_id": 25822, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"accordion\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003332", - "question_id": 25823, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005306", - "question_id": 25824, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003846", - "question_id": 25825, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004890", - "question_id": 25827, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001354", - "question_id": 25828, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002481", - "question_id": 25829, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006559", - "question_id": 25830, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007715", - "question_id": 25831, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000474", - "question_id": 25832, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000826", - "question_id": 25836, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002080", - "question_id": 25838, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00005744", - "question_id": 25839, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00003777", - "question_id": 25840, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007546", - "question_id": 25841, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006048", - "question_id": 25842, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006328", - "question_id": 25844, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004108", - "question_id": 25845, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008062", - "question_id": 25846, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006663", - "question_id": 25848, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008930", - "question_id": 25849, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007591", - "question_id": 25850, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00000214", - "question_id": 25851, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002016", - "question_id": 25852, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002553", - "question_id": 25853, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000909", - "question_id": 25854, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008426", - "question_id": 25855, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000263", - "question_id": 25856, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005961", - "question_id": 25857, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001721", - "question_id": 25859, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002534", - "question_id": 25860, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00005139", - "question_id": 25861, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006913", - "question_id": 25862, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00008408", - "question_id": 25864, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003996", - "question_id": 25867, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004585", - "question_id": 25869, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00008240", - "question_id": 25872, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002466", - "question_id": 25873, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00008472", - "question_id": 25874, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005609", - "question_id": 25875, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002844", - "question_id": 25876, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002922", - "question_id": 25879, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005288", - "question_id": 25880, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00007278", - "question_id": 25881, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006067", - "question_id": 25882, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"congas\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000644", - "question_id": 25883, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007381", - "question_id": 25885, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002465", - "question_id": 25887, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008729", - "question_id": 25888, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006267", - "question_id": 25890, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007650", - "question_id": 25892, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003711", - "question_id": 25893, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002119", - "question_id": 25894, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00006018", - "question_id": 25895, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001566", - "question_id": 25896, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007377", - "question_id": 25897, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"congas\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001407", - "question_id": 25900, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002087", - "question_id": 25901, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006657", - "question_id": 25902, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002580", - "question_id": 25905, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001761", - "question_id": 25906, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001801", - "question_id": 25907, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004065", - "question_id": 25909, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"suona\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001680", - "question_id": 25912, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008670", - "question_id": 25915, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001809", - "question_id": 25916, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008820", - "question_id": 25917, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004291", - "question_id": 25919, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001706", - "question_id": 25921, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00004988", - "question_id": 25924, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002191", - "question_id": 25925, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005632", - "question_id": 25928, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006072", - "question_id": 25929, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008846", - "question_id": 25931, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000182", - "question_id": 25932, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001414", - "question_id": 25933, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000741", - "question_id": 25934, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005406", - "question_id": 25935, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006470", - "question_id": 25937, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000046", - "question_id": 25938, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008887", - "question_id": 25940, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00008887", - "question_id": 25940, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005901", - "question_id": 25942, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008706", - "question_id": 25943, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005188", - "question_id": 25944, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007327", - "question_id": 25945, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005384", - "question_id": 25946, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008027", - "question_id": 25948, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007586", - "question_id": 25950, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003713", - "question_id": 25951, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001837", - "question_id": 25953, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00005300", - "question_id": 25954, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004636", - "question_id": 25955, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006170", - "question_id": 25956, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006789", - "question_id": 25958, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003606", - "question_id": 25959, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007926", - "question_id": 25961, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007051", - "question_id": 25963, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00000560", - "question_id": 25964, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004791", - "question_id": 25965, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002673", - "question_id": 25968, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003422", - "question_id": 25969, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002272", - "question_id": 25970, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001381", - "question_id": 25971, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001865", - "question_id": 25972, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004790", - "question_id": 25973, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001717", - "question_id": 25974, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004340", - "question_id": 25975, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00008021", - "question_id": 25976, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008257", - "question_id": 25978, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008063", - "question_id": 25979, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001141", - "question_id": 25980, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000117", - "question_id": 25981, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006297", - "question_id": 25982, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007378", - "question_id": 25984, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002422", - "question_id": 25988, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002514", - "question_id": 25989, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002500", - "question_id": 25990, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005956", - "question_id": 25991, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001376", - "question_id": 25992, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00003320", - "question_id": 25993, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001931", - "question_id": 25994, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006025", - "question_id": 25995, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005927", - "question_id": 25996, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00004696", - "question_id": 25998, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000462", - "question_id": 26000, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006139", - "question_id": 26003, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006460", - "question_id": 26005, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002344", - "question_id": 26006, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004447", - "question_id": 26008, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004952", - "question_id": 26009, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00006873", - "question_id": 26010, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001075", - "question_id": 26011, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004934", - "question_id": 26012, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007733", - "question_id": 26013, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005982", - "question_id": 26014, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006853", - "question_id": 26015, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008887", - "question_id": 26016, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007763", - "question_id": 26017, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003596", - "question_id": 26019, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00004635", - "question_id": 26021, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008819", - "question_id": 26022, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003572", - "question_id": 26023, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00008391", - "question_id": 26024, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000254", - "question_id": 26025, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005296", - "question_id": 26027, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005071", - "question_id": 26030, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000124", - "question_id": 26031, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005390", - "question_id": 26032, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004823", - "question_id": 26034, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007384", - "question_id": 26037, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002066", - "question_id": 26038, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008874", - "question_id": 26041, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005286", - "question_id": 26042, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001522", - "question_id": 26043, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001694", - "question_id": 26044, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00000964", - "question_id": 26045, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003901", - "question_id": 26046, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006716", - "question_id": 26048, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006013", - "question_id": 26049, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002799", - "question_id": 26050, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000457", - "question_id": 26052, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002918", - "question_id": 26054, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005794", - "question_id": 26058, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008847", - "question_id": 26060, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008625", - "question_id": 26062, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001600", - "question_id": 26063, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007023", - "question_id": 26064, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001957", - "question_id": 26066, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004361", - "question_id": 26070, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000699", - "question_id": 26071, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00006290", - "question_id": 26073, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000628", - "question_id": 26074, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004310", - "question_id": 26076, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000056", - "question_id": 26077, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002348", - "question_id": 26078, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00001643", - "question_id": 26080, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005457", - "question_id": 26081, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002805", - "question_id": 26082, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000934", - "question_id": 26083, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001950", - "question_id": 26086, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001140", - "question_id": 26087, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003390", - "question_id": 26088, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001456", - "question_id": 26090, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00004071", - "question_id": 26092, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003085", - "question_id": 26093, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002729", - "question_id": 26094, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003684", - "question_id": 26095, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006603", - "question_id": 26096, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000769", - "question_id": 26097, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002856", - "question_id": 26098, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00002024", - "question_id": 26099, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008359", - "question_id": 26101, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006016", - "question_id": 26102, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006460", - "question_id": 26104, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00004892", - "question_id": 26105, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008662", - "question_id": 26106, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003762", - "question_id": 26109, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005525", - "question_id": 26110, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002903", - "question_id": 26111, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000432", - "question_id": 26112, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005009", - "question_id": 26113, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001114", - "question_id": 26115, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006850", - "question_id": 26116, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002173", - "question_id": 26119, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005062", - "question_id": 26121, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008184", - "question_id": 26122, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006407", - "question_id": 26123, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008656", - "question_id": 26125, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008896", - "question_id": 26128, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001002", - "question_id": 26131, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00005954", - "question_id": 26133, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008307", - "question_id": 26134, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007850", - "question_id": 26135, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008762", - "question_id": 26136, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000030", - "question_id": 26137, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00002562", - "question_id": 26140, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004306", - "question_id": 26141, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005559", - "question_id": 26143, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007681", - "question_id": 26144, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003265", - "question_id": 26147, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"trumpet\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008051", - "question_id": 26149, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000857", - "question_id": 26151, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00006666", - "question_id": 26152, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00006730", - "question_id": 26153, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00008818", - "question_id": 26155, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003716", - "question_id": 26156, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008378", - "question_id": 26159, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"xylophone\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001801", - "question_id": 26160, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002259", - "question_id": 26161, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008867", - "question_id": 26162, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00002568", - "question_id": 26163, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000635", - "question_id": 26164, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002443", - "question_id": 26165, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005749", - "question_id": 26166, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003205", - "question_id": 26168, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00006570", - "question_id": 26169, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002891", - "question_id": 26171, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005401", - "question_id": 26172, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007220", - "question_id": 26173, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001203", - "question_id": 26174, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005195", - "question_id": 26175, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006419", - "question_id": 26177, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008103", - "question_id": 26178, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006148", - "question_id": 26179, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004139", - "question_id": 26180, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002016", - "question_id": 26181, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007261", - "question_id": 26182, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"piano\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008618", - "question_id": 26183, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004517", - "question_id": 26189, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001759", - "question_id": 26190, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001479", - "question_id": 26192, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007211", - "question_id": 26193, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005587", - "question_id": 26195, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005760", - "question_id": 26196, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00002458", - "question_id": 26197, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002349", - "question_id": 26198, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006124", - "question_id": 26200, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000619", - "question_id": 26201, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00006579", - "question_id": 26202, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002415", - "question_id": 26205, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004402", - "question_id": 26206, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005633", - "question_id": 26207, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004339", - "question_id": 26208, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000660", - "question_id": 26210, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002939", - "question_id": 26211, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004850", - "question_id": 26212, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000132", - "question_id": 26213, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008217", - "question_id": 26214, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006872", - "question_id": 26216, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005622", - "question_id": 26217, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006801", - "question_id": 26218, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006024", - "question_id": 26221, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008861", - "question_id": 26222, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00008048", - "question_id": 26223, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004267", - "question_id": 26224, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000384", - "question_id": 26225, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005773", - "question_id": 26226, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007001", - "question_id": 26228, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00003038", - "question_id": 26230, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007239", - "question_id": 26231, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00008801", - "question_id": 26232, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005038", - "question_id": 26233, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008022", - "question_id": 26234, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008153", - "question_id": 26235, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00005313", - "question_id": 26238, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004456", - "question_id": 26240, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004881", - "question_id": 26241, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002065", - "question_id": 26242, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008288", - "question_id": 26243, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001017", - "question_id": 26244, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00001283", - "question_id": 26245, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004502", - "question_id": 26247, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005587", - "question_id": 26249, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007115", - "question_id": 26250, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001249", - "question_id": 26251, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007738", - "question_id": 26253, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003636", - "question_id": 26256, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004704", - "question_id": 26257, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00006650", - "question_id": 26258, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008806", - "question_id": 26262, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003633", - "question_id": 26263, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000340", - "question_id": 26264, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007766", - "question_id": 26268, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003892", - "question_id": 26270, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006702", - "question_id": 26271, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007379", - "question_id": 26272, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00007221", - "question_id": 26273, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006562", - "question_id": 26275, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007856", - "question_id": 26276, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006963", - "question_id": 26277, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00003905", - "question_id": 26278, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008941", - "question_id": 26283, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00008146", - "question_id": 26284, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000021", - "question_id": 26285, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006137", - "question_id": 26286, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002572", - "question_id": 26287, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003948", - "question_id": 26288, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004005", - "question_id": 26289, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002610", - "question_id": 26290, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00003252", - "question_id": 26292, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000026", - "question_id": 26293, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007514", - "question_id": 26294, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000846", - "question_id": 26295, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004679", - "question_id": 26296, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007971", - "question_id": 26297, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002389", - "question_id": 26298, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00003649", - "question_id": 26299, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004228", - "question_id": 26302, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005482", - "question_id": 26303, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008605", - "question_id": 26304, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006175", - "question_id": 26305, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002243", - "question_id": 26307, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002243", - "question_id": 26307, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004763", - "question_id": 26312, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003642", - "question_id": 26313, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008721", - "question_id": 26315, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00001061", - "question_id": 26316, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006182", - "question_id": 26317, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000228", - "question_id": 26318, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007086", - "question_id": 26319, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005317", - "question_id": 26320, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00003360", - "question_id": 26321, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002002", - "question_id": 26322, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008007", - "question_id": 26326, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007515", - "question_id": 26327, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00008958", - "question_id": 26328, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002449", - "question_id": 26336, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000814", - "question_id": 26339, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001673", - "question_id": 26343, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001998", - "question_id": 26345, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003339", - "question_id": 26346, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003869", - "question_id": 26347, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008063", - "question_id": 26349, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002115", - "question_id": 26350, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001867", - "question_id": 26351, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000182", - "question_id": 26352, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007261", - "question_id": 26354, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008484", - "question_id": 26355, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003837", - "question_id": 26359, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006342", - "question_id": 26360, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005261", - "question_id": 26361, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004027", - "question_id": 26362, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007772", - "question_id": 26364, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00006116", - "question_id": 26366, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008924", - "question_id": 26367, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00000366", - "question_id": 26368, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000007", - "question_id": 26370, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001972", - "question_id": 26371, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004224", - "question_id": 26372, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008525", - "question_id": 26373, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001386", - "question_id": 26374, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002582", - "question_id": 26375, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001111", - "question_id": 26376, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006085", - "question_id": 26383, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006507", - "question_id": 26385, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007486", - "question_id": 26386, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005205", - "question_id": 26388, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000878", - "question_id": 26389, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001992", - "question_id": 26391, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00001701", - "question_id": 26393, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00002172", - "question_id": 26396, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002614", - "question_id": 26397, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001612", - "question_id": 26398, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00005451", - "question_id": 26399, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006055", - "question_id": 26401, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005316", - "question_id": 26403, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00003487", - "question_id": 26405, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001580", - "question_id": 26406, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004836", - "question_id": 26407, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000665", - "question_id": 26408, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003170", - "question_id": 26409, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007189", - "question_id": 26410, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007000", - "question_id": 26411, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001088", - "question_id": 26413, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008415", - "question_id": 26414, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005524", - "question_id": 26418, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00005844", - "question_id": 26421, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003591", - "question_id": 26422, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003028", - "question_id": 26424, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bagpipe\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004633", - "question_id": 26425, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004523", - "question_id": 26428, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005735", - "question_id": 26429, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002347", - "question_id": 26433, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000734", - "question_id": 26434, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001704", - "question_id": 26438, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005456", - "question_id": 26439, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008974", - "question_id": 26441, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006271", - "question_id": 26442, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005628", - "question_id": 26443, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00003821", - "question_id": 26444, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008670", - "question_id": 26445, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005624", - "question_id": 26449, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001682", - "question_id": 26450, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008102", - "question_id": 26451, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004050", - "question_id": 26452, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003729", - "question_id": 26454, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004376", - "question_id": 26455, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004487", - "question_id": 26457, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00001887", - "question_id": 26458, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003275", - "question_id": 26459, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004117", - "question_id": 26460, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005675", - "question_id": 26462, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002307", - "question_id": 26463, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001995", - "question_id": 26464, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004795", - "question_id": 26466, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001706", - "question_id": 26468, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004856", - "question_id": 26469, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008821", - "question_id": 26471, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006361", - "question_id": 26472, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005566", - "question_id": 26473, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007897", - "question_id": 26474, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003228", - "question_id": 26475, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003010", - "question_id": 26477, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008225", - "question_id": 26479, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008031", - "question_id": 26483, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008409", - "question_id": 26485, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00003122", - "question_id": 26486, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006209", - "question_id": 26490, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000035", - "question_id": 26491, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007261", - "question_id": 26492, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006121", - "question_id": 26493, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003843", - "question_id": 26494, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001088", - "question_id": 26495, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008634", - "question_id": 26496, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00002201", - "question_id": 26498, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008121", - "question_id": 26500, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000814", - "question_id": 26501, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004560", - "question_id": 26503, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004072", - "question_id": 26505, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001882", - "question_id": 26507, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003546", - "question_id": 26508, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001404", - "question_id": 26509, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00005532", - "question_id": 26510, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008418", - "question_id": 26512, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002747", - "question_id": 26513, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000260", - "question_id": 26514, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008443", - "question_id": 26516, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002374", - "question_id": 26517, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00004761", - "question_id": 26518, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007113", - "question_id": 26519, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000903", - "question_id": 26520, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005678", - "question_id": 26521, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003931", - "question_id": 26523, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002043", - "question_id": 26526, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008529", - "question_id": 26528, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00000382", - "question_id": 26529, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007626", - "question_id": 26530, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006384", - "question_id": 26531, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005809", - "question_id": 26532, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004435", - "question_id": 26534, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005354", - "question_id": 26536, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005026", - "question_id": 26537, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001399", - "question_id": 26538, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00007229", - "question_id": 26539, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003202", - "question_id": 26540, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004838", - "question_id": 26541, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007792", - "question_id": 26542, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008678", - "question_id": 26543, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007044", - "question_id": 26544, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00008035", - "question_id": 26545, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004094", - "question_id": 26546, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001519", - "question_id": 26547, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006121", - "question_id": 26548, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004253", - "question_id": 26552, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001802", - "question_id": 26553, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001084", - "question_id": 26555, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00005252", - "question_id": 26557, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008481", - "question_id": 26558, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003850", - "question_id": 26559, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001262", - "question_id": 26560, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005930", - "question_id": 26561, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003567", - "question_id": 26562, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004176", - "question_id": 26564, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008076", - "question_id": 26565, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002194", - "question_id": 26568, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002306", - "question_id": 26569, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000128", - "question_id": 26570, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008597", - "question_id": 26571, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008881", - "question_id": 26573, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008290", - "question_id": 26574, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000925", - "question_id": 26575, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00005006", - "question_id": 26576, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003672", - "question_id": 26577, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002949", - "question_id": 26578, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002132", - "question_id": 26579, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004358", - "question_id": 26580, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006184", - "question_id": 26582, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005689", - "question_id": 26583, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00002462", - "question_id": 26584, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"drum\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003660", - "question_id": 26585, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006716", - "question_id": 26586, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005430", - "question_id": 26587, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001896", - "question_id": 26588, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006895", - "question_id": 26589, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005354", - "question_id": 26591, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003328", - "question_id": 26592, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004508", - "question_id": 26593, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000918", - "question_id": 26594, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007150", - "question_id": 26595, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007826", - "question_id": 26597, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005105", - "question_id": 26598, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005608", - "question_id": 26599, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002904", - "question_id": 26600, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002839", - "question_id": 26602, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000880", - "question_id": 26604, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000023", - "question_id": 26605, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000526", - "question_id": 26606, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005237", - "question_id": 26608, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005090", - "question_id": 26610, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001652", - "question_id": 26612, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005126", - "question_id": 26614, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007791", - "question_id": 26616, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00000998", - "question_id": 26618, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005692", - "question_id": 26619, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005209", - "question_id": 26620, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003526", - "question_id": 26622, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004651", - "question_id": 26625, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005638", - "question_id": 26626, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002898", - "question_id": 26627, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002784", - "question_id": 26629, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001791", - "question_id": 26631, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005149", - "question_id": 26632, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000634", - "question_id": 26633, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00000005", - "question_id": 26634, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005018", - "question_id": 26635, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00008458", - "question_id": 26637, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002412", - "question_id": 26640, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00000973", - "question_id": 26641, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004659", - "question_id": 26643, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006622", - "question_id": 26645, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00003139", - "question_id": 26647, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000134", - "question_id": 26648, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002277", - "question_id": 26649, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001739", - "question_id": 26651, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007953", - "question_id": 26653, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001916", - "question_id": 26654, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00006379", - "question_id": 26655, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004913", - "question_id": 26656, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00004853", - "question_id": 26658, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006628", - "question_id": 26660, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004064", - "question_id": 26662, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005011", - "question_id": 26664, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001341", - "question_id": 26666, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003580", - "question_id": 26668, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005811", - "question_id": 26670, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007992", - "question_id": 26671, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004458", - "question_id": 26672, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001874", - "question_id": 26673, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008386", - "question_id": 26674, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005998", - "question_id": 26675, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001953", - "question_id": 26676, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000075", - "question_id": 26677, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"pipa\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006349", - "question_id": 26678, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005386", - "question_id": 26679, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004676", - "question_id": 26680, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00005977", - "question_id": 26681, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005999", - "question_id": 26682, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001492", - "question_id": 26684, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005769", - "question_id": 26685, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000701", - "question_id": 26687, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005371", - "question_id": 26688, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008591", - "question_id": 26689, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001928", - "question_id": 26690, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004504", - "question_id": 26691, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004115", - "question_id": 26692, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004065", - "question_id": 26694, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006185", - "question_id": 26695, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00005956", - "question_id": 26696, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000141", - "question_id": 26697, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008530", - "question_id": 26698, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000443", - "question_id": 26699, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006974", - "question_id": 26700, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004185", - "question_id": 26702, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003866", - "question_id": 26703, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007444", - "question_id": 26704, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006230", - "question_id": 26706, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006441", - "question_id": 26707, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"trumpet\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006943", - "question_id": 26708, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005652", - "question_id": 26709, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"xylophone\", \"middle\", \"xylophone\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005652", - "question_id": 26709, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"xylophone\", \"middle\", \"xylophone\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005482", - "question_id": 26710, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007346", - "question_id": 26711, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008793", - "question_id": 26712, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00006005", - "question_id": 26713, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005898", - "question_id": 26714, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002926", - "question_id": 26716, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003202", - "question_id": 26717, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008408", - "question_id": 26718, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007300", - "question_id": 26719, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002186", - "question_id": 26720, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005064", - "question_id": 26722, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000273", - "question_id": 26723, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002307", - "question_id": 26724, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004263", - "question_id": 26728, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004864", - "question_id": 26729, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002636", - "question_id": 26731, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003783", - "question_id": 26735, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008509", - "question_id": 26738, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008149", - "question_id": 26739, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003261", - "question_id": 26741, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002347", - "question_id": 26743, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007359", - "question_id": 26744, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005120", - "question_id": 26745, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007146", - "question_id": 26746, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000706", - "question_id": 26747, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000049", - "question_id": 26748, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005536", - "question_id": 26750, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008310", - "question_id": 26751, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004358", - "question_id": 26752, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000951", - "question_id": 26754, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008838", - "question_id": 26755, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003751", - "question_id": 26756, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00006265", - "question_id": 26757, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001574", - "question_id": 26758, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006499", - "question_id": 26759, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001604", - "question_id": 26760, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007737", - "question_id": 26761, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004577", - "question_id": 26762, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006549", - "question_id": 26763, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008523", - "question_id": 26764, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001562", - "question_id": 26766, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007558", - "question_id": 26769, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008246", - "question_id": 26773, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008884", - "question_id": 26774, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000238", - "question_id": 26775, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000660", - "question_id": 26777, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001764", - "question_id": 26778, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00004359", - "question_id": 26779, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005783", - "question_id": 26782, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001804", - "question_id": 26783, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005918", - "question_id": 26784, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004158", - "question_id": 26785, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000959", - "question_id": 26788, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006662", - "question_id": 26789, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00002804", - "question_id": 26790, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002509", - "question_id": 26791, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000716", - "question_id": 26792, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00002877", - "question_id": 26793, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003927", - "question_id": 26794, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005803", - "question_id": 26795, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"congas\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000574", - "question_id": 26796, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00005941", - "question_id": 26797, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005276", - "question_id": 26798, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001493", - "question_id": 26799, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002253", - "question_id": 26801, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001485", - "question_id": 26802, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008886", - "question_id": 26804, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00008625", - "question_id": 26806, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005728", - "question_id": 26807, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004127", - "question_id": 26808, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00002272", - "question_id": 26809, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00003734", - "question_id": 26810, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006186", - "question_id": 26811, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008510", - "question_id": 26812, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008132", - "question_id": 26813, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001867", - "question_id": 26816, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004548", - "question_id": 26817, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006267", - "question_id": 26818, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002136", - "question_id": 26819, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00008657", - "question_id": 26821, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000624", - "question_id": 26822, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005100", - "question_id": 26823, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006729", - "question_id": 26825, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000339", - "question_id": 26827, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007868", - "question_id": 26828, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002658", - "question_id": 26829, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002177", - "question_id": 26830, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006682", - "question_id": 26831, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007689", - "question_id": 26834, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008518", - "question_id": 26836, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007820", - "question_id": 26837, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006308", - "question_id": 26841, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002623", - "question_id": 26842, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004031", - "question_id": 26843, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007588", - "question_id": 26844, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007704", - "question_id": 26845, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001591", - "question_id": 26846, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008439", - "question_id": 26847, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007479", - "question_id": 26852, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007479", - "question_id": 26852, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000738", - "question_id": 26853, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008013", - "question_id": 26854, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001605", - "question_id": 26857, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002929", - "question_id": 26859, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006633", - "question_id": 26863, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000103", - "question_id": 26865, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008601", - "question_id": 26868, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008601", - "question_id": 26868, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003920", - "question_id": 26869, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002851", - "question_id": 26870, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001836", - "question_id": 26871, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001572", - "question_id": 26873, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001263", - "question_id": 26875, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008912", - "question_id": 26877, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006750", - "question_id": 26878, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00004891", - "question_id": 26879, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002828", - "question_id": 26880, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007080", - "question_id": 26881, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003858", - "question_id": 26882, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000832", - "question_id": 26883, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007649", - "question_id": 26884, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008218", - "question_id": 26885, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002148", - "question_id": 26886, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004741", - "question_id": 26887, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002055", - "question_id": 26889, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003117", - "question_id": 26890, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005604", - "question_id": 26891, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005424", - "question_id": 26892, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003848", - "question_id": 26894, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000207", - "question_id": 26895, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004152", - "question_id": 26896, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00006666", - "question_id": 26897, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000775", - "question_id": 26898, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004558", - "question_id": 26899, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001110", - "question_id": 26900, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002885", - "question_id": 26901, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005971", - "question_id": 26904, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007907", - "question_id": 26905, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004774", - "question_id": 26906, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008676", - "question_id": 26910, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001315", - "question_id": 26912, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007627", - "question_id": 26913, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005658", - "question_id": 26915, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008091", - "question_id": 26916, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007012", - "question_id": 26917, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008873", - "question_id": 26919, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002573", - "question_id": 26920, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004646", - "question_id": 26923, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008794", - "question_id": 26924, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008148", - "question_id": 26926, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002393", - "question_id": 26927, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007738", - "question_id": 26928, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000938", - "question_id": 26929, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001097", - "question_id": 26930, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000163", - "question_id": 26932, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004734", - "question_id": 26934, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003043", - "question_id": 26935, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003468", - "question_id": 26937, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004690", - "question_id": 26938, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004854", - "question_id": 26940, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007852", - "question_id": 26941, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005614", - "question_id": 26942, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001613", - "question_id": 26943, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006003", - "question_id": 26944, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002828", - "question_id": 26946, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008071", - "question_id": 26947, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004368", - "question_id": 26948, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002138", - "question_id": 26949, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007830", - "question_id": 26950, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004340", - "question_id": 26951, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007385", - "question_id": 26953, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004974", - "question_id": 26954, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007637", - "question_id": 26955, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003753", - "question_id": 26956, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004494", - "question_id": 26957, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008346", - "question_id": 26958, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008346", - "question_id": 26958, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000800", - "question_id": 26960, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007586", - "question_id": 26964, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007857", - "question_id": 26965, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"right\", \"erhu\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003405", - "question_id": 26966, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00004505", - "question_id": 26968, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00008568", - "question_id": 26969, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000407", - "question_id": 26971, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007273", - "question_id": 26972, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002467", - "question_id": 26974, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001759", - "question_id": 26977, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002358", - "question_id": 26978, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00005277", - "question_id": 26979, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003711", - "question_id": 26980, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007985", - "question_id": 26981, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006490", - "question_id": 26982, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00005400", - "question_id": 26983, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000504", - "question_id": 26984, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003865", - "question_id": 26985, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005431", - "question_id": 26986, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002402", - "question_id": 26988, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002513", - "question_id": 26989, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00001221", - "question_id": 26992, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000795", - "question_id": 26993, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005575", - "question_id": 26994, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00003807", - "question_id": 26995, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000413", - "question_id": 26999, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008728", - "question_id": 27000, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00001505", - "question_id": 27002, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003165", - "question_id": 27003, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000053", - "question_id": 27004, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005718", - "question_id": 27005, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006182", - "question_id": 27006, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"electric_bass\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005896", - "question_id": 27007, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004514", - "question_id": 27008, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004203", - "question_id": 27009, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006832", - "question_id": 27010, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"xylophone\", \"left\", \"guzheng\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008612", - "question_id": 27012, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000094", - "question_id": 27013, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001803", - "question_id": 27014, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001329", - "question_id": 27016, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008453", - "question_id": 27018, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005131", - "question_id": 27019, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004730", - "question_id": 27020, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006678", - "question_id": 27024, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005418", - "question_id": 27026, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002976", - "question_id": 27027, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003415", - "question_id": 27029, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003911", - "question_id": 27031, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004527", - "question_id": 27032, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007805", - "question_id": 27033, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003468", - "question_id": 27034, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00005309", - "question_id": 27036, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006323", - "question_id": 27037, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005590", - "question_id": 27038, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004383", - "question_id": 27040, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000866", - "question_id": 27041, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008781", - "question_id": 27043, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000187", - "question_id": 27045, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002995", - "question_id": 27047, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003994", - "question_id": 27048, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001880", - "question_id": 27049, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007596", - "question_id": 27051, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004224", - "question_id": 27052, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003908", - "question_id": 27053, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008095", - "question_id": 27055, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005620", - "question_id": 27056, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005104", - "question_id": 27057, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007419", - "question_id": 27058, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00005158", - "question_id": 27059, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006801", - "question_id": 27060, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000641", - "question_id": 27061, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008861", - "question_id": 27062, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002132", - "question_id": 27065, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001709", - "question_id": 27066, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002666", - "question_id": 27067, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004278", - "question_id": 27071, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005288", - "question_id": 27072, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"xylophone\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007049", - "question_id": 27073, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002166", - "question_id": 27074, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005358", - "question_id": 27075, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005488", - "question_id": 27076, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008436", - "question_id": 27077, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006490", - "question_id": 27079, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003519", - "question_id": 27080, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006447", - "question_id": 27081, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002590", - "question_id": 27083, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00002496", - "question_id": 27085, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002496", - "question_id": 27085, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007214", - "question_id": 27086, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00005058", - "question_id": 27087, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002236", - "question_id": 27089, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001907", - "question_id": 27090, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000995", - "question_id": 27092, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008787", - "question_id": 27094, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006310", - "question_id": 27095, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004456", - "question_id": 27096, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006994", - "question_id": 27097, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006674", - "question_id": 27098, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006683", - "question_id": 27100, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008514", - "question_id": 27102, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001571", - "question_id": 27104, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001291", - "question_id": 27105, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000700", - "question_id": 27108, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003679", - "question_id": 27109, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007391", - "question_id": 27112, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002649", - "question_id": 27113, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003134", - "question_id": 27114, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00005221", - "question_id": 27115, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003703", - "question_id": 27120, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005526", - "question_id": 27121, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"accordion\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007764", - "question_id": 27122, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"suona\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003561", - "question_id": 27123, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00005887", - "question_id": 27124, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006986", - "question_id": 27125, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003648", - "question_id": 27126, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00000863", - "question_id": 27127, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"congas\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006361", - "question_id": 27128, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006978", - "question_id": 27130, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005692", - "question_id": 27131, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007130", - "question_id": 27134, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00001225", - "question_id": 27135, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00003993", - "question_id": 27136, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00007930", - "question_id": 27137, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007409", - "question_id": 27140, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003731", - "question_id": 27142, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00008708", - "question_id": 27143, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007270", - "question_id": 27144, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bagpipe\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006716", - "question_id": 27145, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008951", - "question_id": 27146, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007169", - "question_id": 27147, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005663", - "question_id": 27148, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002569", - "question_id": 27149, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002853", - "question_id": 27150, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005848", - "question_id": 27151, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004031", - "question_id": 27152, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003600", - "question_id": 27153, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003397", - "question_id": 27154, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00005782", - "question_id": 27155, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007187", - "question_id": 27157, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003749", - "question_id": 27158, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005732", - "question_id": 27159, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000368", - "question_id": 27160, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003148", - "question_id": 27161, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"middle\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000454", - "question_id": 27163, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002541", - "question_id": 27164, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"tuba\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003941", - "question_id": 27165, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001497", - "question_id": 27166, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004943", - "question_id": 27167, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004758", - "question_id": 27170, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006803", - "question_id": 27171, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001041", - "question_id": 27173, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002180", - "question_id": 27176, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004222", - "question_id": 27178, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00007110", - "question_id": 27181, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000720", - "question_id": 27182, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003121", - "question_id": 27183, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00007247", - "question_id": 27185, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00007880", - "question_id": 27188, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008663", - "question_id": 27190, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006131", - "question_id": 27191, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00006039", - "question_id": 27192, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005535", - "question_id": 27193, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00006406", - "question_id": 27194, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005331", - "question_id": 27195, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005159", - "question_id": 27196, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004323", - "question_id": 27197, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00006248", - "question_id": 27198, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002258", - "question_id": 27199, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005604", - "question_id": 27200, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007049", - "question_id": 27201, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008016", - "question_id": 27203, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003980", - "question_id": 27204, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00005850", - "question_id": 27206, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005608", - "question_id": 27207, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006883", - "question_id": 27208, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005078", - "question_id": 27209, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002863", - "question_id": 27210, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"congas\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002851", - "question_id": 27211, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008016", - "question_id": 27212, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006032", - "question_id": 27215, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005129", - "question_id": 27217, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002735", - "question_id": 27219, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"congas\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000870", - "question_id": 27220, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001985", - "question_id": 27222, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001989", - "question_id": 27223, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006512", - "question_id": 27225, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004393", - "question_id": 27226, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006620", - "question_id": 27229, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004074", - "question_id": 27232, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002299", - "question_id": 27233, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00005443", - "question_id": 27234, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003057", - "question_id": 27235, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008251", - "question_id": 27237, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003786", - "question_id": 27238, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002895", - "question_id": 27239, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003341", - "question_id": 27240, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006935", - "question_id": 27241, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001963", - "question_id": 27242, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00001170", - "question_id": 27243, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001291", - "question_id": 27244, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00003322", - "question_id": 27246, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"banjo\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006732", - "question_id": 27253, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002813", - "question_id": 27255, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004151", - "question_id": 27256, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"middle\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000915", - "question_id": 27260, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"right\", \"pipa\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005527", - "question_id": 27262, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007599", - "question_id": 27263, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00004403", - "question_id": 27265, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006281", - "question_id": 27266, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"pipa\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003921", - "question_id": 27267, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000358", - "question_id": 27271, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002629", - "question_id": 27273, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"xylophone\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005228", - "question_id": 27274, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007096", - "question_id": 27275, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001701", - "question_id": 27276, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007314", - "question_id": 27277, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00000553", - "question_id": 27278, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006488", - "question_id": 27281, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008154", - "question_id": 27283, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001729", - "question_id": 27285, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00002722", - "question_id": 27288, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005630", - "question_id": 27290, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004417", - "question_id": 27291, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000511", - "question_id": 27292, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004412", - "question_id": 27293, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004144", - "question_id": 27295, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003945", - "question_id": 27296, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002645", - "question_id": 27297, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00001488", - "question_id": 27298, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006760", - "question_id": 27301, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005809", - "question_id": 27302, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00008266", - "question_id": 27303, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002277", - "question_id": 27305, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007467", - "question_id": 27306, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007467", - "question_id": 27306, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007664", - "question_id": 27307, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004663", - "question_id": 27309, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00003110", - "question_id": 27311, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00008123", - "question_id": 27312, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007886", - "question_id": 27315, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002715", - "question_id": 27317, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00008642", - "question_id": 27318, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001464", - "question_id": 27319, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00005530", - "question_id": 27321, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001076", - "question_id": 27322, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001035", - "question_id": 27323, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003699", - "question_id": 27326, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007686", - "question_id": 27327, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004951", - "question_id": 27330, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000749", - "question_id": 27332, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004958", - "question_id": 27333, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000684", - "question_id": 27334, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002780", - "question_id": 27335, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004501", - "question_id": 27336, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000856", - "question_id": 27337, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001284", - "question_id": 27338, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004368", - "question_id": 27340, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002331", - "question_id": 27341, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003834", - "question_id": 27342, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008384", - "question_id": 27344, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008819", - "question_id": 27346, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004441", - "question_id": 27349, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00001165", - "question_id": 27350, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00001658", - "question_id": 27351, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005768", - "question_id": 27352, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000675", - "question_id": 27353, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00006653", - "question_id": 27354, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00006371", - "question_id": 27355, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006109", - "question_id": 27356, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002715", - "question_id": 27358, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005421", - "question_id": 27359, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004098", - "question_id": 27360, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006688", - "question_id": 27361, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004718", - "question_id": 27362, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004178", - "question_id": 27364, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001827", - "question_id": 27365, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00006850", - "question_id": 27366, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001511", - "question_id": 27368, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000822", - "question_id": 27369, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00002600", - "question_id": 27370, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006532", - "question_id": 27372, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00005012", - "question_id": 27373, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004599", - "question_id": 27374, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004159", - "question_id": 27375, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002611", - "question_id": 27376, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008475", - "question_id": 27378, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00006391", - "question_id": 27379, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003649", - "question_id": 27384, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00002683", - "question_id": 27385, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004683", - "question_id": 27387, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007056", - "question_id": 27389, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002930", - "question_id": 27391, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00008902", - "question_id": 27395, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006120", - "question_id": 27396, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00004738", - "question_id": 27397, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000312", - "question_id": 27398, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00006079", - "question_id": 27400, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003923", - "question_id": 27401, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000392", - "question_id": 27403, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003190", - "question_id": 27404, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000977", - "question_id": 27407, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004481", - "question_id": 27408, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007221", - "question_id": 27409, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005034", - "question_id": 27410, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005569", - "question_id": 27412, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002863", - "question_id": 27413, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001542", - "question_id": 27414, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004632", - "question_id": 27415, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008484", - "question_id": 27416, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005930", - "question_id": 27417, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00001392", - "question_id": 27418, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008191", - "question_id": 27421, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007359", - "question_id": 27423, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003775", - "question_id": 27424, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006346", - "question_id": 27426, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002659", - "question_id": 27427, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004783", - "question_id": 27428, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"xylophone\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00001433", - "question_id": 27430, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007701", - "question_id": 27431, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00000170", - "question_id": 27434, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002687", - "question_id": 27436, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00000202", - "question_id": 27437, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002414", - "question_id": 27439, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004013", - "question_id": 27440, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000832", - "question_id": 27446, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004504", - "question_id": 27447, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004721", - "question_id": 27448, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00008547", - "question_id": 27449, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002198", - "question_id": 27450, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002198", - "question_id": 27450, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004587", - "question_id": 27454, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00001506", - "question_id": 27455, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000948", - "question_id": 27457, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"banjo\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00003860", - "question_id": 27458, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00002028", - "question_id": 27459, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008422", - "question_id": 27464, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001479", - "question_id": 27465, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006655", - "question_id": 27466, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005446", - "question_id": 27468, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008972", - "question_id": 27469, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000355", - "question_id": 27470, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006858", - "question_id": 27472, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004852", - "question_id": 27473, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004023", - "question_id": 27474, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008573", - "question_id": 27477, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001621", - "question_id": 27479, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005425", - "question_id": 27480, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007479", - "question_id": 27481, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008297", - "question_id": 27482, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002173", - "question_id": 27483, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00008338", - "question_id": 27484, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006058", - "question_id": 27485, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005450", - "question_id": 27486, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001361", - "question_id": 27488, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007614", - "question_id": 27490, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006193", - "question_id": 27491, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005004", - "question_id": 27492, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003639", - "question_id": 27494, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005999", - "question_id": 27495, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00004724", - "question_id": 27496, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006883", - "question_id": 27498, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005711", - "question_id": 27499, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002782", - "question_id": 27500, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006473", - "question_id": 27501, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006564", - "question_id": 27502, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005617", - "question_id": 27503, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008391", - "question_id": 27506, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006615", - "question_id": 27507, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00006280", - "question_id": 27508, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002685", - "question_id": 27510, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00000280", - "question_id": 27511, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004586", - "question_id": 27512, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007541", - "question_id": 27513, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007836", - "question_id": 27514, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001037", - "question_id": 27515, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001820", - "question_id": 27516, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000985", - "question_id": 27517, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00000106", - "question_id": 27519, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004869", - "question_id": 27520, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003713", - "question_id": 27521, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006686", - "question_id": 27522, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00003703", - "question_id": 27526, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006996", - "question_id": 27527, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00006080", - "question_id": 27528, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001114", - "question_id": 27532, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001843", - "question_id": 27534, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007637", - "question_id": 27535, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006201", - "question_id": 27536, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"congas\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000814", - "question_id": 27537, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008155", - "question_id": 27539, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002459", - "question_id": 27540, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003290", - "question_id": 27542, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00008979", - "question_id": 27544, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005312", - "question_id": 27545, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002821", - "question_id": 27547, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002238", - "question_id": 27549, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004797", - "question_id": 27551, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00001952", - "question_id": 27552, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00005842", - "question_id": 27553, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007181", - "question_id": 27555, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000370", - "question_id": 27556, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002389", - "question_id": 27559, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006990", - "question_id": 27560, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004429", - "question_id": 27562, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005587", - "question_id": 27564, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006951", - "question_id": 27565, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006951", - "question_id": 27565, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006029", - "question_id": 27566, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006657", - "question_id": 27569, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005479", - "question_id": 27571, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001918", - "question_id": 27573, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005714", - "question_id": 27575, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00000131", - "question_id": 27576, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002319", - "question_id": 27577, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00001283", - "question_id": 27579, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006953", - "question_id": 27581, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005471", - "question_id": 27583, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008382", - "question_id": 27585, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008899", - "question_id": 27587, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004675", - "question_id": 27588, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006924", - "question_id": 27590, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00007505", - "question_id": 27591, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006013", - "question_id": 27593, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001822", - "question_id": 27594, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006741", - "question_id": 27595, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003708", - "question_id": 27598, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003983", - "question_id": 27600, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002369", - "question_id": 27602, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005895", - "question_id": 27603, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001115", - "question_id": 27605, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006086", - "question_id": 27607, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006395", - "question_id": 27608, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007041", - "question_id": 27610, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002294", - "question_id": 27611, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00001817", - "question_id": 27612, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005182", - "question_id": 27614, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007334", - "question_id": 27616, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00000657", - "question_id": 27617, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002900", - "question_id": 27619, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004181", - "question_id": 27620, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005797", - "question_id": 27621, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00005411", - "question_id": 27622, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006157", - "question_id": 27623, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007612", - "question_id": 27624, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00003119", - "question_id": 27626, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004740", - "question_id": 27627, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00005513", - "question_id": 27629, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008547", - "question_id": 27631, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00001524", - "question_id": 27632, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00002714", - "question_id": 27633, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003068", - "question_id": 27637, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007617", - "question_id": 27639, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002931", - "question_id": 27640, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003417", - "question_id": 27641, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00000878", - "question_id": 27643, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005001", - "question_id": 27645, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002402", - "question_id": 27646, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00008009", - "question_id": 27647, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003849", - "question_id": 27648, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003707", - "question_id": 27649, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001459", - "question_id": 27650, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00007318", - "question_id": 27651, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003262", - "question_id": 27653, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008109", - "question_id": 27654, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000785", - "question_id": 27656, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00003737", - "question_id": 27658, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004194", - "question_id": 27659, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00004706", - "question_id": 27661, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008576", - "question_id": 27662, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004783", - "question_id": 27664, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003937", - "question_id": 27665, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000033", - "question_id": 27666, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00005742", - "question_id": 27667, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00007534", - "question_id": 27668, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006316", - "question_id": 27670, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008331", - "question_id": 27673, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001918", - "question_id": 27674, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001248", - "question_id": 27675, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00008356", - "question_id": 27679, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002591", - "question_id": 27680, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00008784", - "question_id": 27682, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001330", - "question_id": 27683, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00007290", - "question_id": 27684, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003486", - "question_id": 27686, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00003589", - "question_id": 27688, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00006851", - "question_id": 27689, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008510", - "question_id": 27691, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002708", - "question_id": 27692, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008839", - "question_id": 27695, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001094", - "question_id": 27696, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004586", - "question_id": 27697, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001383", - "question_id": 27699, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00001125", - "question_id": 27700, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008606", - "question_id": 27701, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002194", - "question_id": 27703, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004505", - "question_id": 27704, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003867", - "question_id": 27706, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002248", - "question_id": 27707, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001179", - "question_id": 27708, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001108", - "question_id": 27709, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00008617", - "question_id": 27710, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002675", - "question_id": 27713, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002822", - "question_id": 27715, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00000398", - "question_id": 27717, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000134", - "question_id": 27719, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002286", - "question_id": 27720, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007076", - "question_id": 27721, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008610", - "question_id": 27722, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008821", - "question_id": 27724, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00006104", - "question_id": 27725, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005138", - "question_id": 27727, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002683", - "question_id": 27729, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002516", - "question_id": 27731, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006767", - "question_id": 27732, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001796", - "question_id": 27733, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001302", - "question_id": 27734, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00003131", - "question_id": 27735, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008015", - "question_id": 27736, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006315", - "question_id": 27739, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007146", - "question_id": 27740, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00005009", - "question_id": 27741, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00007466", - "question_id": 27744, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007479", - "question_id": 27745, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008260", - "question_id": 27746, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008961", - "question_id": 27747, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002287", - "question_id": 27748, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00007701", - "question_id": 27750, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00000990", - "question_id": 27752, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007298", - "question_id": 27754, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00006699", - "question_id": 27756, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007393", - "question_id": 27759, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000738", - "question_id": 27760, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00000811", - "question_id": 27761, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00007852", - "question_id": 27763, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007633", - "question_id": 27764, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000148", - "question_id": 27766, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005597", - "question_id": 27767, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000299", - "question_id": 27769, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002358", - "question_id": 27770, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"bassoon\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008301", - "question_id": 27771, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005860", - "question_id": 27773, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00007348", - "question_id": 27774, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005694", - "question_id": 27777, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007324", - "question_id": 27778, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004800", - "question_id": 27782, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000744", - "question_id": 27784, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00006298", - "question_id": 27785, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002697", - "question_id": 27787, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00003510", - "question_id": 27789, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001089", - "question_id": 27791, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00003881", - "question_id": 27792, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001777", - "question_id": 27793, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007351", - "question_id": 27794, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007251", - "question_id": 27795, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008356", - "question_id": 27796, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000397", - "question_id": 27797, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001861", - "question_id": 27798, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008793", - "question_id": 27800, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002866", - "question_id": 27801, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00000174", - "question_id": 27802, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003814", - "question_id": 27803, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005010", - "question_id": 27805, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00001812", - "question_id": 27807, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006270", - "question_id": 27808, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008706", - "question_id": 27811, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00002466", - "question_id": 27812, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005953", - "question_id": 27815, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00000511", - "question_id": 27817, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005315", - "question_id": 27818, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007652", - "question_id": 27819, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001693", - "question_id": 27820, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00002126", - "question_id": 27821, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00005517", - "question_id": 27823, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007080", - "question_id": 27824, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002589", - "question_id": 27825, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005588", - "question_id": 27827, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00002186", - "question_id": 27828, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000620", - "question_id": 27829, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000918", - "question_id": 27830, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002032", - "question_id": 27831, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008019", - "question_id": 27833, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006057", - "question_id": 27834, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004666", - "question_id": 27835, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00004503", - "question_id": 27836, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007457", - "question_id": 27837, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001065", - "question_id": 27838, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002066", - "question_id": 27841, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003303", - "question_id": 27842, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005984", - "question_id": 27844, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005785", - "question_id": 27845, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00000346", - "question_id": 27848, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006140", - "question_id": 27849, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004612", - "question_id": 27851, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00001713", - "question_id": 27853, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004361", - "question_id": 27854, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005611", - "question_id": 27856, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001934", - "question_id": 27857, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000352", - "question_id": 27858, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006110", - "question_id": 27860, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002685", - "question_id": 27861, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004373", - "question_id": 27862, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00008022", - "question_id": 27863, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00001967", - "question_id": 27864, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005887", - "question_id": 27865, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002861", - "question_id": 27866, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000283", - "question_id": 27867, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00005632", - "question_id": 27868, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00001705", - "question_id": 27869, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00007375", - "question_id": 27870, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008492", - "question_id": 27871, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007789", - "question_id": 27872, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002151", - "question_id": 27873, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002530", - "question_id": 27874, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00000706", - "question_id": 27877, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006866", - "question_id": 27878, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004909", - "question_id": 27879, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00003769", - "question_id": 27880, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006169", - "question_id": 27881, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001471", - "question_id": 27882, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005217", - "question_id": 27883, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002175", - "question_id": 27887, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00008117", - "question_id": 27888, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"last\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004479", - "question_id": 27889, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00007408", - "question_id": 27890, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006163", - "question_id": 27891, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008155", - "question_id": 27892, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005232", - "question_id": 27893, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008594", - "question_id": 27895, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00005231", - "question_id": 27899, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008006", - "question_id": 27900, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004748", - "question_id": 27901, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00007859", - "question_id": 27902, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000330", - "question_id": 27903, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002831", - "question_id": 27904, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004093", - "question_id": 27905, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001768", - "question_id": 27906, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006178", - "question_id": 27908, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004129", - "question_id": 27910, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005034", - "question_id": 27911, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008867", - "question_id": 27913, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007463", - "question_id": 27914, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00000020", - "question_id": 27917, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001630", - "question_id": 27918, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006399", - "question_id": 27919, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001845", - "question_id": 27922, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003499", - "question_id": 27923, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004222", - "question_id": 27925, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007837", - "question_id": 27926, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000148", - "question_id": 27928, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005366", - "question_id": 27929, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002101", - "question_id": 27930, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00003405", - "question_id": 27931, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008719", - "question_id": 27933, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002724", - "question_id": 27935, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005686", - "question_id": 27937, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00000640", - "question_id": 27941, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008421", - "question_id": 27943, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002323", - "question_id": 27944, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005488", - "question_id": 27946, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005405", - "question_id": 27947, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00000542", - "question_id": 27949, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00001957", - "question_id": 27950, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000352", - "question_id": 27951, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00000214", - "question_id": 27952, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001806", - "question_id": 27953, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001738", - "question_id": 27955, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000030", - "question_id": 27956, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005020", - "question_id": 27957, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004375", - "question_id": 27959, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008940", - "question_id": 27960, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00005475", - "question_id": 27963, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00001293", - "question_id": 27964, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002730", - "question_id": 27966, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003810", - "question_id": 27967, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004424", - "question_id": 27968, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00000612", - "question_id": 27969, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002173", - "question_id": 27970, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00008389", - "question_id": 27971, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003129", - "question_id": 27972, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001599", - "question_id": 27973, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000053", - "question_id": 27974, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008814", - "question_id": 27975, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003896", - "question_id": 27977, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008186", - "question_id": 27979, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008634", - "question_id": 27980, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004930", - "question_id": 27982, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002825", - "question_id": 27984, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000552", - "question_id": 27985, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003164", - "question_id": 27986, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00005022", - "question_id": 27987, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000184", - "question_id": 27991, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002765", - "question_id": 27993, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006039", - "question_id": 27994, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005210", - "question_id": 27995, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001472", - "question_id": 27996, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002660", - "question_id": 27997, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00006034", - "question_id": 27998, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001914", - "question_id": 27999, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006106", - "question_id": 28000, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006742", - "question_id": 28003, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002124", - "question_id": 28004, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00000699", - "question_id": 28005, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006878", - "question_id": 28007, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001667", - "question_id": 28008, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001107", - "question_id": 28009, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006353", - "question_id": 28010, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007987", - "question_id": 28011, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005916", - "question_id": 28012, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001228", - "question_id": 28013, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004128", - "question_id": 28014, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003555", - "question_id": 28015, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002357", - "question_id": 28017, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008230", - "question_id": 28018, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003545", - "question_id": 28020, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00007612", - "question_id": 28021, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002676", - "question_id": 28022, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004975", - "question_id": 28023, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005905", - "question_id": 28024, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003657", - "question_id": 28025, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000104", - "question_id": 28026, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008403", - "question_id": 28027, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003686", - "question_id": 28028, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003852", - "question_id": 28029, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000556", - "question_id": 28030, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005958", - "question_id": 28032, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00001778", - "question_id": 28033, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001891", - "question_id": 28036, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004020", - "question_id": 28037, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003921", - "question_id": 28040, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00006208", - "question_id": 28041, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006415", - "question_id": 28042, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001791", - "question_id": 28043, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005911", - "question_id": 28044, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00001157", - "question_id": 28045, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007413", - "question_id": 28049, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001169", - "question_id": 28050, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006531", - "question_id": 28051, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002505", - "question_id": 28053, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004500", - "question_id": 28055, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005256", - "question_id": 28056, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003039", - "question_id": 28057, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001351", - "question_id": 28059, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000433", - "question_id": 28060, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004936", - "question_id": 28061, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001041", - "question_id": 28064, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008812", - "question_id": 28065, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001413", - "question_id": 28066, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003566", - "question_id": 28067, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005095", - "question_id": 28069, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004669", - "question_id": 28070, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000869", - "question_id": 28071, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002673", - "question_id": 28072, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"xylophone\", \"left\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003368", - "question_id": 28074, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"congas\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004716", - "question_id": 28075, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"banjo\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004412", - "question_id": 28077, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000759", - "question_id": 28078, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007120", - "question_id": 28079, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003444", - "question_id": 28080, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001031", - "question_id": 28081, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005645", - "question_id": 28082, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003830", - "question_id": 28084, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002320", - "question_id": 28085, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002688", - "question_id": 28086, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003312", - "question_id": 28087, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001089", - "question_id": 28089, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005896", - "question_id": 28092, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005836", - "question_id": 28093, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004788", - "question_id": 28094, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003849", - "question_id": 28095, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007106", - "question_id": 28096, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008560", - "question_id": 28098, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003380", - "question_id": 28100, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006349", - "question_id": 28101, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"congas\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005724", - "question_id": 28105, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004292", - "question_id": 28106, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008197", - "question_id": 28107, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008274", - "question_id": 28108, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007572", - "question_id": 28109, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00001305", - "question_id": 28110, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007099", - "question_id": 28112, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"xylophone\", \"left\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005447", - "question_id": 28114, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000217", - "question_id": 28115, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003341", - "question_id": 28116, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007696", - "question_id": 28118, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00000390", - "question_id": 28119, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001656", - "question_id": 28120, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001059", - "question_id": 28121, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003707", - "question_id": 28123, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000582", - "question_id": 28124, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004622", - "question_id": 28125, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00007340", - "question_id": 28126, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004615", - "question_id": 28127, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005339", - "question_id": 28128, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001640", - "question_id": 28129, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00003017", - "question_id": 28130, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001907", - "question_id": 28132, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005873", - "question_id": 28134, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00001014", - "question_id": 28135, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004575", - "question_id": 28136, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001159", - "question_id": 28137, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00006518", - "question_id": 28138, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000344", - "question_id": 28139, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003349", - "question_id": 28140, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008070", - "question_id": 28141, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001697", - "question_id": 28142, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000703", - "question_id": 28143, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004138", - "question_id": 28148, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006115", - "question_id": 28151, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001396", - "question_id": 28158, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005918", - "question_id": 28159, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002493", - "question_id": 28160, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001961", - "question_id": 28162, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002087", - "question_id": 28164, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006363", - "question_id": 28171, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00005669", - "question_id": 28172, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002480", - "question_id": 28173, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005387", - "question_id": 28175, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006641", - "question_id": 28177, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002304", - "question_id": 28178, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000116", - "question_id": 28181, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006334", - "question_id": 28183, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00001195", - "question_id": 28185, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001380", - "question_id": 28187, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002543", - "question_id": 28189, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00006361", - "question_id": 28193, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002731", - "question_id": 28195, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007571", - "question_id": 28196, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004449", - "question_id": 28198, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008800", - "question_id": 28201, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002302", - "question_id": 28202, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003260", - "question_id": 28205, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005271", - "question_id": 28206, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006292", - "question_id": 28207, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000068", - "question_id": 28208, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007370", - "question_id": 28209, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007883", - "question_id": 28210, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008577", - "question_id": 28211, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000686", - "question_id": 28212, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007439", - "question_id": 28213, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005382", - "question_id": 28214, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004941", - "question_id": 28215, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008484", - "question_id": 28217, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005789", - "question_id": 28218, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006617", - "question_id": 28219, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003329", - "question_id": 28220, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000321", - "question_id": 28222, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004201", - "question_id": 28226, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002318", - "question_id": 28228, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007363", - "question_id": 28229, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008961", - "question_id": 28230, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002915", - "question_id": 28232, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003179", - "question_id": 28233, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005107", - "question_id": 28236, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005876", - "question_id": 28238, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005293", - "question_id": 28241, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006512", - "question_id": 28242, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002469", - "question_id": 28243, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007583", - "question_id": 28244, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002488", - "question_id": 28246, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00003935", - "question_id": 28247, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006368", - "question_id": 28252, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007841", - "question_id": 28253, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001575", - "question_id": 28254, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008217", - "question_id": 28256, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006180", - "question_id": 28258, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001270", - "question_id": 28260, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002184", - "question_id": 28262, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00001694", - "question_id": 28264, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007851", - "question_id": 28267, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000927", - "question_id": 28268, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00000511", - "question_id": 28269, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002862", - "question_id": 28270, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005465", - "question_id": 28273, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004017", - "question_id": 28275, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00005208", - "question_id": 28276, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004455", - "question_id": 28277, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006178", - "question_id": 28278, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001306", - "question_id": 28282, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000849", - "question_id": 28284, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003280", - "question_id": 28286, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006244", - "question_id": 28287, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008253", - "question_id": 28288, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00001723", - "question_id": 28289, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00000984", - "question_id": 28291, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007939", - "question_id": 28292, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00003195", - "question_id": 28294, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006332", - "question_id": 28295, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003839", - "question_id": 28296, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003896", - "question_id": 28300, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006543", - "question_id": 28302, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005253", - "question_id": 28303, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00005957", - "question_id": 28304, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006564", - "question_id": 28306, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007095", - "question_id": 28307, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003526", - "question_id": 28308, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002215", - "question_id": 28309, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008001", - "question_id": 28311, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001125", - "question_id": 28312, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004530", - "question_id": 28314, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005896", - "question_id": 28316, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00006041", - "question_id": 28317, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000201", - "question_id": 28318, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003942", - "question_id": 28319, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001647", - "question_id": 28321, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005619", - "question_id": 28322, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005866", - "question_id": 28323, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00008658", - "question_id": 28324, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001295", - "question_id": 28326, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001532", - "question_id": 28327, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006263", - "question_id": 28330, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00005771", - "question_id": 28331, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006019", - "question_id": 28333, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008350", - "question_id": 28338, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000029", - "question_id": 28341, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007495", - "question_id": 28344, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002166", - "question_id": 28348, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002044", - "question_id": 28349, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00006505", - "question_id": 28350, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008085", - "question_id": 28351, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001367", - "question_id": 28355, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006681", - "question_id": 28359, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003840", - "question_id": 28360, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003250", - "question_id": 28361, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002692", - "question_id": 28364, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00003158", - "question_id": 28365, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00005374", - "question_id": 28366, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00008925", - "question_id": 28372, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007384", - "question_id": 28373, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005194", - "question_id": 28374, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00001269", - "question_id": 28376, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002673", - "question_id": 28377, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00008979", - "question_id": 28378, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000839", - "question_id": 28379, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003582", - "question_id": 28380, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003486", - "question_id": 28383, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007910", - "question_id": 28384, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007475", - "question_id": 28388, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007887", - "question_id": 28390, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001264", - "question_id": 28392, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005400", - "question_id": 28393, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002879", - "question_id": 28394, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002893", - "question_id": 28395, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00008421", - "question_id": 28397, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000514", - "question_id": 28399, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004229", - "question_id": 28400, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002990", - "question_id": 28401, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008509", - "question_id": 28406, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007853", - "question_id": 28411, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003679", - "question_id": 28412, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00002811", - "question_id": 28413, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000342", - "question_id": 28415, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00007502", - "question_id": 28418, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00007380", - "question_id": 28423, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00003514", - "question_id": 28424, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001292", - "question_id": 28426, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002794", - "question_id": 28428, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004987", - "question_id": 28429, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008968", - "question_id": 28430, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005223", - "question_id": 28431, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004155", - "question_id": 28432, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007046", - "question_id": 28434, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006582", - "question_id": 28435, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00005665", - "question_id": 28437, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004108", - "question_id": 28440, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00008848", - "question_id": 28441, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006016", - "question_id": 28442, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003985", - "question_id": 28445, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000326", - "question_id": 28446, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007236", - "question_id": 28447, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004406", - "question_id": 28449, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005503", - "question_id": 28450, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005261", - "question_id": 28452, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001376", - "question_id": 28454, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006184", - "question_id": 28455, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008270", - "question_id": 28457, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003730", - "question_id": 28458, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001152", - "question_id": 28459, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008427", - "question_id": 28462, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002807", - "question_id": 28464, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001089", - "question_id": 28468, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008584", - "question_id": 28469, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006209", - "question_id": 28471, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00007882", - "question_id": 28473, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00007949", - "question_id": 28474, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00007676", - "question_id": 28475, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005418", - "question_id": 28478, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008824", - "question_id": 28480, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004063", - "question_id": 28482, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005561", - "question_id": 28483, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000472", - "question_id": 28485, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bagpipe\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001018", - "question_id": 28488, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005008", - "question_id": 28490, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004280", - "question_id": 28492, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007076", - "question_id": 28494, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006844", - "question_id": 28496, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008128", - "question_id": 28497, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008153", - "question_id": 28498, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003503", - "question_id": 28499, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000287", - "question_id": 28502, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002976", - "question_id": 28503, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00001781", - "question_id": 28507, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"clarinet\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006872", - "question_id": 28508, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00000204", - "question_id": 28510, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004372", - "question_id": 28511, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000923", - "question_id": 28512, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007446", - "question_id": 28514, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002795", - "question_id": 28515, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00008366", - "question_id": 28516, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000293", - "question_id": 28518, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001011", - "question_id": 28523, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008066", - "question_id": 28524, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003764", - "question_id": 28526, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003620", - "question_id": 28527, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006201", - "question_id": 28528, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00002661", - "question_id": 28529, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002129", - "question_id": 28530, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00005947", - "question_id": 28535, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001850", - "question_id": 28536, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00007482", - "question_id": 28537, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004660", - "question_id": 28538, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007156", - "question_id": 28539, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00006464", - "question_id": 28540, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000903", - "question_id": 28541, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002319", - "question_id": 28543, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00001605", - "question_id": 28544, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005607", - "question_id": 28546, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00001678", - "question_id": 28547, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003148", - "question_id": 28549, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004966", - "question_id": 28550, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00003057", - "question_id": 28552, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007126", - "question_id": 28553, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00000759", - "question_id": 28554, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003197", - "question_id": 28555, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004228", - "question_id": 28557, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007734", - "question_id": 28558, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000919", - "question_id": 28559, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00006870", - "question_id": 28560, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004629", - "question_id": 28564, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006162", - "question_id": 28565, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006298", - "question_id": 28570, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000333", - "question_id": 28571, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002755", - "question_id": 28574, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002305", - "question_id": 28577, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001289", - "question_id": 28581, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005783", - "question_id": 28582, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00000637", - "question_id": 28583, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003024", - "question_id": 28585, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001005", - "question_id": 28586, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003413", - "question_id": 28587, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003737", - "question_id": 28588, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005635", - "question_id": 28590, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005275", - "question_id": 28592, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007528", - "question_id": 28593, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007498", - "question_id": 28596, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00008529", - "question_id": 28601, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006913", - "question_id": 28603, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00000467", - "question_id": 28606, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000032", - "question_id": 28607, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007575", - "question_id": 28610, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002047", - "question_id": 28613, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001960", - "question_id": 28622, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003155", - "question_id": 28625, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002142", - "question_id": 28626, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000662", - "question_id": 28627, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00007062", - "question_id": 28630, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001475", - "question_id": 28635, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00006285", - "question_id": 28636, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00007541", - "question_id": 28638, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001180", - "question_id": 28639, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001215", - "question_id": 28641, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002626", - "question_id": 28643, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00005885", - "question_id": 28645, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007882", - "question_id": 28646, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007692", - "question_id": 28651, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002329", - "question_id": 28652, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00004131", - "question_id": 28657, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008123", - "question_id": 28658, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005960", - "question_id": 28659, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00002646", - "question_id": 28660, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00004930", - "question_id": 28661, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00008202", - "question_id": 28664, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001270", - "question_id": 28666, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004289", - "question_id": 28667, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004468", - "question_id": 28670, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004071", - "question_id": 28671, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006814", - "question_id": 28675, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"xylophone\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00004093", - "question_id": 28676, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000736", - "question_id": 28682, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005996", - "question_id": 28683, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00001385", - "question_id": 28688, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002496", - "question_id": 28689, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"middle\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006330", - "question_id": 28691, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000419", - "question_id": 28695, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006934", - "question_id": 28696, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006044", - "question_id": 28697, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004083", - "question_id": 28700, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00007775", - "question_id": 28701, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001754", - "question_id": 28702, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00001743", - "question_id": 28704, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005236", - "question_id": 28707, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00007317", - "question_id": 28708, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008118", - "question_id": 28710, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00005125", - "question_id": 28711, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002821", - "question_id": 28712, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00001199", - "question_id": 28715, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008610", - "question_id": 28716, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004563", - "question_id": 28718, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008691", - "question_id": 28720, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004352", - "question_id": 28721, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00006698", - "question_id": 28724, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003937", - "question_id": 28725, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00006609", - "question_id": 28726, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007374", - "question_id": 28730, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006064", - "question_id": 28732, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00001315", - "question_id": 28733, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003131", - "question_id": 28734, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006795", - "question_id": 28735, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004830", - "question_id": 28737, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004504", - "question_id": 28738, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002006", - "question_id": 28741, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005254", - "question_id": 28743, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004315", - "question_id": 28744, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00006426", - "question_id": 28749, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00000695", - "question_id": 28750, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001428", - "question_id": 28751, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00005982", - "question_id": 28752, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006686", - "question_id": 28754, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"suona\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003870", - "question_id": 28755, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003309", - "question_id": 28756, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003833", - "question_id": 28759, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00008294", - "question_id": 28760, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"flute\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002006", - "question_id": 28761, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00001493", - "question_id": 28763, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004486", - "question_id": 28764, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00000384", - "question_id": 28765, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007280", - "question_id": 28766, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007327", - "question_id": 28767, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007873", - "question_id": 28770, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003615", - "question_id": 28772, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008748", - "question_id": 28773, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00003341", - "question_id": 28774, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005029", - "question_id": 28775, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005607", - "question_id": 28776, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008448", - "question_id": 28777, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005880", - "question_id": 28778, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001092", - "question_id": 28779, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006272", - "question_id": 28782, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00007423", - "question_id": 28784, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"erhu\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002191", - "question_id": 28786, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006273", - "question_id": 28788, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007923", - "question_id": 28790, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001966", - "question_id": 28791, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008455", - "question_id": 28792, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008850", - "question_id": 28793, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000885", - "question_id": 28794, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001317", - "question_id": 28795, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002706", - "question_id": 28796, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001563", - "question_id": 28797, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00007246", - "question_id": 28799, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001083", - "question_id": 28800, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004474", - "question_id": 28803, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00008104", - "question_id": 28804, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003751", - "question_id": 28806, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003041", - "question_id": 28807, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004254", - "question_id": 28809, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008127", - "question_id": 28810, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00005330", - "question_id": 28812, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002475", - "question_id": 28813, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003210", - "question_id": 28815, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004625", - "question_id": 28819, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000721", - "question_id": 28822, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001870", - "question_id": 28823, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001779", - "question_id": 28827, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000707", - "question_id": 28828, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002303", - "question_id": 28829, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001376", - "question_id": 28830, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00008660", - "question_id": 28833, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00004705", - "question_id": 28835, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004964", - "question_id": 28836, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00004453", - "question_id": 28837, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00000287", - "question_id": 28839, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006831", - "question_id": 28841, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002032", - "question_id": 28843, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006587", - "question_id": 28846, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003069", - "question_id": 28847, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002880", - "question_id": 28849, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001796", - "question_id": 28852, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002504", - "question_id": 28853, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00008043", - "question_id": 28854, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00004817", - "question_id": 28858, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00003590", - "question_id": 28860, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00001709", - "question_id": 28861, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007416", - "question_id": 28862, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006100", - "question_id": 28865, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005483", - "question_id": 28866, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003721", - "question_id": 28867, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002300", - "question_id": 28869, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001242", - "question_id": 28870, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00000959", - "question_id": 28871, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003732", - "question_id": 28875, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002295", - "question_id": 28877, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003066", - "question_id": 28878, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00007345", - "question_id": 28879, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005696", - "question_id": 28880, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003168", - "question_id": 28881, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00004215", - "question_id": 28882, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007846", - "question_id": 28885, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001188", - "question_id": 28886, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00001901", - "question_id": 28888, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002746", - "question_id": 28890, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005920", - "question_id": 28891, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00005257", - "question_id": 28892, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"guzheng\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001678", - "question_id": 28899, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004164", - "question_id": 28901, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002998", - "question_id": 28902, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007488", - "question_id": 28903, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005666", - "question_id": 28906, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008735", - "question_id": 28907, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005093", - "question_id": 28910, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002911", - "question_id": 28912, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00000332", - "question_id": 28914, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007884", - "question_id": 28916, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005021", - "question_id": 28918, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00007270", - "question_id": 28921, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00005576", - "question_id": 28928, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004107", - "question_id": 28929, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00003194", - "question_id": 28930, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005457", - "question_id": 28932, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003607", - "question_id": 28935, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006449", - "question_id": 28943, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004253", - "question_id": 28944, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00002299", - "question_id": 28946, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008365", - "question_id": 28948, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005054", - "question_id": 28950, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003545", - "question_id": 28951, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001390", - "question_id": 28952, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004771", - "question_id": 28954, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006342", - "question_id": 28955, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00003452", - "question_id": 28957, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003512", - "question_id": 28959, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004830", - "question_id": 28961, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004595", - "question_id": 28963, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00008638", - "question_id": 28966, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003168", - "question_id": 28967, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008350", - "question_id": 28969, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001759", - "question_id": 28971, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00006892", - "question_id": 28974, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008430", - "question_id": 28976, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002865", - "question_id": 28977, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003388", - "question_id": 28978, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005958", - "question_id": 28979, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004766", - "question_id": 28980, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00008924", - "question_id": 28983, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002745", - "question_id": 28985, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005655", - "question_id": 28986, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002079", - "question_id": 28987, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001269", - "question_id": 28988, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000564", - "question_id": 28989, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001365", - "question_id": 28991, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004459", - "question_id": 28993, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006980", - "question_id": 28994, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00008020", - "question_id": 28995, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005451", - "question_id": 28996, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003335", - "question_id": 28999, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007243", - "question_id": 29001, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004848", - "question_id": 29003, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00008114", - "question_id": 29004, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007889", - "question_id": 29005, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00007379", - "question_id": 29008, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005620", - "question_id": 29010, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003610", - "question_id": 29011, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008902", - "question_id": 29012, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00003577", - "question_id": 29014, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00001429", - "question_id": 29015, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00003017", - "question_id": 29016, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000537", - "question_id": 29017, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00003734", - "question_id": 29018, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"suona\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008145", - "question_id": 29020, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005611", - "question_id": 29022, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002932", - "question_id": 29023, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005468", - "question_id": 29024, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00003147", - "question_id": 29025, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006916", - "question_id": 29026, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00000975", - "question_id": 29028, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005049", - "question_id": 29029, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00001898", - "question_id": 29030, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001836", - "question_id": 29031, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005657", - "question_id": 29032, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00001086", - "question_id": 29033, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006277", - "question_id": 29037, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00007148", - "question_id": 29038, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001152", - "question_id": 29041, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00002157", - "question_id": 29044, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001546", - "question_id": 29045, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002208", - "question_id": 29046, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00005190", - "question_id": 29047, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00005012", - "question_id": 29048, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00002513", - "question_id": 29052, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00000857", - "question_id": 29054, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005509", - "question_id": 29055, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00004271", - "question_id": 29057, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004124", - "question_id": 29058, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00001614", - "question_id": 29059, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000734", - "question_id": 29061, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001546", - "question_id": 29063, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008254", - "question_id": 29064, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006431", - "question_id": 29066, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000757", - "question_id": 29067, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003574", - "question_id": 29068, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000940", - "question_id": 29069, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00001756", - "question_id": 29071, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00003057", - "question_id": 29072, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007839", - "question_id": 29073, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00004851", - "question_id": 29074, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00004359", - "question_id": 29075, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000206", - "question_id": 29076, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004615", - "question_id": 29077, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00005104", - "question_id": 29078, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007775", - "question_id": 29079, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00008904", - "question_id": 29082, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00003821", - "question_id": 29083, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002663", - "question_id": 29084, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008564", - "question_id": 29086, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00002274", - "question_id": 29087, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005179", - "question_id": 29089, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005653", - "question_id": 29091, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007464", - "question_id": 29092, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003140", - "question_id": 29094, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003357", - "question_id": 29096, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007446", - "question_id": 29099, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00008926", - "question_id": 29103, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000275", - "question_id": 29105, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006282", - "question_id": 29106, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00001251", - "question_id": 29107, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001985", - "question_id": 29113, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007784", - "question_id": 29114, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00002481", - "question_id": 29116, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001071", - "question_id": 29117, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00008821", - "question_id": 29121, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004128", - "question_id": 29123, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000457", - "question_id": 29125, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002223", - "question_id": 29126, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004296", - "question_id": 29127, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008659", - "question_id": 29128, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00003722", - "question_id": 29130, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002093", - "question_id": 29133, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006752", - "question_id": 29136, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000428", - "question_id": 29137, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00007874", - "question_id": 29138, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002641", - "question_id": 29140, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001407", - "question_id": 29143, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000778", - "question_id": 29144, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00007552", - "question_id": 29145, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000824", - "question_id": 29146, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005317", - "question_id": 29148, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00003330", - "question_id": 29151, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005472", - "question_id": 29152, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00003204", - "question_id": 29154, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004220", - "question_id": 29155, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003854", - "question_id": 29156, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003033", - "question_id": 29158, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000586", - "question_id": 29159, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005249", - "question_id": 29166, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bagpipe\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005297", - "question_id": 29168, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002201", - "question_id": 29170, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002489", - "question_id": 29171, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008002", - "question_id": 29173, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002138", - "question_id": 29175, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003169", - "question_id": 29176, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00006372", - "question_id": 29178, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000621", - "question_id": 29182, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005286", - "question_id": 29184, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007095", - "question_id": 29186, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"ukulele\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00003678", - "question_id": 29187, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002580", - "question_id": 29191, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002192", - "question_id": 29192, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003208", - "question_id": 29193, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006758", - "question_id": 29195, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002589", - "question_id": 29198, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001708", - "question_id": 29199, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001273", - "question_id": 29200, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002881", - "question_id": 29202, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007943", - "question_id": 29204, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000510", - "question_id": 29208, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004522", - "question_id": 29209, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00004328", - "question_id": 29210, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00008557", - "question_id": 29212, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004300", - "question_id": 29213, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000463", - "question_id": 29215, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001285", - "question_id": 29216, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005190", - "question_id": 29218, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008218", - "question_id": 29219, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002907", - "question_id": 29220, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00008940", - "question_id": 29221, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00005691", - "question_id": 29224, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002887", - "question_id": 29225, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007048", - "question_id": 29228, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005874", - "question_id": 29231, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006860", - "question_id": 29236, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00005532", - "question_id": 29241, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000774", - "question_id": 29246, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001639", - "question_id": 29247, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004991", - "question_id": 29249, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005860", - "question_id": 29253, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00004843", - "question_id": 29255, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005346", - "question_id": 29257, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002690", - "question_id": 29258, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00001529", - "question_id": 29260, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002249", - "question_id": 29262, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000500", - "question_id": 29265, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00000215", - "question_id": 29266, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006601", - "question_id": 29270, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003181", - "question_id": 29271, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001571", - "question_id": 29273, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005611", - "question_id": 29274, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001226", - "question_id": 29276, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00004091", - "question_id": 29278, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00004689", - "question_id": 29281, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000225", - "question_id": 29283, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004880", - "question_id": 29284, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00002347", - "question_id": 29285, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005913", - "question_id": 29286, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00001956", - "question_id": 29288, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"middle\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004812", - "question_id": 29289, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002382", - "question_id": 29296, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007218", - "question_id": 29298, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004949", - "question_id": 29300, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004493", - "question_id": 29304, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003697", - "question_id": 29305, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003536", - "question_id": 29308, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002415", - "question_id": 29310, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000938", - "question_id": 29312, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001124", - "question_id": 29317, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000891", - "question_id": 29318, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008898", - "question_id": 29319, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004774", - "question_id": 29329, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00008973", - "question_id": 29333, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00003265", - "question_id": 29338, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00006377", - "question_id": 29340, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007267", - "question_id": 29341, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003852", - "question_id": 29342, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005144", - "question_id": 29343, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004297", - "question_id": 29344, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00007251", - "question_id": 29350, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000989", - "question_id": 29351, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001010", - "question_id": 29352, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001777", - "question_id": 29353, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004565", - "question_id": 29354, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001747", - "question_id": 29355, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005969", - "question_id": 29358, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003187", - "question_id": 29362, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002122", - "question_id": 29366, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000984", - "question_id": 29373, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004170", - "question_id": 29375, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004350", - "question_id": 29377, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008265", - "question_id": 29380, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001080", - "question_id": 29385, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002810", - "question_id": 29390, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000954", - "question_id": 29391, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002937", - "question_id": 29393, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004730", - "question_id": 29394, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003148", - "question_id": 29395, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002920", - "question_id": 29396, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003239", - "question_id": 29400, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002435", - "question_id": 29401, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001669", - "question_id": 29402, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003149", - "question_id": 29403, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001356", - "question_id": 29405, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004913", - "question_id": 29406, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002043", - "question_id": 29407, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001262", - "question_id": 29408, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003757", - "question_id": 29410, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001034", - "question_id": 29411, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00002747", - "question_id": 29412, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008209", - "question_id": 29413, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000691", - "question_id": 29414, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006524", - "question_id": 29416, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004876", - "question_id": 29417, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00001533", - "question_id": 29418, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003580", - "question_id": 29419, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00008179", - "question_id": 29420, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003518", - "question_id": 29422, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002729", - "question_id": 29424, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006086", - "question_id": 29426, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004177", - "question_id": 29427, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004050", - "question_id": 29433, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004698", - "question_id": 29434, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008896", - "question_id": 29435, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008285", - "question_id": 29436, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007013", - "question_id": 29437, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00007144", - "question_id": 29439, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007303", - "question_id": 29441, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00000337", - "question_id": 29445, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004084", - "question_id": 29449, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00008780", - "question_id": 29450, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001879", - "question_id": 29451, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001486", - "question_id": 29453, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008204", - "question_id": 29460, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005779", - "question_id": 29461, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003615", - "question_id": 29466, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000123", - "question_id": 29467, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001835", - "question_id": 29469, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008067", - "question_id": 29472, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006613", - "question_id": 29473, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005807", - "question_id": 29474, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00005801", - "question_id": 29476, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00008226", - "question_id": 29477, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001370", - "question_id": 29478, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004289", - "question_id": 29479, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008638", - "question_id": 29480, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000312", - "question_id": 29481, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003206", - "question_id": 29484, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002240", - "question_id": 29485, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007279", - "question_id": 29491, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00007205", - "question_id": 29494, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002088", - "question_id": 29496, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006010", - "question_id": 29499, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003315", - "question_id": 29500, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000433", - "question_id": 29501, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006302", - "question_id": 29502, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008277", - "question_id": 29503, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005073", - "question_id": 29504, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004159", - "question_id": 29506, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001658", - "question_id": 29508, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004885", - "question_id": 29511, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008018", - "question_id": 29514, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002216", - "question_id": 29517, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002570", - "question_id": 29521, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006790", - "question_id": 29522, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002961", - "question_id": 29523, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002065", - "question_id": 29525, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003680", - "question_id": 29527, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007858", - "question_id": 29528, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002999", - "question_id": 29529, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007550", - "question_id": 29532, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004187", - "question_id": 29533, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002307", - "question_id": 29535, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000149", - "question_id": 29536, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003706", - "question_id": 29537, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005018", - "question_id": 29539, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00006423", - "question_id": 29541, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004660", - "question_id": 29542, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000265", - "question_id": 29544, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004012", - "question_id": 29545, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00002467", - "question_id": 29547, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002747", - "question_id": 29548, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004298", - "question_id": 29551, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00002952", - "question_id": 29552, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004358", - "question_id": 29554, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002985", - "question_id": 29555, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000774", - "question_id": 29556, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006832", - "question_id": 29557, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000711", - "question_id": 29558, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007120", - "question_id": 29561, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002348", - "question_id": 29563, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"congas\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004624", - "question_id": 29567, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00003657", - "question_id": 29570, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00008659", - "question_id": 29571, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007348", - "question_id": 29572, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002573", - "question_id": 29574, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00002687", - "question_id": 29575, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001526", - "question_id": 29577, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00003719", - "question_id": 29578, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005496", - "question_id": 29579, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006537", - "question_id": 29580, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005699", - "question_id": 29582, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005590", - "question_id": 29584, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007174", - "question_id": 29586, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006709", - "question_id": 29588, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000609", - "question_id": 29590, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004612", - "question_id": 29591, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001738", - "question_id": 29592, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008946", - "question_id": 29598, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000230", - "question_id": 29602, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001239", - "question_id": 29603, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00003023", - "question_id": 29605, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007295", - "question_id": 29608, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002972", - "question_id": 29609, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006155", - "question_id": 29613, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005883", - "question_id": 29614, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008781", - "question_id": 29615, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00007724", - "question_id": 29617, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000788", - "question_id": 29620, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006397", - "question_id": 29622, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00005782", - "question_id": 29625, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00005274", - "question_id": 29626, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002602", - "question_id": 29631, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006335", - "question_id": 29633, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"acoustic_guitar\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008849", - "question_id": 29635, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00001773", - "question_id": 29636, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008305", - "question_id": 29638, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00008822", - "question_id": 29639, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008943", - "question_id": 29640, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008526", - "question_id": 29642, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004704", - "question_id": 29645, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00001069", - "question_id": 29647, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001288", - "question_id": 29648, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001275", - "question_id": 29649, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006192", - "question_id": 29650, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001234", - "question_id": 29652, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008147", - "question_id": 29653, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001980", - "question_id": 29654, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006965", - "question_id": 29655, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00002554", - "question_id": 29657, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008537", - "question_id": 29658, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007438", - "question_id": 29659, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00000120", - "question_id": 29660, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003839", - "question_id": 29661, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008091", - "question_id": 29663, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006701", - "question_id": 29664, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002535", - "question_id": 29665, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005845", - "question_id": 29666, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001368", - "question_id": 29669, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004219", - "question_id": 29671, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007309", - "question_id": 29672, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"xylophone\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004694", - "question_id": 29673, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000820", - "question_id": 29674, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007280", - "question_id": 29675, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00007291", - "question_id": 29676, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005965", - "question_id": 29679, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00003914", - "question_id": 29680, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006890", - "question_id": 29681, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004949", - "question_id": 29682, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00003109", - "question_id": 29686, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00003252", - "question_id": 29687, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003952", - "question_id": 29688, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007516", - "question_id": 29693, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002294", - "question_id": 29694, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007943", - "question_id": 29696, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00006760", - "question_id": 29697, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004720", - "question_id": 29698, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000620", - "question_id": 29699, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00001428", - "question_id": 29700, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005709", - "question_id": 29702, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000911", - "question_id": 29703, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002393", - "question_id": 29704, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005871", - "question_id": 29705, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004724", - "question_id": 29706, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007567", - "question_id": 29707, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006797", - "question_id": 29711, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005799", - "question_id": 29713, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006876", - "question_id": 29714, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00003582", - "question_id": 29717, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000230", - "question_id": 29722, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007523", - "question_id": 29723, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004373", - "question_id": 29725, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000974", - "question_id": 29726, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00005766", - "question_id": 29728, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001653", - "question_id": 29730, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005592", - "question_id": 29731, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006089", - "question_id": 29732, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00006661", - "question_id": 29733, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00005330", - "question_id": 29735, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008783", - "question_id": 29736, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007293", - "question_id": 29738, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000905", - "question_id": 29740, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006659", - "question_id": 29743, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002003", - "question_id": 29744, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000501", - "question_id": 29747, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00008466", - "question_id": 29750, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000101", - "question_id": 29753, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bagpipe\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002052", - "question_id": 29755, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002807", - "question_id": 29757, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006957", - "question_id": 29758, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00000821", - "question_id": 29760, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000116", - "question_id": 29761, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005940", - "question_id": 29764, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00004649", - "question_id": 29765, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007553", - "question_id": 29767, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00005432", - "question_id": 29768, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002973", - "question_id": 29769, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006904", - "question_id": 29770, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007443", - "question_id": 29771, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007928", - "question_id": 29773, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004707", - "question_id": 29778, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004584", - "question_id": 29780, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00001365", - "question_id": 29782, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004220", - "question_id": 29783, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006777", - "question_id": 29784, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006442", - "question_id": 29787, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005185", - "question_id": 29788, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006605", - "question_id": 29790, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007872", - "question_id": 29791, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006868", - "question_id": 29793, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006924", - "question_id": 29794, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003851", - "question_id": 29795, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005233", - "question_id": 29796, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004148", - "question_id": 29800, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002445", - "question_id": 29801, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002583", - "question_id": 29802, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001937", - "question_id": 29804, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007891", - "question_id": 29807, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006360", - "question_id": 29809, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003176", - "question_id": 29811, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004896", - "question_id": 29813, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004896", - "question_id": 29813, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001614", - "question_id": 29816, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000131", - "question_id": 29818, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00003619", - "question_id": 29822, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00004184", - "question_id": 29823, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005540", - "question_id": 29824, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00008345", - "question_id": 29826, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004325", - "question_id": 29828, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004162", - "question_id": 29829, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"tuba\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004869", - "question_id": 29830, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00004138", - "question_id": 29831, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004689", - "question_id": 29834, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005365", - "question_id": 29835, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002913", - "question_id": 29836, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001784", - "question_id": 29843, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007527", - "question_id": 29844, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005687", - "question_id": 29846, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006152", - "question_id": 29847, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004238", - "question_id": 29848, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003542", - "question_id": 29850, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008033", - "question_id": 29854, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00005282", - "question_id": 29856, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002763", - "question_id": 29857, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000733", - "question_id": 29858, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001511", - "question_id": 29861, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005835", - "question_id": 29862, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00005841", - "question_id": 29863, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00000698", - "question_id": 29864, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006714", - "question_id": 29866, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00003510", - "question_id": 29870, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00008122", - "question_id": 29872, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003996", - "question_id": 29874, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003312", - "question_id": 29876, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005600", - "question_id": 29877, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"guzheng\", \"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001633", - "question_id": 29878, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005094", - "question_id": 29879, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00005556", - "question_id": 29881, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004332", - "question_id": 29882, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003721", - "question_id": 29885, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004890", - "question_id": 29887, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001851", - "question_id": 29889, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005592", - "question_id": 29890, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00002979", - "question_id": 29895, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000589", - "question_id": 29897, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00008280", - "question_id": 29898, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008042", - "question_id": 29900, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001948", - "question_id": 29901, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006740", - "question_id": 29903, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00005432", - "question_id": 29904, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002539", - "question_id": 29905, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001474", - "question_id": 29906, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002418", - "question_id": 29908, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008826", - "question_id": 29910, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002336", - "question_id": 29911, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004914", - "question_id": 29916, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"clarinet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004386", - "question_id": 29918, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008139", - "question_id": 29919, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006016", - "question_id": 29920, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00000435", - "question_id": 29923, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00002361", - "question_id": 29924, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005444", - "question_id": 29925, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005245", - "question_id": 29926, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005254", - "question_id": 29927, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007211", - "question_id": 29928, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002760", - "question_id": 29930, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007792", - "question_id": 29932, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00004482", - "question_id": 29933, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008466", - "question_id": 29934, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006218", - "question_id": 29935, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00003086", - "question_id": 29938, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004309", - "question_id": 29939, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006382", - "question_id": 29941, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004191", - "question_id": 29942, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006809", - "question_id": 29943, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00003972", - "question_id": 29945, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00003551", - "question_id": 29946, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000780", - "question_id": 29948, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000563", - "question_id": 29949, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001188", - "question_id": 29950, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00006096", - "question_id": 29956, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00003026", - "question_id": 29959, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00003106", - "question_id": 29960, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00000553", - "question_id": 29961, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00002861", - "question_id": 29962, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00000549", - "question_id": 29965, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002287", - "question_id": 29967, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001561", - "question_id": 29968, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000793", - "question_id": 29969, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001009", - "question_id": 29970, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006090", - "question_id": 29972, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006309", - "question_id": 29974, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005296", - "question_id": 29976, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003944", - "question_id": 29977, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00005381", - "question_id": 29978, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005380", - "question_id": 29981, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"banjo\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002092", - "question_id": 29982, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00001199", - "question_id": 29983, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002641", - "question_id": 29984, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00006089", - "question_id": 29986, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005653", - "question_id": 29988, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005837", - "question_id": 29990, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008002", - "question_id": 29991, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00005135", - "question_id": 29992, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008651", - "question_id": 29994, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001133", - "question_id": 29998, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000798", - "question_id": 30000, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000773", - "question_id": 30003, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00007115", - "question_id": 30005, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002951", - "question_id": 30006, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00007341", - "question_id": 30007, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007004", - "question_id": 30009, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004809", - "question_id": 30010, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005952", - "question_id": 30011, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003059", - "question_id": 30013, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00003779", - "question_id": 30018, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007448", - "question_id": 30022, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00001225", - "question_id": 30026, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00002436", - "question_id": 30029, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"first\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00002559", - "question_id": 30035, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006398", - "question_id": 30036, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00000021", - "question_id": 30037, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003684", - "question_id": 30038, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005051", - "question_id": 30039, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00005928", - "question_id": 30043, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008618", - "question_id": 30044, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00000910", - "question_id": 30047, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00003323", - "question_id": 30048, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00002937", - "question_id": 30050, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"erhu\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003204", - "question_id": 30052, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00003641", - "question_id": 30056, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007200", - "question_id": 30057, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00001432", - "question_id": 30059, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005922", - "question_id": 30060, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008745", - "question_id": 30061, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007065", - "question_id": 30065, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005199", - "question_id": 30067, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00001896", - "question_id": 30068, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005788", - "question_id": 30070, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007811", - "question_id": 30071, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002798", - "question_id": 30077, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00003384", - "question_id": 30081, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006979", - "question_id": 30084, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001647", - "question_id": 30085, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001186", - "question_id": 30086, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004268", - "question_id": 30088, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00003967", - "question_id": 30091, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004307", - "question_id": 30094, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003978", - "question_id": 30095, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006185", - "question_id": 30101, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001118", - "question_id": 30102, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008573", - "question_id": 30103, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008645", - "question_id": 30104, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00005597", - "question_id": 30105, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00001606", - "question_id": 30107, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006089", - "question_id": 30108, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002980", - "question_id": 30110, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"erhu\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004052", - "question_id": 30111, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00001025", - "question_id": 30112, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"trumpet\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000437", - "question_id": 30113, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002679", - "question_id": 30114, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003191", - "question_id": 30115, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"erhu\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008299", - "question_id": 30117, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000800", - "question_id": 30120, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002446", - "question_id": 30121, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002477", - "question_id": 30125, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004815", - "question_id": 30126, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003371", - "question_id": 30127, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006607", - "question_id": 30135, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004908", - "question_id": 30136, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004032", - "question_id": 30138, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005641", - "question_id": 30140, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007824", - "question_id": 30141, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003241", - "question_id": 30142, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002425", - "question_id": 30145, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003305", - "question_id": 30146, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001549", - "question_id": 30147, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"tuba\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006129", - "question_id": 30148, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00003887", - "question_id": 30149, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000436", - "question_id": 30150, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00001327", - "question_id": 30152, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00006907", - "question_id": 30154, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00000412", - "question_id": 30155, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008965", - "question_id": 30156, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00005271", - "question_id": 30158, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007287", - "question_id": 30159, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00001333", - "question_id": 30161, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001360", - "question_id": 30163, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000597", - "question_id": 30164, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00007790", - "question_id": 30165, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002506", - "question_id": 30168, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003666", - "question_id": 30169, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00007727", - "question_id": 30172, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00007833", - "question_id": 30176, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006722", - "question_id": 30179, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00007082", - "question_id": 30185, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004695", - "question_id": 30187, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004716", - "question_id": 30188, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002624", - "question_id": 30189, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000620", - "question_id": 30194, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000893", - "question_id": 30196, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001328", - "question_id": 30197, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004221", - "question_id": 30198, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002918", - "question_id": 30199, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008324", - "question_id": 30200, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000076", - "question_id": 30203, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005788", - "question_id": 30204, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000680", - "question_id": 30209, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000943", - "question_id": 30210, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00003285", - "question_id": 30211, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003694", - "question_id": 30214, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006150", - "question_id": 30216, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001493", - "question_id": 30217, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006989", - "question_id": 30218, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00003347", - "question_id": 30221, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"bassoon\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007441", - "question_id": 30222, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003385", - "question_id": 30227, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00007866", - "question_id": 30228, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005688", - "question_id": 30229, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005752", - "question_id": 30230, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00002462", - "question_id": 30232, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001301", - "question_id": 30233, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003416", - "question_id": 30236, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001368", - "question_id": 30238, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00008274", - "question_id": 30239, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005015", - "question_id": 30240, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006288", - "question_id": 30241, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005940", - "question_id": 30243, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002436", - "question_id": 30244, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00005963", - "question_id": 30247, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008083", - "question_id": 30249, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005616", - "question_id": 30252, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003771", - "question_id": 30254, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003719", - "question_id": 30256, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004271", - "question_id": 30257, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007536", - "question_id": 30260, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001977", - "question_id": 30264, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001061", - "question_id": 30265, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00008397", - "question_id": 30267, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005714", - "question_id": 30268, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007040", - "question_id": 30270, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008950", - "question_id": 30272, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000661", - "question_id": 30273, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000868", - "question_id": 30274, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000990", - "question_id": 30281, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"middle\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002428", - "question_id": 30284, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00002065", - "question_id": 30286, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005875", - "question_id": 30289, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002665", - "question_id": 30290, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007353", - "question_id": 30293, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00003998", - "question_id": 30295, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00006537", - "question_id": 30297, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00006359", - "question_id": 30300, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005022", - "question_id": 30301, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008445", - "question_id": 30302, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006440", - "question_id": 30303, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003547", - "question_id": 30306, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00006765", - "question_id": 30307, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005824", - "question_id": 30310, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002431", - "question_id": 30311, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002478", - "question_id": 30312, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002520", - "question_id": 30314, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00007988", - "question_id": 30316, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000502", - "question_id": 30317, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00004652", - "question_id": 30319, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007704", - "question_id": 30321, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002025", - "question_id": 30323, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"drum\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00007928", - "question_id": 30325, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007327", - "question_id": 30326, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001466", - "question_id": 30328, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008173", - "question_id": 30330, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00002678", - "question_id": 30332, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00000827", - "question_id": 30334, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00008903", - "question_id": 30335, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001623", - "question_id": 30336, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008863", - "question_id": 30337, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006437", - "question_id": 30338, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002197", - "question_id": 30339, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00003488", - "question_id": 30340, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006810", - "question_id": 30344, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000805", - "question_id": 30347, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007879", - "question_id": 30348, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00001849", - "question_id": 30350, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00001037", - "question_id": 30351, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003735", - "question_id": 30352, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007361", - "question_id": 30357, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002499", - "question_id": 30358, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000437", - "question_id": 30360, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001819", - "question_id": 30364, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003270", - "question_id": 30366, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"trumpet\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003478", - "question_id": 30369, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00004010", - "question_id": 30370, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006423", - "question_id": 30373, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004680", - "question_id": 30377, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000925", - "question_id": 30378, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002426", - "question_id": 30380, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003185", - "question_id": 30383, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005131", - "question_id": 30384, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001032", - "question_id": 30385, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000824", - "question_id": 30387, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004908", - "question_id": 30388, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00002054", - "question_id": 30390, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005145", - "question_id": 30391, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002444", - "question_id": 30392, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003740", - "question_id": 30394, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00001207", - "question_id": 30395, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00004607", - "question_id": 30396, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000328", - "question_id": 30398, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006971", - "question_id": 30399, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008095", - "question_id": 30402, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007666", - "question_id": 30404, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00006700", - "question_id": 30405, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00003030", - "question_id": 30407, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00004835", - "question_id": 30410, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004136", - "question_id": 30413, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002117", - "question_id": 30414, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00008518", - "question_id": 30416, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"middle\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001328", - "question_id": 30419, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002138", - "question_id": 30420, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008062", - "question_id": 30421, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007945", - "question_id": 30422, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005135", - "question_id": 30424, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008052", - "question_id": 30425, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001351", - "question_id": 30426, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00002497", - "question_id": 30430, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000817", - "question_id": 30431, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00004956", - "question_id": 30433, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"ukulele\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006012", - "question_id": 30434, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006888", - "question_id": 30435, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001030", - "question_id": 30437, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005416", - "question_id": 30438, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006562", - "question_id": 30439, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00001117", - "question_id": 30442, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00003227", - "question_id": 30443, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008280", - "question_id": 30445, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007939", - "question_id": 30446, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003805", - "question_id": 30447, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003824", - "question_id": 30448, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004920", - "question_id": 30449, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006494", - "question_id": 30451, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007761", - "question_id": 30456, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003812", - "question_id": 30457, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008185", - "question_id": 30458, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"xylophone\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006592", - "question_id": 30459, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002081", - "question_id": 30460, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004272", - "question_id": 30461, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00008879", - "question_id": 30462, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006419", - "question_id": 30463, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00004274", - "question_id": 30464, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004073", - "question_id": 30465, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002756", - "question_id": 30467, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001060", - "question_id": 30468, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"pipa\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00004578", - "question_id": 30469, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007844", - "question_id": 30471, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007419", - "question_id": 30472, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00005201", - "question_id": 30475, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004674", - "question_id": 30478, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000979", - "question_id": 30479, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001273", - "question_id": 30480, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00000548", - "question_id": 30481, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00008041", - "question_id": 30482, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007040", - "question_id": 30484, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001010", - "question_id": 30485, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000891", - "question_id": 30488, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006655", - "question_id": 30492, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000449", - "question_id": 30493, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00001649", - "question_id": 30497, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00001306", - "question_id": 30500, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00005742", - "question_id": 30501, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00001579", - "question_id": 30503, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00003458", - "question_id": 30504, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00001995", - "question_id": 30506, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005177", - "question_id": 30508, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004579", - "question_id": 30510, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008300", - "question_id": 30515, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00003013", - "question_id": 30517, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001571", - "question_id": 30521, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00004900", - "question_id": 30523, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005773", - "question_id": 30524, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008961", - "question_id": 30525, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002026", - "question_id": 30527, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000009", - "question_id": 30528, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003239", - "question_id": 30530, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005740", - "question_id": 30531, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004778", - "question_id": 30532, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00004845", - "question_id": 30537, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00001916", - "question_id": 30538, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00005867", - "question_id": 30539, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00003164", - "question_id": 30541, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00006896", - "question_id": 30542, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001043", - "question_id": 30544, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001043", - "question_id": 30544, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002791", - "question_id": 30546, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002761", - "question_id": 30547, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007730", - "question_id": 30548, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002676", - "question_id": 30549, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008880", - "question_id": 30552, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001317", - "question_id": 30555, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001983", - "question_id": 30562, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006041", - "question_id": 30564, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00003998", - "question_id": 30565, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00003118", - "question_id": 30566, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006399", - "question_id": 30568, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007642", - "question_id": 30569, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007486", - "question_id": 30570, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006116", - "question_id": 30571, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007364", - "question_id": 30572, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003417", - "question_id": 30576, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005639", - "question_id": 30580, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00008604", - "question_id": 30582, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00007775", - "question_id": 30585, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00008804", - "question_id": 30586, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001032", - "question_id": 30588, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008292", - "question_id": 30591, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001805", - "question_id": 30595, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006526", - "question_id": 30598, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00002304", - "question_id": 30599, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005944", - "question_id": 30601, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000710", - "question_id": 30603, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00001389", - "question_id": 30604, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006722", - "question_id": 30605, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006736", - "question_id": 30607, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002697", - "question_id": 30615, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00005149", - "question_id": 30616, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005879", - "question_id": 30617, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00001984", - "question_id": 30620, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006528", - "question_id": 30622, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004649", - "question_id": 30623, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00000681", - "question_id": 30624, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002124", - "question_id": 30625, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00008114", - "question_id": 30626, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00008930", - "question_id": 30627, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"banjo\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008555", - "question_id": 30628, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002716", - "question_id": 30630, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00008060", - "question_id": 30631, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00007988", - "question_id": 30632, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007278", - "question_id": 30636, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006936", - "question_id": 30638, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007080", - "question_id": 30644, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006491", - "question_id": 30645, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007175", - "question_id": 30646, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00003903", - "question_id": 30648, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"clarinet\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004073", - "question_id": 30650, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007422", - "question_id": 30651, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006792", - "question_id": 30654, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00003681", - "question_id": 30655, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00005531", - "question_id": 30657, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003253", - "question_id": 30658, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007950", - "question_id": 30661, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007501", - "question_id": 30662, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00001702", - "question_id": 30663, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00005952", - "question_id": 30664, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006733", - "question_id": 30666, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003246", - "question_id": 30667, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000432", - "question_id": 30668, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004216", - "question_id": 30670, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004243", - "question_id": 30671, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004746", - "question_id": 30672, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00001895", - "question_id": 30673, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00008157", - "question_id": 30674, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00004604", - "question_id": 30676, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007657", - "question_id": 30678, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005818", - "question_id": 30679, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00006185", - "question_id": 30681, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002985", - "question_id": 30682, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006894", - "question_id": 30683, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006617", - "question_id": 30685, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00007842", - "question_id": 30686, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006182", - "question_id": 30688, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003309", - "question_id": 30690, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005049", - "question_id": 30691, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00002233", - "question_id": 30692, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00002461", - "question_id": 30693, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00004758", - "question_id": 30697, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00001671", - "question_id": 30698, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00001228", - "question_id": 30700, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006434", - "question_id": 30701, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001966", - "question_id": 30702, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00004732", - "question_id": 30705, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00008980", - "question_id": 30707, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003534", - "question_id": 30709, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004761", - "question_id": 30711, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001432", - "question_id": 30714, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004008", - "question_id": 30715, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008334", - "question_id": 30717, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001405", - "question_id": 30718, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00005567", - "question_id": 30719, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00008607", - "question_id": 30722, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00003897", - "question_id": 30724, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00003907", - "question_id": 30725, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00008345", - "question_id": 30727, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00003145", - "question_id": 30729, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005554", - "question_id": 30731, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00005485", - "question_id": 30732, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00002519", - "question_id": 30734, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00007487", - "question_id": 30735, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00003163", - "question_id": 30737, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006351", - "question_id": 30739, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005527", - "question_id": 30741, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007572", - "question_id": 30743, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003385", - "question_id": 30744, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004261", - "question_id": 30747, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008703", - "question_id": 30749, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00008525", - "question_id": 30751, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007891", - "question_id": 30752, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00001427", - "question_id": 30754, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003707", - "question_id": 30755, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00004815", - "question_id": 30756, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001338", - "question_id": 30757, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00008292", - "question_id": 30760, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001740", - "question_id": 30761, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006739", - "question_id": 30762, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001497", - "question_id": 30764, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005941", - "question_id": 30766, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008359", - "question_id": 30767, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003763", - "question_id": 30769, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008235", - "question_id": 30770, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001565", - "question_id": 30771, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00006371", - "question_id": 30773, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002902", - "question_id": 30774, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00005383", - "question_id": 30775, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002730", - "question_id": 30776, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00003424", - "question_id": 30777, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004236", - "question_id": 30778, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002960", - "question_id": 30783, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004453", - "question_id": 30784, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006992", - "question_id": 30785, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008135", - "question_id": 30786, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000990", - "question_id": 30787, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000527", - "question_id": 30789, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00008712", - "question_id": 30790, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00002207", - "question_id": 30793, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00007088", - "question_id": 30799, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003875", - "question_id": 30801, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00000824", - "question_id": 30802, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004427", - "question_id": 30804, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003372", - "question_id": 30805, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004094", - "question_id": 30806, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00004633", - "question_id": 30807, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00003118", - "question_id": 30808, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007978", - "question_id": 30809, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006466", - "question_id": 30810, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003196", - "question_id": 30811, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001455", - "question_id": 30813, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005749", - "question_id": 30814, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006426", - "question_id": 30815, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00007991", - "question_id": 30817, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00002813", - "question_id": 30820, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008253", - "question_id": 30822, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003484", - "question_id": 30823, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00002477", - "question_id": 30825, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000402", - "question_id": 30826, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00007408", - "question_id": 30828, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001164", - "question_id": 30830, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00004917", - "question_id": 30834, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00003415", - "question_id": 30835, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004101", - "question_id": 30836, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008644", - "question_id": 30837, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00005691", - "question_id": 30838, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003292", - "question_id": 30839, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008055", - "question_id": 30844, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005212", - "question_id": 30846, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00008607", - "question_id": 30847, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000607", - "question_id": 30848, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001233", - "question_id": 30852, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"middle\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005902", - "question_id": 30855, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006208", - "question_id": 30856, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00001081", - "question_id": 30858, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007672", - "question_id": 30859, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004800", - "question_id": 30860, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002722", - "question_id": 30861, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000937", - "question_id": 30862, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00005691", - "question_id": 30863, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001120", - "question_id": 30864, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002391", - "question_id": 30874, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003503", - "question_id": 30875, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001555", - "question_id": 30876, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000629", - "question_id": 30877, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00007401", - "question_id": 30878, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00002431", - "question_id": 30879, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007260", - "question_id": 30884, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00002478", - "question_id": 30886, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008694", - "question_id": 30887, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001986", - "question_id": 30888, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00001405", - "question_id": 30889, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003516", - "question_id": 30891, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00008353", - "question_id": 30893, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00006118", - "question_id": 30896, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006382", - "question_id": 30897, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00002441", - "question_id": 30899, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00007745", - "question_id": 30901, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00001097", - "question_id": 30902, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001824", - "question_id": 30903, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00002788", - "question_id": 30906, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00006707", - "question_id": 30907, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004959", - "question_id": 30908, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00005744", - "question_id": 30910, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00000644", - "question_id": 30911, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006018", - "question_id": 30914, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008179", - "question_id": 30915, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00001792", - "question_id": 30917, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005761", - "question_id": 30918, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00001796", - "question_id": 30921, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005116", - "question_id": 30923, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"tuba\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001249", - "question_id": 30925, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000892", - "question_id": 30927, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00003303", - "question_id": 30928, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007742", - "question_id": 30931, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004213", - "question_id": 30933, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00007779", - "question_id": 30937, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000364", - "question_id": 30938, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008061", - "question_id": 30939, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008613", - "question_id": 30942, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008006", - "question_id": 30943, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00004542", - "question_id": 30944, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00005456", - "question_id": 30946, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004015", - "question_id": 30947, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"drum\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001898", - "question_id": 30948, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00008839", - "question_id": 30949, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001372", - "question_id": 30950, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00008863", - "question_id": 30952, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00000267", - "question_id": 30954, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000471", - "question_id": 30955, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00008934", - "question_id": 30956, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004232", - "question_id": 30959, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00000528", - "question_id": 30960, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003937", - "question_id": 30963, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003395", - "question_id": 30965, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00004831", - "question_id": 30966, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001057", - "question_id": 30967, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006636", - "question_id": 30968, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00005080", - "question_id": 30969, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002929", - "question_id": 30971, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004198", - "question_id": 30972, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005236", - "question_id": 30973, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004586", - "question_id": 30974, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005756", - "question_id": 30976, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00001667", - "question_id": 30978, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004105", - "question_id": 30986, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008324", - "question_id": 30987, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004539", - "question_id": 30989, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007618", - "question_id": 30991, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00001054", - "question_id": 30992, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00003466", - "question_id": 30994, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000922", - "question_id": 30995, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006335", - "question_id": 30996, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00003515", - "question_id": 30999, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002871", - "question_id": 31000, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00006074", - "question_id": 31002, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004390", - "question_id": 31003, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00000908", - "question_id": 31004, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002545", - "question_id": 31006, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005217", - "question_id": 31007, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003554", - "question_id": 31009, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008102", - "question_id": 31010, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006091", - "question_id": 31011, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001157", - "question_id": 31016, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006123", - "question_id": 31017, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "more than ten" -}, { - "video_id": "00007034", - "question_id": 31018, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006664", - "question_id": 31020, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004360", - "question_id": 31022, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006247", - "question_id": 31023, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000576", - "question_id": 31025, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005826", - "question_id": 31028, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002907", - "question_id": 31029, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002225", - "question_id": 31031, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003474", - "question_id": 31032, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007067", - "question_id": 31037, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001412", - "question_id": 31040, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007649", - "question_id": 31041, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002057", - "question_id": 31042, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004461", - "question_id": 31043, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004505", - "question_id": 31045, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000207", - "question_id": 31047, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000569", - "question_id": 31051, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005965", - "question_id": 31052, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005210", - "question_id": 31061, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000387", - "question_id": 31064, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006368", - "question_id": 31065, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003203", - "question_id": 31066, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002699", - "question_id": 31067, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008289", - "question_id": 31068, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007618", - "question_id": 31071, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006180", - "question_id": 31072, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003688", - "question_id": 31073, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006565", - "question_id": 31074, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004764", - "question_id": 31075, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002264", - "question_id": 31077, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000260", - "question_id": 31079, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001463", - "question_id": 31083, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006935", - "question_id": 31085, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000585", - "question_id": 31086, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007779", - "question_id": 31087, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00003459", - "question_id": 31088, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001889", - "question_id": 31090, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003990", - "question_id": 31093, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008302", - "question_id": 31094, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000242", - "question_id": 31095, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005212", - "question_id": 31096, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008535", - "question_id": 31099, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006583", - "question_id": 31107, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002424", - "question_id": 31110, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007340", - "question_id": 31111, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006620", - "question_id": 31115, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006243", - "question_id": 31117, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002535", - "question_id": 31118, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003524", - "question_id": 31119, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004427", - "question_id": 31120, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000635", - "question_id": 31122, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005603", - "question_id": 31124, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008911", - "question_id": 31126, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006757", - "question_id": 31128, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001534", - "question_id": 31130, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001735", - "question_id": 31131, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007985", - "question_id": 31135, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001307", - "question_id": 31136, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002900", - "question_id": 31139, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003120", - "question_id": 31140, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002338", - "question_id": 31146, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005911", - "question_id": 31148, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007833", - "question_id": 31149, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006639", - "question_id": 31151, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005281", - "question_id": 31152, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005822", - "question_id": 31156, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00000286", - "question_id": 31157, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003682", - "question_id": 31158, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001400", - "question_id": 31159, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000878", - "question_id": 31160, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008171", - "question_id": 31162, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004184", - "question_id": 31163, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006798", - "question_id": 31164, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005478", - "question_id": 31168, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004347", - "question_id": 31169, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005631", - "question_id": 31170, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004852", - "question_id": 31171, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004956", - "question_id": 31175, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004381", - "question_id": 31176, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002195", - "question_id": 31177, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003924", - "question_id": 31180, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005527", - "question_id": 31182, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003263", - "question_id": 31184, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005599", - "question_id": 31187, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004964", - "question_id": 31190, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004332", - "question_id": 31191, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002451", - "question_id": 31192, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006116", - "question_id": 31193, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001748", - "question_id": 31195, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000144", - "question_id": 31196, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000775", - "question_id": 31197, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007917", - "question_id": 31198, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001288", - "question_id": 31199, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003023", - "question_id": 31201, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006951", - "question_id": 31202, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002521", - "question_id": 31203, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002351", - "question_id": 31204, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000208", - "question_id": 31205, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000867", - "question_id": 31207, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007268", - "question_id": 31208, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003330", - "question_id": 31211, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000504", - "question_id": 31214, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000831", - "question_id": 31216, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000864", - "question_id": 31218, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002487", - "question_id": 31221, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001896", - "question_id": 31222, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007727", - "question_id": 31223, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008407", - "question_id": 31226, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006936", - "question_id": 31228, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000354", - "question_id": 31231, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005724", - "question_id": 31233, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003974", - "question_id": 31236, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007741", - "question_id": 31239, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004875", - "question_id": 31240, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006958", - "question_id": 31241, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007646", - "question_id": 31243, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008911", - "question_id": 31244, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00008060", - "question_id": 31245, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005702", - "question_id": 31246, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001699", - "question_id": 31248, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004910", - "question_id": 31249, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006373", - "question_id": 31252, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008433", - "question_id": 31254, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003016", - "question_id": 31255, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003246", - "question_id": 31258, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002993", - "question_id": 31259, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006496", - "question_id": 31260, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004174", - "question_id": 31264, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001734", - "question_id": 31266, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000283", - "question_id": 31268, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002789", - "question_id": 31270, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006338", - "question_id": 31272, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002005", - "question_id": 31276, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007489", - "question_id": 31278, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008718", - "question_id": 31279, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005481", - "question_id": 31281, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005680", - "question_id": 31283, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00006730", - "question_id": 31284, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002179", - "question_id": 31286, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002215", - "question_id": 31292, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002552", - "question_id": 31295, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005169", - "question_id": 31298, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005257", - "question_id": 31299, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004575", - "question_id": 31300, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007278", - "question_id": 31303, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007802", - "question_id": 31305, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001464", - "question_id": 31307, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007508", - "question_id": 31308, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008213", - "question_id": 31309, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00004145", - "question_id": 31310, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007225", - "question_id": 31311, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006792", - "question_id": 31315, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000756", - "question_id": 31317, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002566", - "question_id": 31323, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001329", - "question_id": 31324, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003057", - "question_id": 31327, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008009", - "question_id": 31328, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001561", - "question_id": 31329, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003398", - "question_id": 31330, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004156", - "question_id": 31332, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008336", - "question_id": 31333, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008285", - "question_id": 31336, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007797", - "question_id": 31340, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007472", - "question_id": 31344, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007012", - "question_id": 31345, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006500", - "question_id": 31348, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007067", - "question_id": 31350, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004625", - "question_id": 31353, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001455", - "question_id": 31356, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004787", - "question_id": 31358, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008282", - "question_id": 31363, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004461", - "question_id": 31364, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00007237", - "question_id": 31369, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004412", - "question_id": 31370, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007839", - "question_id": 31373, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004394", - "question_id": 31378, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004435", - "question_id": 31379, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008745", - "question_id": 31380, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007916", - "question_id": 31383, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000307", - "question_id": 31385, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008021", - "question_id": 31386, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005589", - "question_id": 31387, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001089", - "question_id": 31388, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002859", - "question_id": 31394, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007612", - "question_id": 31396, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007236", - "question_id": 31397, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002177", - "question_id": 31402, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003553", - "question_id": 31403, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006718", - "question_id": 31404, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007924", - "question_id": 31405, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001353", - "question_id": 31406, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004760", - "question_id": 31411, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004475", - "question_id": 31413, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008851", - "question_id": 31415, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007349", - "question_id": 31417, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005305", - "question_id": 31418, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006023", - "question_id": 31419, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006452", - "question_id": 31422, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002942", - "question_id": 31423, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001632", - "question_id": 31424, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001660", - "question_id": 31425, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000056", - "question_id": 31428, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008236", - "question_id": 31429, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004858", - "question_id": 31431, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003428", - "question_id": 31434, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005003", - "question_id": 31435, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006544", - "question_id": 31441, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000009", - "question_id": 31444, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007120", - "question_id": 31449, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00004463", - "question_id": 31451, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005910", - "question_id": 31452, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001591", - "question_id": 31453, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000253", - "question_id": 31454, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008943", - "question_id": 31458, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005390", - "question_id": 31462, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001272", - "question_id": 31464, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004108", - "question_id": 31466, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008891", - "question_id": 31468, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005050", - "question_id": 31469, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003967", - "question_id": 31471, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006535", - "question_id": 31472, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002564", - "question_id": 31473, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007899", - "question_id": 31474, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008595", - "question_id": 31478, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001978", - "question_id": 31480, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006976", - "question_id": 31481, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007790", - "question_id": 31482, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001644", - "question_id": 31483, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000841", - "question_id": 31485, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007236", - "question_id": 31488, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001262", - "question_id": 31491, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001002", - "question_id": 31492, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004037", - "question_id": 31493, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001092", - "question_id": 31494, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007533", - "question_id": 31498, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004653", - "question_id": 31500, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008137", - "question_id": 31503, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002019", - "question_id": 31506, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007610", - "question_id": 31508, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00005093", - "question_id": 31510, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008492", - "question_id": 31511, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001155", - "question_id": 31513, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004532", - "question_id": 31516, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007770", - "question_id": 31517, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000871", - "question_id": 31519, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001749", - "question_id": 31521, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000379", - "question_id": 31522, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003740", - "question_id": 31523, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000327", - "question_id": 31524, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007415", - "question_id": 31525, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003258", - "question_id": 31528, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002824", - "question_id": 31529, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008150", - "question_id": 31530, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007350", - "question_id": 31532, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006815", - "question_id": 31533, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00008345", - "question_id": 31535, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005582", - "question_id": 31536, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003800", - "question_id": 31540, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008062", - "question_id": 31542, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000500", - "question_id": 31543, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006953", - "question_id": 31544, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008340", - "question_id": 31548, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000757", - "question_id": 31549, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00001097", - "question_id": 31554, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003918", - "question_id": 31555, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000087", - "question_id": 31556, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008676", - "question_id": 31559, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00008302", - "question_id": 31561, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008302", - "question_id": 31561, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005339", - "question_id": 31562, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00000885", - "question_id": 31563, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00003534", - "question_id": 31565, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00008111", - "question_id": 31566, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006134", - "question_id": 31570, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002827", - "question_id": 31573, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001413", - "question_id": 31574, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000548", - "question_id": 31577, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003909", - "question_id": 31584, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002334", - "question_id": 31585, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004781", - "question_id": 31586, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007299", - "question_id": 31591, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002652", - "question_id": 31592, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000683", - "question_id": 31594, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003888", - "question_id": 31595, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003485", - "question_id": 31598, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001183", - "question_id": 31599, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004736", - "question_id": 31602, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004077", - "question_id": 31603, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002847", - "question_id": 31605, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00007157", - "question_id": 31606, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008799", - "question_id": 31609, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001311", - "question_id": 31611, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000214", - "question_id": 31615, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001432", - "question_id": 31616, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007877", - "question_id": 31618, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004752", - "question_id": 31621, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003568", - "question_id": 31622, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00001526", - "question_id": 31625, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005402", - "question_id": 31627, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007838", - "question_id": 31628, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006483", - "question_id": 31629, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004707", - "question_id": 31630, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004245", - "question_id": 31632, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000338", - "question_id": 31634, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004141", - "question_id": 31636, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006885", - "question_id": 31639, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004408", - "question_id": 31643, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005113", - "question_id": 31644, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006691", - "question_id": 31646, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002278", - "question_id": 31647, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005906", - "question_id": 31650, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004747", - "question_id": 31652, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004864", - "question_id": 31655, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008879", - "question_id": 31659, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008879", - "question_id": 31659, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008295", - "question_id": 31660, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006370", - "question_id": 31664, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003194", - "question_id": 31665, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002675", - "question_id": 31666, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002384", - "question_id": 31669, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004892", - "question_id": 31670, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007800", - "question_id": 31674, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005085", - "question_id": 31675, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002787", - "question_id": 31676, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007860", - "question_id": 31678, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005316", - "question_id": 31679, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005365", - "question_id": 31680, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007019", - "question_id": 31681, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00001828", - "question_id": 31682, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004785", - "question_id": 31683, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005938", - "question_id": 31684, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003373", - "question_id": 31686, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005155", - "question_id": 31687, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007900", - "question_id": 31688, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007465", - "question_id": 31690, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003842", - "question_id": 31693, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007009", - "question_id": 31694, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001210", - "question_id": 31695, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007415", - "question_id": 31696, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000304", - "question_id": 31697, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002799", - "question_id": 31699, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006982", - "question_id": 31702, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004914", - "question_id": 31706, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003418", - "question_id": 31709, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002916", - "question_id": 31710, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006279", - "question_id": 31711, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000800", - "question_id": 31714, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004095", - "question_id": 31716, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004966", - "question_id": 31717, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001749", - "question_id": 31719, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00001174", - "question_id": 31722, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001545", - "question_id": 31723, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006058", - "question_id": 31725, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007053", - "question_id": 31727, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003663", - "question_id": 31728, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006140", - "question_id": 31730, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008628", - "question_id": 31731, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006001", - "question_id": 31732, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004373", - "question_id": 31733, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006465", - "question_id": 31734, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005897", - "question_id": 31738, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00006301", - "question_id": 31740, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002230", - "question_id": 31741, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004087", - "question_id": 31743, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000210", - "question_id": 31744, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001322", - "question_id": 31746, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002493", - "question_id": 31751, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00004870", - "question_id": 31754, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00004866", - "question_id": 31755, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007876", - "question_id": 31757, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001302", - "question_id": 31758, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001081", - "question_id": 31759, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005611", - "question_id": 31764, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006397", - "question_id": 31765, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003694", - "question_id": 31767, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006720", - "question_id": 31783, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001771", - "question_id": 31785, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001151", - "question_id": 31786, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007050", - "question_id": 31789, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008427", - "question_id": 31791, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005354", - "question_id": 31792, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003781", - "question_id": 31794, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001661", - "question_id": 31795, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004136", - "question_id": 31796, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002874", - "question_id": 31802, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002329", - "question_id": 31803, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004923", - "question_id": 31807, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004671", - "question_id": 31811, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003085", - "question_id": 31814, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002607", - "question_id": 31815, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005797", - "question_id": 31817, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002707", - "question_id": 31818, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008208", - "question_id": 31819, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003063", - "question_id": 31820, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004568", - "question_id": 31821, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00007978", - "question_id": 31824, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00004914", - "question_id": 31825, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007378", - "question_id": 31826, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005601", - "question_id": 31828, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000615", - "question_id": 31829, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000752", - "question_id": 31830, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002820", - "question_id": 31833, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00003700", - "question_id": 31834, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003004", - "question_id": 31836, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004528", - "question_id": 31838, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006916", - "question_id": 31839, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000508", - "question_id": 31843, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001704", - "question_id": 31846, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007841", - "question_id": 31848, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002954", - "question_id": 31850, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000672", - "question_id": 31852, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006938", - "question_id": 31853, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001969", - "question_id": 31857, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000270", - "question_id": 31862, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003964", - "question_id": 31863, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004614", - "question_id": 31866, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007664", - "question_id": 31867, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001485", - "question_id": 31868, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004465", - "question_id": 31870, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006856", - "question_id": 31871, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002042", - "question_id": 31872, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000694", - "question_id": 31873, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003366", - "question_id": 31875, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001742", - "question_id": 31876, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006335", - "question_id": 31879, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000068", - "question_id": 31881, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000844", - "question_id": 31883, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007351", - "question_id": 31884, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003759", - "question_id": 31886, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007153", - "question_id": 31887, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002292", - "question_id": 31889, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000891", - "question_id": 31891, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001341", - "question_id": 31894, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001727", - "question_id": 31898, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005019", - "question_id": 31899, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005250", - "question_id": 31902, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000703", - "question_id": 31904, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004218", - "question_id": 31905, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007466", - "question_id": 31908, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007962", - "question_id": 31909, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006810", - "question_id": 31913, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005838", - "question_id": 31914, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005022", - "question_id": 31915, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005101", - "question_id": 31916, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005699", - "question_id": 31921, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006164", - "question_id": 31922, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005799", - "question_id": 31925, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005619", - "question_id": 31926, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006003", - "question_id": 31927, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007730", - "question_id": 31929, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002851", - "question_id": 31930, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004383", - "question_id": 31931, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002227", - "question_id": 31932, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008127", - "question_id": 31933, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003776", - "question_id": 31939, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002570", - "question_id": 31940, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001661", - "question_id": 31941, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006915", - "question_id": 31942, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005416", - "question_id": 31944, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001556", - "question_id": 31947, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007014", - "question_id": 31949, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001167", - "question_id": 31953, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003109", - "question_id": 31956, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001065", - "question_id": 31959, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001085", - "question_id": 31961, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001315", - "question_id": 31964, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008948", - "question_id": 31966, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004331", - "question_id": 31967, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000897", - "question_id": 31968, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008483", - "question_id": 31973, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004082", - "question_id": 31977, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002438", - "question_id": 31979, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006085", - "question_id": 31980, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002818", - "question_id": 31982, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004330", - "question_id": 31983, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006350", - "question_id": 31985, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004410", - "question_id": 31986, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003532", - "question_id": 31987, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002983", - "question_id": 31988, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001925", - "question_id": 31989, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003555", - "question_id": 31990, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002279", - "question_id": 31994, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004227", - "question_id": 31996, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007143", - "question_id": 31997, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001938", - "question_id": 31998, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005756", - "question_id": 31999, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008196", - "question_id": 32000, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006374", - "question_id": 32004, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003049", - "question_id": 32005, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002280", - "question_id": 32007, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001630", - "question_id": 32008, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000790", - "question_id": 32009, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007650", - "question_id": 32010, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008585", - "question_id": 32012, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001994", - "question_id": 32013, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003205", - "question_id": 32016, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001138", - "question_id": 32020, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003623", - "question_id": 32024, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002663", - "question_id": 32027, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001075", - "question_id": 32030, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008782", - "question_id": 32031, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003457", - "question_id": 32032, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005607", - "question_id": 32033, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006529", - "question_id": 32034, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007826", - "question_id": 32035, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005837", - "question_id": 32041, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006050", - "question_id": 32042, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000829", - "question_id": 32045, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"banjo\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006313", - "question_id": 32047, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001882", - "question_id": 32049, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006539", - "question_id": 32050, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007628", - "question_id": 32051, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002396", - "question_id": 32052, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00007476", - "question_id": 32055, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005305", - "question_id": 32056, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003325", - "question_id": 32057, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005199", - "question_id": 32058, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001816", - "question_id": 32059, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000914", - "question_id": 32061, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004536", - "question_id": 32064, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00007806", - "question_id": 32066, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004494", - "question_id": 32067, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001480", - "question_id": 32068, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005666", - "question_id": 32069, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00004619", - "question_id": 32071, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005883", - "question_id": 32073, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000940", - "question_id": 32074, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000342", - "question_id": 32076, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001808", - "question_id": 32078, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005838", - "question_id": 32084, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003310", - "question_id": 32085, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007811", - "question_id": 32087, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006936", - "question_id": 32089, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007152", - "question_id": 32091, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005415", - "question_id": 32092, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006350", - "question_id": 32096, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005752", - "question_id": 32097, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006270", - "question_id": 32098, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004671", - "question_id": 32099, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008149", - "question_id": 32101, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004886", - "question_id": 32102, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006261", - "question_id": 32103, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003904", - "question_id": 32105, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004616", - "question_id": 32106, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00005441", - "question_id": 32107, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006285", - "question_id": 32108, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007265", - "question_id": 32110, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006578", - "question_id": 32112, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000958", - "question_id": 32113, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008760", - "question_id": 32116, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008691", - "question_id": 32117, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005526", - "question_id": 32119, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007376", - "question_id": 32121, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007813", - "question_id": 32125, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008773", - "question_id": 32126, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005638", - "question_id": 32128, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003315", - "question_id": 32129, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005155", - "question_id": 32130, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002763", - "question_id": 32132, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002055", - "question_id": 32133, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007294", - "question_id": 32134, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003140", - "question_id": 32135, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004856", - "question_id": 32137, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000593", - "question_id": 32139, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000290", - "question_id": 32140, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007096", - "question_id": 32141, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002804", - "question_id": 32143, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002091", - "question_id": 32144, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004292", - "question_id": 32148, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008976", - "question_id": 32151, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002510", - "question_id": 32152, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003968", - "question_id": 32153, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005696", - "question_id": 32154, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004123", - "question_id": 32156, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007213", - "question_id": 32158, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002529", - "question_id": 32159, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000533", - "question_id": 32161, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002378", - "question_id": 32162, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000813", - "question_id": 32166, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006183", - "question_id": 32167, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002545", - "question_id": 32169, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005949", - "question_id": 32170, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000792", - "question_id": 32171, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005425", - "question_id": 32175, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002183", - "question_id": 32176, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005200", - "question_id": 32179, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007410", - "question_id": 32182, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002241", - "question_id": 32187, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00003328", - "question_id": 32188, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008875", - "question_id": 32191, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006436", - "question_id": 32195, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007715", - "question_id": 32199, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005807", - "question_id": 32200, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001133", - "question_id": 32201, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004185", - "question_id": 32202, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006511", - "question_id": 32203, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000113", - "question_id": 32206, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006981", - "question_id": 32208, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007992", - "question_id": 32210, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004829", - "question_id": 32211, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002123", - "question_id": 32212, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00006352", - "question_id": 32216, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007934", - "question_id": 32217, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007314", - "question_id": 32218, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007174", - "question_id": 32219, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001224", - "question_id": 32220, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007003", - "question_id": 32222, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000786", - "question_id": 32225, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002353", - "question_id": 32226, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002137", - "question_id": 32227, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000548", - "question_id": 32232, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004142", - "question_id": 32233, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001922", - "question_id": 32236, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00001386", - "question_id": 32238, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006500", - "question_id": 32244, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005101", - "question_id": 32249, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006437", - "question_id": 32251, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00006300", - "question_id": 32252, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001360", - "question_id": 32253, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007467", - "question_id": 32254, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007497", - "question_id": 32262, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005107", - "question_id": 32265, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005600", - "question_id": 32266, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006345", - "question_id": 32268, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006442", - "question_id": 32269, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004453", - "question_id": 32272, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004878", - "question_id": 32273, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000555", - "question_id": 32274, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008305", - "question_id": 32276, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000204", - "question_id": 32279, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008671", - "question_id": 32282, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002789", - "question_id": 32285, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001973", - "question_id": 32287, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008947", - "question_id": 32288, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004168", - "question_id": 32290, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002986", - "question_id": 32292, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005752", - "question_id": 32293, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005414", - "question_id": 32294, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007199", - "question_id": 32298, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003681", - "question_id": 32299, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005532", - "question_id": 32305, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001502", - "question_id": 32306, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003804", - "question_id": 32307, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002181", - "question_id": 32309, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000448", - "question_id": 32311, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007837", - "question_id": 32312, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003541", - "question_id": 32314, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006679", - "question_id": 32315, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007628", - "question_id": 32318, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00008379", - "question_id": 32319, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001161", - "question_id": 32322, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005976", - "question_id": 32323, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004514", - "question_id": 32325, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00001403", - "question_id": 32330, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008459", - "question_id": 32334, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001720", - "question_id": 32335, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003331", - "question_id": 32336, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005116", - "question_id": 32338, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004328", - "question_id": 32339, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00005963", - "question_id": 32341, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001133", - "question_id": 32342, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"saxophone\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000009", - "question_id": 32345, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003980", - "question_id": 32349, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008231", - "question_id": 32350, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000878", - "question_id": 32354, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000951", - "question_id": 32355, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003665", - "question_id": 32357, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002545", - "question_id": 32358, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005766", - "question_id": 32359, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008649", - "question_id": 32364, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001526", - "question_id": 32366, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002384", - "question_id": 32368, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002868", - "question_id": 32369, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008086", - "question_id": 32370, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005842", - "question_id": 32371, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008840", - "question_id": 32377, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"electric_bass\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007035", - "question_id": 32379, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007694", - "question_id": 32380, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003678", - "question_id": 32382, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008777", - "question_id": 32383, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003831", - "question_id": 32384, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005888", - "question_id": 32385, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005575", - "question_id": 32387, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008704", - "question_id": 32388, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003543", - "question_id": 32390, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002307", - "question_id": 32395, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006506", - "question_id": 32396, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003880", - "question_id": 32397, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007958", - "question_id": 32399, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003100", - "question_id": 32401, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003524", - "question_id": 32403, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002698", - "question_id": 32404, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00008259", - "question_id": 32408, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003566", - "question_id": 32411, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005776", - "question_id": 32412, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005300", - "question_id": 32414, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004784", - "question_id": 32415, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004864", - "question_id": 32416, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007946", - "question_id": 32417, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003259", - "question_id": 32419, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005438", - "question_id": 32420, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007056", - "question_id": 32421, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000772", - "question_id": 32422, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001145", - "question_id": 32423, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006457", - "question_id": 32425, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004882", - "question_id": 32426, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003860", - "question_id": 32431, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000330", - "question_id": 32432, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004856", - "question_id": 32433, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006222", - "question_id": 32440, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006134", - "question_id": 32442, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00008515", - "question_id": 32445, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006226", - "question_id": 32447, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008118", - "question_id": 32450, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003424", - "question_id": 32452, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008235", - "question_id": 32453, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002921", - "question_id": 32454, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001425", - "question_id": 32455, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007870", - "question_id": 32456, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005288", - "question_id": 32460, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00006907", - "question_id": 32462, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002030", - "question_id": 32463, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004005", - "question_id": 32465, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004693", - "question_id": 32466, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007054", - "question_id": 32470, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005698", - "question_id": 32474, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001532", - "question_id": 32475, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004787", - "question_id": 32478, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000358", - "question_id": 32482, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006179", - "question_id": 32483, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005681", - "question_id": 32484, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004254", - "question_id": 32486, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007823", - "question_id": 32489, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006430", - "question_id": 32490, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008969", - "question_id": 32497, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000551", - "question_id": 32500, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003935", - "question_id": 32501, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"clarinet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006854", - "question_id": 32503, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001529", - "question_id": 32508, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006436", - "question_id": 32511, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000607", - "question_id": 32514, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006876", - "question_id": 32517, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002579", - "question_id": 32518, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000446", - "question_id": 32520, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006591", - "question_id": 32523, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008200", - "question_id": 32525, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003666", - "question_id": 32527, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00005374", - "question_id": 32528, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004883", - "question_id": 32530, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003071", - "question_id": 32532, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002951", - "question_id": 32533, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000281", - "question_id": 32534, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00004415", - "question_id": 32535, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005907", - "question_id": 32536, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002682", - "question_id": 32537, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006965", - "question_id": 32538, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002734", - "question_id": 32539, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008254", - "question_id": 32543, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000927", - "question_id": 32544, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007784", - "question_id": 32546, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006169", - "question_id": 32547, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002437", - "question_id": 32549, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005352", - "question_id": 32552, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007802", - "question_id": 32553, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004432", - "question_id": 32554, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006724", - "question_id": 32555, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000566", - "question_id": 32559, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003177", - "question_id": 32560, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007529", - "question_id": 32561, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007529", - "question_id": 32562, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000077", - "question_id": 32566, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001126", - "question_id": 32567, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007034", - "question_id": 32569, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004126", - "question_id": 32570, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002640", - "question_id": 32571, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000372", - "question_id": 32573, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003034", - "question_id": 32574, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000389", - "question_id": 32579, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007464", - "question_id": 32583, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003873", - "question_id": 32585, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002551", - "question_id": 32588, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007983", - "question_id": 32590, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002257", - "question_id": 32591, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006994", - "question_id": 32596, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00004501", - "question_id": 32598, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006928", - "question_id": 32599, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007116", - "question_id": 32605, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003935", - "question_id": 32606, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005539", - "question_id": 32607, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007244", - "question_id": 32610, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004958", - "question_id": 32611, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003100", - "question_id": 32612, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00003862", - "question_id": 32614, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003826", - "question_id": 32615, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001356", - "question_id": 32616, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001284", - "question_id": 32617, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008151", - "question_id": 32620, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006085", - "question_id": 32621, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006064", - "question_id": 32626, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003818", - "question_id": 32629, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003742", - "question_id": 32632, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00000875", - "question_id": 32633, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003360", - "question_id": 32635, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004205", - "question_id": 32636, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004301", - "question_id": 32638, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007046", - "question_id": 32641, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003788", - "question_id": 32643, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000078", - "question_id": 32648, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00006331", - "question_id": 32651, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003774", - "question_id": 32653, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008025", - "question_id": 32655, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008129", - "question_id": 32657, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002663", - "question_id": 32660, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002009", - "question_id": 32664, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001207", - "question_id": 32665, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008233", - "question_id": 32668, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002624", - "question_id": 32671, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008624", - "question_id": 32672, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008304", - "question_id": 32673, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00002315", - "question_id": 32675, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000966", - "question_id": 32678, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002275", - "question_id": 32681, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000423", - "question_id": 32684, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003215", - "question_id": 32686, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006201", - "question_id": 32687, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008625", - "question_id": 32688, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"guzheng\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006551", - "question_id": 32690, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002645", - "question_id": 32692, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003798", - "question_id": 32693, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006099", - "question_id": 32696, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002592", - "question_id": 32698, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006366", - "question_id": 32702, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008357", - "question_id": 32703, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007992", - "question_id": 32706, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001475", - "question_id": 32707, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008188", - "question_id": 32709, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001104", - "question_id": 32714, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00001481", - "question_id": 32715, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008223", - "question_id": 32717, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007336", - "question_id": 32720, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008473", - "question_id": 32722, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006686", - "question_id": 32726, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004353", - "question_id": 32728, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00008914", - "question_id": 32729, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002410", - "question_id": 32733, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003205", - "question_id": 32735, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000517", - "question_id": 32737, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004945", - "question_id": 32739, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007609", - "question_id": 32740, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002175", - "question_id": 32741, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005810", - "question_id": 32742, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007426", - "question_id": 32743, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006919", - "question_id": 32745, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005443", - "question_id": 32747, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005505", - "question_id": 32748, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008716", - "question_id": 32750, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002463", - "question_id": 32752, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002677", - "question_id": 32755, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006964", - "question_id": 32756, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004066", - "question_id": 32758, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003049", - "question_id": 32761, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006560", - "question_id": 32762, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007961", - "question_id": 32766, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007291", - "question_id": 32767, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004148", - "question_id": 32770, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008583", - "question_id": 32774, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004218", - "question_id": 32775, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003196", - "question_id": 32779, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008471", - "question_id": 32780, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007102", - "question_id": 32781, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002368", - "question_id": 32782, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003290", - "question_id": 32783, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003938", - "question_id": 32784, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002366", - "question_id": 32787, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000617", - "question_id": 32788, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008535", - "question_id": 32790, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004995", - "question_id": 32791, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004501", - "question_id": 32792, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000511", - "question_id": 32793, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006935", - "question_id": 32796, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007793", - "question_id": 32797, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002576", - "question_id": 32800, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003907", - "question_id": 32801, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003843", - "question_id": 32803, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006998", - "question_id": 32808, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006502", - "question_id": 32809, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002817", - "question_id": 32811, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007616", - "question_id": 32813, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008344", - "question_id": 32819, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000657", - "question_id": 32822, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005001", - "question_id": 32825, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002195", - "question_id": 32828, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003985", - "question_id": 32835, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008230", - "question_id": 32837, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007467", - "question_id": 32838, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001418", - "question_id": 32840, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003209", - "question_id": 32841, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000419", - "question_id": 32842, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000247", - "question_id": 32852, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004806", - "question_id": 32853, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002554", - "question_id": 32856, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001446", - "question_id": 32858, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007209", - "question_id": 32861, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002201", - "question_id": 32862, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007895", - "question_id": 32863, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001339", - "question_id": 32865, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006599", - "question_id": 32867, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004571", - "question_id": 32868, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006660", - "question_id": 32869, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000411", - "question_id": 32870, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004495", - "question_id": 32873, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006374", - "question_id": 32876, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000594", - "question_id": 32877, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001312", - "question_id": 32880, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006539", - "question_id": 32881, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000493", - "question_id": 32882, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007795", - "question_id": 32884, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006486", - "question_id": 32887, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000895", - "question_id": 32888, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003753", - "question_id": 32889, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008871", - "question_id": 32892, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007940", - "question_id": 32893, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001546", - "question_id": 32894, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002952", - "question_id": 32900, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002579", - "question_id": 32902, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004481", - "question_id": 32904, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006385", - "question_id": 32905, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004150", - "question_id": 32906, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008633", - "question_id": 32907, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003120", - "question_id": 32908, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008096", - "question_id": 32911, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005408", - "question_id": 32912, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002930", - "question_id": 32913, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005145", - "question_id": 32914, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008820", - "question_id": 32916, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007852", - "question_id": 32919, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00007037", - "question_id": 32920, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004307", - "question_id": 32923, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005726", - "question_id": 32925, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000712", - "question_id": 32926, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001492", - "question_id": 32927, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005268", - "question_id": 32928, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005001", - "question_id": 32929, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008622", - "question_id": 32931, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008378", - "question_id": 32933, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00000977", - "question_id": 32934, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003475", - "question_id": 32939, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00005473", - "question_id": 32940, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003732", - "question_id": 32941, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000564", - "question_id": 32942, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007054", - "question_id": 32945, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007357", - "question_id": 32946, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001489", - "question_id": 32947, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006917", - "question_id": 32948, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006009", - "question_id": 32949, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00001251", - "question_id": 32964, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008238", - "question_id": 32966, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006134", - "question_id": 32967, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "more than ten" -}, { - "video_id": "00005603", - "question_id": 32968, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006099", - "question_id": 32969, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008425", - "question_id": 32970, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00001976", - "question_id": 32974, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007381", - "question_id": 32975, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007096", - "question_id": 32979, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005043", - "question_id": 32980, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005971", - "question_id": 32983, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005490", - "question_id": 32987, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005331", - "question_id": 32989, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005292", - "question_id": 32990, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004882", - "question_id": 32991, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003695", - "question_id": 32992, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005038", - "question_id": 32993, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003095", - "question_id": 32995, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008031", - "question_id": 32998, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"tuba\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002654", - "question_id": 32999, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000415", - "question_id": 33001, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005686", - "question_id": 33003, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008570", - "question_id": 33004, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004823", - "question_id": 33005, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005333", - "question_id": 33007, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005402", - "question_id": 33009, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002485", - "question_id": 33010, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000758", - "question_id": 33011, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001104", - "question_id": 33012, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007035", - "question_id": 33016, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001390", - "question_id": 33018, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006164", - "question_id": 33019, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007884", - "question_id": 33023, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007219", - "question_id": 33027, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001863", - "question_id": 33028, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007563", - "question_id": 33033, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002140", - "question_id": 33034, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003867", - "question_id": 33036, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002654", - "question_id": 33037, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002707", - "question_id": 33038, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006478", - "question_id": 33039, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004765", - "question_id": 33040, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001554", - "question_id": 33042, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003412", - "question_id": 33043, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006362", - "question_id": 33047, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002885", - "question_id": 33050, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006050", - "question_id": 33054, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000801", - "question_id": 33055, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006810", - "question_id": 33058, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000439", - "question_id": 33062, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004673", - "question_id": 33063, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004467", - "question_id": 33065, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001530", - "question_id": 33066, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001589", - "question_id": 33068, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004382", - "question_id": 33071, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006821", - "question_id": 33072, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002702", - "question_id": 33074, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008233", - "question_id": 33076, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008343", - "question_id": 33077, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005153", - "question_id": 33081, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007168", - "question_id": 33084, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002985", - "question_id": 33086, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006226", - "question_id": 33091, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006676", - "question_id": 33095, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000422", - "question_id": 33097, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008858", - "question_id": 33098, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007314", - "question_id": 33101, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002390", - "question_id": 33102, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002861", - "question_id": 33105, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003807", - "question_id": 33106, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004152", - "question_id": 33109, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005164", - "question_id": 33110, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007023", - "question_id": 33111, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003574", - "question_id": 33112, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008766", - "question_id": 33114, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002692", - "question_id": 33115, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001110", - "question_id": 33117, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006894", - "question_id": 33118, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003777", - "question_id": 33119, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002173", - "question_id": 33120, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000327", - "question_id": 33124, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003394", - "question_id": 33125, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005858", - "question_id": 33127, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002625", - "question_id": 33128, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001150", - "question_id": 33129, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001836", - "question_id": 33130, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001221", - "question_id": 33131, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006583", - "question_id": 33132, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003575", - "question_id": 33133, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001081", - "question_id": 33135, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007443", - "question_id": 33140, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005377", - "question_id": 33142, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005085", - "question_id": 33146, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006513", - "question_id": 33147, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002357", - "question_id": 33149, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008150", - "question_id": 33152, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00002505", - "question_id": 33164, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004153", - "question_id": 33171, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000047", - "question_id": 33172, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004160", - "question_id": 33173, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003966", - "question_id": 33174, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008344", - "question_id": 33176, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007558", - "question_id": 33177, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004767", - "question_id": 33178, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004091", - "question_id": 33188, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004252", - "question_id": 33191, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003642", - "question_id": 33192, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006457", - "question_id": 33193, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001288", - "question_id": 33194, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002055", - "question_id": 33195, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003644", - "question_id": 33197, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008758", - "question_id": 33200, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002626", - "question_id": 33201, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003302", - "question_id": 33202, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007429", - "question_id": 33203, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002575", - "question_id": 33205, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000789", - "question_id": 33206, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002778", - "question_id": 33207, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004772", - "question_id": 33208, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000586", - "question_id": 33212, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002894", - "question_id": 33214, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000685", - "question_id": 33215, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001514", - "question_id": 33216, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001044", - "question_id": 33217, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000922", - "question_id": 33220, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003652", - "question_id": 33221, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001281", - "question_id": 33224, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008758", - "question_id": 33225, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001042", - "question_id": 33226, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008226", - "question_id": 33229, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001867", - "question_id": 33231, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001848", - "question_id": 33232, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003848", - "question_id": 33233, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004570", - "question_id": 33235, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008824", - "question_id": 33236, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008404", - "question_id": 33238, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004454", - "question_id": 33243, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008085", - "question_id": 33244, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005848", - "question_id": 33245, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002275", - "question_id": 33247, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000703", - "question_id": 33250, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008104", - "question_id": 33251, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000273", - "question_id": 33252, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007225", - "question_id": 33255, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004154", - "question_id": 33257, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006137", - "question_id": 33258, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008673", - "question_id": 33259, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004585", - "question_id": 33261, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006622", - "question_id": 33262, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001396", - "question_id": 33266, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003332", - "question_id": 33268, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004785", - "question_id": 33269, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007927", - "question_id": 33274, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000521", - "question_id": 33275, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003230", - "question_id": 33276, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006933", - "question_id": 33278, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004132", - "question_id": 33279, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003703", - "question_id": 33286, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005187", - "question_id": 33290, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008221", - "question_id": 33291, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007928", - "question_id": 33293, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001376", - "question_id": 33295, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001517", - "question_id": 33296, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000075", - "question_id": 33297, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00002791", - "question_id": 33299, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003437", - "question_id": 33301, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008329", - "question_id": 33303, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003005", - "question_id": 33304, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002640", - "question_id": 33306, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000902", - "question_id": 33307, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002916", - "question_id": 33308, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002999", - "question_id": 33312, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003730", - "question_id": 33315, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004586", - "question_id": 33316, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005212", - "question_id": 33318, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006251", - "question_id": 33320, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002107", - "question_id": 33322, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004459", - "question_id": 33324, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000870", - "question_id": 33325, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000064", - "question_id": 33332, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000157", - "question_id": 33336, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004229", - "question_id": 33338, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005019", - "question_id": 33340, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004209", - "question_id": 33341, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003672", - "question_id": 33342, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002147", - "question_id": 33345, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008209", - "question_id": 33347, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003391", - "question_id": 33350, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001611", - "question_id": 33353, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001825", - "question_id": 33354, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007675", - "question_id": 33357, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008536", - "question_id": 33359, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002203", - "question_id": 33363, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001785", - "question_id": 33364, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004744", - "question_id": 33365, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001960", - "question_id": 33368, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006082", - "question_id": 33370, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003742", - "question_id": 33373, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006766", - "question_id": 33374, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008914", - "question_id": 33375, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007962", - "question_id": 33379, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00002567", - "question_id": 33381, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006974", - "question_id": 33385, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008912", - "question_id": 33388, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000240", - "question_id": 33390, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001607", - "question_id": 33391, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007113", - "question_id": 33393, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007952", - "question_id": 33396, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007052", - "question_id": 33398, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003990", - "question_id": 33399, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006914", - "question_id": 33400, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001011", - "question_id": 33403, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004131", - "question_id": 33405, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003953", - "question_id": 33406, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00001985", - "question_id": 33407, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00007532", - "question_id": 33408, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004327", - "question_id": 33411, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007098", - "question_id": 33412, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002114", - "question_id": 33415, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000765", - "question_id": 33419, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006433", - "question_id": 33426, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004154", - "question_id": 33428, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000439", - "question_id": 33431, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005264", - "question_id": 33434, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006052", - "question_id": 33435, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001526", - "question_id": 33438, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002042", - "question_id": 33443, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006605", - "question_id": 33449, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004862", - "question_id": 33450, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006148", - "question_id": 33453, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002430", - "question_id": 33457, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008683", - "question_id": 33459, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003045", - "question_id": 33460, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006529", - "question_id": 33461, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008064", - "question_id": 33462, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008390", - "question_id": 33463, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006315", - "question_id": 33464, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006595", - "question_id": 33465, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005895", - "question_id": 33467, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001595", - "question_id": 33468, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007869", - "question_id": 33469, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"ukulele\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00005603", - "question_id": 33470, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000815", - "question_id": 33471, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004622", - "question_id": 33475, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00003742", - "question_id": 33479, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003062", - "question_id": 33480, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002422", - "question_id": 33484, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000106", - "question_id": 33485, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004605", - "question_id": 33486, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003300", - "question_id": 33487, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001651", - "question_id": 33488, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003990", - "question_id": 33489, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00002782", - "question_id": 33491, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001835", - "question_id": 33492, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005436", - "question_id": 33493, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006945", - "question_id": 33494, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003680", - "question_id": 33495, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006036", - "question_id": 33496, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002365", - "question_id": 33497, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005643", - "question_id": 33499, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002375", - "question_id": 33504, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000116", - "question_id": 33506, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003580", - "question_id": 33512, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005480", - "question_id": 33515, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008463", - "question_id": 33516, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001785", - "question_id": 33518, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004015", - "question_id": 33519, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005164", - "question_id": 33520, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004345", - "question_id": 33523, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008913", - "question_id": 33526, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007919", - "question_id": 33527, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007919", - "question_id": 33527, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007780", - "question_id": 33528, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008626", - "question_id": 33529, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003859", - "question_id": 33530, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002930", - "question_id": 33532, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002818", - "question_id": 33533, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008531", - "question_id": 33536, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003416", - "question_id": 33538, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002509", - "question_id": 33539, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000617", - "question_id": 33540, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006605", - "question_id": 33541, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008929", - "question_id": 33547, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005270", - "question_id": 33548, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000085", - "question_id": 33551, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005205", - "question_id": 33554, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003106", - "question_id": 33556, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002515", - "question_id": 33557, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006743", - "question_id": 33559, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008205", - "question_id": 33562, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007175", - "question_id": 33563, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000671", - "question_id": 33568, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008763", - "question_id": 33570, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004615", - "question_id": 33571, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006856", - "question_id": 33572, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001237", - "question_id": 33574, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003451", - "question_id": 33578, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008527", - "question_id": 33581, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002617", - "question_id": 33583, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002324", - "question_id": 33584, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000357", - "question_id": 33587, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005794", - "question_id": 33589, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008976", - "question_id": 33593, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007377", - "question_id": 33595, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001044", - "question_id": 33596, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007780", - "question_id": 33598, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003222", - "question_id": 33599, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002855", - "question_id": 33601, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007207", - "question_id": 33602, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004332", - "question_id": 33603, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008667", - "question_id": 33608, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004442", - "question_id": 33610, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001206", - "question_id": 33611, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001239", - "question_id": 33614, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004758", - "question_id": 33623, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001159", - "question_id": 33626, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"ukulele\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00002821", - "question_id": 33628, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000286", - "question_id": 33629, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006320", - "question_id": 33632, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001482", - "question_id": 33635, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003261", - "question_id": 33636, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"tuba\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00008280", - "question_id": 33639, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003960", - "question_id": 33640, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002470", - "question_id": 33641, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007319", - "question_id": 33642, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001452", - "question_id": 33648, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008971", - "question_id": 33657, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004694", - "question_id": 33659, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006854", - "question_id": 33660, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"congas\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007865", - "question_id": 33661, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008278", - "question_id": 33662, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000493", - "question_id": 33664, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00005197", - "question_id": 33665, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006509", - "question_id": 33667, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003661", - "question_id": 33668, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001865", - "question_id": 33669, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005103", - "question_id": 33675, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00008066", - "question_id": 33677, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003697", - "question_id": 33680, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00004878", - "question_id": 33683, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001599", - "question_id": 33690, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"banjo\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000476", - "question_id": 33691, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004256", - "question_id": 33692, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004967", - "question_id": 33693, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003583", - "question_id": 33694, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002514", - "question_id": 33695, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001860", - "question_id": 33696, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00004533", - "question_id": 33698, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008244", - "question_id": 33701, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001716", - "question_id": 33704, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005512", - "question_id": 33707, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007279", - "question_id": 33709, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008452", - "question_id": 33712, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002268", - "question_id": 33713, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001663", - "question_id": 33716, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004854", - "question_id": 33717, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001183", - "question_id": 33720, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008636", - "question_id": 33722, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008281", - "question_id": 33724, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006472", - "question_id": 33726, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008376", - "question_id": 33727, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005439", - "question_id": 33730, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005727", - "question_id": 33733, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006976", - "question_id": 33735, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004553", - "question_id": 33738, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00000944", - "question_id": 33740, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001446", - "question_id": 33742, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00000547", - "question_id": 33743, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007361", - "question_id": 33745, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"pipa\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003303", - "question_id": 33746, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006294", - "question_id": 33749, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001087", - "question_id": 33753, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007822", - "question_id": 33755, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006488", - "question_id": 33760, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007715", - "question_id": 33764, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004187", - "question_id": 33765, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003083", - "question_id": 33767, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003741", - "question_id": 33768, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005031", - "question_id": 33771, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007754", - "question_id": 33772, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00003777", - "question_id": 33775, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00001303", - "question_id": 33776, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000901", - "question_id": 33777, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003839", - "question_id": 33779, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001711", - "question_id": 33783, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004283", - "question_id": 33785, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003482", - "question_id": 33787, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002682", - "question_id": 33788, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004545", - "question_id": 33789, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003188", - "question_id": 33793, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003843", - "question_id": 33794, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004959", - "question_id": 33799, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00007331", - "question_id": 33800, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008265", - "question_id": 33801, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008810", - "question_id": 33802, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003665", - "question_id": 33805, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003665", - "question_id": 33805, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007301", - "question_id": 33806, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008716", - "question_id": 33810, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004057", - "question_id": 33812, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008539", - "question_id": 33813, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005089", - "question_id": 33815, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000933", - "question_id": 33816, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002536", - "question_id": 33819, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008008", - "question_id": 33820, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00005463", - "question_id": 33821, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002469", - "question_id": 33826, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003187", - "question_id": 33829, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002210", - "question_id": 33831, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003649", - "question_id": 33835, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004866", - "question_id": 33837, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005250", - "question_id": 33839, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002227", - "question_id": 33840, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006118", - "question_id": 33841, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005397", - "question_id": 33843, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00007264", - "question_id": 33844, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001308", - "question_id": 33845, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005722", - "question_id": 33847, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00005028", - "question_id": 33851, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003580", - "question_id": 33852, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00000948", - "question_id": 33853, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003251", - "question_id": 33855, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003497", - "question_id": 33856, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007688", - "question_id": 33857, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006255", - "question_id": 33859, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006444", - "question_id": 33860, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004912", - "question_id": 33865, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006388", - "question_id": 33867, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008744", - "question_id": 33872, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005372", - "question_id": 33873, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"erhu\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006247", - "question_id": 33874, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004006", - "question_id": 33878, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007803", - "question_id": 33879, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006434", - "question_id": 33880, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001194", - "question_id": 33891, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008107", - "question_id": 33893, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002447", - "question_id": 33894, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002104", - "question_id": 33895, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "nine" -}, { - "video_id": "00002183", - "question_id": 33899, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003809", - "question_id": 33900, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001566", - "question_id": 33904, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004424", - "question_id": 33906, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007987", - "question_id": 33909, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000789", - "question_id": 33916, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007553", - "question_id": 33919, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000664", - "question_id": 33920, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004339", - "question_id": 33922, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003736", - "question_id": 33923, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007271", - "question_id": 33924, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002240", - "question_id": 33926, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001534", - "question_id": 33928, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002908", - "question_id": 33929, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003209", - "question_id": 33930, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005176", - "question_id": 33931, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000405", - "question_id": 33932, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002502", - "question_id": 33933, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00008610", - "question_id": 33934, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008559", - "question_id": 33936, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003051", - "question_id": 33937, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008300", - "question_id": 33939, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005078", - "question_id": 33941, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002661", - "question_id": 33943, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006855", - "question_id": 33944, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000514", - "question_id": 33945, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004545", - "question_id": 33946, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004941", - "question_id": 33951, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006209", - "question_id": 33952, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004256", - "question_id": 33958, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001712", - "question_id": 33959, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000813", - "question_id": 33961, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003644", - "question_id": 33965, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"guzheng\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00008296", - "question_id": 33966, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004642", - "question_id": 33967, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007694", - "question_id": 33968, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002896", - "question_id": 33974, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001892", - "question_id": 33976, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004467", - "question_id": 33977, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003263", - "question_id": 33978, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"banjo\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00001903", - "question_id": 33979, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005756", - "question_id": 33980, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008953", - "question_id": 33981, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007870", - "question_id": 33982, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006679", - "question_id": 33983, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002599", - "question_id": 33987, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006816", - "question_id": 33989, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00004050", - "question_id": 33994, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004549", - "question_id": 33995, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002828", - "question_id": 33997, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006532", - "question_id": 33999, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000356", - "question_id": 34000, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001135", - "question_id": 34001, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005961", - "question_id": 34004, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000184", - "question_id": 34005, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"bassoon\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000905", - "question_id": 34007, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002056", - "question_id": 34008, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006578", - "question_id": 34009, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00006208", - "question_id": 34010, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002495", - "question_id": 34011, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003986", - "question_id": 34012, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004454", - "question_id": 34014, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002871", - "question_id": 34017, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006496", - "question_id": 34019, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"banjo\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002288", - "question_id": 34021, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008811", - "question_id": 34023, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006621", - "question_id": 34024, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003215", - "question_id": 34025, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001774", - "question_id": 34027, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000063", - "question_id": 34028, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005110", - "question_id": 34030, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002028", - "question_id": 34031, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006639", - "question_id": 34032, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00006339", - "question_id": 34035, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00004020", - "question_id": 34037, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00005193", - "question_id": 34039, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003210", - "question_id": 34046, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00007476", - "question_id": 34048, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005892", - "question_id": 34050, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003538", - "question_id": 34051, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00008664", - "question_id": 34053, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002375", - "question_id": 34054, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006696", - "question_id": 34055, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004600", - "question_id": 34058, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002681", - "question_id": 34060, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006628", - "question_id": 34062, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00002436", - "question_id": 34063, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003126", - "question_id": 34065, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002557", - "question_id": 34067, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007819", - "question_id": 34068, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006308", - "question_id": 34069, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007085", - "question_id": 34070, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002452", - "question_id": 34071, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003435", - "question_id": 34077, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000350", - "question_id": 34079, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005032", - "question_id": 34081, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005380", - "question_id": 34083, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001553", - "question_id": 34085, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004628", - "question_id": 34086, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002488", - "question_id": 34087, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000340", - "question_id": 34089, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004434", - "question_id": 34094, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008246", - "question_id": 34098, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005297", - "question_id": 34099, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"pipa\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005869", - "question_id": 34100, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002063", - "question_id": 34101, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003902", - "question_id": 34111, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007241", - "question_id": 34115, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007164", - "question_id": 34117, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007322", - "question_id": 34118, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001238", - "question_id": 34119, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004720", - "question_id": 34121, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000248", - "question_id": 34123, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002986", - "question_id": 34125, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000980", - "question_id": 34126, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001129", - "question_id": 34129, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007042", - "question_id": 34131, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000142", - "question_id": 34132, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001283", - "question_id": 34133, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008884", - "question_id": 34135, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003478", - "question_id": 34139, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001200", - "question_id": 34140, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001721", - "question_id": 34141, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005638", - "question_id": 34142, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000934", - "question_id": 34144, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00004277", - "question_id": 34146, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "eight" -}, { - "video_id": "00001324", - "question_id": 34149, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008167", - "question_id": 34151, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"trumpet\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001934", - "question_id": 34153, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007325", - "question_id": 34155, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002638", - "question_id": 34156, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005123", - "question_id": 34157, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007655", - "question_id": 34160, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002919", - "question_id": 34161, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007566", - "question_id": 34163, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007301", - "question_id": 34165, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007314", - "question_id": 34172, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007835", - "question_id": 34176, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007187", - "question_id": 34177, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001603", - "question_id": 34179, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007927", - "question_id": 34181, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000228", - "question_id": 34182, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007877", - "question_id": 34186, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001864", - "question_id": 34189, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005735", - "question_id": 34191, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008009", - "question_id": 34192, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006884", - "question_id": 34193, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007930", - "question_id": 34197, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004096", - "question_id": 34200, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006528", - "question_id": 34201, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"tuba\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001305", - "question_id": 34205, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003604", - "question_id": 34208, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005663", - "question_id": 34209, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002206", - "question_id": 34211, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003814", - "question_id": 34212, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00006791", - "question_id": 34213, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008740", - "question_id": 34215, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001159", - "question_id": 34216, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006815", - "question_id": 34217, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007387", - "question_id": 34219, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004941", - "question_id": 34222, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005801", - "question_id": 34223, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00008223", - "question_id": 34225, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004420", - "question_id": 34228, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003192", - "question_id": 34231, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002543", - "question_id": 34234, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007403", - "question_id": 34235, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006980", - "question_id": 34236, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006197", - "question_id": 34239, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000908", - "question_id": 34241, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005939", - "question_id": 34244, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003189", - "question_id": 34245, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "more than ten" -}, { - "video_id": "00003419", - "question_id": 34247, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002131", - "question_id": 34248, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00000789", - "question_id": 34249, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002056", - "question_id": 34250, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001167", - "question_id": 34254, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001270", - "question_id": 34256, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005922", - "question_id": 34257, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003338", - "question_id": 34258, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00004156", - "question_id": 34260, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00004804", - "question_id": 34261, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007866", - "question_id": 34262, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005118", - "question_id": 34264, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006750", - "question_id": 34265, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002668", - "question_id": 34268, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006621", - "question_id": 34272, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007719", - "question_id": 34276, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003301", - "question_id": 34277, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000473", - "question_id": 34279, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005120", - "question_id": 34285, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00007019", - "question_id": 34289, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003688", - "question_id": 34292, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002807", - "question_id": 34293, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000819", - "question_id": 34294, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008732", - "question_id": 34295, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003435", - "question_id": 34297, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001973", - "question_id": 34298, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003362", - "question_id": 34299, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006043", - "question_id": 34300, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "more than ten" -}, { - "video_id": "00003786", - "question_id": 34301, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006769", - "question_id": 34303, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000841", - "question_id": 34304, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008011", - "question_id": 34309, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007410", - "question_id": 34313, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005175", - "question_id": 34314, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007609", - "question_id": 34315, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004594", - "question_id": 34321, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008774", - "question_id": 34322, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000735", - "question_id": 34325, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"tuba\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001289", - "question_id": 34327, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004746", - "question_id": 34331, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006618", - "question_id": 34335, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005639", - "question_id": 34337, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004190", - "question_id": 34340, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005032", - "question_id": 34348, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004168", - "question_id": 34350, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007345", - "question_id": 34351, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008972", - "question_id": 34355, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003007", - "question_id": 34359, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007849", - "question_id": 34360, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001625", - "question_id": 34362, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008210", - "question_id": 34363, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005383", - "question_id": 34365, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003593", - "question_id": 34366, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007599", - "question_id": 34370, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007823", - "question_id": 34372, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005880", - "question_id": 34374, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005315", - "question_id": 34375, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008914", - "question_id": 34376, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004295", - "question_id": 34378, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005061", - "question_id": 34379, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005072", - "question_id": 34380, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005998", - "question_id": 34386, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007191", - "question_id": 34387, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000853", - "question_id": 34391, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"middle\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006868", - "question_id": 34393, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004415", - "question_id": 34394, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005013", - "question_id": 34396, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002724", - "question_id": 34397, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008043", - "question_id": 34398, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005119", - "question_id": 34399, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008903", - "question_id": 34400, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004798", - "question_id": 34401, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008837", - "question_id": 34402, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000790", - "question_id": 34403, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000756", - "question_id": 34405, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008274", - "question_id": 34406, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002037", - "question_id": 34408, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00000692", - "question_id": 34409, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006792", - "question_id": 34410, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003301", - "question_id": 34412, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006468", - "question_id": 34416, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002788", - "question_id": 34418, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004236", - "question_id": 34420, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00000721", - "question_id": 34424, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006720", - "question_id": 34427, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007823", - "question_id": 34428, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00006561", - "question_id": 34431, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004604", - "question_id": 34435, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002162", - "question_id": 34437, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003930", - "question_id": 34439, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000415", - "question_id": 34441, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006570", - "question_id": 34443, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007084", - "question_id": 34444, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004099", - "question_id": 34447, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002755", - "question_id": 34451, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00006844", - "question_id": 34452, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002036", - "question_id": 34453, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002002", - "question_id": 34454, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004593", - "question_id": 34455, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005690", - "question_id": 34456, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00004754", - "question_id": 34458, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004754", - "question_id": 34458, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001626", - "question_id": 34459, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002677", - "question_id": 34461, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008658", - "question_id": 34465, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005783", - "question_id": 34468, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008904", - "question_id": 34469, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007102", - "question_id": 34470, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003941", - "question_id": 34471, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000303", - "question_id": 34473, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"guzheng\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008787", - "question_id": 34474, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007501", - "question_id": 34476, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003629", - "question_id": 34478, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006661", - "question_id": 34479, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002082", - "question_id": 34480, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006091", - "question_id": 34482, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001824", - "question_id": 34485, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007223", - "question_id": 34491, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "seven" -}, { - "video_id": "00001242", - "question_id": 34494, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007432", - "question_id": 34495, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007396", - "question_id": 34497, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002924", - "question_id": 34498, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008742", - "question_id": 34499, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002159", - "question_id": 34501, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004633", - "question_id": 34507, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002319", - "question_id": 34508, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006101", - "question_id": 34510, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000720", - "question_id": 34512, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002199", - "question_id": 34513, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004489", - "question_id": 34514, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001508", - "question_id": 34516, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003591", - "question_id": 34520, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003510", - "question_id": 34522, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007732", - "question_id": 34523, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002730", - "question_id": 34526, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004847", - "question_id": 34527, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006803", - "question_id": 34528, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003642", - "question_id": 34531, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00004033", - "question_id": 34533, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005646", - "question_id": 34534, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000041", - "question_id": 34535, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000482", - "question_id": 34540, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000602", - "question_id": 34546, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004405", - "question_id": 34547, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004810", - "question_id": 34550, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00003360", - "question_id": 34551, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008432", - "question_id": 34552, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002427", - "question_id": 34553, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001533", - "question_id": 34554, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003063", - "question_id": 34557, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002963", - "question_id": 34559, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004563", - "question_id": 34561, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005094", - "question_id": 34563, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005294", - "question_id": 34564, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00001377", - "question_id": 34565, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007554", - "question_id": 34567, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"drum\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00001539", - "question_id": 34570, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001958", - "question_id": 34572, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003709", - "question_id": 34578, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001017", - "question_id": 34582, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003214", - "question_id": 34588, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001045", - "question_id": 34589, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001448", - "question_id": 34591, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004008", - "question_id": 34595, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003144", - "question_id": 34598, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007535", - "question_id": 34602, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004827", - "question_id": 34603, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003741", - "question_id": 34605, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007010", - "question_id": 34607, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006848", - "question_id": 34612, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003774", - "question_id": 34613, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007646", - "question_id": 34614, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003354", - "question_id": 34620, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00007331", - "question_id": 34621, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004438", - "question_id": 34622, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004957", - "question_id": 34624, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008621", - "question_id": 34626, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004170", - "question_id": 34627, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002496", - "question_id": 34630, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005624", - "question_id": 34632, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004725", - "question_id": 34634, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007317", - "question_id": 34635, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005969", - "question_id": 34637, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005008", - "question_id": 34640, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006720", - "question_id": 34642, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007092", - "question_id": 34643, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00003751", - "question_id": 34644, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007736", - "question_id": 34645, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001123", - "question_id": 34646, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000175", - "question_id": 34647, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004160", - "question_id": 34648, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000704", - "question_id": 34649, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001858", - "question_id": 34650, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001701", - "question_id": 34657, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001243", - "question_id": 34658, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002428", - "question_id": 34661, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00003579", - "question_id": 34663, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005469", - "question_id": 34666, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005469", - "question_id": 34666, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001190", - "question_id": 34667, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001353", - "question_id": 34673, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00006229", - "question_id": 34676, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007558", - "question_id": 34680, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006411", - "question_id": 34681, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006444", - "question_id": 34687, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000037", - "question_id": 34689, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004080", - "question_id": 34690, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003554", - "question_id": 34691, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"xylophone\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00003779", - "question_id": 34692, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00004495", - "question_id": 34693, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008758", - "question_id": 34694, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003441", - "question_id": 34696, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00008149", - "question_id": 34697, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003974", - "question_id": 34704, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002344", - "question_id": 34706, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005687", - "question_id": 34707, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007822", - "question_id": 34709, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002369", - "question_id": 34710, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001892", - "question_id": 34713, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003699", - "question_id": 34717, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006799", - "question_id": 34718, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002009", - "question_id": 34720, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00008682", - "question_id": 34723, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"banjo\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00004725", - "question_id": 34724, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000306", - "question_id": 34727, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007880", - "question_id": 34728, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004947", - "question_id": 34732, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004238", - "question_id": 34733, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007200", - "question_id": 34737, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004038", - "question_id": 34738, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007443", - "question_id": 34739, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002392", - "question_id": 34740, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004300", - "question_id": 34742, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00002365", - "question_id": 34743, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006436", - "question_id": 34745, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002169", - "question_id": 34747, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000656", - "question_id": 34749, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005026", - "question_id": 34752, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006495", - "question_id": 34753, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000003", - "question_id": 34758, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008074", - "question_id": 34764, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001306", - "question_id": 34765, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002295", - "question_id": 34766, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00003884", - "question_id": 34768, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001377", - "question_id": 34770, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007591", - "question_id": 34772, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006472", - "question_id": 34773, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002374", - "question_id": 34777, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000191", - "question_id": 34778, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "seven" -}, { - "video_id": "00001912", - "question_id": 34780, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004226", - "question_id": 34783, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008943", - "question_id": 34785, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007603", - "question_id": 34786, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00002882", - "question_id": 34788, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005028", - "question_id": 34797, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008718", - "question_id": 34798, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002692", - "question_id": 34799, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002072", - "question_id": 34801, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008631", - "question_id": 34803, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002668", - "question_id": 34804, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004317", - "question_id": 34810, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001734", - "question_id": 34813, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002753", - "question_id": 34814, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005180", - "question_id": 34815, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001716", - "question_id": 34818, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00003945", - "question_id": 34819, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005159", - "question_id": 34823, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001003", - "question_id": 34826, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00008837", - "question_id": 34827, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008159", - "question_id": 34829, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007632", - "question_id": 34832, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004601", - "question_id": 34834, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001595", - "question_id": 34835, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008528", - "question_id": 34837, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005439", - "question_id": 34838, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007177", - "question_id": 34839, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003029", - "question_id": 34840, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007503", - "question_id": 34842, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006196", - "question_id": 34845, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005548", - "question_id": 34846, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005199", - "question_id": 34847, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00001293", - "question_id": 34848, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004963", - "question_id": 34849, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006425", - "question_id": 34850, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006800", - "question_id": 34851, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001377", - "question_id": 34854, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007421", - "question_id": 34856, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"pipa\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002110", - "question_id": 34860, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006920", - "question_id": 34862, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007926", - "question_id": 34863, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007211", - "question_id": 34864, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005835", - "question_id": 34868, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003607", - "question_id": 34869, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008322", - "question_id": 34870, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"ukulele\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00005710", - "question_id": 34872, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008969", - "question_id": 34877, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005235", - "question_id": 34878, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008829", - "question_id": 34879, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"tuba\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00007959", - "question_id": 34880, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006223", - "question_id": 34884, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"cello\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004269", - "question_id": 34885, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005363", - "question_id": 34886, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008404", - "question_id": 34887, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005648", - "question_id": 34888, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007235", - "question_id": 34889, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005321", - "question_id": 34890, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006315", - "question_id": 34892, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002436", - "question_id": 34893, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00003690", - "question_id": 34898, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"pipa\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003162", - "question_id": 34900, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003488", - "question_id": 34904, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005786", - "question_id": 34905, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00005149", - "question_id": 34906, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006613", - "question_id": 34909, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008353", - "question_id": 34910, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001835", - "question_id": 34912, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001410", - "question_id": 34914, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003301", - "question_id": 34918, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008818", - "question_id": 34919, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002050", - "question_id": 34921, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002778", - "question_id": 34922, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000922", - "question_id": 34924, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003926", - "question_id": 34925, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007004", - "question_id": 34926, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000301", - "question_id": 34927, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001592", - "question_id": 34929, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002939", - "question_id": 34930, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006495", - "question_id": 34932, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001156", - "question_id": 34933, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008226", - "question_id": 34934, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003646", - "question_id": 34935, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004123", - "question_id": 34938, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005819", - "question_id": 34941, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000720", - "question_id": 34944, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002349", - "question_id": 34945, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006842", - "question_id": 34946, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004998", - "question_id": 34947, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005022", - "question_id": 34948, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001486", - "question_id": 34951, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002257", - "question_id": 34952, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005410", - "question_id": 34953, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000407", - "question_id": 34956, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004760", - "question_id": 34957, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004508", - "question_id": 34964, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002030", - "question_id": 34965, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001220", - "question_id": 34967, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006587", - "question_id": 34969, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005188", - "question_id": 34971, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008358", - "question_id": 34974, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001851", - "question_id": 34975, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008377", - "question_id": 34976, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000932", - "question_id": 34979, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008376", - "question_id": 34980, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008043", - "question_id": 34983, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006638", - "question_id": 34986, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007609", - "question_id": 34987, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000380", - "question_id": 34988, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002921", - "question_id": 34991, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006174", - "question_id": 34992, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00004204", - "question_id": 34993, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003694", - "question_id": 34996, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002655", - "question_id": 34997, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006967", - "question_id": 34998, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00002200", - "question_id": 35006, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008589", - "question_id": 35007, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003911", - "question_id": 35011, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002279", - "question_id": 35016, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002756", - "question_id": 35018, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001679", - "question_id": 35019, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003569", - "question_id": 35020, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004828", - "question_id": 35021, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00000147", - "question_id": 35022, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005074", - "question_id": 35023, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000289", - "question_id": 35024, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005626", - "question_id": 35025, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003807", - "question_id": 35027, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002156", - "question_id": 35029, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001727", - "question_id": 35032, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00004565", - "question_id": 35033, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006086", - "question_id": 35036, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"middle\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006017", - "question_id": 35037, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"banjo\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001278", - "question_id": 35040, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006196", - "question_id": 35042, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007841", - "question_id": 35043, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002437", - "question_id": 35044, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001458", - "question_id": 35047, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005674", - "question_id": 35048, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005370", - "question_id": 35049, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004316", - "question_id": 35052, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003515", - "question_id": 35054, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004699", - "question_id": 35056, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001982", - "question_id": 35057, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003780", - "question_id": 35059, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00005727", - "question_id": 35061, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006251", - "question_id": 35062, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006368", - "question_id": 35065, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000430", - "question_id": 35067, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006638", - "question_id": 35068, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002594", - "question_id": 35069, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003343", - "question_id": 35070, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003358", - "question_id": 35071, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00000896", - "question_id": 35073, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001879", - "question_id": 35075, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002681", - "question_id": 35077, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000546", - "question_id": 35080, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001870", - "question_id": 35082, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001241", - "question_id": 35083, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00003710", - "question_id": 35086, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007796", - "question_id": 35089, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007502", - "question_id": 35092, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003895", - "question_id": 35095, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005161", - "question_id": 35101, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003121", - "question_id": 35104, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006407", - "question_id": 35106, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006787", - "question_id": 35109, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00007369", - "question_id": 35111, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002640", - "question_id": 35112, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006244", - "question_id": 35113, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001660", - "question_id": 35114, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005560", - "question_id": 35117, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003830", - "question_id": 35118, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005624", - "question_id": 35119, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006894", - "question_id": 35122, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005486", - "question_id": 35123, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007686", - "question_id": 35124, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003437", - "question_id": 35125, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000178", - "question_id": 35126, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000792", - "question_id": 35127, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003928", - "question_id": 35128, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008922", - "question_id": 35130, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007441", - "question_id": 35132, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002105", - "question_id": 35133, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001401", - "question_id": 35134, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001976", - "question_id": 35136, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002257", - "question_id": 35141, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"erhu\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004434", - "question_id": 35144, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005849", - "question_id": 35145, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00003404", - "question_id": 35147, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002396", - "question_id": 35148, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002871", - "question_id": 35149, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007633", - "question_id": 35150, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005953", - "question_id": 35153, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002984", - "question_id": 35154, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00006305", - "question_id": 35155, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002295", - "question_id": 35156, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004558", - "question_id": 35157, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002315", - "question_id": 35159, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008872", - "question_id": 35164, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002719", - "question_id": 35165, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007894", - "question_id": 35166, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000593", - "question_id": 35167, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008011", - "question_id": 35169, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006595", - "question_id": 35170, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004220", - "question_id": 35171, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001078", - "question_id": 35173, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002392", - "question_id": 35175, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003613", - "question_id": 35177, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008522", - "question_id": 35179, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005340", - "question_id": 35180, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007271", - "question_id": 35184, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000930", - "question_id": 35185, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004827", - "question_id": 35190, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008171", - "question_id": 35191, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000080", - "question_id": 35193, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008969", - "question_id": 35196, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004080", - "question_id": 35199, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006405", - "question_id": 35201, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000015", - "question_id": 35202, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002668", - "question_id": 35203, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002661", - "question_id": 35209, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000085", - "question_id": 35210, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001340", - "question_id": 35212, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001979", - "question_id": 35214, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008533", - "question_id": 35221, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006649", - "question_id": 35222, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005719", - "question_id": 35225, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001593", - "question_id": 35226, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000635", - "question_id": 35228, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004440", - "question_id": 35229, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003016", - "question_id": 35232, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006551", - "question_id": 35238, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003051", - "question_id": 35241, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003804", - "question_id": 35242, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004487", - "question_id": 35243, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002153", - "question_id": 35244, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004195", - "question_id": 35246, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005590", - "question_id": 35248, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005407", - "question_id": 35249, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001313", - "question_id": 35250, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "more than ten" -}, { - "video_id": "00003984", - "question_id": 35251, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006371", - "question_id": 35252, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007930", - "question_id": 35253, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002755", - "question_id": 35255, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005589", - "question_id": 35260, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008589", - "question_id": 35262, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003101", - "question_id": 35263, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002994", - "question_id": 35264, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00001463", - "question_id": 35269, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001348", - "question_id": 35270, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002461", - "question_id": 35278, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006895", - "question_id": 35279, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002617", - "question_id": 35284, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"pipa\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005771", - "question_id": 35285, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006651", - "question_id": 35286, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007796", - "question_id": 35288, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008713", - "question_id": 35291, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000600", - "question_id": 35292, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007983", - "question_id": 35293, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004502", - "question_id": 35294, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004142", - "question_id": 35298, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000445", - "question_id": 35299, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001047", - "question_id": 35300, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003581", - "question_id": 35303, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001541", - "question_id": 35304, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006452", - "question_id": 35308, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003140", - "question_id": 35311, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007238", - "question_id": 35313, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007127", - "question_id": 35314, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005241", - "question_id": 35316, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004415", - "question_id": 35317, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004931", - "question_id": 35318, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003872", - "question_id": 35319, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007207", - "question_id": 35325, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003887", - "question_id": 35326, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007674", - "question_id": 35327, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004729", - "question_id": 35328, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000829", - "question_id": 35331, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000178", - "question_id": 35333, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007948", - "question_id": 35338, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002050", - "question_id": 35340, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008813", - "question_id": 35342, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001487", - "question_id": 35343, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003793", - "question_id": 35344, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002866", - "question_id": 35345, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004949", - "question_id": 35347, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004521", - "question_id": 35350, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001570", - "question_id": 35354, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003886", - "question_id": 35355, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008682", - "question_id": 35356, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005832", - "question_id": 35358, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001767", - "question_id": 35364, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003141", - "question_id": 35365, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004956", - "question_id": 35367, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006970", - "question_id": 35368, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002970", - "question_id": 35369, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000586", - "question_id": 35375, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001230", - "question_id": 35376, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00003536", - "question_id": 35377, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000755", - "question_id": 35379, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005227", - "question_id": 35383, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002344", - "question_id": 35386, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003327", - "question_id": 35387, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005676", - "question_id": 35388, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006784", - "question_id": 35390, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007904", - "question_id": 35391, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000671", - "question_id": 35394, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004418", - "question_id": 35395, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000978", - "question_id": 35397, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008366", - "question_id": 35398, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006060", - "question_id": 35399, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000659", - "question_id": 35402, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bassoon\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008448", - "question_id": 35403, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006378", - "question_id": 35404, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002418", - "question_id": 35406, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007536", - "question_id": 35407, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002529", - "question_id": 35408, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006428", - "question_id": 35409, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002567", - "question_id": 35413, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008967", - "question_id": 35415, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001388", - "question_id": 35416, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007781", - "question_id": 35417, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002036", - "question_id": 35419, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005651", - "question_id": 35423, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002458", - "question_id": 35426, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003880", - "question_id": 35427, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008515", - "question_id": 35428, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002894", - "question_id": 35429, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006372", - "question_id": 35430, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004122", - "question_id": 35431, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005193", - "question_id": 35432, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000775", - "question_id": 35434, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006273", - "question_id": 35435, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"tuba\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00008313", - "question_id": 35436, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002360", - "question_id": 35439, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000064", - "question_id": 35443, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000855", - "question_id": 35447, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007860", - "question_id": 35448, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007672", - "question_id": 35449, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006388", - "question_id": 35450, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003718", - "question_id": 35452, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001998", - "question_id": 35458, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005786", - "question_id": 35460, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004943", - "question_id": 35463, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"tuba\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007422", - "question_id": 35468, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001663", - "question_id": 35470, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003253", - "question_id": 35472, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005958", - "question_id": 35473, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001639", - "question_id": 35475, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008105", - "question_id": 35476, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006759", - "question_id": 35477, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002297", - "question_id": 35482, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001285", - "question_id": 35486, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004779", - "question_id": 35488, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008742", - "question_id": 35489, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002825", - "question_id": 35491, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00005943", - "question_id": 35492, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003320", - "question_id": 35496, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006465", - "question_id": 35497, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00005654", - "question_id": 35500, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006932", - "question_id": 35501, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"drum\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001676", - "question_id": 35505, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000862", - "question_id": 35506, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008941", - "question_id": 35507, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003550", - "question_id": 35508, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001078", - "question_id": 35509, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006232", - "question_id": 35511, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007421", - "question_id": 35514, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001201", - "question_id": 35515, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003725", - "question_id": 35516, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004612", - "question_id": 35517, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005858", - "question_id": 35518, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006332", - "question_id": 35522, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001225", - "question_id": 35523, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005467", - "question_id": 35524, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003920", - "question_id": 35525, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000691", - "question_id": 35531, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001941", - "question_id": 35535, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004827", - "question_id": 35536, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00002594", - "question_id": 35537, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004195", - "question_id": 35539, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008579", - "question_id": 35541, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005566", - "question_id": 35542, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00005073", - "question_id": 35545, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004479", - "question_id": 35547, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007363", - "question_id": 35548, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006957", - "question_id": 35549, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007873", - "question_id": 35551, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002936", - "question_id": 35552, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"electric_bass\", \"left\", \"bagpipe\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006701", - "question_id": 35556, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000661", - "question_id": 35557, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001010", - "question_id": 35558, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002996", - "question_id": 35559, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005766", - "question_id": 35562, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005858", - "question_id": 35565, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002727", - "question_id": 35566, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005548", - "question_id": 35570, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002457", - "question_id": 35573, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007719", - "question_id": 35575, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008305", - "question_id": 35581, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004331", - "question_id": 35582, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008890", - "question_id": 35583, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002009", - "question_id": 35591, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001570", - "question_id": 35594, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004563", - "question_id": 35596, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007449", - "question_id": 35597, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007766", - "question_id": 35598, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004630", - "question_id": 35604, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005682", - "question_id": 35606, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004767", - "question_id": 35612, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006412", - "question_id": 35615, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000488", - "question_id": 35617, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008235", - "question_id": 35623, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004830", - "question_id": 35624, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"pipa\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007502", - "question_id": 35626, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006974", - "question_id": 35632, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000998", - "question_id": 35633, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006823", - "question_id": 35635, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001597", - "question_id": 35636, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004134", - "question_id": 35638, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"accordion\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001265", - "question_id": 35641, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004697", - "question_id": 35644, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000780", - "question_id": 35645, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001306", - "question_id": 35651, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006796", - "question_id": 35655, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001719", - "question_id": 35661, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002993", - "question_id": 35664, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007217", - "question_id": 35666, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002420", - "question_id": 35669, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005241", - "question_id": 35671, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007894", - "question_id": 35672, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001530", - "question_id": 35673, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002249", - "question_id": 35674, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001314", - "question_id": 35677, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001734", - "question_id": 35678, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000864", - "question_id": 35680, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002595", - "question_id": 35687, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001581", - "question_id": 35690, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004222", - "question_id": 35693, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006009", - "question_id": 35696, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004791", - "question_id": 35698, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008052", - "question_id": 35703, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005869", - "question_id": 35706, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002147", - "question_id": 35707, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00003814", - "question_id": 35708, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005105", - "question_id": 35712, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002438", - "question_id": 35715, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003662", - "question_id": 35719, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007495", - "question_id": 35725, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007150", - "question_id": 35726, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001451", - "question_id": 35727, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000576", - "question_id": 35730, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005230", - "question_id": 35734, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005390", - "question_id": 35736, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001311", - "question_id": 35737, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007555", - "question_id": 35738, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007795", - "question_id": 35742, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005103", - "question_id": 35747, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001362", - "question_id": 35749, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00005681", - "question_id": 35751, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003497", - "question_id": 35756, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008725", - "question_id": 35759, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006191", - "question_id": 35762, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008042", - "question_id": 35767, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002928", - "question_id": 35769, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008697", - "question_id": 35771, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00002169", - "question_id": 35772, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007512", - "question_id": 35773, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008278", - "question_id": 35775, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003705", - "question_id": 35776, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003914", - "question_id": 35778, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005119", - "question_id": 35782, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003403", - "question_id": 35784, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006487", - "question_id": 35786, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002920", - "question_id": 35790, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002747", - "question_id": 35791, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000712", - "question_id": 35792, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003279", - "question_id": 35794, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00008501", - "question_id": 35796, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003212", - "question_id": 35804, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007491", - "question_id": 35805, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00008674", - "question_id": 35806, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00004227", - "question_id": 35807, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"erhu\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000681", - "question_id": 35813, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007952", - "question_id": 35814, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007524", - "question_id": 35816, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004033", - "question_id": 35817, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"piano\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003843", - "question_id": 35818, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002762", - "question_id": 35821, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "seven" -}, { - "video_id": "00006800", - "question_id": 35822, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006853", - "question_id": 35823, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003516", - "question_id": 35827, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006965", - "question_id": 35828, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00002894", - "question_id": 35831, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00006140", - "question_id": 35832, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005679", - "question_id": 35835, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003908", - "question_id": 35836, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003418", - "question_id": 35839, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003147", - "question_id": 35842, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003993", - "question_id": 35844, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001097", - "question_id": 35847, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"trumpet\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007537", - "question_id": 35848, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000335", - "question_id": 35849, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004800", - "question_id": 35853, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005738", - "question_id": 35854, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00002498", - "question_id": 35859, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"xylophone\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001492", - "question_id": 35863, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005935", - "question_id": 35868, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008908", - "question_id": 35870, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003250", - "question_id": 35871, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001075", - "question_id": 35872, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005414", - "question_id": 35874, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00001448", - "question_id": 35875, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003720", - "question_id": 35878, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"tuba\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005822", - "question_id": 35879, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006856", - "question_id": 35884, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008849", - "question_id": 35887, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008508", - "question_id": 35889, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002418", - "question_id": 35890, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005786", - "question_id": 35892, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002420", - "question_id": 35893, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008436", - "question_id": 35899, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007901", - "question_id": 35900, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000356", - "question_id": 35901, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00004248", - "question_id": 35903, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006442", - "question_id": 35906, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005340", - "question_id": 35907, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004006", - "question_id": 35908, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005849", - "question_id": 35911, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006113", - "question_id": 35913, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00001390", - "question_id": 35914, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004858", - "question_id": 35915, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001779", - "question_id": 35919, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007939", - "question_id": 35922, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004264", - "question_id": 35924, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00006618", - "question_id": 35929, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000815", - "question_id": 35930, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00005181", - "question_id": 35931, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005387", - "question_id": 35936, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007769", - "question_id": 35937, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00005710", - "question_id": 35939, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005624", - "question_id": 35942, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006376", - "question_id": 35945, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003131", - "question_id": 35946, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008218", - "question_id": 35947, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002088", - "question_id": 35952, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007977", - "question_id": 35954, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005580", - "question_id": 35955, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001605", - "question_id": 35956, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"drum\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006855", - "question_id": 35957, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003968", - "question_id": 35958, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001451", - "question_id": 35959, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004231", - "question_id": 35960, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008506", - "question_id": 35961, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005602", - "question_id": 35962, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00005455", - "question_id": 35963, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004823", - "question_id": 35966, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003828", - "question_id": 35968, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000901", - "question_id": 35971, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005189", - "question_id": 35973, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006650", - "question_id": 35977, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"pipa\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005497", - "question_id": 35980, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"trumpet\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003005", - "question_id": 35981, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003708", - "question_id": 35982, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008934", - "question_id": 35984, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002255", - "question_id": 35985, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003903", - "question_id": 35987, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004958", - "question_id": 35989, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006081", - "question_id": 35991, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005158", - "question_id": 35993, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005401", - "question_id": 35994, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005554", - "question_id": 35995, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002735", - "question_id": 36000, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006870", - "question_id": 36005, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000704", - "question_id": 36006, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007692", - "question_id": 36007, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000422", - "question_id": 36009, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00004935", - "question_id": 36010, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004693", - "question_id": 36012, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004295", - "question_id": 36013, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"banjo\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005771", - "question_id": 36016, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006032", - "question_id": 36017, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000276", - "question_id": 36020, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004975", - "question_id": 36022, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00003800", - "question_id": 36023, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004465", - "question_id": 36024, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002398", - "question_id": 36025, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006229", - "question_id": 36026, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007874", - "question_id": 36028, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006467", - "question_id": 36029, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000401", - "question_id": 36032, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000134", - "question_id": 36034, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008191", - "question_id": 36035, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002788", - "question_id": 36037, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003962", - "question_id": 36039, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00008829", - "question_id": 36040, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006509", - "question_id": 36041, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001479", - "question_id": 36044, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003481", - "question_id": 36045, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006248", - "question_id": 36047, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001446", - "question_id": 36050, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005400", - "question_id": 36052, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"banjo\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003514", - "question_id": 36053, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005785", - "question_id": 36054, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001995", - "question_id": 36057, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002541", - "question_id": 36059, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003095", - "question_id": 36060, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"clarinet\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00004931", - "question_id": 36064, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005916", - "question_id": 36067, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002169", - "question_id": 36068, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000831", - "question_id": 36069, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008748", - "question_id": 36072, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002040", - "question_id": 36074, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001584", - "question_id": 36075, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00007112", - "question_id": 36081, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"congas\", \"left\", \"congas\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002885", - "question_id": 36085, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005146", - "question_id": 36087, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007101", - "question_id": 36089, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006058", - "question_id": 36093, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007664", - "question_id": 36094, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007730", - "question_id": 36098, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004528", - "question_id": 36101, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002198", - "question_id": 36102, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"banjo\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004647", - "question_id": 36104, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00002781", - "question_id": 36106, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003182", - "question_id": 36109, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000965", - "question_id": 36110, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007105", - "question_id": 36112, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008439", - "question_id": 36114, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002197", - "question_id": 36115, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001170", - "question_id": 36118, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007362", - "question_id": 36120, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005772", - "question_id": 36122, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001740", - "question_id": 36124, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006735", - "question_id": 36128, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"saxophone\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00001603", - "question_id": 36130, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006024", - "question_id": 36133, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002759", - "question_id": 36134, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006301", - "question_id": 36140, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00000791", - "question_id": 36143, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"pipa\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000330", - "question_id": 36146, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003141", - "question_id": 36148, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002571", - "question_id": 36149, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00005199", - "question_id": 36152, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005496", - "question_id": 36154, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000705", - "question_id": 36155, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002455", - "question_id": 36156, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006033", - "question_id": 36157, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008382", - "question_id": 36158, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008913", - "question_id": 36159, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004464", - "question_id": 36161, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001344", - "question_id": 36162, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00005131", - "question_id": 36163, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003888", - "question_id": 36166, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002051", - "question_id": 36170, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008044", - "question_id": 36171, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"drum\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00005602", - "question_id": 36174, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002286", - "question_id": 36176, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000482", - "question_id": 36182, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006464", - "question_id": 36184, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00000565", - "question_id": 36187, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005478", - "question_id": 36190, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005659", - "question_id": 36191, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004532", - "question_id": 36197, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000350", - "question_id": 36199, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000169", - "question_id": 36200, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00002452", - "question_id": 36202, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005795", - "question_id": 36205, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001640", - "question_id": 36206, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006822", - "question_id": 36207, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006551", - "question_id": 36211, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001614", - "question_id": 36212, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001931", - "question_id": 36213, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003872", - "question_id": 36215, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007375", - "question_id": 36220, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005587", - "question_id": 36223, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005110", - "question_id": 36224, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002046", - "question_id": 36225, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003294", - "question_id": 36226, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002066", - "question_id": 36232, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001772", - "question_id": 36233, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006032", - "question_id": 36235, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002944", - "question_id": 36236, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006459", - "question_id": 36237, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006906", - "question_id": 36240, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008154", - "question_id": 36244, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003923", - "question_id": 36245, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008431", - "question_id": 36246, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002832", - "question_id": 36252, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004134", - "question_id": 36253, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00001982", - "question_id": 36254, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000231", - "question_id": 36260, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004061", - "question_id": 36262, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003719", - "question_id": 36263, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002803", - "question_id": 36265, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007577", - "question_id": 36269, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007307", - "question_id": 36271, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006920", - "question_id": 36274, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005977", - "question_id": 36275, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007876", - "question_id": 36276, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"xylophone\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00001705", - "question_id": 36277, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007749", - "question_id": 36278, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007924", - "question_id": 36281, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002147", - "question_id": 36282, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007968", - "question_id": 36283, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004508", - "question_id": 36285, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000005", - "question_id": 36286, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002810", - "question_id": 36287, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005872", - "question_id": 36289, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"congas\", \"right\", \"congas\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005522", - "question_id": 36291, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002851", - "question_id": 36292, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008518", - "question_id": 36294, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005662", - "question_id": 36295, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003747", - "question_id": 36296, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"tuba\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004096", - "question_id": 36297, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008672", - "question_id": 36298, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004872", - "question_id": 36301, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002282", - "question_id": 36303, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000675", - "question_id": 36305, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001129", - "question_id": 36306, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001156", - "question_id": 36308, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008035", - "question_id": 36312, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006197", - "question_id": 36313, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007501", - "question_id": 36314, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003488", - "question_id": 36315, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005317", - "question_id": 36319, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004970", - "question_id": 36320, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002968", - "question_id": 36322, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"banjo\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005978", - "question_id": 36324, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004514", - "question_id": 36326, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003147", - "question_id": 36330, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007784", - "question_id": 36331, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"electric_bass\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001631", - "question_id": 36334, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001502", - "question_id": 36336, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001725", - "question_id": 36341, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008842", - "question_id": 36345, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"middle\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008780", - "question_id": 36349, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006548", - "question_id": 36350, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005727", - "question_id": 36351, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003778", - "question_id": 36353, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005781", - "question_id": 36354, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00002046", - "question_id": 36356, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003522", - "question_id": 36360, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00008970", - "question_id": 36362, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003041", - "question_id": 36366, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001521", - "question_id": 36368, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003600", - "question_id": 36370, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005864", - "question_id": 36374, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001306", - "question_id": 36377, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00001244", - "question_id": 36380, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007819", - "question_id": 36381, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003259", - "question_id": 36384, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004495", - "question_id": 36385, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008899", - "question_id": 36386, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005163", - "question_id": 36388, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004008", - "question_id": 36391, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004776", - "question_id": 36393, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"drum\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00008931", - "question_id": 36397, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00002419", - "question_id": 36398, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007452", - "question_id": 36399, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005828", - "question_id": 36400, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005227", - "question_id": 36401, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001322", - "question_id": 36402, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000657", - "question_id": 36404, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004817", - "question_id": 36406, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007933", - "question_id": 36410, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000765", - "question_id": 36413, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008091", - "question_id": 36416, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002720", - "question_id": 36420, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00006683", - "question_id": 36423, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00004800", - "question_id": 36430, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008909", - "question_id": 36431, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001161", - "question_id": 36434, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007751", - "question_id": 36435, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006323", - "question_id": 36438, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001556", - "question_id": 36442, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001438", - "question_id": 36443, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001016", - "question_id": 36446, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006917", - "question_id": 36448, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003926", - "question_id": 36449, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00004712", - "question_id": 36451, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000338", - "question_id": 36455, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007279", - "question_id": 36460, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00008451", - "question_id": 36461, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005297", - "question_id": 36462, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00001604", - "question_id": 36463, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001809", - "question_id": 36464, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007776", - "question_id": 36465, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000434", - "question_id": 36466, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008425", - "question_id": 36467, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007210", - "question_id": 36469, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005105", - "question_id": 36471, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00007142", - "question_id": 36472, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00001011", - "question_id": 36477, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007481", - "question_id": 36478, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000031", - "question_id": 36480, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00005015", - "question_id": 36481, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002052", - "question_id": 36483, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000276", - "question_id": 36484, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00007499", - "question_id": 36485, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008177", - "question_id": 36488, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006823", - "question_id": 36489, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004933", - "question_id": 36490, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00004231", - "question_id": 36491, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001735", - "question_id": 36494, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00004118", - "question_id": 36496, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002524", - "question_id": 36497, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005155", - "question_id": 36498, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001458", - "question_id": 36499, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002837", - "question_id": 36500, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003661", - "question_id": 36502, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004755", - "question_id": 36511, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002156", - "question_id": 36512, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002591", - "question_id": 36517, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002837", - "question_id": 36518, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002777", - "question_id": 36521, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005134", - "question_id": 36522, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008146", - "question_id": 36525, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003880", - "question_id": 36526, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003864", - "question_id": 36527, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006538", - "question_id": 36528, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00001477", - "question_id": 36529, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005848", - "question_id": 36531, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005625", - "question_id": 36532, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006352", - "question_id": 36533, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008433", - "question_id": 36534, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005360", - "question_id": 36539, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003917", - "question_id": 36543, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003936", - "question_id": 36544, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004105", - "question_id": 36546, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006390", - "question_id": 36551, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000683", - "question_id": 36552, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000508", - "question_id": 36553, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"electric_bass\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007242", - "question_id": 36554, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"bassoon\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005472", - "question_id": 36555, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001140", - "question_id": 36556, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004824", - "question_id": 36560, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002692", - "question_id": 36562, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002270", - "question_id": 36565, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003474", - "question_id": 36566, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008715", - "question_id": 36570, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004381", - "question_id": 36571, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"drum\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007245", - "question_id": 36574, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006632", - "question_id": 36576, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006165", - "question_id": 36577, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005189", - "question_id": 36579, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008624", - "question_id": 36581, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005306", - "question_id": 36582, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007156", - "question_id": 36585, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004061", - "question_id": 36591, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003976", - "question_id": 36592, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00008762", - "question_id": 36593, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008622", - "question_id": 36595, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001092", - "question_id": 36600, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004779", - "question_id": 36605, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"pipa\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00004377", - "question_id": 36610, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007267", - "question_id": 36613, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004280", - "question_id": 36615, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004280", - "question_id": 36615, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001180", - "question_id": 36618, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002663", - "question_id": 36619, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006582", - "question_id": 36621, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008477", - "question_id": 36622, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002454", - "question_id": 36623, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001267", - "question_id": 36624, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008182", - "question_id": 36626, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001685", - "question_id": 36633, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004449", - "question_id": 36634, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001570", - "question_id": 36635, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003215", - "question_id": 36636, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003524", - "question_id": 36639, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004982", - "question_id": 36641, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00008788", - "question_id": 36642, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007064", - "question_id": 36643, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005925", - "question_id": 36644, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003204", - "question_id": 36645, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000631", - "question_id": 36646, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004672", - "question_id": 36650, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00004230", - "question_id": 36654, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008281", - "question_id": 36655, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005407", - "question_id": 36656, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000292", - "question_id": 36658, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001451", - "question_id": 36659, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"bassoon\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00000896", - "question_id": 36660, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008760", - "question_id": 36661, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007795", - "question_id": 36662, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005567", - "question_id": 36663, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003605", - "question_id": 36664, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002385", - "question_id": 36668, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00007753", - "question_id": 36671, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00003398", - "question_id": 36673, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002270", - "question_id": 36674, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008108", - "question_id": 36679, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007789", - "question_id": 36680, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004960", - "question_id": 36681, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005008", - "question_id": 36685, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001014", - "question_id": 36686, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"banjo\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004764", - "question_id": 36687, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008434", - "question_id": 36691, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004300", - "question_id": 36692, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004334", - "question_id": 36693, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006952", - "question_id": 36695, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007000", - "question_id": 36696, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003203", - "question_id": 36697, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008556", - "question_id": 36698, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001184", - "question_id": 36699, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005274", - "question_id": 36700, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000681", - "question_id": 36702, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003390", - "question_id": 36703, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006787", - "question_id": 36704, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007327", - "question_id": 36705, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000896", - "question_id": 36706, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008754", - "question_id": 36707, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006005", - "question_id": 36711, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00000574", - "question_id": 36715, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007253", - "question_id": 36716, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003184", - "question_id": 36720, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006137", - "question_id": 36722, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00001005", - "question_id": 36724, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003060", - "question_id": 36726, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001840", - "question_id": 36727, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005413", - "question_id": 36728, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001281", - "question_id": 36731, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00002334", - "question_id": 36732, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000958", - "question_id": 36734, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006672", - "question_id": 36738, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002911", - "question_id": 36740, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004078", - "question_id": 36742, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006672", - "question_id": 36744, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003865", - "question_id": 36745, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008512", - "question_id": 36747, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008041", - "question_id": 36752, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"middle\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004851", - "question_id": 36755, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004274", - "question_id": 36756, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004603", - "question_id": 36763, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006605", - "question_id": 36765, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008847", - "question_id": 36766, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002206", - "question_id": 36774, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001589", - "question_id": 36775, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006643", - "question_id": 36776, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000259", - "question_id": 36777, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005707", - "question_id": 36781, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00004210", - "question_id": 36785, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00005031", - "question_id": 36786, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004536", - "question_id": 36787, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007908", - "question_id": 36788, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008293", - "question_id": 36791, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003183", - "question_id": 36796, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00004675", - "question_id": 36798, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002444", - "question_id": 36799, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004967", - "question_id": 36800, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005110", - "question_id": 36801, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000437", - "question_id": 36804, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006420", - "question_id": 36808, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001857", - "question_id": 36809, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008674", - "question_id": 36810, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008258", - "question_id": 36815, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008543", - "question_id": 36817, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008959", - "question_id": 36818, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000691", - "question_id": 36821, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003795", - "question_id": 36830, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001391", - "question_id": 36832, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00001211", - "question_id": 36833, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001211", - "question_id": 36833, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000047", - "question_id": 36834, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008432", - "question_id": 36835, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004780", - "question_id": 36839, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003839", - "question_id": 36843, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005492", - "question_id": 36844, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005167", - "question_id": 36845, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000363", - "question_id": 36849, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007666", - "question_id": 36854, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00008570", - "question_id": 36855, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007507", - "question_id": 36856, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008787", - "question_id": 36857, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006896", - "question_id": 36858, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004418", - "question_id": 36860, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004150", - "question_id": 36862, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000056", - "question_id": 36864, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008102", - "question_id": 36865, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000533", - "question_id": 36867, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000731", - "question_id": 36868, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008066", - "question_id": 36869, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005046", - "question_id": 36870, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005575", - "question_id": 36872, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001932", - "question_id": 36876, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006396", - "question_id": 36878, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003663", - "question_id": 36881, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000613", - "question_id": 36884, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004835", - "question_id": 36886, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"electric_bass\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007577", - "question_id": 36888, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004208", - "question_id": 36890, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005879", - "question_id": 36893, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003169", - "question_id": 36895, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006724", - "question_id": 36896, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00000628", - "question_id": 36900, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00001530", - "question_id": 36902, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000926", - "question_id": 36906, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"xylophone\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00000739", - "question_id": 36909, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00006161", - "question_id": 36910, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006679", - "question_id": 36918, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004363", - "question_id": 36926, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006734", - "question_id": 36928, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001042", - "question_id": 36932, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"violin\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004539", - "question_id": 36938, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000556", - "question_id": 36939, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006366", - "question_id": 36940, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005745", - "question_id": 36941, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003145", - "question_id": 36944, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004898", - "question_id": 36945, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002340", - "question_id": 36946, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004032", - "question_id": 36951, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001305", - "question_id": 36956, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00006584", - "question_id": 36957, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"banjo\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00003754", - "question_id": 36959, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007288", - "question_id": 36961, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003387", - "question_id": 36965, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005031", - "question_id": 36966, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"tuba\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005944", - "question_id": 36968, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001605", - "question_id": 36974, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008836", - "question_id": 36978, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003251", - "question_id": 36979, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003096", - "question_id": 36980, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007829", - "question_id": 36984, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001356", - "question_id": 36993, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00006793", - "question_id": 36995, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003483", - "question_id": 37002, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002297", - "question_id": 37003, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006502", - "question_id": 37004, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"banjo\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002186", - "question_id": 37005, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005973", - "question_id": 37006, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001510", - "question_id": 37012, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008207", - "question_id": 37016, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00008678", - "question_id": 37017, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002197", - "question_id": 37018, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003251", - "question_id": 37019, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000888", - "question_id": 37020, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00001878", - "question_id": 37021, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00003398", - "question_id": 37022, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002272", - "question_id": 37023, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006205", - "question_id": 37024, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00001569", - "question_id": 37025, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003442", - "question_id": 37028, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002902", - "question_id": 37032, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000976", - "question_id": 37034, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000628", - "question_id": 37035, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006059", - "question_id": 37036, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002509", - "question_id": 37044, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005719", - "question_id": 37045, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"congas\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002229", - "question_id": 37048, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008672", - "question_id": 37049, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005409", - "question_id": 37050, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004864", - "question_id": 37055, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001044", - "question_id": 37056, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002374", - "question_id": 37058, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00002299", - "question_id": 37060, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005969", - "question_id": 37063, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"banjo\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002146", - "question_id": 37069, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003725", - "question_id": 37070, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"trumpet\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008899", - "question_id": 37071, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00000927", - "question_id": 37073, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008425", - "question_id": 37082, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006770", - "question_id": 37083, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005935", - "question_id": 37085, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"xylophone\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00002447", - "question_id": 37088, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008189", - "question_id": 37090, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00008917", - "question_id": 37094, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008184", - "question_id": 37096, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002319", - "question_id": 37099, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007463", - "question_id": 37106, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001211", - "question_id": 37108, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000927", - "question_id": 37110, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004136", - "question_id": 37116, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007701", - "question_id": 37117, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004300", - "question_id": 37120, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005274", - "question_id": 37121, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004830", - "question_id": 37122, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"last\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00001362", - "question_id": 37123, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005277", - "question_id": 37124, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002944", - "question_id": 37126, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005478", - "question_id": 37129, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007053", - "question_id": 37130, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004107", - "question_id": 37131, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007943", - "question_id": 37134, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002004", - "question_id": 37136, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00002379", - "question_id": 37137, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007088", - "question_id": 37140, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007419", - "question_id": 37141, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006161", - "question_id": 37143, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007524", - "question_id": 37146, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"erhu\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004698", - "question_id": 37147, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004038", - "question_id": 37149, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006616", - "question_id": 37150, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007794", - "question_id": 37154, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001977", - "question_id": 37156, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000594", - "question_id": 37159, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002781", - "question_id": 37161, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007536", - "question_id": 37162, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008377", - "question_id": 37167, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003521", - "question_id": 37170, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003347", - "question_id": 37172, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00008330", - "question_id": 37176, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004377", - "question_id": 37177, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00001521", - "question_id": 37178, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005643", - "question_id": 37179, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002049", - "question_id": 37180, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008657", - "question_id": 37181, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005630", - "question_id": 37182, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007331", - "question_id": 37183, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00002882", - "question_id": 37186, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002896", - "question_id": 37188, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00001649", - "question_id": 37189, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00005020", - "question_id": 37190, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002900", - "question_id": 37191, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007287", - "question_id": 37192, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007784", - "question_id": 37193, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005205", - "question_id": 37197, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008301", - "question_id": 37198, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008146", - "question_id": 37199, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00002733", - "question_id": 37213, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007221", - "question_id": 37217, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000557", - "question_id": 37218, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"xylophone\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00004099", - "question_id": 37219, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001022", - "question_id": 37220, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007716", - "question_id": 37221, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002679", - "question_id": 37223, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007533", - "question_id": 37225, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004230", - "question_id": 37227, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004122", - "question_id": 37230, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"electric_bass\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001293", - "question_id": 37231, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008322", - "question_id": 37232, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00003649", - "question_id": 37233, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004779", - "question_id": 37234, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004440", - "question_id": 37236, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007419", - "question_id": 37239, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000392", - "question_id": 37240, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006482", - "question_id": 37241, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001243", - "question_id": 37242, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"last\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005283", - "question_id": 37243, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006142", - "question_id": 37244, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "nine" -}, { - "video_id": "00000356", - "question_id": 37246, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000932", - "question_id": 37247, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006717", - "question_id": 37250, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003764", - "question_id": 37252, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005424", - "question_id": 37253, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006113", - "question_id": 37254, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003738", - "question_id": 37255, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008860", - "question_id": 37258, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008756", - "question_id": 37260, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007207", - "question_id": 37264, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"last\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00004705", - "question_id": 37266, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007160", - "question_id": 37269, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003142", - "question_id": 37270, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001860", - "question_id": 37273, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004928", - "question_id": 37279, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005465", - "question_id": 37280, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007749", - "question_id": 37282, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008433", - "question_id": 37286, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008225", - "question_id": 37288, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001816", - "question_id": 37290, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00001761", - "question_id": 37292, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003781", - "question_id": 37294, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004220", - "question_id": 37298, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003631", - "question_id": 37301, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000306", - "question_id": 37302, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000306", - "question_id": 37302, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003527", - "question_id": 37304, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004049", - "question_id": 37306, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001877", - "question_id": 37309, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002859", - "question_id": 37310, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002075", - "question_id": 37311, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000994", - "question_id": 37314, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000775", - "question_id": 37315, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00006784", - "question_id": 37318, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006016", - "question_id": 37320, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005907", - "question_id": 37322, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003914", - "question_id": 37323, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002203", - "question_id": 37324, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008278", - "question_id": 37327, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00005160", - "question_id": 37330, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001356", - "question_id": 37331, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003279", - "question_id": 37332, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002703", - "question_id": 37336, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002401", - "question_id": 37341, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008406", - "question_id": 37343, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001613", - "question_id": 37345, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"suona\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002419", - "question_id": 37347, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006651", - "question_id": 37348, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008075", - "question_id": 37349, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001410", - "question_id": 37352, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008881", - "question_id": 37353, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004237", - "question_id": 37355, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001099", - "question_id": 37358, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002136", - "question_id": 37363, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00001617", - "question_id": 37364, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001851", - "question_id": 37365, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000716", - "question_id": 37367, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005438", - "question_id": 37368, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008466", - "question_id": 37370, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001030", - "question_id": 37375, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001748", - "question_id": 37378, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002557", - "question_id": 37380, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000397", - "question_id": 37382, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002019", - "question_id": 37384, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004420", - "question_id": 37387, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006799", - "question_id": 37389, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002830", - "question_id": 37390, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002493", - "question_id": 37392, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002239", - "question_id": 37396, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002970", - "question_id": 37397, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003729", - "question_id": 37398, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008874", - "question_id": 37401, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004698", - "question_id": 37406, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003235", - "question_id": 37410, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008478", - "question_id": 37411, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006218", - "question_id": 37414, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008699", - "question_id": 37415, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005122", - "question_id": 37418, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003728", - "question_id": 37422, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006713", - "question_id": 37424, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004772", - "question_id": 37426, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002595", - "question_id": 37429, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002162", - "question_id": 37432, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002642", - "question_id": 37433, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002921", - "question_id": 37437, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007152", - "question_id": 37438, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001695", - "question_id": 37440, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005756", - "question_id": 37441, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005517", - "question_id": 37442, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003372", - "question_id": 37443, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001712", - "question_id": 37445, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001822", - "question_id": 37446, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002131", - "question_id": 37449, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006683", - "question_id": 37451, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006751", - "question_id": 37455, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000577", - "question_id": 37457, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008248", - "question_id": 37459, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00005350", - "question_id": 37462, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002736", - "question_id": 37466, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006868", - "question_id": 37472, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00005413", - "question_id": 37473, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006148", - "question_id": 37475, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004522", - "question_id": 37477, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006559", - "question_id": 37478, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006751", - "question_id": 37481, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002993", - "question_id": 37482, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008490", - "question_id": 37484, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003728", - "question_id": 37486, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000932", - "question_id": 37491, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005248", - "question_id": 37495, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003570", - "question_id": 37497, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007188", - "question_id": 37499, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008760", - "question_id": 37500, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004645", - "question_id": 37501, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007305", - "question_id": 37505, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003448", - "question_id": 37509, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006676", - "question_id": 37510, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005248", - "question_id": 37511, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004694", - "question_id": 37512, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001743", - "question_id": 37514, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008080", - "question_id": 37515, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"xylophone\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008343", - "question_id": 37517, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005095", - "question_id": 37519, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008452", - "question_id": 37522, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008425", - "question_id": 37523, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00008715", - "question_id": 37524, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00008607", - "question_id": 37525, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008970", - "question_id": 37527, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000357", - "question_id": 37529, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003412", - "question_id": 37530, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"accordion\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008826", - "question_id": 37531, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003503", - "question_id": 37532, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00005772", - "question_id": 37533, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000938", - "question_id": 37542, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008293", - "question_id": 37549, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004733", - "question_id": 37550, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004285", - "question_id": 37558, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00007004", - "question_id": 37561, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001876", - "question_id": 37563, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000574", - "question_id": 37565, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007612", - "question_id": 37566, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004399", - "question_id": 37571, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003481", - "question_id": 37572, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"tuba\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00002418", - "question_id": 37573, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008438", - "question_id": 37576, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008157", - "question_id": 37578, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002571", - "question_id": 37581, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007318", - "question_id": 37582, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004735", - "question_id": 37583, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004453", - "question_id": 37586, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000694", - "question_id": 37587, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006012", - "question_id": 37588, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001594", - "question_id": 37591, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006915", - "question_id": 37592, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002485", - "question_id": 37593, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002902", - "question_id": 37598, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00007141", - "question_id": 37600, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008191", - "question_id": 37602, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000934", - "question_id": 37603, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006520", - "question_id": 37606, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003652", - "question_id": 37610, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007911", - "question_id": 37615, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001445", - "question_id": 37618, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007813", - "question_id": 37619, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004057", - "question_id": 37621, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003251", - "question_id": 37626, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008451", - "question_id": 37627, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00004736", - "question_id": 37628, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006615", - "question_id": 37629, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006976", - "question_id": 37630, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008520", - "question_id": 37633, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003132", - "question_id": 37635, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003589", - "question_id": 37636, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001184", - "question_id": 37639, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00008519", - "question_id": 37641, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001060", - "question_id": 37643, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003756", - "question_id": 37645, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008600", - "question_id": 37649, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005702", - "question_id": 37650, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001527", - "question_id": 37651, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000505", - "question_id": 37652, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002441", - "question_id": 37654, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004612", - "question_id": 37664, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000871", - "question_id": 37665, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007902", - "question_id": 37668, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002642", - "question_id": 37672, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002385", - "question_id": 37674, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003241", - "question_id": 37676, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004937", - "question_id": 37678, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005880", - "question_id": 37679, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005313", - "question_id": 37680, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005622", - "question_id": 37683, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00005828", - "question_id": 37685, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005457", - "question_id": 37688, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00000613", - "question_id": 37689, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007084", - "question_id": 37690, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006061", - "question_id": 37695, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005500", - "question_id": 37696, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006372", - "question_id": 37697, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00006600", - "question_id": 37698, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004042", - "question_id": 37702, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007608", - "question_id": 37704, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008773", - "question_id": 37707, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003145", - "question_id": 37709, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000955", - "question_id": 37713, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000439", - "question_id": 37714, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000876", - "question_id": 37721, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000536", - "question_id": 37722, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006560", - "question_id": 37726, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007418", - "question_id": 37728, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005228", - "question_id": 37732, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008281", - "question_id": 37734, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000278", - "question_id": 37737, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004070", - "question_id": 37738, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006688", - "question_id": 37739, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004461", - "question_id": 37741, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"tuba\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006976", - "question_id": 37742, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005921", - "question_id": 37744, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004920", - "question_id": 37745, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001108", - "question_id": 37747, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005269", - "question_id": 37749, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003945", - "question_id": 37753, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004477", - "question_id": 37756, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000381", - "question_id": 37759, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007751", - "question_id": 37761, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006821", - "question_id": 37764, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006324", - "question_id": 37768, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001735", - "question_id": 37769, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005422", - "question_id": 37771, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002787", - "question_id": 37776, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002328", - "question_id": 37779, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004258", - "question_id": 37781, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008225", - "question_id": 37784, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008578", - "question_id": 37788, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "nine" -}, { - "video_id": "00003126", - "question_id": 37793, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002384", - "question_id": 37797, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005267", - "question_id": 37798, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002700", - "question_id": 37801, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003241", - "question_id": 37803, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002875", - "question_id": 37805, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005122", - "question_id": 37810, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00008122", - "question_id": 37812, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000555", - "question_id": 37813, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007882", - "question_id": 37817, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004317", - "question_id": 37818, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00008252", - "question_id": 37819, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007064", - "question_id": 37820, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003177", - "question_id": 37821, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001362", - "question_id": 37822, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001139", - "question_id": 37826, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000314", - "question_id": 37829, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004675", - "question_id": 37832, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001242", - "question_id": 37839, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005411", - "question_id": 37840, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004804", - "question_id": 37848, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000370", - "question_id": 37852, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006479", - "question_id": 37855, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003051", - "question_id": 37858, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"tuba\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007123", - "question_id": 37860, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007400", - "question_id": 37862, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "more than ten" -}, { - "video_id": "00000243", - "question_id": 37867, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000790", - "question_id": 37868, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005819", - "question_id": 37875, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003512", - "question_id": 37881, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002688", - "question_id": 37884, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001080", - "question_id": 37887, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005676", - "question_id": 37888, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002364", - "question_id": 37892, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003967", - "question_id": 37893, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002075", - "question_id": 37894, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007143", - "question_id": 37895, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004405", - "question_id": 37897, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001108", - "question_id": 37904, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005890", - "question_id": 37906, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002973", - "question_id": 37911, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006613", - "question_id": 37912, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005751", - "question_id": 37913, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003999", - "question_id": 37917, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005350", - "question_id": 37919, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005643", - "question_id": 37920, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006005", - "question_id": 37921, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001663", - "question_id": 37922, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007345", - "question_id": 37925, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002081", - "question_id": 37928, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007745", - "question_id": 37932, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000625", - "question_id": 37934, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006379", - "question_id": 37938, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005681", - "question_id": 37943, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005693", - "question_id": 37951, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004500", - "question_id": 37953, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00002080", - "question_id": 37954, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007725", - "question_id": 37955, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007834", - "question_id": 37960, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001551", - "question_id": 37965, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00007057", - "question_id": 37968, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004587", - "question_id": 37970, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003986", - "question_id": 37974, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003776", - "question_id": 37975, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003612", - "question_id": 37976, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007686", - "question_id": 37977, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001410", - "question_id": 37978, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004485", - "question_id": 37979, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005709", - "question_id": 37980, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005414", - "question_id": 37982, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001695", - "question_id": 37984, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"trumpet\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000809", - "question_id": 37989, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005483", - "question_id": 37990, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001721", - "question_id": 37995, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006796", - "question_id": 37996, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00006356", - "question_id": 38003, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005169", - "question_id": 38005, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003285", - "question_id": 38011, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005137", - "question_id": 38012, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005736", - "question_id": 38014, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008478", - "question_id": 38020, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002717", - "question_id": 38021, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004213", - "question_id": 38022, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006467", - "question_id": 38023, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008809", - "question_id": 38029, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00008146", - "question_id": 38030, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007811", - "question_id": 38034, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00002968", - "question_id": 38035, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003200", - "question_id": 38039, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00004013", - "question_id": 38040, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008645", - "question_id": 38042, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005415", - "question_id": 38045, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001346", - "question_id": 38047, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006764", - "question_id": 38051, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004195", - "question_id": 38055, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005149", - "question_id": 38057, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005100", - "question_id": 38058, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003307", - "question_id": 38059, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006410", - "question_id": 38061, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00007944", - "question_id": 38064, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008122", - "question_id": 38065, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001694", - "question_id": 38069, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002241", - "question_id": 38072, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004295", - "question_id": 38075, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003196", - "question_id": 38076, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005634", - "question_id": 38079, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"saxophone\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00008547", - "question_id": 38082, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003129", - "question_id": 38084, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004070", - "question_id": 38085, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001549", - "question_id": 38092, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003867", - "question_id": 38093, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004522", - "question_id": 38094, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008008", - "question_id": 38096, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"tuba\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00008713", - "question_id": 38106, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"accordion\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00004267", - "question_id": 38107, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007349", - "question_id": 38108, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005782", - "question_id": 38111, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005455", - "question_id": 38114, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001104", - "question_id": 38117, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005917", - "question_id": 38120, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002611", - "question_id": 38123, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008807", - "question_id": 38128, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004937", - "question_id": 38131, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"xylophone\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00008495", - "question_id": 38145, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005771", - "question_id": 38148, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008716", - "question_id": 38151, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00004587", - "question_id": 38152, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003277", - "question_id": 38153, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004601", - "question_id": 38155, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006229", - "question_id": 38160, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001226", - "question_id": 38161, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004078", - "question_id": 38168, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006244", - "question_id": 38169, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005738", - "question_id": 38171, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000148", - "question_id": 38173, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00000765", - "question_id": 38175, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004168", - "question_id": 38176, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006001", - "question_id": 38182, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007466", - "question_id": 38183, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001251", - "question_id": 38185, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007645", - "question_id": 38187, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003320", - "question_id": 38188, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000275", - "question_id": 38189, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007507", - "question_id": 38196, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001998", - "question_id": 38201, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000066", - "question_id": 38203, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007001", - "question_id": 38205, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001964", - "question_id": 38212, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"tuba\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00007386", - "question_id": 38215, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006232", - "question_id": 38220, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005167", - "question_id": 38221, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001900", - "question_id": 38223, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008760", - "question_id": 38227, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008786", - "question_id": 38229, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003952", - "question_id": 38230, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004162", - "question_id": 38235, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008157", - "question_id": 38236, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003040", - "question_id": 38237, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000755", - "question_id": 38241, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002041", - "question_id": 38244, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007882", - "question_id": 38245, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003868", - "question_id": 38246, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004809", - "question_id": 38248, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000555", - "question_id": 38250, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003415", - "question_id": 38252, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006059", - "question_id": 38253, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004927", - "question_id": 38255, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"xylophone\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00008411", - "question_id": 38259, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004388", - "question_id": 38261, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007512", - "question_id": 38267, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001534", - "question_id": 38268, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000069", - "question_id": 38272, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006551", - "question_id": 38274, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008806", - "question_id": 38276, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003241", - "question_id": 38277, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003062", - "question_id": 38278, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007009", - "question_id": 38281, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"suona\", \"left\", \"pipa\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005241", - "question_id": 38282, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004850", - "question_id": 38284, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006689", - "question_id": 38285, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000301", - "question_id": 38287, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004371", - "question_id": 38295, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001385", - "question_id": 38298, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002803", - "question_id": 38299, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006643", - "question_id": 38300, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006206", - "question_id": 38304, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007724", - "question_id": 38317, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005257", - "question_id": 38324, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003329", - "question_id": 38326, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004781", - "question_id": 38327, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003862", - "question_id": 38329, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004652", - "question_id": 38331, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003522", - "question_id": 38335, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001694", - "question_id": 38338, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003945", - "question_id": 38342, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001760", - "question_id": 38344, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005676", - "question_id": 38345, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008022", - "question_id": 38346, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008883", - "question_id": 38347, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004049", - "question_id": 38349, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003062", - "question_id": 38350, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002827", - "question_id": 38351, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008247", - "question_id": 38352, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002503", - "question_id": 38353, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008226", - "question_id": 38359, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002282", - "question_id": 38365, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003886", - "question_id": 38366, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002919", - "question_id": 38368, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004982", - "question_id": 38369, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008790", - "question_id": 38373, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002777", - "question_id": 38376, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004604", - "question_id": 38379, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002049", - "question_id": 38381, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008359", - "question_id": 38384, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002303", - "question_id": 38387, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005416", - "question_id": 38390, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002401", - "question_id": 38393, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005885", - "question_id": 38395, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008545", - "question_id": 38397, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001906", - "question_id": 38398, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006422", - "question_id": 38400, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002551", - "question_id": 38401, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004134", - "question_id": 38405, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008270", - "question_id": 38408, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007283", - "question_id": 38410, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000587", - "question_id": 38414, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007199", - "question_id": 38423, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00006101", - "question_id": 38425, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00006541", - "question_id": 38427, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003086", - "question_id": 38428, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004776", - "question_id": 38432, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008788", - "question_id": 38433, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001900", - "question_id": 38435, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003448", - "question_id": 38437, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003162", - "question_id": 38438, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006621", - "question_id": 38440, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001782", - "question_id": 38442, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005183", - "question_id": 38443, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007664", - "question_id": 38447, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006908", - "question_id": 38448, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00008127", - "question_id": 38450, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"erhu\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008881", - "question_id": 38452, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004809", - "question_id": 38453, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001651", - "question_id": 38454, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003751", - "question_id": 38456, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008127", - "question_id": 38460, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008804", - "question_id": 38465, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006598", - "question_id": 38467, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007054", - "question_id": 38468, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004301", - "question_id": 38469, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000476", - "question_id": 38472, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002028", - "question_id": 38474, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006998", - "question_id": 38477, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000549", - "question_id": 38478, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000817", - "question_id": 38480, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005026", - "question_id": 38481, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003184", - "question_id": 38482, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002574", - "question_id": 38483, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006649", - "question_id": 38492, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003311", - "question_id": 38495, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007760", - "question_id": 38499, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006128", - "question_id": 38500, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006740", - "question_id": 38504, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005313", - "question_id": 38505, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001406", - "question_id": 38508, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006698", - "question_id": 38510, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006932", - "question_id": 38518, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001722", - "question_id": 38519, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008578", - "question_id": 38521, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006467", - "question_id": 38522, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001078", - "question_id": 38523, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003101", - "question_id": 38528, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004073", - "question_id": 38530, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004760", - "question_id": 38533, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006479", - "question_id": 38534, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002062", - "question_id": 38539, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002253", - "question_id": 38544, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004959", - "question_id": 38547, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006165", - "question_id": 38555, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004763", - "question_id": 38556, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005177", - "question_id": 38559, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002522", - "question_id": 38562, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003528", - "question_id": 38564, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004366", - "question_id": 38569, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006329", - "question_id": 38574, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003937", - "question_id": 38577, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002700", - "question_id": 38578, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007809", - "question_id": 38580, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004697", - "question_id": 38581, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006884", - "question_id": 38583, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004231", - "question_id": 38584, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003441", - "question_id": 38588, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"xylophone\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006055", - "question_id": 38597, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006541", - "question_id": 38598, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005959", - "question_id": 38599, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006205", - "question_id": 38602, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004933", - "question_id": 38603, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002490", - "question_id": 38604, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007666", - "question_id": 38605, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000332", - "question_id": 38606, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003666", - "question_id": 38609, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00006348", - "question_id": 38610, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005858", - "question_id": 38611, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007322", - "question_id": 38612, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004672", - "question_id": 38614, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007752", - "question_id": 38617, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006366", - "question_id": 38623, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000009", - "question_id": 38626, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005428", - "question_id": 38631, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000489", - "question_id": 38633, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007337", - "question_id": 38635, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004767", - "question_id": 38636, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003798", - "question_id": 38638, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004558", - "question_id": 38643, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00006600", - "question_id": 38645, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008055", - "question_id": 38646, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006548", - "question_id": 38648, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "seven" -}, { - "video_id": "00006570", - "question_id": 38649, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000989", - "question_id": 38650, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000090", - "question_id": 38651, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001743", - "question_id": 38654, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001777", - "question_id": 38659, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007237", - "question_id": 38661, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004397", - "question_id": 38662, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001953", - "question_id": 38667, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007023", - "question_id": 38669, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005996", - "question_id": 38673, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006070", - "question_id": 38674, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00004061", - "question_id": 38677, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007002", - "question_id": 38678, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00007633", - "question_id": 38683, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002455", - "question_id": 38684, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002161", - "question_id": 38685, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008130", - "question_id": 38686, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00001403", - "question_id": 38688, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007754", - "question_id": 38689, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004600", - "question_id": 38690, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004397", - "question_id": 38696, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007686", - "question_id": 38701, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000476", - "question_id": 38703, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003069", - "question_id": 38705, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001998", - "question_id": 38707, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003626", - "question_id": 38708, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001240", - "question_id": 38709, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006501", - "question_id": 38710, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007102", - "question_id": 38711, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001565", - "question_id": 38713, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004650", - "question_id": 38714, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001293", - "question_id": 38720, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003466", - "question_id": 38722, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002147", - "question_id": 38724, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002955", - "question_id": 38726, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002566", - "question_id": 38729, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001543", - "question_id": 38730, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002644", - "question_id": 38731, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005205", - "question_id": 38733, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002137", - "question_id": 38740, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001042", - "question_id": 38744, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004118", - "question_id": 38745, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004104", - "question_id": 38747, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003874", - "question_id": 38749, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"bassoon\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007446", - "question_id": 38750, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000685", - "question_id": 38753, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000780", - "question_id": 38758, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006496", - "question_id": 38762, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002529", - "question_id": 38763, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000031", - "question_id": 38765, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006390", - "question_id": 38766, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001539", - "question_id": 38771, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"suona\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000368", - "question_id": 38773, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003509", - "question_id": 38775, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001315", - "question_id": 38777, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007984", - "question_id": 38780, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005451", - "question_id": 38781, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004672", - "question_id": 38783, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00003754", - "question_id": 38786, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005190", - "question_id": 38788, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006609", - "question_id": 38790, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007728", - "question_id": 38792, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007728", - "question_id": 38792, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007750", - "question_id": 38799, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003541", - "question_id": 38805, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008715", - "question_id": 38807, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008080", - "question_id": 38811, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"middle\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008836", - "question_id": 38813, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000215", - "question_id": 38817, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000788", - "question_id": 38820, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007070", - "question_id": 38821, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002794", - "question_id": 38822, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001896", - "question_id": 38826, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001617", - "question_id": 38831, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001445", - "question_id": 38836, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006222", - "question_id": 38841, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006372", - "question_id": 38847, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003482", - "question_id": 38851, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"middle\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000267", - "question_id": 38853, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005766", - "question_id": 38860, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003083", - "question_id": 38862, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004032", - "question_id": 38864, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "seven" -}, { - "video_id": "00001448", - "question_id": 38870, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005413", - "question_id": 38872, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008207", - "question_id": 38873, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008244", - "question_id": 38875, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005875", - "question_id": 38876, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006968", - "question_id": 38883, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003069", - "question_id": 38885, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005365", - "question_id": 38886, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005918", - "question_id": 38891, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005872", - "question_id": 38893, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004475", - "question_id": 38895, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006023", - "question_id": 38898, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003736", - "question_id": 38899, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003092", - "question_id": 38901, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007577", - "question_id": 38902, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002973", - "question_id": 38903, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008870", - "question_id": 38905, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007053", - "question_id": 38909, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006356", - "question_id": 38910, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004851", - "question_id": 38914, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008311", - "question_id": 38915, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"banjo\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001003", - "question_id": 38917, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000684", - "question_id": 38919, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004593", - "question_id": 38923, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007832", - "question_id": 38925, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001309", - "question_id": 38926, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001052", - "question_id": 38929, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006662", - "question_id": 38931, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004405", - "question_id": 38933, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004613", - "question_id": 38936, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"guzheng\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008599", - "question_id": 38939, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003370", - "question_id": 38942, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000605", - "question_id": 38945, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008460", - "question_id": 38947, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003390", - "question_id": 38948, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004996", - "question_id": 38949, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003122", - "question_id": 38951, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008329", - "question_id": 38952, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007790", - "question_id": 38954, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006616", - "question_id": 38958, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007085", - "question_id": 38961, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006642", - "question_id": 38963, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007549", - "question_id": 38965, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001118", - "question_id": 38968, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000148", - "question_id": 38974, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00001220", - "question_id": 38977, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007807", - "question_id": 38985, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007069", - "question_id": 38988, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004875", - "question_id": 38992, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"pipa\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008713", - "question_id": 38997, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000384", - "question_id": 39002, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001553", - "question_id": 39006, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001630", - "question_id": 39007, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003828", - "question_id": 39008, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004567", - "question_id": 39015, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001079", - "question_id": 39016, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003764", - "question_id": 39018, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002046", - "question_id": 39020, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005161", - "question_id": 39023, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003591", - "question_id": 39024, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000625", - "question_id": 39025, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008130", - "question_id": 39033, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002328", - "question_id": 39037, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007586", - "question_id": 39038, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003502", - "question_id": 39043, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007181", - "question_id": 39045, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001631", - "question_id": 39047, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005334", - "question_id": 39048, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001994", - "question_id": 39052, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004281", - "question_id": 39053, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008303", - "question_id": 39056, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002107", - "question_id": 39059, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003243", - "question_id": 39060, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008307", - "question_id": 39061, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003967", - "question_id": 39062, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005664", - "question_id": 39063, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000689", - "question_id": 39069, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003769", - "question_id": 39071, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008171", - "question_id": 39072, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007842", - "question_id": 39073, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001994", - "question_id": 39074, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004945", - "question_id": 39075, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003435", - "question_id": 39076, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000565", - "question_id": 39078, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003262", - "question_id": 39079, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006369", - "question_id": 39083, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007507", - "question_id": 39085, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002496", - "question_id": 39089, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004851", - "question_id": 39090, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003626", - "question_id": 39092, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002522", - "question_id": 39093, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00006796", - "question_id": 39097, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002954", - "question_id": 39099, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002135", - "question_id": 39102, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002045", - "question_id": 39105, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00000821", - "question_id": 39107, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007665", - "question_id": 39109, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005982", - "question_id": 39110, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004835", - "question_id": 39112, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000344", - "question_id": 39113, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007661", - "question_id": 39115, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007900", - "question_id": 39119, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006540", - "question_id": 39122, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001988", - "question_id": 39124, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000786", - "question_id": 39133, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003224", - "question_id": 39135, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001045", - "question_id": 39140, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005084", - "question_id": 39141, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008108", - "question_id": 39143, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002327", - "question_id": 39144, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001942", - "question_id": 39145, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006305", - "question_id": 39155, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007886", - "question_id": 39157, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "more than ten" -}, { - "video_id": "00004312", - "question_id": 39159, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007400", - "question_id": 39162, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000434", - "question_id": 39165, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003746", - "question_id": 39173, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"middle\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002253", - "question_id": 39177, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002524", - "question_id": 39180, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002798", - "question_id": 39181, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006764", - "question_id": 39182, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006674", - "question_id": 39184, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008451", - "question_id": 39185, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000490", - "question_id": 39187, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007319", - "question_id": 39188, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000327", - "question_id": 39189, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002024", - "question_id": 39190, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008953", - "question_id": 39193, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002813", - "question_id": 39195, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001825", - "question_id": 39196, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007983", - "question_id": 39197, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001723", - "question_id": 39198, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000329", - "question_id": 39199, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002751", - "question_id": 39201, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008859", - "question_id": 39205, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005282", - "question_id": 39207, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001826", - "question_id": 39211, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005147", - "question_id": 39216, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006000", - "question_id": 39218, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000283", - "question_id": 39219, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000392", - "question_id": 39223, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007085", - "question_id": 39224, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00000457", - "question_id": 39225, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006197", - "question_id": 39227, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002093", - "question_id": 39230, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006351", - "question_id": 39235, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004017", - "question_id": 39236, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003016", - "question_id": 39240, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"congas\", \"middle\", \"drum\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007661", - "question_id": 39241, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002059", - "question_id": 39242, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002107", - "question_id": 39243, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007463", - "question_id": 39247, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"pipa\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00003032", - "question_id": 39249, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000389", - "question_id": 39250, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001964", - "question_id": 39252, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004913", - "question_id": 39258, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00000107", - "question_id": 39259, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003069", - "question_id": 39261, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006048", - "question_id": 39262, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005630", - "question_id": 39266, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004947", - "question_id": 39269, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007870", - "question_id": 39270, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002062", - "question_id": 39273, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000517", - "question_id": 39274, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004994", - "question_id": 39276, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007319", - "question_id": 39277, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006835", - "question_id": 39278, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00006610", - "question_id": 39279, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001099", - "question_id": 39283, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005707", - "question_id": 39284, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001458", - "question_id": 39288, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005062", - "question_id": 39290, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006698", - "question_id": 39291, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008770", - "question_id": 39293, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000410", - "question_id": 39296, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000306", - "question_id": 39300, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002017", - "question_id": 39302, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00006396", - "question_id": 39304, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002787", - "question_id": 39312, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"clarinet\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00000629", - "question_id": 39313, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001892", - "question_id": 39315, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005146", - "question_id": 39316, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004818", - "question_id": 39320, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006588", - "question_id": 39322, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002081", - "question_id": 39323, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007238", - "question_id": 39327, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005875", - "question_id": 39330, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008084", - "question_id": 39336, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008870", - "question_id": 39337, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00007603", - "question_id": 39338, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004843", - "question_id": 39339, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001333", - "question_id": 39341, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007842", - "question_id": 39345, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001797", - "question_id": 39346, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003705", - "question_id": 39350, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005072", - "question_id": 39356, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006352", - "question_id": 39357, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002676", - "question_id": 39358, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008282", - "question_id": 39364, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008171", - "question_id": 39365, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006664", - "question_id": 39369, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008008", - "question_id": 39370, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00006168", - "question_id": 39372, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006460", - "question_id": 39378, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"pipa\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000412", - "question_id": 39380, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008450", - "question_id": 39385, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007790", - "question_id": 39386, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008543", - "question_id": 39392, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004492", - "question_id": 39394, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004817", - "question_id": 39398, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004132", - "question_id": 39401, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "eight" -}, { - "video_id": "00007259", - "question_id": 39405, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008343", - "question_id": 39406, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006076", - "question_id": 39408, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002391", - "question_id": 39409, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006090", - "question_id": 39413, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006036", - "question_id": 39414, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00008689", - "question_id": 39425, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002581", - "question_id": 39426, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007771", - "question_id": 39430, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007751", - "question_id": 39431, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007719", - "question_id": 39433, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004359", - "question_id": 39435, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000309", - "question_id": 39440, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005480", - "question_id": 39441, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007164", - "question_id": 39442, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008915", - "question_id": 39443, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002505", - "question_id": 39448, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008153", - "question_id": 39450, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006963", - "question_id": 39451, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004645", - "question_id": 39454, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005802", - "question_id": 39457, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002637", - "question_id": 39461, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008184", - "question_id": 39463, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004680", - "question_id": 39471, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006717", - "question_id": 39475, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000856", - "question_id": 39478, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006137", - "question_id": 39482, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000267", - "question_id": 39483, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003162", - "question_id": 39491, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000713", - "question_id": 39494, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005779", - "question_id": 39496, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001553", - "question_id": 39501, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007843", - "question_id": 39503, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000791", - "question_id": 39506, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002206", - "question_id": 39509, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004269", - "question_id": 39510, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008744", - "question_id": 39512, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003705", - "question_id": 39514, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004829", - "question_id": 39515, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006643", - "question_id": 39516, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000521", - "question_id": 39524, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004938", - "question_id": 39527, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006233", - "question_id": 39530, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008763", - "question_id": 39547, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007319", - "question_id": 39553, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00006232", - "question_id": 39554, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007264", - "question_id": 39556, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004814", - "question_id": 39557, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001716", - "question_id": 39558, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008678", - "question_id": 39564, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004042", - "question_id": 39565, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007259", - "question_id": 39568, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005843", - "question_id": 39569, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004945", - "question_id": 39570, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008265", - "question_id": 39574, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003984", - "question_id": 39577, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006678", - "question_id": 39578, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003936", - "question_id": 39580, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006143", - "question_id": 39581, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002679", - "question_id": 39582, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008647", - "question_id": 39585, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006870", - "question_id": 39587, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008052", - "question_id": 39588, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002397", - "question_id": 39589, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004226", - "question_id": 39590, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003366", - "question_id": 39592, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005659", - "question_id": 39593, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"xylophone\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00004837", - "question_id": 39595, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007987", - "question_id": 39596, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001404", - "question_id": 39599, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005634", - "question_id": 39601, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003574", - "question_id": 39602, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000457", - "question_id": 39603, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005134", - "question_id": 39606, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001844", - "question_id": 39611, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002657", - "question_id": 39622, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002949", - "question_id": 39630, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008460", - "question_id": 39631, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006262", - "question_id": 39632, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000335", - "question_id": 39633, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004898", - "question_id": 39635, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000971", - "question_id": 39641, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007404", - "question_id": 39642, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003687", - "question_id": 39645, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000998", - "question_id": 39651, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000490", - "question_id": 39652, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007908", - "question_id": 39653, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007881", - "question_id": 39654, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000660", - "question_id": 39656, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00000178", - "question_id": 39657, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004269", - "question_id": 39658, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006578", - "question_id": 39662, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002927", - "question_id": 39664, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002794", - "question_id": 39667, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005682", - "question_id": 39670, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007832", - "question_id": 39671, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004724", - "question_id": 39673, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008969", - "question_id": 39675, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008818", - "question_id": 39678, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000086", - "question_id": 39682, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000331", - "question_id": 39683, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00004073", - "question_id": 39689, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006599", - "question_id": 39694, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006404", - "question_id": 39695, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000752", - "question_id": 39696, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007494", - "question_id": 39697, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002328", - "question_id": 39700, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008774", - "question_id": 39701, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002594", - "question_id": 39704, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005802", - "question_id": 39710, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000906", - "question_id": 39712, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005890", - "question_id": 39713, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007145", - "question_id": 39716, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002183", - "question_id": 39717, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005682", - "question_id": 39718, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002907", - "question_id": 39719, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004312", - "question_id": 39720, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007070", - "question_id": 39723, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004751", - "question_id": 39726, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008316", - "question_id": 39727, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006614", - "question_id": 39728, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003514", - "question_id": 39732, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003405", - "question_id": 39733, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006528", - "question_id": 39735, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004995", - "question_id": 39736, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001750", - "question_id": 39737, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000742", - "question_id": 39738, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007210", - "question_id": 39740, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008715", - "question_id": 39742, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008316", - "question_id": 39748, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007752", - "question_id": 39750, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000837", - "question_id": 39752, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005864", - "question_id": 39754, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002709", - "question_id": 39762, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007028", - "question_id": 39764, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004823", - "question_id": 39767, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002328", - "question_id": 39768, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004454", - "question_id": 39770, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008166", - "question_id": 39775, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008599", - "question_id": 39782, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000346", - "question_id": 39790, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004824", - "question_id": 39800, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001533", - "question_id": 39801, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004080", - "question_id": 39804, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003868", - "question_id": 39805, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006300", - "question_id": 39810, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001244", - "question_id": 39811, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003315", - "question_id": 39813, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005051", - "question_id": 39818, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"right\", \"trumpet\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008908", - "question_id": 39819, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000200", - "question_id": 39820, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005698", - "question_id": 39823, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002399", - "question_id": 39824, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000600", - "question_id": 39825, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006486", - "question_id": 39829, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005772", - "question_id": 39832, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008865", - "question_id": 39833, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "eight" -}, { - "video_id": "00001966", - "question_id": 39834, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004172", - "question_id": 39835, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005917", - "question_id": 39837, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003502", - "question_id": 39839, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000775", - "question_id": 39840, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008066", - "question_id": 39846, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007342", - "question_id": 39850, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "more than ten" -}, { - "video_id": "00000309", - "question_id": 39854, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008953", - "question_id": 39856, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00004330", - "question_id": 39858, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003469", - "question_id": 39871, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002344", - "question_id": 39877, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005944", - "question_id": 39879, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000505", - "question_id": 39881, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003926", - "question_id": 39892, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008357", - "question_id": 39897, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001527", - "question_id": 39898, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007421", - "question_id": 39899, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006918", - "question_id": 39904, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000066", - "question_id": 39909, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003466", - "question_id": 39915, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002223", - "question_id": 39918, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005483", - "question_id": 39922, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003581", - "question_id": 39931, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006244", - "question_id": 39939, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"cello\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007110", - "question_id": 39940, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001549", - "question_id": 39941, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008498", - "question_id": 39943, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007047", - "question_id": 39944, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001056", - "question_id": 39945, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004736", - "question_id": 39946, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008322", - "question_id": 39955, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006772", - "question_id": 39956, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001595", - "question_id": 39964, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000906", - "question_id": 39965, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008313", - "question_id": 39974, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008786", - "question_id": 39976, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007070", - "question_id": 39977, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004593", - "question_id": 39978, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001403", - "question_id": 39980, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008508", - "question_id": 39982, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006816", - "question_id": 39987, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001800", - "question_id": 39994, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006014", - "question_id": 40000, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"trumpet\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001353", - "question_id": 40002, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002872", - "question_id": 40009, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001815", - "question_id": 40010, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005412", - "question_id": 40012, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007101", - "question_id": 40014, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004866", - "question_id": 40016, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001806", - "question_id": 40024, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003192", - "question_id": 40025, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002136", - "question_id": 40026, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"electric_bass\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006705", - "question_id": 40027, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002942", - "question_id": 40029, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006678", - "question_id": 40031, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008872", - "question_id": 40033, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00006357", - "question_id": 40034, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002599", - "question_id": 40036, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"banjo\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003026", - "question_id": 40037, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006331", - "question_id": 40044, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004794", - "question_id": 40045, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003121", - "question_id": 40046, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005336", - "question_id": 40047, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"xylophone\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00001028", - "question_id": 40049, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00002105", - "question_id": 40051, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"ukulele\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001597", - "question_id": 40052, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001179", - "question_id": 40060, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003134", - "question_id": 40061, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002539", - "question_id": 40062, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"tuba\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00008552", - "question_id": 40069, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003564", - "question_id": 40070, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004735", - "question_id": 40071, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002021", - "question_id": 40073, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00007611", - "question_id": 40074, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006033", - "question_id": 40075, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00000008", - "question_id": 40076, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00007872", - "question_id": 40080, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002425", - "question_id": 40083, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000855", - "question_id": 40085, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00000370", - "question_id": 40086, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003444", - "question_id": 40089, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006768", - "question_id": 40091, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005047", - "question_id": 40092, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007237", - "question_id": 40095, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001145", - "question_id": 40096, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008539", - "question_id": 40105, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00000752", - "question_id": 40106, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002824", - "question_id": 40112, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008716", - "question_id": 40114, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004571", - "question_id": 40116, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002583", - "question_id": 40117, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003812", - "question_id": 40122, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001356", - "question_id": 40123, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007006", - "question_id": 40124, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00008313", - "question_id": 40126, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006731", - "question_id": 40130, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00004444", - "question_id": 40131, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002175", - "question_id": 40139, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005493", - "question_id": 40143, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"middle\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005399", - "question_id": 40148, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001581", - "question_id": 40150, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003179", - "question_id": 40151, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006529", - "question_id": 40159, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000191", - "question_id": 40160, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004614", - "question_id": 40165, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002090", - "question_id": 40166, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007834", - "question_id": 40168, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003612", - "question_id": 40172, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007267", - "question_id": 40175, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00006410", - "question_id": 40176, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003960", - "question_id": 40178, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002072", - "question_id": 40181, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008052", - "question_id": 40182, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006422", - "question_id": 40183, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005579", - "question_id": 40185, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007806", - "question_id": 40186, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002889", - "question_id": 40189, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007347", - "question_id": 40191, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008221", - "question_id": 40194, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004280", - "question_id": 40195, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003605", - "question_id": 40197, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008847", - "question_id": 40199, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00000470", - "question_id": 40201, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00000566", - "question_id": 40202, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005275", - "question_id": 40203, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001804", - "question_id": 40206, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00004082", - "question_id": 40214, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008880", - "question_id": 40217, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"cello\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002465", - "question_id": 40221, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00002045", - "question_id": 40224, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005679", - "question_id": 40226, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002782", - "question_id": 40232, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"clarinet\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003070", - "question_id": 40234, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003004", - "question_id": 40235, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00005175", - "question_id": 40238, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"pipa\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00005630", - "question_id": 40247, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004740", - "question_id": 40253, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"tuba\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00008689", - "question_id": 40254, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006682", - "question_id": 40263, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005634", - "question_id": 40265, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004600", - "question_id": 40269, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004996", - "question_id": 40270, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007243", - "question_id": 40273, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004257", - "question_id": 40274, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00004238", - "question_id": 40275, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003633", - "question_id": 40279, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005981", - "question_id": 40280, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003101", - "question_id": 40282, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008632", - "question_id": 40283, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"saxophone\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003527", - "question_id": 40285, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00007565", - "question_id": 40287, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007622", - "question_id": 40290, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006410", - "question_id": 40296, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00001490", - "question_id": 40297, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006842", - "question_id": 40304, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001510", - "question_id": 40307, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00008542", - "question_id": 40315, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000562", - "question_id": 40317, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001190", - "question_id": 40319, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004619", - "question_id": 40320, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"banjo\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003183", - "question_id": 40324, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"xylophone\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001965", - "question_id": 40329, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006127", - "question_id": 40330, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008612", - "question_id": 40331, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"accordion\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000490", - "question_id": 40338, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001240", - "question_id": 40340, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"xylophone\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00003368", - "question_id": 40342, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003294", - "question_id": 40343, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005722", - "question_id": 40344, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003631", - "question_id": 40351, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000980", - "question_id": 40362, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007739", - "question_id": 40363, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007900", - "question_id": 40364, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000846", - "question_id": 40365, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006906", - "question_id": 40379, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008915", - "question_id": 40381, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"pipa\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002966", - "question_id": 40383, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000546", - "question_id": 40389, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"drum\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00003050", - "question_id": 40391, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00003771", - "question_id": 40393, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004043", - "question_id": 40395, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006369", - "question_id": 40400, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008184", - "question_id": 40401, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000664", - "question_id": 40402, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00000952", - "question_id": 40406, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002329", - "question_id": 40410, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006331", - "question_id": 40418, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008612", - "question_id": 40422, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002146", - "question_id": 40424, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00004080", - "question_id": 40429, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002257", - "question_id": 40434, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003993", - "question_id": 40435, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00007337", - "question_id": 40437, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001167", - "question_id": 40439, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004753", - "question_id": 40444, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006511", - "question_id": 40445, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005153", - "question_id": 40451, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008883", - "question_id": 40454, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"guzheng\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00003568", - "question_id": 40456, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"banjo\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002327", - "question_id": 40462, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00001391", - "question_id": 40463, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"right\", \"erhu\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006324", - "question_id": 40467, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008976", - "question_id": 40476, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007112", - "question_id": 40478, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"congas\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00002760", - "question_id": 40480, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007347", - "question_id": 40489, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004468", - "question_id": 40492, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005678", - "question_id": 40496, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"xylophone\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00007432", - "question_id": 40497, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"pipa\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00001815", - "question_id": 40500, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006059", - "question_id": 40503, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002017", - "question_id": 40504, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002208", - "question_id": 40511, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"xylophone\", \"left\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003290", - "question_id": 40515, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000215", - "question_id": 40517, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004920", - "question_id": 40520, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000978", - "question_id": 40523, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"xylophone\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00003781", - "question_id": 40526, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003677", - "question_id": 40530, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00002122", - "question_id": 40536, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00006468", - "question_id": 40538, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002135", - "question_id": 40540, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00004748", - "question_id": 40542, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"congas\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00004990", - "question_id": 40543, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"xylophone\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006655", - "question_id": 40544, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"flute\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001104", - "question_id": 40549, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006114", - "question_id": 40550, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"trumpet\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00002719", - "question_id": 40551, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007416", - "question_id": 40552, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007904", - "question_id": 40553, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002330", - "question_id": 40554, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004058", - "question_id": 40556, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007743", - "question_id": 40561, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"suona\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00002490", - "question_id": 40564, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006705", - "question_id": 40565, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006448", - "question_id": 40566, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"last\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003435", - "question_id": 40568, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"pipa\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00001477", - "question_id": 40577, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001748", - "question_id": 40579, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002755", - "question_id": 40582, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"banjo\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005576", - "question_id": 40587, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"last\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00007535", - "question_id": 40592, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007666", - "question_id": 40594, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002146", - "question_id": 40595, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007692", - "question_id": 40602, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005428", - "question_id": 40603, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000632", - "question_id": 40604, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"suona\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003474", - "question_id": 40605, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"ukulele\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001513", - "question_id": 40616, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"last\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00008570", - "question_id": 40617, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007927", - "question_id": 40618, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005019", - "question_id": 40624, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001477", - "question_id": 40625, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003854", - "question_id": 40627, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005897", - "question_id": 40640, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001804", - "question_id": 40644, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006467", - "question_id": 40648, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008055", - "question_id": 40652, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004589", - "question_id": 40659, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006978", - "question_id": 40661, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002077", - "question_id": 40678, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007769", - "question_id": 40684, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000561", - "question_id": 40685, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004872", - "question_id": 40687, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008678", - "question_id": 40690, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006734", - "question_id": 40691, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005695", - "question_id": 40694, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004528", - "question_id": 40695, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007137", - "question_id": 40697, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003949", - "question_id": 40702, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001161", - "question_id": 40711, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006793", - "question_id": 40715, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001346", - "question_id": 40722, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006907", - "question_id": 40725, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"suona\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00007753", - "question_id": 40726, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005457", - "question_id": 40728, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002343", - "question_id": 40734, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"clarinet\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00004054", - "question_id": 40735, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008970", - "question_id": 40740, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005191", - "question_id": 40741, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004731", - "question_id": 40744, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003237", - "question_id": 40750, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007507", - "question_id": 40752, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007910", - "question_id": 40754, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008744", - "question_id": 40759, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002539", - "question_id": 40765, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007716", - "question_id": 40767, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005588", - "question_id": 40769, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005397", - "question_id": 40771, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00004882", - "question_id": 40781, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00004066", - "question_id": 40783, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004287", - "question_id": 40792, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00006348", - "question_id": 40793, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002536", - "question_id": 40794, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002249", - "question_id": 40795, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004996", - "question_id": 40796, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002700", - "question_id": 40799, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000142", - "question_id": 40803, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004751", - "question_id": 40806, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003022", - "question_id": 40807, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00008043", - "question_id": 40808, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00007282", - "question_id": 40811, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005383", - "question_id": 40813, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000498", - "question_id": 40826, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000278", - "question_id": 40828, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006679", - "question_id": 40829, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006374", - "question_id": 40836, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002844", - "question_id": 40838, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003330", - "question_id": 40841, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002736", - "question_id": 40845, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001899", - "question_id": 40852, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004380", - "question_id": 40866, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007931", - "question_id": 40869, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006480", - "question_id": 40870, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00007015", - "question_id": 40881, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006464", - "question_id": 40882, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004441", - "question_id": 40884, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000882", - "question_id": 40886, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00006323", - "question_id": 40897, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002024", - "question_id": 40903, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002186", - "question_id": 40905, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007494", - "question_id": 40910, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00005872", - "question_id": 40913, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000966", - "question_id": 40915, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006205", - "question_id": 40921, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006884", - "question_id": 40922, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006786", - "question_id": 40923, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"banjo\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005383", - "question_id": 40927, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00005480", - "question_id": 40931, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002510", - "question_id": 40932, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003096", - "question_id": 40939, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002291", - "question_id": 40944, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003926", - "question_id": 40946, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00005399", - "question_id": 40949, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001046", - "question_id": 40954, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003884", - "question_id": 40962, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000561", - "question_id": 40966, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"bassoon\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00008083", - "question_id": 40972, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002461", - "question_id": 40974, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004597", - "question_id": 40976, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"banjo\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005769", - "question_id": 40982, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005925", - "question_id": 40990, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003259", - "question_id": 40996, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00007331", - "question_id": 41000, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"xylophone\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007742", - "question_id": 41002, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000685", - "question_id": 41005, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008874", - "question_id": 41008, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008942", - "question_id": 41011, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002291", - "question_id": 41013, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002709", - "question_id": 41014, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006105", - "question_id": 41028, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002374", - "question_id": 41031, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007728", - "question_id": 41050, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002183", - "question_id": 41053, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003370", - "question_id": 41057, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002334", - "question_id": 41059, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008050", - "question_id": 41062, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"clarinet\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00006870", - "question_id": 41063, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007565", - "question_id": 41065, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"last\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001860", - "question_id": 41067, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005536", - "question_id": 41069, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002762", - "question_id": 41070, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005509", - "question_id": 41076, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00007312", - "question_id": 41077, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004447", - "question_id": 41090, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00000276", - "question_id": 41091, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006616", - "question_id": 41100, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006838", - "question_id": 41102, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003771", - "question_id": 41106, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008903", - "question_id": 41109, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001995", - "question_id": 41110, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006584", - "question_id": 41122, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001391", - "question_id": 41127, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003415", - "question_id": 41128, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007873", - "question_id": 41130, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005408", - "question_id": 41143, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005186", - "question_id": 41147, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005428", - "question_id": 41151, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000301", - "question_id": 41153, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00002866", - "question_id": 41154, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005579", - "question_id": 41155, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00001295", - "question_id": 41158, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002082", - "question_id": 41173, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003672", - "question_id": 41175, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006114", - "question_id": 41178, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007047", - "question_id": 41181, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000142", - "question_id": 41182, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00003343", - "question_id": 41184, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002663", - "question_id": 41185, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001677", - "question_id": 41188, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003690", - "question_id": 41195, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008529", - "question_id": 41196, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001613", - "question_id": 41207, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008529", - "question_id": 41209, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"last\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008221", - "question_id": 41211, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"cello\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001190", - "question_id": 41212, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000747", - "question_id": 41223, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007724", - "question_id": 41225, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006884", - "question_id": 41227, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00008208", - "question_id": 41235, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007730", - "question_id": 41237, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000597", - "question_id": 41239, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007282", - "question_id": 41240, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002889", - "question_id": 41242, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006838", - "question_id": 41254, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001287", - "question_id": 41258, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004257", - "question_id": 41260, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003096", - "question_id": 41261, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005775", - "question_id": 41263, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008463", - "question_id": 41272, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007842", - "question_id": 41274, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007884", - "question_id": 41275, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007622", - "question_id": 41277, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002692", - "question_id": 41278, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004824", - "question_id": 41285, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006743", - "question_id": 41288, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"trumpet\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007110", - "question_id": 41291, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003343", - "question_id": 41294, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000624", - "question_id": 41296, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007037", - "question_id": 41300, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008210", - "question_id": 41310, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006084", - "question_id": 41311, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"saxophone\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007873", - "question_id": 41312, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"tuba\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00008402", - "question_id": 41314, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000812", - "question_id": 41318, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002037", - "question_id": 41327, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003781", - "question_id": 41330, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008570", - "question_id": 41331, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002084", - "question_id": 41333, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000873", - "question_id": 41336, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006764", - "question_id": 41339, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003095", - "question_id": 41341, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007075", - "question_id": 41342, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004123", - "question_id": 41351, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002889", - "question_id": 41352, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004066", - "question_id": 41360, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"guzheng\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00002581", - "question_id": 41368, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003926", - "question_id": 41369, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006540", - "question_id": 41371, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"clarinet\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00000837", - "question_id": 41375, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"pipa\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00005023", - "question_id": 41376, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000613", - "question_id": 41385, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008615", - "question_id": 41388, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003340", - "question_id": 41394, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007931", - "question_id": 41404, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004058", - "question_id": 41408, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"drum\", \"middle\", \"trumpet\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007137", - "question_id": 41414, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003652", - "question_id": 41417, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00002270", - "question_id": 41422, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005745", - "question_id": 41424, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006838", - "question_id": 41427, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008545", - "question_id": 41448, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007972", - "question_id": 41453, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004193", - "question_id": 41454, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004896", - "question_id": 41460, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004530", - "question_id": 41465, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"cello\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00003243", - "question_id": 41470, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007338", - "question_id": 41471, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000736", - "question_id": 41473, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002391", - "question_id": 41481, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"accordion\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00007732", - "question_id": 41488, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"banjo\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008829", - "question_id": 41491, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002567", - "question_id": 41499, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000544", - "question_id": 41509, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006192", - "question_id": 41511, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006460", - "question_id": 41513, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006142", - "question_id": 41516, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006142", - "question_id": 41517, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"pipa\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00003824", - "question_id": 41518, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003636", - "question_id": 41524, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000928", - "question_id": 41525, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001900", - "question_id": 41527, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005693", - "question_id": 41531, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002399", - "question_id": 41532, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003362", - "question_id": 41537, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007948", - "question_id": 41540, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004187", - "question_id": 41544, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007623", - "question_id": 41545, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"tuba\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002040", - "question_id": 41546, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005843", - "question_id": 41553, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"violin\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000311", - "question_id": 41558, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005940", - "question_id": 41566, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"bassoon\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00004631", - "question_id": 41576, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003972", - "question_id": 41577, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008929", - "question_id": 41584, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000847", - "question_id": 41585, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006520", - "question_id": 41590, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000344", - "question_id": 41597, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002398", - "question_id": 41599, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"guzheng\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00004514", - "question_id": 41600, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005401", - "question_id": 41611, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003162", - "question_id": 41618, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007926", - "question_id": 41621, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001804", - "question_id": 41626, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000443", - "question_id": 41627, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003525", - "question_id": 41630, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004898", - "question_id": 41635, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004629", - "question_id": 41637, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001239", - "question_id": 41640, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007739", - "question_id": 41641, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00007156", - "question_id": 41647, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001220", - "question_id": 41649, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"middle\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007449", - "question_id": 41654, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008578", - "question_id": 41655, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004392", - "question_id": 41657, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002105", - "question_id": 41660, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001324", - "question_id": 41661, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004955", - "question_id": 41664, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"banjo\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008786", - "question_id": 41665, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007739", - "question_id": 41666, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003368", - "question_id": 41672, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005062", - "question_id": 41677, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005784", - "question_id": 41686, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000422", - "question_id": 41692, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006148", - "question_id": 41694, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007322", - "question_id": 41698, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001932", - "question_id": 41702, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007753", - "question_id": 41703, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003225", - "question_id": 41707, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00005973", - "question_id": 41708, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000788", - "question_id": 41713, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000677", - "question_id": 41725, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007968", - "question_id": 41728, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004454", - "question_id": 41734, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00006772", - "question_id": 41746, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005930", - "question_id": 41748, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"congas\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00003050", - "question_id": 41752, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008777", - "question_id": 41754, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000791", - "question_id": 41755, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005843", - "question_id": 41756, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008942", - "question_id": 41758, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007663", - "question_id": 41759, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000261", - "question_id": 41764, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002518", - "question_id": 41770, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002122", - "question_id": 41774, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002270", - "question_id": 41775, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006262", - "question_id": 41781, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006151", - "question_id": 41785, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008450", - "question_id": 41787, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004241", - "question_id": 41788, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004366", - "question_id": 41803, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001179", - "question_id": 41807, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000551", - "question_id": 41824, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006305", - "question_id": 41834, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005087", - "question_id": 41836, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002327", - "question_id": 41843, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"congas\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007160", - "question_id": 41849, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005736", - "question_id": 41851, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007834", - "question_id": 41855, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006548", - "question_id": 41859, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000086", - "question_id": 41864, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001056", - "question_id": 41866, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006236", - "question_id": 41867, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008195", - "question_id": 41872, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007325", - "question_id": 41874, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007015", - "question_id": 41877, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002736", - "question_id": 41886, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002093", - "question_id": 41890, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005679", - "question_id": 41896, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002518", - "question_id": 41898, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008697", - "question_id": 41899, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008319", - "question_id": 41900, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004052", - "question_id": 41902, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005113", - "question_id": 41912, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005483", - "question_id": 41922, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004269", - "question_id": 41924, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008718", - "question_id": 41926, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"drum\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00008528", - "question_id": 41934, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007355", - "question_id": 41942, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00004697", - "question_id": 41945, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003368", - "question_id": 41955, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001569", - "question_id": 41956, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001098", - "question_id": 41968, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005153", - "question_id": 41977, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000741", - "question_id": 41978, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005576", - "question_id": 41980, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008459", - "question_id": 41984, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "seven" -}, { - "video_id": "00004872", - "question_id": 41986, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000846", - "question_id": 41987, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00004843", - "question_id": 41992, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001016", - "question_id": 41994, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006609", - "question_id": 41998, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007037", - "question_id": 42003, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008319", - "question_id": 42005, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006906", - "question_id": 42009, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001513", - "question_id": 42011, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001942", - "question_id": 42012, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001251", - "question_id": 42013, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005047", - "question_id": 42015, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007688", - "question_id": 42022, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006372", - "question_id": 42024, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006982", - "question_id": 42025, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008697", - "question_id": 42032, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005186", - "question_id": 42035, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001056", - "question_id": 42036, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006019", - "question_id": 42039, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001878", - "question_id": 42046, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001514", - "question_id": 42053, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001681", - "question_id": 42054, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005030", - "question_id": 42059, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "seven" -}, { - "video_id": "00007182", - "question_id": 42065, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"congas\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00006750", - "question_id": 42076, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00001952", - "question_id": 42081, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003499", - "question_id": 42089, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00005719", - "question_id": 42092, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001665", - "question_id": 42100, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007251", - "question_id": 42101, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005137", - "question_id": 42107, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004731", - "question_id": 42109, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000635", - "question_id": 42110, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008195", - "question_id": 42115, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00005053", - "question_id": 42124, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "seven" -}, { - "video_id": "00008042", - "question_id": 42129, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000989", - "question_id": 42136, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008942", - "question_id": 42138, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002193", - "question_id": 42141, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004148", - "question_id": 42148, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000613", - "question_id": 42151, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00006619", - "question_id": 42152, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00000938", - "question_id": 42155, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003032", - "question_id": 42156, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007715", - "question_id": 42159, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007675", - "question_id": 42162, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008248", - "question_id": 42163, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"middle\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001552", - "question_id": 42177, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001552", - "question_id": 42178, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00002465", - "question_id": 42190, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007363", - "question_id": 42192, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004740", - "question_id": 42194, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002942", - "question_id": 42198, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003572", - "question_id": 42212, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002844", - "question_id": 42215, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004538", - "question_id": 42216, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005113", - "question_id": 42218, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002049", - "question_id": 42220, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007758", - "question_id": 42226, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007902", - "question_id": 42228, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001220", - "question_id": 42231, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005249", - "question_id": 42237, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008859", - "question_id": 42240, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007761", - "question_id": 42242, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007279", - "question_id": 42245, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008376", - "question_id": 42249, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006350", - "question_id": 42254, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006059", - "question_id": 42255, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005413", - "question_id": 42256, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006588", - "question_id": 42259, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00003049", - "question_id": 42270, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003362", - "question_id": 42280, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002063", - "question_id": 42285, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00002645", - "question_id": 42289, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000731", - "question_id": 42304, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006127", - "question_id": 42307, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004366", - "question_id": 42308, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00006405", - "question_id": 42309, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006502", - "question_id": 42315, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000338", - "question_id": 42316, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000566", - "question_id": 42327, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008108", - "question_id": 42330, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005292", - "question_id": 42337, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001514", - "question_id": 42338, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003032", - "question_id": 42348, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003231", - "question_id": 42350, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00004990", - "question_id": 42358, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000938", - "question_id": 42360, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002538", - "question_id": 42364, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005996", - "question_id": 42371, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002239", - "question_id": 42374, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007795", - "question_id": 42384, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001750", - "question_id": 42385, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000634", - "question_id": 42392, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001784", - "question_id": 42393, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004814", - "question_id": 42395, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00007873", - "question_id": 42399, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002607", - "question_id": 42401, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000837", - "question_id": 42407, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007750", - "question_id": 42427, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004712", - "question_id": 42429, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006017", - "question_id": 42432, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004955", - "question_id": 42436, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007542", - "question_id": 42439, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004680", - "question_id": 42443, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006944", - "question_id": 42451, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007732", - "question_id": 42460, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003569", - "question_id": 42480, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00004448", - "question_id": 42488, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00000047", - "question_id": 42512, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008883", - "question_id": 42520, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00005560", - "question_id": 42531, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003525", - "question_id": 42532, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00000370", - "question_id": 42534, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000193", - "question_id": 42538, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005698", - "question_id": 42540, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002553", - "question_id": 42546, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003574", - "question_id": 42557, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002911", - "question_id": 42567, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005053", - "question_id": 42568, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006450", - "question_id": 42570, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00005087", - "question_id": 42573, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00005812", - "question_id": 42578, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00002430", - "question_id": 42579, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007112", - "question_id": 42581, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004366", - "question_id": 42586, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001510", - "question_id": 42588, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00000605", - "question_id": 42601, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007199", - "question_id": 42612, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007321", - "question_id": 42623, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006673", - "question_id": 42629, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005013", - "question_id": 42633, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00001173", - "question_id": 42635, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002047", - "question_id": 42637, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004725", - "question_id": 42659, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001510", - "question_id": 42660, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004377", - "question_id": 42670, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00003030", - "question_id": 42678, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002518", - "question_id": 42690, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002959", - "question_id": 42700, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002705", - "question_id": 42705, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002442", - "question_id": 42709, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004548", - "question_id": 42718, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005615", - "question_id": 42725, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005701", - "question_id": 42736, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"ukulele\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008463", - "question_id": 42738, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00001482", - "question_id": 42739, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00007432", - "question_id": 42751, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00001750", - "question_id": 42763, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007577", - "question_id": 42775, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00004380", - "question_id": 42777, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001677", - "question_id": 42790, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00006162", - "question_id": 42794, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004377", - "question_id": 42797, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00005879", - "question_id": 42800, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00004141", - "question_id": 42814, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006521", - "question_id": 42818, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00004197", - "question_id": 42822, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007663", - "question_id": 42828, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006764", - "question_id": 42833, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002037", - "question_id": 42837, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007670", - "question_id": 42840, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002929", - "question_id": 42844, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005414", - "question_id": 42863, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002583", - "question_id": 42867, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000193", - "question_id": 42868, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005659", - "question_id": 42870, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00007917", - "question_id": 42873, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004256", - "question_id": 42876, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004771", - "question_id": 42878, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00001823", - "question_id": 42887, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00001677", - "question_id": 42890, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00003290", - "question_id": 42900, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003478", - "question_id": 42907, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00002703", - "question_id": 42911, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00003705", - "question_id": 42914, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00006162", - "question_id": 42922, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001818", - "question_id": 42938, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004929", - "question_id": 42941, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00001514", - "question_id": 42956, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007663", - "question_id": 42961, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003434", - "question_id": 42963, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007338", - "question_id": 42970, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000160", - "question_id": 42985, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006899", - "question_id": 42998, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"violin\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001611", - "question_id": 42999, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008764", - "question_id": 43013, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00002104", - "question_id": 43021, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001069", - "question_id": 43025, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00004896", - "question_id": 43028, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004141", - "question_id": 43033, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004931", - "question_id": 43034, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00001665", - "question_id": 43046, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001179", - "question_id": 43070, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003434", - "question_id": 43076, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006023", - "question_id": 43078, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002929", - "question_id": 43081, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001069", - "question_id": 43086, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005418", - "question_id": 43105, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007742", - "question_id": 43108, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00004727", - "question_id": 43132, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00000668", - "question_id": 43136, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001069", - "question_id": 43150, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006944", - "question_id": 43152, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005225", - "question_id": 43187, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"banjo\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00007758", - "question_id": 43210, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005996", - "question_id": 43225, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"guzheng\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00001324", - "question_id": 43232, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007190", - "question_id": 43233, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001720", - "question_id": 43247, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00004712", - "question_id": 43254, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00004931", - "question_id": 43270, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007750", - "question_id": 43273, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000261", - "question_id": 43276, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00008904", - "question_id": 43281, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00001487", - "question_id": 43317, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008279", - "question_id": 43322, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006403", - "question_id": 43328, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00002583", - "question_id": 43345, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004187", - "question_id": 43352, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002451", - "question_id": 43359, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001942", - "question_id": 43360, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003677", - "question_id": 43383, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004060", - "question_id": 43391, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008055", - "question_id": 43400, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001900", - "question_id": 43404, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004339", - "question_id": 43411, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005536", - "question_id": 43427, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002644", - "question_id": 43442, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"ukulele\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001168", - "question_id": 43459, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003677", - "question_id": 43511, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00002526", - "question_id": 43512, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003772", - "question_id": 43522, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005709", - "question_id": 43535, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005709", - "question_id": 43536, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005812", - "question_id": 43542, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001738", - "question_id": 43578, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00000605", - "question_id": 43587, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006403", - "question_id": 43606, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00000261", - "question_id": 43607, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004727", - "question_id": 43612, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008350", - "question_id": 43643, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004931", - "question_id": 43646, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"tuba\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004727", - "question_id": 43659, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005812", - "question_id": 43669, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"congas\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004405", - "question_id": 43671, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"ukulele\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004405", - "question_id": 43677, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003360", - "question_id": 43679, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008901", - "question_id": 43681, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008901", - "question_id": 43686, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007922", - "question_id": 43688, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007922", - "question_id": 43691, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006695", - "question_id": 43694, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006023", - "question_id": 43696, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001782", - "question_id": 43699, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005853", - "question_id": 43700, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"banjo\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006650", - "question_id": 43757, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"pipa\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006889", - "question_id": 43777, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000471", - "question_id": 43794, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008971", - "question_id": 43832, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002719", - "question_id": 43887, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000666", - "question_id": 44066, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001027", - "question_id": 44070, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006739", - "question_id": 44078, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007824", - "question_id": 44080, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004074", - "question_id": 44091, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007518", - "question_id": 44095, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000172", - "question_id": 44096, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000732", - "question_id": 44100, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008467", - "question_id": 44102, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007423", - "question_id": 44108, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001740", - "question_id": 44113, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006770", - "question_id": 44116, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"electric_bass\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006665", - "question_id": 44132, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002341", - "question_id": 44134, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003808", - "question_id": 44136, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002701", - "question_id": 44159, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005905", - "question_id": 44178, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000327", - "question_id": 44185, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008834", - "question_id": 44192, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000397", - "question_id": 44207, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006110", - "question_id": 44210, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"electric_bass\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005343", - "question_id": 44214, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006987", - "question_id": 44215, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"electric_bass\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000449", - "question_id": 44219, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003924", - "question_id": 44229, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006890", - "question_id": 44253, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003286", - "question_id": 44261, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008834", - "question_id": 44267, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"banjo\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008231", - "question_id": 44272, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001666", - "question_id": 44280, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002353", - "question_id": 44289, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003808", - "question_id": 44290, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003525", - "question_id": 44303, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004927", - "question_id": 44342, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008191", - "question_id": 44352, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001750", - "question_id": 44354, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001740", - "question_id": 44391, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"middle\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000363", - "question_id": 44396, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000700", - "question_id": 44397, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000473", - "question_id": 44404, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008938", - "question_id": 44422, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003504", - "question_id": 44468, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008047", - "question_id": 44488, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001203", - "question_id": 44520, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"banjo\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008834", - "question_id": 44530, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006215", - "question_id": 44543, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006399", - "question_id": 44548, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004634", - "question_id": 44560, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007827", - "question_id": 44578, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001666", - "question_id": 44590, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004899", - "question_id": 44611, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001310", - "question_id": 44615, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008938", - "question_id": 44624, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00001584", - "question_id": 44626, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007964", - "question_id": 44635, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001906", - "question_id": 44640, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007754", - "question_id": 44647, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006130", - "question_id": 44649, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005755", - "question_id": 44655, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007228", - "question_id": 44682, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008176", - "question_id": 44687, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"xylophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008572", - "question_id": 44690, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008587", - "question_id": 44696, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003565", - "question_id": 44697, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007518", - "question_id": 44700, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006130", - "question_id": 44707, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005726", - "question_id": 44719, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008231", - "question_id": 44724, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00005085", - "question_id": 44727, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003699", - "question_id": 44737, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004858", - "question_id": 44778, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007955", - "question_id": 44781, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005716", - "question_id": 44786, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001666", - "question_id": 44791, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005231", - "question_id": 44797, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002350", - "question_id": 44805, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006101", - "question_id": 44806, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003765", - "question_id": 44810, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004939", - "question_id": 44849, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006215", - "question_id": 44862, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007423", - "question_id": 44864, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000658", - "question_id": 44867, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008077", - "question_id": 44879, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004634", - "question_id": 44890, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003832", - "question_id": 44891, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007189", - "question_id": 44898, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006184", - "question_id": 44899, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000799", - "question_id": 44906, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005505", - "question_id": 44908, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008352", - "question_id": 44919, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001145", - "question_id": 44923, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008577", - "question_id": 44937, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007073", - "question_id": 44940, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00007674", - "question_id": 44947, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003059", - "question_id": 44951, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000765", - "question_id": 44953, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000193", - "question_id": 44959, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001027", - "question_id": 44979, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008352", - "question_id": 44986, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002265", - "question_id": 44991, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005429", - "question_id": 45009, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006146", - "question_id": 45013, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005505", - "question_id": 45025, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00003082", - "question_id": 45037, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008328", - "question_id": 45050, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006739", - "question_id": 45052, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008003", - "question_id": 45067, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004853", - "question_id": 45068, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00006018", - "question_id": 45076, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007964", - "question_id": 45083, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00005170", - "question_id": 45093, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007518", - "question_id": 45099, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004865", - "question_id": 45108, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"middle\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008935", - "question_id": 45116, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006946", - "question_id": 45131, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"pipa\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006130", - "question_id": 45138, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005032", - "question_id": 45144, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000363", - "question_id": 45152, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000900", - "question_id": 45158, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007457", - "question_id": 45164, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002265", - "question_id": 45165, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000313", - "question_id": 45174, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001636", - "question_id": 45178, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008352", - "question_id": 45180, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006146", - "question_id": 45185, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000799", - "question_id": 45191, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007530", - "question_id": 45225, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003832", - "question_id": 45231, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002463", - "question_id": 45249, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005343", - "question_id": 45258, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002814", - "question_id": 45263, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007674", - "question_id": 45265, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008107", - "question_id": 45276, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001353", - "question_id": 45281, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003082", - "question_id": 45291, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005726", - "question_id": 45294, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000331", - "question_id": 45316, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001660", - "question_id": 45339, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00004082", - "question_id": 45357, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002355", - "question_id": 45369, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000799", - "question_id": 45390, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007454", - "question_id": 45391, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005388", - "question_id": 45392, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008717", - "question_id": 45397, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008077", - "question_id": 45404, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003987", - "question_id": 45419, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007713", - "question_id": 45423, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002447", - "question_id": 45424, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007518", - "question_id": 45437, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003009", - "question_id": 45439, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008005", - "question_id": 45452, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004592", - "question_id": 45455, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006216", - "question_id": 45469, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00007454", - "question_id": 45506, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002341", - "question_id": 45533, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000324", - "question_id": 45547, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001182", - "question_id": 45551, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006031", - "question_id": 45575, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001636", - "question_id": 45583, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001612", - "question_id": 45598, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008075", - "question_id": 45609, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002463", - "question_id": 45615, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"congas\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008005", - "question_id": 45630, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001583", - "question_id": 45656, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001310", - "question_id": 45661, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002526", - "question_id": 45682, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003987", - "question_id": 45683, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006680", - "question_id": 45729, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001660", - "question_id": 45733, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005429", - "question_id": 45734, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004802", - "question_id": 45748, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00000984", - "question_id": 45760, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001990", - "question_id": 45762, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007955", - "question_id": 45769, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00008047", - "question_id": 45796, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005615", - "question_id": 45797, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005091", - "question_id": 45800, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008107", - "question_id": 45816, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004492", - "question_id": 45858, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00007394", - "question_id": 45917, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008005", - "question_id": 45936, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005242", - "question_id": 45951, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007021", - "question_id": 45954, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002472", - "question_id": 45955, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006718", - "question_id": 45957, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005515", - "question_id": 45962, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001990", - "question_id": 45975, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001698", - "question_id": 45980, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003965", - "question_id": 45985, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007000", - "question_id": 46004, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001612", - "question_id": 46006, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006328", - "question_id": 46023, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006665", - "question_id": 46030, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001144", - "question_id": 46061, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007834", - "question_id": 46065, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007588", - "question_id": 46091, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"suona\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006890", - "question_id": 46093, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008436", - "question_id": 46106, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007379", - "question_id": 46115, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00003736", - "question_id": 46118, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008502", - "question_id": 46123, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004811", - "question_id": 46151, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005806", - "question_id": 46214, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000316", - "question_id": 46225, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005388", - "question_id": 46229, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"electric_bass\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006094", - "question_id": 46234, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006330", - "question_id": 46239, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003319", - "question_id": 46242, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002608", - "question_id": 46259, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004140", - "question_id": 46267, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00003765", - "question_id": 46287, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004771", - "question_id": 46290, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005623", - "question_id": 46301, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004468", - "question_id": 46318, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005769", - "question_id": 46346, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008338", - "question_id": 46362, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008683", - "question_id": 46377, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006555", - "question_id": 46378, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000230", - "question_id": 46380, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007265", - "question_id": 46418, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"xylophone\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002350", - "question_id": 46426, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001959", - "question_id": 46444, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"banjo\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002887", - "question_id": 46458, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006394", - "question_id": 46467, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00000799", - "question_id": 46471, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008939", - "question_id": 46526, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"accordion\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005503", - "question_id": 46530, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002163", - "question_id": 46576, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004367", - "question_id": 46591, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007297", - "question_id": 46593, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00007537", - "question_id": 46596, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003538", - "question_id": 46606, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008551", - "question_id": 46616, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"xylophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005085", - "question_id": 46634, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004592", - "question_id": 46656, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008047", - "question_id": 46706, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006797", - "question_id": 46723, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005810", - "question_id": 46801, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002831", - "question_id": 46807, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000896", - "question_id": 46822, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007342", - "question_id": 46830, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001186", - "question_id": 46840, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006050", - "question_id": 46861, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007360", - "question_id": 46900, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"bassoon\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00006636", - "question_id": 46948, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005967", - "question_id": 46981, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006369", - "question_id": 47023, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008485", - "question_id": 47029, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008380", - "question_id": 47082, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000056", - "question_id": 47101, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008005", - "question_id": 47146, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000799", - "question_id": 47175, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006797", - "question_id": 47200, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007238", - "question_id": 47208, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004628", - "question_id": 47215, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008380", - "question_id": 47235, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002637", - "question_id": 47377, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000747", - "question_id": 47382, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000812", - "question_id": 47417, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005000", - "question_id": 47426, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003918", - "question_id": 47431, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003581", - "question_id": 47438, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003828", - "question_id": 47511, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003828", - "question_id": 47513, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008976", - "question_id": 47519, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002105", - "question_id": 47537, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001797", - "question_id": 47543, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006169", - "question_id": 47557, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007451", - "question_id": 47571, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004309", - "question_id": 47573, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002146", - "question_id": 47578, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001340", - "question_id": 47585, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005807", - "question_id": 47587, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"electric_bass\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000472", - "question_id": 47593, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007168", - "question_id": 47597, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008120", - "question_id": 47599, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"erhu\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008120", - "question_id": 47600, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006066", - "question_id": 47602, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007881", - "question_id": 47604, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"erhu\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005437", - "question_id": 47605, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005437", - "question_id": 47607, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005454", - "question_id": 47608, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004977", - "question_id": 47609, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"middle\", \"piano\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007069", - "question_id": 47617, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005523", - "question_id": 47655, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005984", - "question_id": 47666, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005849", - "question_id": 47669, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002172", - "question_id": 47684, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004889", - "question_id": 47691, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001629", - "question_id": 47693, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005253", - "question_id": 47696, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001806", - "question_id": 47697, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001138", - "question_id": 47701, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00001330", - "question_id": 47703, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006404", - "question_id": 47704, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00004328", - "question_id": 47709, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003543", - "question_id": 47713, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000681", - "question_id": 47716, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000058", - "question_id": 47718, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00000038", - "question_id": 47719, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002379", - "question_id": 47720, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001200", - "question_id": 47722, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00006682", - "question_id": 47727, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008580", - "question_id": 47728, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008798", - "question_id": 47737, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002206", - "question_id": 47741, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00000820", - "question_id": 47750, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002874", - "question_id": 47751, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007140", - "question_id": 47759, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003351", - "question_id": 47762, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005245", - "question_id": 47772, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"bassoon\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007977", - "question_id": 47782, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004929", - "question_id": 47786, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003543", - "question_id": 47791, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00008966", - "question_id": 47797, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00008966", - "question_id": 47799, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004966", - "question_id": 47814, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00005047", - "question_id": 47817, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004699", - "question_id": 47827, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000046", - "question_id": 47829, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00003203", - "question_id": 47832, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00002944", - "question_id": 47834, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007037", - "question_id": 47835, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00002456", - "question_id": 47838, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004258", - "question_id": 47843, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004577", - "question_id": 47850, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005396", - "question_id": 47851, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007076", - "question_id": 47858, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002342", - "question_id": 47860, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007731", - "question_id": 47861, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00001217", - "question_id": 47862, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008307", - "question_id": 47863, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002872", - "question_id": 47864, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003936", - "question_id": 47865, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004818", - "question_id": 47871, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008099", - "question_id": 47873, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002812", - "question_id": 47874, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006804", - "question_id": 47878, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005063", - "question_id": 47879, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003423", - "question_id": 47881, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001211", - "question_id": 47883, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00007230", - "question_id": 47884, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006496", - "question_id": 47885, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006994", - "question_id": 47890, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008096", - "question_id": 47892, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004038", - "question_id": 47896, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00000407", - "question_id": 47901, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00000307", - "question_id": 47902, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008251", - "question_id": 47903, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"congas\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003035", - "question_id": 47904, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"guzheng\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005890", - "question_id": 47905, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00004797", - "question_id": 47907, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005910", - "question_id": 47911, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00008834", - "question_id": 47917, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00001338", - "question_id": 47919, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00008834", - "question_id": 47920, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"banjo\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006740", - "question_id": 47927, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00005680", - "question_id": 47930, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007321", - "question_id": 47932, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006490", - "question_id": 47938, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00007058", - "question_id": 47943, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007292", - "question_id": 47945, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002913", - "question_id": 47948, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002913", - "question_id": 47949, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001708", - "question_id": 47950, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001708", - "question_id": 47951, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003367", - "question_id": 47953, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000902", - "question_id": 47955, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008781", - "question_id": 47958, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008730", - "question_id": 47961, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001989", - "question_id": 47962, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00003221", - "question_id": 47966, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008162", - "question_id": 47969, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008682", - "question_id": 47970, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00006802", - "question_id": 47974, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005724", - "question_id": 47978, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00004893", - "question_id": 47984, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00003282", - "question_id": 47985, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00007733", - "question_id": 47988, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00003610", - "question_id": 47989, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002164", - "question_id": 47990, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008227", - "question_id": 47991, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007829", - "question_id": 47996, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005168", - "question_id": 47998, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000337", - "question_id": 48002, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006979", - "question_id": 48009, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008441", - "question_id": 48013, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004121", - "question_id": 48015, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00006831", - "question_id": 48018, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00001018", - "question_id": 48024, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004250", - "question_id": 48025, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004060", - "question_id": 48026, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00000094", - "question_id": 48031, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002735", - "question_id": 48033, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000998", - "question_id": 48036, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00008682", - "question_id": 48037, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004616", - "question_id": 48039, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004896", - "question_id": 48040, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007442", - "question_id": 48042, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006378", - "question_id": 48046, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006745", - "question_id": 48047, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005619", - "question_id": 48048, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001681", - "question_id": 48052, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00001681", - "question_id": 48053, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00000187", - "question_id": 48055, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002829", - "question_id": 48057, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000329", - "question_id": 48059, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000329", - "question_id": 48061, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004489", - "question_id": 48062, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00005982", - "question_id": 48069, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00004132", - "question_id": 48070, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00006982", - "question_id": 48073, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006216", - "question_id": 48075, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"trumpet\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002788", - "question_id": 48076, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007248", - "question_id": 48087, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003028", - "question_id": 48088, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008336", - "question_id": 48092, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002004", - "question_id": 48093, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004367", - "question_id": 48103, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004995", - "question_id": 48106, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002096", - "question_id": 48110, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005162", - "question_id": 48113, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005162", - "question_id": 48114, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"tuba\", \"middle\", \"tuba\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005633", - "question_id": 48122, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005633", - "question_id": 48123, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005941", - "question_id": 48127, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006497", - "question_id": 48128, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003254", - "question_id": 48134, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000431", - "question_id": 48135, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00001665", - "question_id": 48137, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006186", - "question_id": 48138, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00008196", - "question_id": 48140, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006251", - "question_id": 48141, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002706", - "question_id": 48142, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005436", - "question_id": 48144, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005436", - "question_id": 48145, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005635", - "question_id": 48147, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000450", - "question_id": 48148, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00004589", - "question_id": 48149, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004589", - "question_id": 48150, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003289", - "question_id": 48153, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00001620", - "question_id": 48155, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00007521", - "question_id": 48160, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006594", - "question_id": 48163, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006347", - "question_id": 48166, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00004685", - "question_id": 48167, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008050", - "question_id": 48168, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"ukulele\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007547", - "question_id": 48179, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004168", - "question_id": 48180, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006649", - "question_id": 48182, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00005935", - "question_id": 48184, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00006906", - "question_id": 48186, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008792", - "question_id": 48190, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00005960", - "question_id": 48192, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00007966", - "question_id": 48194, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004367", - "question_id": 48195, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001722", - "question_id": 48196, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005655", - "question_id": 48197, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007410", - "question_id": 48206, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00003406", - "question_id": 48212, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002727", - "question_id": 48214, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003634", - "question_id": 48217, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00003765", - "question_id": 48219, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00007300", - "question_id": 48220, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"drum\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001922", - "question_id": 48224, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00004184", - "question_id": 48227, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005368", - "question_id": 48230, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"acoustic_guitar\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008752", - "question_id": 48232, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000144", - "question_id": 48234, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005406", - "question_id": 48235, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005276", - "question_id": 48238, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003498", - "question_id": 48239, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00008397", - "question_id": 48243, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"middle\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001413", - "question_id": 48245, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007622", - "question_id": 48249, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007261", - "question_id": 48252, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"last\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006078", - "question_id": 48258, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008441", - "question_id": 48263, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006261", - "question_id": 48264, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003878", - "question_id": 48265, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002522", - "question_id": 48270, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00006701", - "question_id": 48272, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004411", - "question_id": 48274, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004530", - "question_id": 48275, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007312", - "question_id": 48276, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005087", - "question_id": 48277, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bagpipe\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000170", - "question_id": 48279, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00002080", - "question_id": 48280, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00004579", - "question_id": 48281, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005155", - "question_id": 48284, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000016", - "question_id": 48285, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003118", - "question_id": 48287, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008421", - "question_id": 48290, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00003874", - "question_id": 48293, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bassoon\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000142", - "question_id": 48297, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00003592", - "question_id": 48305, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00000643", - "question_id": 48308, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007857", - "question_id": 48310, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001486", - "question_id": 48312, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00000082", - "question_id": 48314, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004987", - "question_id": 48315, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001853", - "question_id": 48318, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006740", - "question_id": 48319, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00004165", - "question_id": 48322, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00006944", - "question_id": 48323, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003577", - "question_id": 48324, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00002500", - "question_id": 48331, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00003214", - "question_id": 48333, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000957", - "question_id": 48342, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00000038", - "question_id": 48348, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002666", - "question_id": 48349, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007106", - "question_id": 48351, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002965", - "question_id": 48354, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005127", - "question_id": 48358, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001165", - "question_id": 48361, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001268", - "question_id": 48367, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001643", - "question_id": 48369, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000882", - "question_id": 48371, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003362", - "question_id": 48375, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007248", - "question_id": 48376, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006124", - "question_id": 48381, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"electric_bass\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003789", - "question_id": 48384, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001849", - "question_id": 48386, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00007723", - "question_id": 48387, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005742", - "question_id": 48388, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00003867", - "question_id": 48389, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007104", - "question_id": 48397, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bagpipe\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005106", - "question_id": 48412, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004753", - "question_id": 48413, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00001792", - "question_id": 48416, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006601", - "question_id": 48419, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00007130", - "question_id": 48421, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00001228", - "question_id": 48422, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003131", - "question_id": 48424, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00006358", - "question_id": 48427, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00008385", - "question_id": 48429, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003662", - "question_id": 48430, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"congas\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003470", - "question_id": 48432, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"middle\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002848", - "question_id": 48434, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004021", - "question_id": 48439, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000605", - "question_id": 48442, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008594", - "question_id": 48443, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005956", - "question_id": 48448, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003756", - "question_id": 48450, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008959", - "question_id": 48451, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007829", - "question_id": 48452, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005809", - "question_id": 48453, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005788", - "question_id": 48457, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007147", - "question_id": 48458, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007694", - "question_id": 48462, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00000105", - "question_id": 48464, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001986", - "question_id": 48466, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00008415", - "question_id": 48470, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006829", - "question_id": 48473, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00004854", - "question_id": 48475, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002850", - "question_id": 48476, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00002413", - "question_id": 48477, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003636", - "question_id": 48480, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000559", - "question_id": 48486, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005101", - "question_id": 48487, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005252", - "question_id": 48489, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bassoon\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003639", - "question_id": 48491, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00004781", - "question_id": 48494, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"tuba\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004022", - "question_id": 48505, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00007542", - "question_id": 48506, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002046", - "question_id": 48509, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004379", - "question_id": 48510, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"pipa\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008735", - "question_id": 48512, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002725", - "question_id": 48521, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000292", - "question_id": 48524, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005371", - "question_id": 48525, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00006708", - "question_id": 48526, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004267", - "question_id": 48529, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004346", - "question_id": 48531, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007969", - "question_id": 48538, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002925", - "question_id": 48543, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00001645", - "question_id": 48546, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"ukulele\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002437", - "question_id": 48555, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000225", - "question_id": 48558, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004194", - "question_id": 48561, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001459", - "question_id": 48563, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000451", - "question_id": 48566, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"fourth\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000008", - "question_id": 48567, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00000579", - "question_id": 48568, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008543", - "question_id": 48572, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00004387", - "question_id": 48575, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004688", - "question_id": 48578, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002043", - "question_id": 48579, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008074", - "question_id": 48580, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000126", - "question_id": 48585, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004206", - "question_id": 48589, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004837", - "question_id": 48590, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000152", - "question_id": 48591, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002605", - "question_id": 48592, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007024", - "question_id": 48593, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002708", - "question_id": 48595, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005739", - "question_id": 48598, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000825", - "question_id": 48604, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007658", - "question_id": 48605, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003148", - "question_id": 48607, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004283", - "question_id": 48613, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00006414", - "question_id": 48620, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001032", - "question_id": 48621, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002665", - "question_id": 48623, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004592", - "question_id": 48626, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005045", - "question_id": 48628, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004116", - "question_id": 48641, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00002243", - "question_id": 48645, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"xylophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001857", - "question_id": 48647, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"right\", \"banjo\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002040", - "question_id": 48650, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"last\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006286", - "question_id": 48651, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004262", - "question_id": 48657, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004952", - "question_id": 48658, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00006123", - "question_id": 48659, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00006593", - "question_id": 48660, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00006574", - "question_id": 48665, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004598", - "question_id": 48668, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004529", - "question_id": 48672, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001339", - "question_id": 48675, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004884", - "question_id": 48681, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004781", - "question_id": 48682, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003950", - "question_id": 48683, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001520", - "question_id": 48684, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002816", - "question_id": 48685, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004548", - "question_id": 48688, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"tuba\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000645", - "question_id": 48689, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004727", - "question_id": 48696, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00000066", - "question_id": 48705, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00000066", - "question_id": 48706, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00008313", - "question_id": 48708, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008659", - "question_id": 48720, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00003657", - "question_id": 48721, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006513", - "question_id": 48722, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00002553", - "question_id": 48726, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000321", - "question_id": 48729, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005682", - "question_id": 48734, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007427", - "question_id": 48740, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003327", - "question_id": 48743, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004032", - "question_id": 48745, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006866", - "question_id": 48750, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005928", - "question_id": 48753, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00006098", - "question_id": 48754, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000446", - "question_id": 48771, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006554", - "question_id": 48772, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007498", - "question_id": 48773, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00000811", - "question_id": 48774, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"trumpet\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00005579", - "question_id": 48789, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"trumpet\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004066", - "question_id": 48790, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003031", - "question_id": 48807, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002899", - "question_id": 48809, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002122", - "question_id": 48810, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006285", - "question_id": 48811, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"electric_bass\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003629", - "question_id": 48815, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00005626", - "question_id": 48819, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005626", - "question_id": 48822, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005610", - "question_id": 48829, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00002457", - "question_id": 48830, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005943", - "question_id": 48838, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00006162", - "question_id": 48842, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007456", - "question_id": 48847, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001438", - "question_id": 48848, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00004108", - "question_id": 48851, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"middle\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001296", - "question_id": 48852, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00008443", - "question_id": 48854, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"electric_bass\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006106", - "question_id": 48855, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00002244", - "question_id": 48861, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00001908", - "question_id": 48862, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000279", - "question_id": 48865, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"ukulele\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001086", - "question_id": 48866, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008342", - "question_id": 48869, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"drum\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004911", - "question_id": 48871, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003858", - "question_id": 48874, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007069", - "question_id": 48875, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"last\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001226", - "question_id": 48876, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006061", - "question_id": 48880, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003098", - "question_id": 48883, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002455", - "question_id": 48887, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00002363", - "question_id": 48894, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007069", - "question_id": 48895, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00001483", - "question_id": 48896, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"middle\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000260", - "question_id": 48897, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001982", - "question_id": 48900, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006491", - "question_id": 48907, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004585", - "question_id": 48911, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003568", - "question_id": 48914, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003634", - "question_id": 48916, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007135", - "question_id": 48917, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003987", - "question_id": 48922, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000783", - "question_id": 48923, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004215", - "question_id": 48924, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007289", - "question_id": 48926, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008145", - "question_id": 48927, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006597", - "question_id": 48933, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000185", - "question_id": 48934, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008879", - "question_id": 48935, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002273", - "question_id": 48936, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004166", - "question_id": 48938, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008277", - "question_id": 48939, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002157", - "question_id": 48944, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004180", - "question_id": 48949, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004540", - "question_id": 48953, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001501", - "question_id": 48954, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006858", - "question_id": 48955, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003144", - "question_id": 48957, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002762", - "question_id": 48961, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003565", - "question_id": 48963, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003498", - "question_id": 48976, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001969", - "question_id": 48982, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000537", - "question_id": 48985, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00005468", - "question_id": 48993, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006968", - "question_id": 48995, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003665", - "question_id": 48999, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006180", - "question_id": 49009, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008857", - "question_id": 49016, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00008601", - "question_id": 49023, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00002952", - "question_id": 49029, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007681", - "question_id": 49038, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001826", - "question_id": 49039, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002315", - "question_id": 49040, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005473", - "question_id": 49041, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000658", - "question_id": 49043, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00003189", - "question_id": 49053, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00005368", - "question_id": 49058, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008032", - "question_id": 49061, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003965", - "question_id": 49062, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002884", - "question_id": 49070, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006821", - "question_id": 49072, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008091", - "question_id": 49073, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007982", - "question_id": 49074, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00000892", - "question_id": 49077, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007063", - "question_id": 49079, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005812", - "question_id": 49085, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008340", - "question_id": 49089, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000901", - "question_id": 49093, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005631", - "question_id": 49094, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"ukulele\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000103", - "question_id": 49095, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006605", - "question_id": 49097, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000202", - "question_id": 49100, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002017", - "question_id": 49103, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"congas\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004007", - "question_id": 49105, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00006723", - "question_id": 49106, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007460", - "question_id": 49108, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007188", - "question_id": 49111, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007777", - "question_id": 49113, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005701", - "question_id": 49114, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"ukulele\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001517", - "question_id": 49116, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002088", - "question_id": 49118, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004783", - "question_id": 49120, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000687", - "question_id": 49124, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001339", - "question_id": 49125, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00002338", - "question_id": 49127, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000042", - "question_id": 49128, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000136", - "question_id": 49129, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005778", - "question_id": 49130, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00003485", - "question_id": 49132, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006892", - "question_id": 49134, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007663", - "question_id": 49135, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005147", - "question_id": 49136, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000435", - "question_id": 49139, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00007548", - "question_id": 49140, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"electric_bass\", \"left\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000801", - "question_id": 49142, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00001690", - "question_id": 49148, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007069", - "question_id": 49152, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007140", - "question_id": 49154, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00007600", - "question_id": 49155, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00000660", - "question_id": 49163, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007413", - "question_id": 49164, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00002462", - "question_id": 49166, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003581", - "question_id": 49174, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006256", - "question_id": 49177, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008900", - "question_id": 49182, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001211", - "question_id": 49183, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008508", - "question_id": 49184, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003300", - "question_id": 49185, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006707", - "question_id": 49186, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00004871", - "question_id": 49187, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002285", - "question_id": 49190, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00002111", - "question_id": 49191, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"flute\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00001045", - "question_id": 49192, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000313", - "question_id": 49199, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001760", - "question_id": 49200, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006816", - "question_id": 49205, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006784", - "question_id": 49208, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00006669", - "question_id": 49210, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00000313", - "question_id": 49215, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002703", - "question_id": 49228, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000263", - "question_id": 49232, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004486", - "question_id": 49234, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00004263", - "question_id": 49235, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004767", - "question_id": 49237, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008600", - "question_id": 49239, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bagpipe\", \"left\", \"bagpipe\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002089", - "question_id": 49241, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005094", - "question_id": 49243, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"xylophone\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005365", - "question_id": 49246, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003165", - "question_id": 49249, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"electric_bass\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004754", - "question_id": 49252, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000223", - "question_id": 49255, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002193", - "question_id": 49257, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004280", - "question_id": 49258, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000698", - "question_id": 49264, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"last\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006064", - "question_id": 49277, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00000168", - "question_id": 49293, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00007321", - "question_id": 49298, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000581", - "question_id": 49299, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003033", - "question_id": 49305, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"suona\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008887", - "question_id": 49308, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007960", - "question_id": 49309, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001358", - "question_id": 49311, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003530", - "question_id": 49317, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002275", - "question_id": 49319, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00003886", - "question_id": 49321, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008029", - "question_id": 49326, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002350", - "question_id": 49327, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007366", - "question_id": 49329, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000372", - "question_id": 49331, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00008048", - "question_id": 49343, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004628", - "question_id": 49346, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00002754", - "question_id": 49356, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bagpipe\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002340", - "question_id": 49357, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005652", - "question_id": 49358, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00006819", - "question_id": 49363, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003691", - "question_id": 49367, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001046", - "question_id": 49368, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007209", - "question_id": 49375, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00006931", - "question_id": 49376, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00001912", - "question_id": 49377, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00005679", - "question_id": 49381, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007452", - "question_id": 49382, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"suona\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006898", - "question_id": 49395, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004621", - "question_id": 49400, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000041", - "question_id": 49401, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002296", - "question_id": 49420, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004387", - "question_id": 49421, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004175", - "question_id": 49428, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00004722", - "question_id": 49429, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00006945", - "question_id": 49430, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002091", - "question_id": 49436, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006858", - "question_id": 49440, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bassoon\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003972", - "question_id": 49441, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}] \ No newline at end of file diff --git a/data/json/avqa-val.json b/data/json/avqa-val.json deleted file mode 100644 index 682bca7..0000000 --- a/data/json/avqa-val.json +++ /dev/null @@ -1,41357 +0,0 @@ -[ - { - "video_id": "00000028", - "question_id": 7, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000108", - "question_id": 10, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000288", - "question_id": 11, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00000132", - "question_id": 31, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000112", - "question_id": 37, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000037", - "question_id": 60, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000093", - "question_id": 68, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000241", - "question_id": 74, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000272", - "question_id": 86, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000250", - "question_id": 98, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000226", - "question_id": 100, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000022", - "question_id": 106, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000039", - "question_id": 113, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000007", - "question_id": 133, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000107", - "question_id": 137, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000074", - "question_id": 154, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000057", - "question_id": 172, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000065", - "question_id": 183, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000198", - "question_id": 206, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000027", - "question_id": 208, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005792", - "question_id": 226, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004170", - "question_id": 263, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005178", - "question_id": 266, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004893", - "question_id": 268, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001215", - "question_id": 273, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004684", - "question_id": 282, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007300", - "question_id": 291, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007300", - "question_id": 291, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000792", - "question_id": 311, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007457", - "question_id": 314, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00003328", - "question_id": 337, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005850", - "question_id": 343, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008978", - "question_id": 346, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000210", - "question_id": 348, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006431", - "question_id": 349, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008355", - "question_id": 356, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000875", - "question_id": 357, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001877", - "question_id": 359, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001144", - "question_id": 362, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006774", - "question_id": 373, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006155", - "question_id": 392, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005430", - "question_id": 404, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002981", - "question_id": 410, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007801", - "question_id": 411, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000420", - "question_id": 419, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005469", - "question_id": 427, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008946", - "question_id": 428, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007521", - "question_id": 449, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007495", - "question_id": 456, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005570", - "question_id": 459, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004129", - "question_id": 476, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000859", - "question_id": 485, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006211", - "question_id": 489, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002683", - "question_id": 510, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001601", - "question_id": 514, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008064", - "question_id": 531, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002124", - "question_id": 545, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001310", - "question_id": 559, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008469", - "question_id": 580, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007559", - "question_id": 602, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004630", - "question_id": 604, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000948", - "question_id": 617, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001577", - "question_id": 626, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005129", - "question_id": 641, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004063", - "question_id": 654, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001929", - "question_id": 655, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003610", - "question_id": 663, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006135", - "question_id": 664, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007604", - "question_id": 685, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006868", - "question_id": 688, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000187", - "question_id": 689, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007981", - "question_id": 694, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006669", - "question_id": 698, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000496", - "question_id": 703, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003454", - "question_id": 732, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004317", - "question_id": 741, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000402", - "question_id": 749, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001590", - "question_id": 769, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001822", - "question_id": 784, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005264", - "question_id": 802, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004389", - "question_id": 805, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008054", - "question_id": 816, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000898", - "question_id": 833, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003535", - "question_id": 835, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006082", - "question_id": 860, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002395", - "question_id": 862, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007742", - "question_id": 872, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001190", - "question_id": 878, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002650", - "question_id": 880, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002854", - "question_id": 914, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007404", - "question_id": 957, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005675", - "question_id": 972, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005591", - "question_id": 973, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000341", - "question_id": 985, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003513", - "question_id": 998, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005389", - "question_id": 1023, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007030", - "question_id": 1028, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003138", - "question_id": 1041, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002026", - "question_id": 1048, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008457", - "question_id": 1051, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005247", - "question_id": 1059, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008082", - "question_id": 1064, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002095", - "question_id": 1071, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000729", - "question_id": 1077, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000785", - "question_id": 1087, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "more than ten" - }, - { - "video_id": "00007876", - "question_id": 1088, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000137", - "question_id": 1108, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003497", - "question_id": 1112, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001845", - "question_id": 1125, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001471", - "question_id": 1161, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004201", - "question_id": 1185, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008373", - "question_id": 1194, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001453", - "question_id": 1201, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008907", - "question_id": 1218, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005067", - "question_id": 1231, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007381", - "question_id": 1235, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005412", - "question_id": 1236, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008161", - "question_id": 1246, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002189", - "question_id": 1256, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002232", - "question_id": 1258, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002741", - "question_id": 1262, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003011", - "question_id": 1284, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003649", - "question_id": 1306, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002426", - "question_id": 1325, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007305", - "question_id": 1338, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008315", - "question_id": 1344, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006322", - "question_id": 1364, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005375", - "question_id": 1383, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008177", - "question_id": 1396, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004400", - "question_id": 1411, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007963", - "question_id": 1416, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002727", - "question_id": 1425, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008960", - "question_id": 1428, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003630", - "question_id": 1441, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002788", - "question_id": 1447, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005497", - "question_id": 1459, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005317", - "question_id": 1463, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000826", - "question_id": 1467, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004743", - "question_id": 1471, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002077", - "question_id": 1509, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004679", - "question_id": 1512, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001697", - "question_id": 1513, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001802", - "question_id": 1517, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006189", - "question_id": 1518, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006021", - "question_id": 1522, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000688", - "question_id": 1523, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008160", - "question_id": 1526, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004184", - "question_id": 1527, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007025", - "question_id": 1553, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000324", - "question_id": 1560, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002327", - "question_id": 1561, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003530", - "question_id": 1563, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00000961", - "question_id": 1579, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004730", - "question_id": 1593, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003660", - "question_id": 1606, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004694", - "question_id": 1612, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003332", - "question_id": 1626, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00001435", - "question_id": 1631, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007595", - "question_id": 1633, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001904", - "question_id": 1639, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007231", - "question_id": 1641, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002521", - "question_id": 1648, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007669", - "question_id": 1654, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001521", - "question_id": 1672, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004258", - "question_id": 1684, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008888", - "question_id": 1688, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002376", - "question_id": 1709, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005716", - "question_id": 1739, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000716", - "question_id": 1753, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003279", - "question_id": 1759, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007833", - "question_id": 1761, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000486", - "question_id": 1789, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005309", - "question_id": 1800, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001409", - "question_id": 1807, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00005524", - "question_id": 1829, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003110", - "question_id": 1837, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007503", - "question_id": 1878, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001744", - "question_id": 1891, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007821", - "question_id": 1905, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008753", - "question_id": 1907, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005121", - "question_id": 1908, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002339", - "question_id": 1910, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005607", - "question_id": 1912, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004105", - "question_id": 1917, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006479", - "question_id": 1933, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003177", - "question_id": 1939, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000266", - "question_id": 1940, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000446", - "question_id": 1943, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006457", - "question_id": 1944, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006754", - "question_id": 1949, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006044", - "question_id": 1956, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003399", - "question_id": 1973, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006912", - "question_id": 1993, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003962", - "question_id": 2033, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "seven" - }, - { - "video_id": "00003620", - "question_id": 2035, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000050", - "question_id": 2051, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000144", - "question_id": 2056, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008008", - "question_id": 2064, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007947", - "question_id": 2065, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003694", - "question_id": 2071, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001121", - "question_id": 2074, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001255", - "question_id": 2084, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008849", - "question_id": 2090, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000514", - "question_id": 2132, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008239", - "question_id": 2146, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008272", - "question_id": 2147, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004900", - "question_id": 2155, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004860", - "question_id": 2161, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005867", - "question_id": 2171, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000880", - "question_id": 2175, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006703", - "question_id": 2176, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008916", - "question_id": 2186, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001665", - "question_id": 2190, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004827", - "question_id": 2193, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005191", - "question_id": 2196, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005412", - "question_id": 2215, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003532", - "question_id": 2227, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005248", - "question_id": 2230, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006309", - "question_id": 2234, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003933", - "question_id": 2238, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006969", - "question_id": 2250, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007840", - "question_id": 2268, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008342", - "question_id": 2279, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00005986", - "question_id": 2287, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007012", - "question_id": 2288, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001489", - "question_id": 2303, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004517", - "question_id": 2305, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00000867", - "question_id": 2311, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008127", - "question_id": 2315, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002358", - "question_id": 2323, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007080", - "question_id": 2326, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004811", - "question_id": 2328, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001860", - "question_id": 2337, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002243", - "question_id": 2352, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002962", - "question_id": 2360, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006345", - "question_id": 2362, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003829", - "question_id": 2366, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007157", - "question_id": 2374, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004281", - "question_id": 2379, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008428", - "question_id": 2407, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004362", - "question_id": 2434, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008584", - "question_id": 2441, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008569", - "question_id": 2446, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001713", - "question_id": 2459, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004720", - "question_id": 2467, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005209", - "question_id": 2478, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006171", - "question_id": 2493, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000889", - "question_id": 2502, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003035", - "question_id": 2511, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000168", - "question_id": 2512, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003975", - "question_id": 2515, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000352", - "question_id": 2517, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001535", - "question_id": 2533, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003074", - "question_id": 2534, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003799", - "question_id": 2547, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004537", - "question_id": 2548, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005459", - "question_id": 2551, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000297", - "question_id": 2557, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006390", - "question_id": 2560, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005554", - "question_id": 2565, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008540", - "question_id": 2567, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003344", - "question_id": 2577, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004081", - "question_id": 2580, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006045", - "question_id": 2586, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002203", - "question_id": 2589, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005143", - "question_id": 2615, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002443", - "question_id": 2643, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008816", - "question_id": 2644, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008106", - "question_id": 2648, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003377", - "question_id": 2692, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001644", - "question_id": 2705, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001307", - "question_id": 2711, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000175", - "question_id": 2723, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001392", - "question_id": 2725, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007317", - "question_id": 2735, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007131", - "question_id": 2739, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005618", - "question_id": 2747, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008915", - "question_id": 2758, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006953", - "question_id": 2764, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008390", - "question_id": 2803, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006810", - "question_id": 2805, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003870", - "question_id": 2819, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006496", - "question_id": 2841, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002795", - "question_id": 2846, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002862", - "question_id": 2855, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002488", - "question_id": 2864, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004768", - "question_id": 2873, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002002", - "question_id": 2899, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001688", - "question_id": 2904, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004554", - "question_id": 2906, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003946", - "question_id": 2907, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007274", - "question_id": 2929, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004461", - "question_id": 2950, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007862", - "question_id": 2976, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004152", - "question_id": 2988, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003291", - "question_id": 3003, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000706", - "question_id": 3005, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007843", - "question_id": 3026, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003492", - "question_id": 3036, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005517", - "question_id": 3045, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001024", - "question_id": 3057, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005966", - "question_id": 3058, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003846", - "question_id": 3068, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003252", - "question_id": 3069, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000393", - "question_id": 3080, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000677", - "question_id": 3099, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005234", - "question_id": 3127, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001557", - "question_id": 3151, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000310", - "question_id": 3153, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006333", - "question_id": 3181, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002620", - "question_id": 3190, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003472", - "question_id": 3195, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007105", - "question_id": 3198, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008675", - "question_id": 3200, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006510", - "question_id": 3210, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002502", - "question_id": 3214, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004245", - "question_id": 3215, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002605", - "question_id": 3226, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002232", - "question_id": 3228, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000100", - "question_id": 3235, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001878", - "question_id": 3237, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004957", - "question_id": 3241, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008616", - "question_id": 3248, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002208", - "question_id": 3253, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002059", - "question_id": 3259, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000665", - "question_id": 3262, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007431", - "question_id": 3263, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001709", - "question_id": 3292, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006267", - "question_id": 3307, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006795", - "question_id": 3309, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005847", - "question_id": 3314, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001266", - "question_id": 3339, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001173", - "question_id": 3344, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008846", - "question_id": 3350, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004927", - "question_id": 3366, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001082", - "question_id": 3376, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002264", - "question_id": 3379, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007220", - "question_id": 3383, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002410", - "question_id": 3398, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004331", - "question_id": 3417, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004523", - "question_id": 3419, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006367", - "question_id": 3426, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004613", - "question_id": 3433, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007273", - "question_id": 3437, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001869", - "question_id": 3443, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001078", - "question_id": 3453, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008491", - "question_id": 3456, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005706", - "question_id": 3479, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005579", - "question_id": 3500, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000763", - "question_id": 3514, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000156", - "question_id": 3516, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005088", - "question_id": 3519, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008703", - "question_id": 3524, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006719", - "question_id": 3526, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005187", - "question_id": 3546, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007359", - "question_id": 3560, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003946", - "question_id": 3563, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003463", - "question_id": 3565, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005598", - "question_id": 3574, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000590", - "question_id": 3576, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003228", - "question_id": 3593, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001507", - "question_id": 3632, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001123", - "question_id": 3637, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008484", - "question_id": 3647, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003611", - "question_id": 3689, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003312", - "question_id": 3704, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001561", - "question_id": 3708, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005488", - "question_id": 3716, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001287", - "question_id": 3735, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001098", - "question_id": 3736, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006033", - "question_id": 3740, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007904", - "question_id": 3756, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006737", - "question_id": 3761, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000198", - "question_id": 3805, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008662", - "question_id": 3818, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002586", - "question_id": 3825, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000922", - "question_id": 3831, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008568", - "question_id": 3839, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005777", - "question_id": 3840, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008133", - "question_id": 3841, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004425", - "question_id": 3848, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002839", - "question_id": 3866, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006639", - "question_id": 3893, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000250", - "question_id": 3901, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008294", - "question_id": 3904, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004992", - "question_id": 3935, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007048", - "question_id": 3963, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001185", - "question_id": 3980, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008940", - "question_id": 3982, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003711", - "question_id": 4021, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000294", - "question_id": 4028, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001221", - "question_id": 4035, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003575", - "question_id": 4041, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002968", - "question_id": 4044, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008276", - "question_id": 4046, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008304", - "question_id": 4059, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005556", - "question_id": 4068, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003753", - "question_id": 4077, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004225", - "question_id": 4083, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003824", - "question_id": 4088, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006838", - "question_id": 4089, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002923", - "question_id": 4091, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000601", - "question_id": 4096, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004818", - "question_id": 4103, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000008", - "question_id": 4117, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007612", - "question_id": 4123, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006672", - "question_id": 4124, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007542", - "question_id": 4138, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003916", - "question_id": 4140, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001946", - "question_id": 4141, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005204", - "question_id": 4145, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005722", - "question_id": 4152, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"banjo\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003161", - "question_id": 4163, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002167", - "question_id": 4168, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00002358", - "question_id": 4176, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006715", - "question_id": 4181, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008134", - "question_id": 4198, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007762", - "question_id": 4238, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00007255", - "question_id": 4242, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007791", - "question_id": 4246, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00005689", - "question_id": 4257, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00001948", - "question_id": 4260, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008932", - "question_id": 4287, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003987", - "question_id": 4296, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007858", - "question_id": 4301, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005793", - "question_id": 4311, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006242", - "question_id": 4327, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007125", - "question_id": 4358, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001435", - "question_id": 4363, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007167", - "question_id": 4367, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00007099", - "question_id": 4374, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002651", - "question_id": 4389, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006126", - "question_id": 4394, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004356", - "question_id": 4399, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000466", - "question_id": 4412, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002872", - "question_id": 4424, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002812", - "question_id": 4430, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006350", - "question_id": 4432, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005018", - "question_id": 4446, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004510", - "question_id": 4467, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00004972", - "question_id": 4468, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006737", - "question_id": 4470, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00001297", - "question_id": 4475, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000335", - "question_id": 4495, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000625", - "question_id": 4507, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008260", - "question_id": 4527, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006489", - "question_id": 4554, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002108", - "question_id": 4560, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006416", - "question_id": 4563, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004856", - "question_id": 4564, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004792", - "question_id": 4571, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005839", - "question_id": 4588, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004500", - "question_id": 4589, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003308", - "question_id": 4590, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00007847", - "question_id": 4609, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000581", - "question_id": 4612, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008774", - "question_id": 4630, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006139", - "question_id": 4634, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006560", - "question_id": 4640, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008542", - "question_id": 4646, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008975", - "question_id": 4647, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004433", - "question_id": 4655, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000051", - "question_id": 4673, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008057", - "question_id": 4679, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006037", - "question_id": 4748, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003182", - "question_id": 4768, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005380", - "question_id": 4776, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006647", - "question_id": 4781, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00003522", - "question_id": 4790, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008363", - "question_id": 4803, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004649", - "question_id": 4819, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002220", - "question_id": 4821, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005219", - "question_id": 4822, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001248", - "question_id": 4841, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008782", - "question_id": 4848, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008402", - "question_id": 4856, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00000982", - "question_id": 4861, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007168", - "question_id": 4875, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00000231", - "question_id": 4891, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007255", - "question_id": 4892, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008569", - "question_id": 4894, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"xylophone\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005072", - "question_id": 4903, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"last\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000570", - "question_id": 4934, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003552", - "question_id": 4940, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00001615", - "question_id": 4941, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001777", - "question_id": 4948, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003501", - "question_id": 4963, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000559", - "question_id": 4981, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007861", - "question_id": 4984, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006878", - "question_id": 4991, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000666", - "question_id": 4993, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004151", - "question_id": 4999, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005760", - "question_id": 5001, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006383", - "question_id": 5008, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000612", - "question_id": 5019, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004625", - "question_id": 5032, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005448", - "question_id": 5033, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"drum\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001060", - "question_id": 5035, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "seven" - }, - { - "video_id": "00001643", - "question_id": 5036, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007655", - "question_id": 5052, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003998", - "question_id": 5072, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002375", - "question_id": 5075, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002190", - "question_id": 5078, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007471", - "question_id": 5080, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00002034", - "question_id": 5082, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003155", - "question_id": 5088, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001446", - "question_id": 5094, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004357", - "question_id": 5104, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002853", - "question_id": 5122, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003562", - "question_id": 5124, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00007655", - "question_id": 5136, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006421", - "question_id": 5139, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003346", - "question_id": 5154, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005927", - "question_id": 5165, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005646", - "question_id": 5180, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "more than ten" - }, - { - "video_id": "00002796", - "question_id": 5198, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00005479", - "question_id": 5201, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006190", - "question_id": 5208, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008482", - "question_id": 5212, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008709", - "question_id": 5229, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008443", - "question_id": 5234, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007478", - "question_id": 5235, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006384", - "question_id": 5236, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002834", - "question_id": 5242, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00001199", - "question_id": 5245, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001909", - "question_id": 5254, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003172", - "question_id": 5265, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008020", - "question_id": 5269, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007571", - "question_id": 5288, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006675", - "question_id": 5292, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00002614", - "question_id": 5298, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003389", - "question_id": 5300, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007165", - "question_id": 5309, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004100", - "question_id": 5311, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00005240", - "question_id": 5314, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003799", - "question_id": 5316, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006897", - "question_id": 5336, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001627", - "question_id": 5339, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002432", - "question_id": 5349, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002917", - "question_id": 5358, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006529", - "question_id": 5385, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004879", - "question_id": 5411, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000461", - "question_id": 5432, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004576", - "question_id": 5439, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002863", - "question_id": 5448, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005043", - "question_id": 5464, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001974", - "question_id": 5469, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000805", - "question_id": 5476, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000093", - "question_id": 5488, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004583", - "question_id": 5494, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"bassoon\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008808", - "question_id": 5499, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"middle\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002905", - "question_id": 5512, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003811", - "question_id": 5513, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005906", - "question_id": 5519, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007764", - "question_id": 5530, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008334", - "question_id": 5531, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002409", - "question_id": 5535, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005090", - "question_id": 5545, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007094", - "question_id": 5550, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002250", - "question_id": 5578, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001698", - "question_id": 5587, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007000", - "question_id": 5598, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005541", - "question_id": 5602, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006233", - "question_id": 5617, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007999", - "question_id": 5640, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000291", - "question_id": 5654, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001224", - "question_id": 5664, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005034", - "question_id": 5682, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007566", - "question_id": 5691, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002149", - "question_id": 5706, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008141", - "question_id": 5707, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004880", - "question_id": 5710, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004165", - "question_id": 5738, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007225", - "question_id": 5740, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00005346", - "question_id": 5742, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00004843", - "question_id": 5745, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005327", - "question_id": 5749, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007941", - "question_id": 5770, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003060", - "question_id": 5774, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005140", - "question_id": 5783, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007742", - "question_id": 5784, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008009", - "question_id": 5785, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003103", - "question_id": 5798, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002148", - "question_id": 5813, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004160", - "question_id": 5816, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000338", - "question_id": 5825, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006717", - "question_id": 5835, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000117", - "question_id": 5838, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003571", - "question_id": 5855, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007489", - "question_id": 5884, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002606", - "question_id": 5897, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000829", - "question_id": 5950, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008666", - "question_id": 5958, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001803", - "question_id": 5987, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003205", - "question_id": 6008, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008392", - "question_id": 6009, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005962", - "question_id": 6015, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006836", - "question_id": 6017, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004668", - "question_id": 6024, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008364", - "question_id": 6032, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"flute\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000883", - "question_id": 6034, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001363", - "question_id": 6042, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008261", - "question_id": 6064, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000434", - "question_id": 6089, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003893", - "question_id": 6104, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007962", - "question_id": 6111, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003206", - "question_id": 6132, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005926", - "question_id": 6143, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005754", - "question_id": 6153, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006171", - "question_id": 6167, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00000547", - "question_id": 6170, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004842", - "question_id": 6173, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004803", - "question_id": 6186, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000073", - "question_id": 6191, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003021", - "question_id": 6192, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006978", - "question_id": 6205, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003857", - "question_id": 6214, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001554", - "question_id": 6217, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005288", - "question_id": 6223, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002937", - "question_id": 6240, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008178", - "question_id": 6290, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001516", - "question_id": 6299, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000020", - "question_id": 6318, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007195", - "question_id": 6332, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000739", - "question_id": 6344, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003626", - "question_id": 6356, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003698", - "question_id": 6357, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008492", - "question_id": 6361, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004752", - "question_id": 6378, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002806", - "question_id": 6386, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006056", - "question_id": 6411, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001793", - "question_id": 6415, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005599", - "question_id": 6417, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006583", - "question_id": 6426, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003220", - "question_id": 6430, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006966", - "question_id": 6459, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005600", - "question_id": 6460, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001974", - "question_id": 6463, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005216", - "question_id": 6481, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002791", - "question_id": 6482, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008620", - "question_id": 6486, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006143", - "question_id": 6511, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00002400", - "question_id": 6522, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006436", - "question_id": 6524, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004914", - "question_id": 6540, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006037", - "question_id": 6550, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001805", - "question_id": 6569, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007250", - "question_id": 6606, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001889", - "question_id": 6621, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000714", - "question_id": 6645, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003879", - "question_id": 6648, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00000522", - "question_id": 6659, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000034", - "question_id": 6714, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005201", - "question_id": 6720, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002995", - "question_id": 6728, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006112", - "question_id": 6740, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000029", - "question_id": 6748, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003422", - "question_id": 6762, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002945", - "question_id": 6791, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002449", - "question_id": 6800, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007963", - "question_id": 6821, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007779", - "question_id": 6824, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007285", - "question_id": 6827, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004185", - "question_id": 6830, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006629", - "question_id": 6844, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003661", - "question_id": 6863, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006570", - "question_id": 6868, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006004", - "question_id": 6881, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000378", - "question_id": 6917, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008040", - "question_id": 6928, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001373", - "question_id": 6944, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006980", - "question_id": 6958, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006865", - "question_id": 6977, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003624", - "question_id": 6979, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004941", - "question_id": 6991, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"last\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00006192", - "question_id": 7015, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00008329", - "question_id": 7026, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000330", - "question_id": 7045, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005748", - "question_id": 7047, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004493", - "question_id": 7058, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002376", - "question_id": 7061, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006426", - "question_id": 7062, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006557", - "question_id": 7076, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005397", - "question_id": 7105, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00007679", - "question_id": 7111, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008170", - "question_id": 7113, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003169", - "question_id": 7131, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006080", - "question_id": 7149, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006704", - "question_id": 7163, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005265", - "question_id": 7166, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000636", - "question_id": 7175, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006121", - "question_id": 7187, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003055", - "question_id": 7206, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00007995", - "question_id": 7214, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003892", - "question_id": 7246, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005409", - "question_id": 7248, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001827", - "question_id": 7250, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004086", - "question_id": 7251, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001535", - "question_id": 7255, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006608", - "question_id": 7257, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003234", - "question_id": 7266, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00000823", - "question_id": 7285, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008789", - "question_id": 7349, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005937", - "question_id": 7382, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007220", - "question_id": 7389, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006535", - "question_id": 7399, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00004749", - "question_id": 7402, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003711", - "question_id": 7436, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008238", - "question_id": 7440, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008193", - "question_id": 7447, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003320", - "question_id": 7448, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005381", - "question_id": 7454, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005394", - "question_id": 7456, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004460", - "question_id": 7464, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006128", - "question_id": 7490, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002274", - "question_id": 7494, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00007644", - "question_id": 7506, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000864", - "question_id": 7511, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007765", - "question_id": 7516, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000547", - "question_id": 7520, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007349", - "question_id": 7526, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003324", - "question_id": 7528, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003416", - "question_id": 7533, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000343", - "question_id": 7546, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00001352", - "question_id": 7586, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006997", - "question_id": 7601, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007270", - "question_id": 7604, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006988", - "question_id": 7605, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007480", - "question_id": 7608, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00004877", - "question_id": 7641, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"ukulele\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008720", - "question_id": 7648, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00002972", - "question_id": 7656, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002698", - "question_id": 7677, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008132", - "question_id": 7681, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000399", - "question_id": 7688, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006922", - "question_id": 7694, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00005634", - "question_id": 7706, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006538", - "question_id": 7719, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006542", - "question_id": 7732, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008823", - "question_id": 7742, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008361", - "question_id": 7757, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007204", - "question_id": 7766, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002568", - "question_id": 7768, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006514", - "question_id": 7773, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002167", - "question_id": 7779, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008750", - "question_id": 7784, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000059", - "question_id": 7788, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004728", - "question_id": 7791, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00008285", - "question_id": 7794, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002502", - "question_id": 7799, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000461", - "question_id": 7809, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005361", - "question_id": 7823, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008571", - "question_id": 7854, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001203", - "question_id": 7858, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00001521", - "question_id": 7865, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00007855", - "question_id": 7880, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007717", - "question_id": 7881, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008709", - "question_id": 7891, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007304", - "question_id": 7903, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003037", - "question_id": 7907, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00005020", - "question_id": 7929, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005394", - "question_id": 7939, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000313", - "question_id": 7973, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001949", - "question_id": 7993, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004915", - "question_id": 8004, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007773", - "question_id": 8014, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00007255", - "question_id": 8035, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004382", - "question_id": 8037, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003220", - "question_id": 8054, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006566", - "question_id": 8093, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003923", - "question_id": 8097, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005181", - "question_id": 8122, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002712", - "question_id": 8126, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000212", - "question_id": 8138, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00004585", - "question_id": 8141, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001548", - "question_id": 8175, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001889", - "question_id": 8182, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001983", - "question_id": 8203, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00005874", - "question_id": 8214, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002991", - "question_id": 8216, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00002412", - "question_id": 8222, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004183", - "question_id": 8257, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00003010", - "question_id": 8266, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000004", - "question_id": 8269, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008957", - "question_id": 8282, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00001348", - "question_id": 8285, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00007823", - "question_id": 8299, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005934", - "question_id": 8318, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008090", - "question_id": 8326, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001012", - "question_id": 8334, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004871", - "question_id": 8343, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00006010", - "question_id": 8348, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"clarinet\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007430", - "question_id": 8355, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006378", - "question_id": 8358, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00003523", - "question_id": 8365, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00007539", - "question_id": 8372, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007610", - "question_id": 8374, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004086", - "question_id": 8406, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004086", - "question_id": 8406, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006856", - "question_id": 8425, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005595", - "question_id": 8439, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006302", - "question_id": 8474, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001739", - "question_id": 8479, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007263", - "question_id": 8482, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003254", - "question_id": 8484, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004474", - "question_id": 8489, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003561", - "question_id": 8493, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00007024", - "question_id": 8514, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007626", - "question_id": 8522, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001582", - "question_id": 8539, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001363", - "question_id": 8543, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00006354", - "question_id": 8554, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00005865", - "question_id": 8561, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004854", - "question_id": 8564, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004644", - "question_id": 8572, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000045", - "question_id": 8585, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008306", - "question_id": 8598, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004539", - "question_id": 8627, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00005617", - "question_id": 8657, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007772", - "question_id": 8663, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005474", - "question_id": 8683, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005801", - "question_id": 8708, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00001151", - "question_id": 8717, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007358", - "question_id": 8744, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00000926", - "question_id": 8754, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004988", - "question_id": 8796, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002381", - "question_id": 8801, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003362", - "question_id": 8808, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002655", - "question_id": 8822, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00005968", - "question_id": 8831, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002958", - "question_id": 8838, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00007396", - "question_id": 8846, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00005839", - "question_id": 8850, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001000", - "question_id": 8864, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003893", - "question_id": 8872, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005244", - "question_id": 8875, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000636", - "question_id": 8886, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001617", - "question_id": 8892, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00000269", - "question_id": 8912, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005183", - "question_id": 8927, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007218", - "question_id": 8934, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003133", - "question_id": 8947, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00000137", - "question_id": 8955, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007944", - "question_id": 8962, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"tuba\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001494", - "question_id": 8967, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003714", - "question_id": 8969, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00002445", - "question_id": 8977, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006778", - "question_id": 8983, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008931", - "question_id": 9021, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004331", - "question_id": 9035, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001905", - "question_id": 9055, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001706", - "question_id": 9076, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005276", - "question_id": 9091, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008099", - "question_id": 9106, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001100", - "question_id": 9114, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00007808", - "question_id": 9117, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008444", - "question_id": 9119, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003945", - "question_id": 9122, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008232", - "question_id": 9129, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00007003", - "question_id": 9144, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001429", - "question_id": 9157, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007662", - "question_id": 9163, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005429", - "question_id": 9169, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006322", - "question_id": 9173, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006153", - "question_id": 9175, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008152", - "question_id": 9181, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"banjo\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000937", - "question_id": 9188, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002405", - "question_id": 9193, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00006846", - "question_id": 9201, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005082", - "question_id": 9212, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003012", - "question_id": 9220, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006829", - "question_id": 9232, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007955", - "question_id": 9246, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008201", - "question_id": 9253, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001559", - "question_id": 9257, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000964", - "question_id": 9264, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005260", - "question_id": 9272, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007972", - "question_id": 9274, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005315", - "question_id": 9289, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00005298", - "question_id": 9294, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"trumpet\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001458", - "question_id": 9298, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006504", - "question_id": 9318, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000477", - "question_id": 9342, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007816", - "question_id": 9357, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001646", - "question_id": 9376, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004757", - "question_id": 9379, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00001035", - "question_id": 9421, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003072", - "question_id": 9424, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003031", - "question_id": 9471, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002296", - "question_id": 9473, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00000191", - "question_id": 9482, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003632", - "question_id": 9495, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004629", - "question_id": 9501, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002593", - "question_id": 9522, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007428", - "question_id": 9533, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000691", - "question_id": 9545, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00005097", - "question_id": 9547, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00006683", - "question_id": 9561, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"drum\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007058", - "question_id": 9591, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002682", - "question_id": 9612, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00008684", - "question_id": 9619, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007111", - "question_id": 9633, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007185", - "question_id": 9637, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005662", - "question_id": 9639, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007231", - "question_id": 9650, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005343", - "question_id": 9659, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005343", - "question_id": 9659, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001453", - "question_id": 9669, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008204", - "question_id": 9683, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001850", - "question_id": 9700, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000240", - "question_id": 9706, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00007036", - "question_id": 9707, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000722", - "question_id": 9708, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008182", - "question_id": 9710, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006614", - "question_id": 9732, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004725", - "question_id": 9738, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"suona\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000982", - "question_id": 9743, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004527", - "question_id": 9746, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00004555", - "question_id": 9771, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003904", - "question_id": 9775, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005221", - "question_id": 9780, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006182", - "question_id": 9789, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008771", - "question_id": 9812, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001327", - "question_id": 9824, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002592", - "question_id": 9840, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008082", - "question_id": 9849, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003575", - "question_id": 9858, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001536", - "question_id": 9861, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000418", - "question_id": 9878, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001895", - "question_id": 9880, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003643", - "question_id": 9928, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00005230", - "question_id": 9942, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007549", - "question_id": 9946, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007235", - "question_id": 9964, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000718", - "question_id": 9992, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008278", - "question_id": 10009, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004402", - "question_id": 10019, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007495", - "question_id": 10024, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002117", - "question_id": 10033, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"electric_bass\", \"left\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002036", - "question_id": 10035, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001768", - "question_id": 10049, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001406", - "question_id": 10051, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006865", - "question_id": 10072, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002320", - "question_id": 10073, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000827", - "question_id": 10074, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006024", - "question_id": 10079, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003448", - "question_id": 10084, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008014", - "question_id": 10090, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008838", - "question_id": 10117, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004356", - "question_id": 10129, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00000377", - "question_id": 10132, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000280", - "question_id": 10134, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004605", - "question_id": 10142, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008345", - "question_id": 10145, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006474", - "question_id": 10146, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005459", - "question_id": 10149, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000914", - "question_id": 10171, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000205", - "question_id": 10176, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002627", - "question_id": 10192, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004947", - "question_id": 10201, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007044", - "question_id": 10206, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000725", - "question_id": 10212, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"pipa\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008155", - "question_id": 10229, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00007633", - "question_id": 10238, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001141", - "question_id": 10240, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005112", - "question_id": 10243, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001725", - "question_id": 10246, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005869", - "question_id": 10247, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002487", - "question_id": 10264, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003380", - "question_id": 10274, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003737", - "question_id": 10275, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006758", - "question_id": 10288, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007985", - "question_id": 10337, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001912", - "question_id": 10340, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003604", - "question_id": 10344, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005801", - "question_id": 10351, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007296", - "question_id": 10355, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003788", - "question_id": 10362, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007886", - "question_id": 10370, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005721", - "question_id": 10372, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000855", - "question_id": 10376, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"middle\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004044", - "question_id": 10393, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008749", - "question_id": 10409, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008692", - "question_id": 10410, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006096", - "question_id": 10411, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002242", - "question_id": 10419, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004895", - "question_id": 10424, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000316", - "question_id": 10426, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003957", - "question_id": 10439, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006481", - "question_id": 10462, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002938", - "question_id": 10468, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002367", - "question_id": 10479, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001424", - "question_id": 10500, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000801", - "question_id": 10501, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001544", - "question_id": 10506, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004884", - "question_id": 10513, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001135", - "question_id": 10518, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006376", - "question_id": 10530, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003428", - "question_id": 10545, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000012", - "question_id": 10548, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001972", - "question_id": 10565, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002158", - "question_id": 10619, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001723", - "question_id": 10625, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007559", - "question_id": 10672, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00004602", - "question_id": 10700, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"xylophone\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006866", - "question_id": 10713, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00005595", - "question_id": 10748, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006114", - "question_id": 10768, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003040", - "question_id": 10781, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007414", - "question_id": 10803, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"guzheng\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00008331", - "question_id": 10805, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007588", - "question_id": 10809, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00008618", - "question_id": 10842, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001067", - "question_id": 10852, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002023", - "question_id": 10856, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002994", - "question_id": 10863, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002754", - "question_id": 10891, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00002353", - "question_id": 10907, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003655", - "question_id": 10922, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004314", - "question_id": 10935, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003092", - "question_id": 10941, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002897", - "question_id": 10943, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008369", - "question_id": 10965, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00003407", - "question_id": 10968, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000972", - "question_id": 10986, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001473", - "question_id": 10999, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004023", - "question_id": 11021, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008771", - "question_id": 11090, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005235", - "question_id": 11102, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002043", - "question_id": 11113, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003913", - "question_id": 11137, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000733", - "question_id": 11143, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008120", - "question_id": 11145, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002725", - "question_id": 11158, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006480", - "question_id": 11162, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001127", - "question_id": 11163, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00005319", - "question_id": 11164, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003742", - "question_id": 11166, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004861", - "question_id": 11168, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001592", - "question_id": 11170, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006263", - "question_id": 11179, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005493", - "question_id": 11180, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001334", - "question_id": 11183, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006091", - "question_id": 11221, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006598", - "question_id": 11222, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006806", - "question_id": 11238, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002155", - "question_id": 11240, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005525", - "question_id": 11248, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000608", - "question_id": 11252, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004303", - "question_id": 11256, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002961", - "question_id": 11273, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008505", - "question_id": 11274, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002305", - "question_id": 11280, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008422", - "question_id": 11281, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007879", - "question_id": 11285, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001364", - "question_id": 11287, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000767", - "question_id": 11291, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004361", - "question_id": 11326, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003996", - "question_id": 11329, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007052", - "question_id": 11332, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006765", - "question_id": 11334, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002109", - "question_id": 11338, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002236", - "question_id": 11345, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002531", - "question_id": 11347, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003056", - "question_id": 11357, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008699", - "question_id": 11363, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001918", - "question_id": 11367, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000381", - "question_id": 11395, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00000721", - "question_id": 11402, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005847", - "question_id": 11412, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002297", - "question_id": 11413, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001874", - "question_id": 11444, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003353", - "question_id": 11447, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001581", - "question_id": 11452, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007214", - "question_id": 11459, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004833", - "question_id": 11465, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001342", - "question_id": 11470, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006230", - "question_id": 11475, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007516", - "question_id": 11479, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000651", - "question_id": 11498, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006991", - "question_id": 11528, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008940", - "question_id": 11546, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002894", - "question_id": 11548, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002188", - "question_id": 11575, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005707", - "question_id": 11583, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003029", - "question_id": 11592, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002842", - "question_id": 11624, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001474", - "question_id": 11639, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003544", - "question_id": 11649, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00005039", - "question_id": 11653, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008467", - "question_id": 11660, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007980", - "question_id": 11667, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004198", - "question_id": 11670, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005105", - "question_id": 11671, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"pipa\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005090", - "question_id": 11674, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006829", - "question_id": 11676, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00004692", - "question_id": 11677, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00007533", - "question_id": 11689, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003872", - "question_id": 11719, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006846", - "question_id": 11726, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006406", - "question_id": 11729, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006749", - "question_id": 11741, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000545", - "question_id": 11757, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005708", - "question_id": 11776, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007899", - "question_id": 11797, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003471", - "question_id": 11799, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006654", - "question_id": 11805, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00000387", - "question_id": 11808, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001309", - "question_id": 11823, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002743", - "question_id": 11831, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006352", - "question_id": 11859, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003394", - "question_id": 11863, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005808", - "question_id": 11865, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00000797", - "question_id": 11879, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003804", - "question_id": 11909, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004264", - "question_id": 11910, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008867", - "question_id": 11923, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003686", - "question_id": 11962, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008675", - "question_id": 11968, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004164", - "question_id": 11970, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00005067", - "question_id": 11974, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008014", - "question_id": 11979, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"erhu\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000472", - "question_id": 11983, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002126", - "question_id": 11997, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004700", - "question_id": 12005, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005324", - "question_id": 12036, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008036", - "question_id": 12043, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00003841", - "question_id": 12048, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004696", - "question_id": 12068, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006542", - "question_id": 12072, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000687", - "question_id": 12076, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "eight" - }, - { - "video_id": "00002853", - "question_id": 12078, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008567", - "question_id": 12087, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000521", - "question_id": 12095, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00008422", - "question_id": 12097, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005959", - "question_id": 12101, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007867", - "question_id": 12108, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001837", - "question_id": 12116, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007036", - "question_id": 12142, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003450", - "question_id": 12149, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"last\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006917", - "question_id": 12156, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006917", - "question_id": 12156, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000738", - "question_id": 12179, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003488", - "question_id": 12190, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008126", - "question_id": 12205, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00008066", - "question_id": 12265, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00000334", - "question_id": 12266, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001673", - "question_id": 12270, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004416", - "question_id": 12274, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00007415", - "question_id": 12276, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000516", - "question_id": 12293, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005011", - "question_id": 12295, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001752", - "question_id": 12306, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000526", - "question_id": 12316, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"accordion\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008394", - "question_id": 12317, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004175", - "question_id": 12331, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004635", - "question_id": 12351, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00003794", - "question_id": 12355, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000757", - "question_id": 12366, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003364", - "question_id": 12373, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008950", - "question_id": 12379, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003662", - "question_id": 12402, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00006384", - "question_id": 12425, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006657", - "question_id": 12443, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007454", - "question_id": 12461, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001187", - "question_id": 12503, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006071", - "question_id": 12514, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000106", - "question_id": 12537, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003269", - "question_id": 12549, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008268", - "question_id": 12564, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bagpipe\", \"right\", \"drum\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002787", - "question_id": 12567, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000907", - "question_id": 12570, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006552", - "question_id": 12576, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002510", - "question_id": 12578, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005699", - "question_id": 12613, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006696", - "question_id": 12616, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00006144", - "question_id": 12623, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005674", - "question_id": 12631, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004144", - "question_id": 12633, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008311", - "question_id": 12639, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00004076", - "question_id": 12660, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005025", - "question_id": 12662, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002139", - "question_id": 12676, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001598", - "question_id": 12688, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002877", - "question_id": 12693, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008169", - "question_id": 12711, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00004481", - "question_id": 12714, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003796", - "question_id": 12721, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008657", - "question_id": 12724, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001230", - "question_id": 12728, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004761", - "question_id": 12752, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007533", - "question_id": 12755, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00002376", - "question_id": 12759, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00005352", - "question_id": 12771, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008383", - "question_id": 12777, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004178", - "question_id": 12788, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008062", - "question_id": 12793, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"middle\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008434", - "question_id": 12798, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008326", - "question_id": 12799, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001213", - "question_id": 12811, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000149", - "question_id": 12820, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000149", - "question_id": 12820, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008788", - "question_id": 12827, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00005370", - "question_id": 12852, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000129", - "question_id": 12854, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000129", - "question_id": 12854, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006886", - "question_id": 12856, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004290", - "question_id": 12858, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000977", - "question_id": 12863, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00003223", - "question_id": 12878, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004628", - "question_id": 12879, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007867", - "question_id": 12880, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000410", - "question_id": 12882, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001157", - "question_id": 12883, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00008901", - "question_id": 12893, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007051", - "question_id": 12923, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00006927", - "question_id": 12924, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00008014", - "question_id": 12959, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001902", - "question_id": 12964, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000592", - "question_id": 12968, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005712", - "question_id": 12971, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008802", - "question_id": 12981, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008452", - "question_id": 12985, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005949", - "question_id": 12992, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007395", - "question_id": 13024, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006792", - "question_id": 13043, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001020", - "question_id": 13055, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005264", - "question_id": 13078, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00005981", - "question_id": 13083, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008717", - "question_id": 13103, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003478", - "question_id": 13107, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001651", - "question_id": 13150, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004670", - "question_id": 13168, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00004202", - "question_id": 13182, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002875", - "question_id": 13199, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005091", - "question_id": 13218, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003249", - "question_id": 13224, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"acoustic_guitar\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006041", - "question_id": 13228, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005613", - "question_id": 13235, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005644", - "question_id": 13247, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000699", - "question_id": 13249, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002603", - "question_id": 13272, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008812", - "question_id": 13323, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006603", - "question_id": 13359, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003873", - "question_id": 13366, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004598", - "question_id": 13372, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006629", - "question_id": 13383, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000171", - "question_id": 13384, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00000541", - "question_id": 13397, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002279", - "question_id": 13409, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002132", - "question_id": 13415, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00006852", - "question_id": 13423, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004509", - "question_id": 13427, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006324", - "question_id": 13443, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006952", - "question_id": 13447, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"electric_bass\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004787", - "question_id": 13448, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003840", - "question_id": 13451, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00005388", - "question_id": 13461, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00005102", - "question_id": 13470, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000362", - "question_id": 13479, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001170", - "question_id": 13487, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00001261", - "question_id": 13499, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001399", - "question_id": 13518, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00008552", - "question_id": 13520, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002849", - "question_id": 13535, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000582", - "question_id": 13536, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00001950", - "question_id": 13545, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003252", - "question_id": 13549, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008162", - "question_id": 13551, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003410", - "question_id": 13571, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000604", - "question_id": 13584, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00000004", - "question_id": 13588, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007624", - "question_id": 13613, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"guzheng\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007471", - "question_id": 13615, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005648", - "question_id": 13627, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001976", - "question_id": 13656, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"electric_bass\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004257", - "question_id": 13659, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002519", - "question_id": 13662, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008088", - "question_id": 13671, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00008406", - "question_id": 13679, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007906", - "question_id": 13692, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00002318", - "question_id": 13706, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"middle\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003700", - "question_id": 13709, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008520", - "question_id": 13723, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004004", - "question_id": 13726, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002638", - "question_id": 13727, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003797", - "question_id": 13730, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003858", - "question_id": 13731, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002469", - "question_id": 13735, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000528", - "question_id": 13762, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000098", - "question_id": 13769, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000016", - "question_id": 13772, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003689", - "question_id": 13783, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007312", - "question_id": 13789, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006644", - "question_id": 13836, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005010", - "question_id": 13840, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003729", - "question_id": 13842, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00007019", - "question_id": 13843, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00000637", - "question_id": 13847, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001303", - "question_id": 13864, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00000252", - "question_id": 13867, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001778", - "question_id": 13895, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002256", - "question_id": 13904, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006438", - "question_id": 13915, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003586", - "question_id": 13925, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00004716", - "question_id": 13950, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"banjo\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000473", - "question_id": 13956, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008737", - "question_id": 13969, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007283", - "question_id": 13975, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001999", - "question_id": 13986, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002360", - "question_id": 13988, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006975", - "question_id": 13990, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008955", - "question_id": 14062, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006085", - "question_id": 14067, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008924", - "question_id": 14068, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001655", - "question_id": 14088, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003505", - "question_id": 14103, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bagpipe\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000144", - "question_id": 14108, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000909", - "question_id": 14112, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00002915", - "question_id": 14120, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003663", - "question_id": 14122, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00000163", - "question_id": 14126, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007335", - "question_id": 14134, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007827", - "question_id": 14140, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001824", - "question_id": 14151, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001650", - "question_id": 14156, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001757", - "question_id": 14160, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007334", - "question_id": 14165, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006898", - "question_id": 14166, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"right\", \"electric_bass\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005884", - "question_id": 14209, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005776", - "question_id": 14213, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007699", - "question_id": 14246, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004072", - "question_id": 14249, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007898", - "question_id": 14260, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003510", - "question_id": 14263, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002761", - "question_id": 14266, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008951", - "question_id": 14269, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003851", - "question_id": 14272, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003269", - "question_id": 14278, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003576", - "question_id": 14296, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002652", - "question_id": 14305, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002413", - "question_id": 14316, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000768", - "question_id": 14326, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005318", - "question_id": 14389, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006512", - "question_id": 14396, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008348", - "question_id": 14408, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005180", - "question_id": 14413, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003980", - "question_id": 14460, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00007028", - "question_id": 14461, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001493", - "question_id": 14466, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00001934", - "question_id": 14468, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001934", - "question_id": 14468, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008826", - "question_id": 14470, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003371", - "question_id": 14474, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"violin\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004661", - "question_id": 14478, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"pipa\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000947", - "question_id": 14497, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002445", - "question_id": 14503, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003025", - "question_id": 14504, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002569", - "question_id": 14506, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003210", - "question_id": 14542, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007356", - "question_id": 14555, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006460", - "question_id": 14592, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008649", - "question_id": 14593, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000678", - "question_id": 14596, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005751", - "question_id": 14606, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003457", - "question_id": 14609, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003769", - "question_id": 14646, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002921", - "question_id": 14650, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006468", - "question_id": 14659, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007793", - "question_id": 14660, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001901", - "question_id": 14670, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003292", - "question_id": 14677, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"middle\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000625", - "question_id": 14678, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000810", - "question_id": 14685, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007945", - "question_id": 14690, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002958", - "question_id": 14697, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001187", - "question_id": 14699, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00007006", - "question_id": 14719, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005059", - "question_id": 14730, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008283", - "question_id": 14740, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005344", - "question_id": 14755, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00001034", - "question_id": 14761, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00008461", - "question_id": 14776, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002612", - "question_id": 14795, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007141", - "question_id": 14799, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003247", - "question_id": 14812, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003954", - "question_id": 14851, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000616", - "question_id": 14857, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00003912", - "question_id": 14873, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00000194", - "question_id": 14880, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000194", - "question_id": 14880, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000171", - "question_id": 14899, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00005694", - "question_id": 14942, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006889", - "question_id": 14964, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001000", - "question_id": 14988, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003598", - "question_id": 14990, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005786", - "question_id": 14997, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000590", - "question_id": 14998, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001671", - "question_id": 15000, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00005934", - "question_id": 15004, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006283", - "question_id": 15010, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001785", - "question_id": 15015, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008296", - "question_id": 15033, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007297", - "question_id": 15051, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003089", - "question_id": 15053, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004686", - "question_id": 15060, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008540", - "question_id": 15062, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00001475", - "question_id": 15065, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003492", - "question_id": 15074, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004403", - "question_id": 15076, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00002076", - "question_id": 15093, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002635", - "question_id": 15096, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003861", - "question_id": 15106, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00004319", - "question_id": 15115, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005813", - "question_id": 15121, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007581", - "question_id": 15138, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006869", - "question_id": 15154, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001090", - "question_id": 15161, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002479", - "question_id": 15193, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003187", - "question_id": 15211, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000234", - "question_id": 15232, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001494", - "question_id": 15234, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000042", - "question_id": 15241, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003480", - "question_id": 15250, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008201", - "question_id": 15262, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002839", - "question_id": 15265, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006526", - "question_id": 15266, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000210", - "question_id": 15269, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005333", - "question_id": 15281, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004862", - "question_id": 15283, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002757", - "question_id": 15303, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004402", - "question_id": 15312, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001024", - "question_id": 15324, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005936", - "question_id": 15330, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00007119", - "question_id": 15364, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006510", - "question_id": 15365, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "more than ten" - }, - { - "video_id": "00003554", - "question_id": 15393, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001668", - "question_id": 15435, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006246", - "question_id": 15437, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001728", - "question_id": 15441, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006813", - "question_id": 15445, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006285", - "question_id": 15452, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005474", - "question_id": 15489, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005645", - "question_id": 15497, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004841", - "question_id": 15510, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003414", - "question_id": 15523, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002976", - "question_id": 15530, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007607", - "question_id": 15534, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007685", - "question_id": 15545, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005667", - "question_id": 15549, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003079", - "question_id": 15558, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001776", - "question_id": 15568, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003112", - "question_id": 15575, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007206", - "question_id": 15584, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006837", - "question_id": 15598, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008733", - "question_id": 15604, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003367", - "question_id": 15610, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008309", - "question_id": 15619, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008414", - "question_id": 15621, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002997", - "question_id": 15635, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008145", - "question_id": 15637, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002540", - "question_id": 15641, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00007483", - "question_id": 15642, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008724", - "question_id": 15654, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008971", - "question_id": 15660, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007225", - "question_id": 15663, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005451", - "question_id": 15672, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008686", - "question_id": 15674, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007689", - "question_id": 15675, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005205", - "question_id": 15702, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004376", - "question_id": 15705, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001712", - "question_id": 15706, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006887", - "question_id": 15720, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004387", - "question_id": 15721, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003931", - "question_id": 15732, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002200", - "question_id": 15740, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00004042", - "question_id": 15758, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00004421", - "question_id": 15774, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00004767", - "question_id": 15775, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003291", - "question_id": 15786, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003676", - "question_id": 15790, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"tuba\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001388", - "question_id": 15801, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002478", - "question_id": 15821, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004904", - "question_id": 15822, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004602", - "question_id": 15829, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004746", - "question_id": 15830, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008218", - "question_id": 15833, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001761", - "question_id": 15844, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00007809", - "question_id": 15847, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002570", - "question_id": 15848, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000557", - "question_id": 15851, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"xylophone\", \"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003492", - "question_id": 15859, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004364", - "question_id": 15865, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006461", - "question_id": 15903, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00007978", - "question_id": 15913, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008166", - "question_id": 15914, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008756", - "question_id": 15933, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003909", - "question_id": 15937, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003975", - "question_id": 15948, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005152", - "question_id": 15951, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002817", - "question_id": 15961, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003648", - "question_id": 15965, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003127", - "question_id": 15966, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001541", - "question_id": 15971, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000756", - "question_id": 15979, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003623", - "question_id": 15992, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004840", - "question_id": 15997, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006592", - "question_id": 16000, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007811", - "question_id": 16064, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006948", - "question_id": 16068, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001979", - "question_id": 16079, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007447", - "question_id": 16085, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003869", - "question_id": 16087, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001354", - "question_id": 16094, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000539", - "question_id": 16102, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007720", - "question_id": 16113, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003397", - "question_id": 16115, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001125", - "question_id": 16119, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002040", - "question_id": 16120, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003387", - "question_id": 16121, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001909", - "question_id": 16134, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"pipa\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00000620", - "question_id": 16135, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007989", - "question_id": 16142, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000123", - "question_id": 16161, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004674", - "question_id": 16162, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008688", - "question_id": 16164, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008600", - "question_id": 16171, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007843", - "question_id": 16187, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002910", - "question_id": 16190, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005635", - "question_id": 16192, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000296", - "question_id": 16195, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008048", - "question_id": 16210, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001796", - "question_id": 16230, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007102", - "question_id": 16250, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003803", - "question_id": 16257, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00007678", - "question_id": 16274, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006202", - "question_id": 16276, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005658", - "question_id": 16289, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"right\", \"drum\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000946", - "question_id": 16306, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004565", - "question_id": 16315, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006058", - "question_id": 16318, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004664", - "question_id": 16366, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002228", - "question_id": 16370, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007075", - "question_id": 16391, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008234", - "question_id": 16416, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001087", - "question_id": 16433, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003449", - "question_id": 16438, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007376", - "question_id": 16441, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004001", - "question_id": 16446, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005125", - "question_id": 16449, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006572", - "question_id": 16452, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003747", - "question_id": 16454, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007916", - "question_id": 16476, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000701", - "question_id": 16502, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007284", - "question_id": 16509, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001426", - "question_id": 16549, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002746", - "question_id": 16553, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000995", - "question_id": 16555, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002459", - "question_id": 16565, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007593", - "question_id": 16567, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003213", - "question_id": 16568, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004342", - "question_id": 16576, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004595", - "question_id": 16590, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "eight" - }, - { - "video_id": "00003442", - "question_id": 16595, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000382", - "question_id": 16668, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004076", - "question_id": 16696, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00004399", - "question_id": 16722, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005137", - "question_id": 16731, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007414", - "question_id": 16743, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002114", - "question_id": 16752, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007289", - "question_id": 16755, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00000152", - "question_id": 16757, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000057", - "question_id": 16760, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005249", - "question_id": 16769, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008083", - "question_id": 16794, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00006382", - "question_id": 16825, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005797", - "question_id": 16852, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001263", - "question_id": 16863, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003618", - "question_id": 16866, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002931", - "question_id": 16885, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000826", - "question_id": 16896, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003933", - "question_id": 16898, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006834", - "question_id": 16920, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004016", - "question_id": 16922, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001180", - "question_id": 16937, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00008733", - "question_id": 16939, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003139", - "question_id": 16952, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000440", - "question_id": 16983, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005744", - "question_id": 16984, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008871", - "question_id": 17005, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008034", - "question_id": 17016, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002723", - "question_id": 17025, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004797", - "question_id": 17030, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002961", - "question_id": 17038, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002924", - "question_id": 17047, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002624", - "question_id": 17049, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00003788", - "question_id": 17051, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001762", - "question_id": 17053, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000265", - "question_id": 17059, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002678", - "question_id": 17081, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004981", - "question_id": 17105, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000002", - "question_id": 17115, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001056", - "question_id": 17139, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004973", - "question_id": 17155, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006840", - "question_id": 17159, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006028", - "question_id": 17162, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005860", - "question_id": 17176, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006263", - "question_id": 17181, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000483", - "question_id": 17187, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000145", - "question_id": 17190, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00004097", - "question_id": 17199, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00004309", - "question_id": 17211, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006715", - "question_id": 17212, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005767", - "question_id": 17225, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005201", - "question_id": 17252, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005260", - "question_id": 17275, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003983", - "question_id": 17299, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006881", - "question_id": 17304, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00003563", - "question_id": 17308, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001928", - "question_id": 17312, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004611", - "question_id": 17320, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00001387", - "question_id": 17326, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001070", - "question_id": 17358, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00005989", - "question_id": 17361, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000270", - "question_id": 17368, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000875", - "question_id": 17369, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007428", - "question_id": 17376, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000034", - "question_id": 17378, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003089", - "question_id": 17391, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00006303", - "question_id": 17405, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008403", - "question_id": 17410, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007497", - "question_id": 17413, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005743", - "question_id": 17423, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003305", - "question_id": 17433, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002194", - "question_id": 17449, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00008660", - "question_id": 17459, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006666", - "question_id": 17470, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00005423", - "question_id": 17485, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003257", - "question_id": 17488, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001214", - "question_id": 17495, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008930", - "question_id": 17508, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007179", - "question_id": 17519, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006028", - "question_id": 17556, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"middle\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008842", - "question_id": 17560, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003856", - "question_id": 17568, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000208", - "question_id": 17590, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003738", - "question_id": 17591, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007475", - "question_id": 17593, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004100", - "question_id": 17604, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005556", - "question_id": 17605, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002274", - "question_id": 17613, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007794", - "question_id": 17620, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006211", - "question_id": 17667, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002605", - "question_id": 17668, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002596", - "question_id": 17671, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008957", - "question_id": 17684, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003195", - "question_id": 17695, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000807", - "question_id": 17705, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00005539", - "question_id": 17724, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001387", - "question_id": 17735, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001338", - "question_id": 17738, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00005298", - "question_id": 17739, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000137", - "question_id": 17753, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008602", - "question_id": 17755, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008548", - "question_id": 17760, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008212", - "question_id": 17761, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005926", - "question_id": 17768, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005153", - "question_id": 17771, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001099", - "question_id": 17799, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000097", - "question_id": 17803, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007299", - "question_id": 17820, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002178", - "question_id": 17861, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003033", - "question_id": 17869, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008900", - "question_id": 17886, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002719", - "question_id": 17906, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002537", - "question_id": 17910, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006812", - "question_id": 17914, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000667", - "question_id": 17918, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"electric_bass\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004489", - "question_id": 17919, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000667", - "question_id": 17924, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002247", - "question_id": 17926, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001955", - "question_id": 17946, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007901", - "question_id": 17952, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004119", - "question_id": 17970, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007081", - "question_id": 17976, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005025", - "question_id": 17979, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00003630", - "question_id": 17988, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006796", - "question_id": 17999, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002474", - "question_id": 18001, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002804", - "question_id": 18003, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001474", - "question_id": 18007, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00008750", - "question_id": 18012, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004697", - "question_id": 18019, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00000907", - "question_id": 18027, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004815", - "question_id": 18031, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001402", - "question_id": 18050, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007147", - "question_id": 18074, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003181", - "question_id": 18075, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005902", - "question_id": 18090, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002492", - "question_id": 18105, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004897", - "question_id": 18108, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003160", - "question_id": 18113, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007526", - "question_id": 18123, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004862", - "question_id": 18137, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000486", - "question_id": 18145, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004648", - "question_id": 18155, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006448", - "question_id": 18158, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001176", - "question_id": 18160, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006117", - "question_id": 18176, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001730", - "question_id": 18179, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005195", - "question_id": 18184, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000325", - "question_id": 18222, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004709", - "question_id": 18223, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006617", - "question_id": 18272, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00001156", - "question_id": 18285, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000873", - "question_id": 18300, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007195", - "question_id": 18303, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000528", - "question_id": 18326, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004068", - "question_id": 18346, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006561", - "question_id": 18347, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002314", - "question_id": 18349, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002998", - "question_id": 18361, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003421", - "question_id": 18371, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00008645", - "question_id": 18380, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002058", - "question_id": 18408, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008108", - "question_id": 18410, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008791", - "question_id": 18434, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002349", - "question_id": 18436, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006413", - "question_id": 18441, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008324", - "question_id": 18446, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000964", - "question_id": 18450, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004937", - "question_id": 18453, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001052", - "question_id": 18460, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"tuba\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006189", - "question_id": 18466, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003881", - "question_id": 18467, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002029", - "question_id": 18477, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001239", - "question_id": 18492, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00003342", - "question_id": 18496, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001624", - "question_id": 18506, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005844", - "question_id": 18509, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003542", - "question_id": 18518, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002387", - "question_id": 18519, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006530", - "question_id": 18526, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002815", - "question_id": 18530, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"xylophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005167", - "question_id": 18531, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001924", - "question_id": 18537, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004098", - "question_id": 18540, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002765", - "question_id": 18541, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000510", - "question_id": 18555, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002737", - "question_id": 18576, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00008109", - "question_id": 18580, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008888", - "question_id": 18596, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005916", - "question_id": 18605, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008517", - "question_id": 18608, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"erhu\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003829", - "question_id": 18611, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005559", - "question_id": 18617, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003661", - "question_id": 18618, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004880", - "question_id": 18619, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006827", - "question_id": 18645, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006134", - "question_id": 18647, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006752", - "question_id": 18652, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005075", - "question_id": 18656, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008480", - "question_id": 18668, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002579", - "question_id": 18690, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006513", - "question_id": 18702, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003371", - "question_id": 18708, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007545", - "question_id": 18712, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001606", - "question_id": 18723, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006955", - "question_id": 18724, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004776", - "question_id": 18725, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005554", - "question_id": 18740, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007245", - "question_id": 18748, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004309", - "question_id": 18758, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005966", - "question_id": 18760, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000359", - "question_id": 18799, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000954", - "question_id": 18803, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003689", - "question_id": 18823, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005310", - "question_id": 18825, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008916", - "question_id": 18826, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007564", - "question_id": 18831, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00007903", - "question_id": 18837, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003114", - "question_id": 18838, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002160", - "question_id": 18840, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001081", - "question_id": 18877, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006047", - "question_id": 18892, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001617", - "question_id": 18919, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000206", - "question_id": 18925, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006091", - "question_id": 18928, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"tuba\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006583", - "question_id": 18939, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002560", - "question_id": 18959, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005731", - "question_id": 18966, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"banjo\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004647", - "question_id": 18970, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007578", - "question_id": 18986, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005672", - "question_id": 18989, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004422", - "question_id": 18994, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004078", - "question_id": 19004, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006495", - "question_id": 19007, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005492", - "question_id": 19013, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005526", - "question_id": 19026, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002464", - "question_id": 19039, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00008054", - "question_id": 19049, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008315", - "question_id": 19084, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006989", - "question_id": 19098, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008114", - "question_id": 19109, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003431", - "question_id": 19113, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005804", - "question_id": 19119, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00008463", - "question_id": 19138, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00008884", - "question_id": 19161, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008151", - "question_id": 19182, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000728", - "question_id": 19184, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002678", - "question_id": 19189, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002252", - "question_id": 19197, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005312", - "question_id": 19200, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002641", - "question_id": 19203, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007658", - "question_id": 19227, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004982", - "question_id": 19244, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007416", - "question_id": 19260, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001924", - "question_id": 19261, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001105", - "question_id": 19275, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000746", - "question_id": 19285, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002345", - "question_id": 19288, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004161", - "question_id": 19292, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007097", - "question_id": 19293, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bagpipe\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005093", - "question_id": 19295, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006392", - "question_id": 19307, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001839", - "question_id": 19337, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00006809", - "question_id": 19348, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000679", - "question_id": 19371, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004676", - "question_id": 19378, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006795", - "question_id": 19388, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001844", - "question_id": 19396, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004367", - "question_id": 19398, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00005149", - "question_id": 19399, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002209", - "question_id": 19402, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"piano\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008026", - "question_id": 19424, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000696", - "question_id": 19434, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008836", - "question_id": 19437, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006373", - "question_id": 19448, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007941", - "question_id": 19457, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004764", - "question_id": 19459, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006902", - "question_id": 19463, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001626", - "question_id": 19473, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000752", - "question_id": 19488, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000172", - "question_id": 19499, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007797", - "question_id": 19504, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003359", - "question_id": 19510, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005885", - "question_id": 19512, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004979", - "question_id": 19514, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003466", - "question_id": 19520, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003348", - "question_id": 19523, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005271", - "question_id": 19524, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003592", - "question_id": 19542, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007872", - "question_id": 19582, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00004779", - "question_id": 19586, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004262", - "question_id": 19609, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004934", - "question_id": 19610, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005375", - "question_id": 19618, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007919", - "question_id": 19633, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002446", - "question_id": 19641, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004964", - "question_id": 19652, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00003673", - "question_id": 19686, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004359", - "question_id": 19691, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003008", - "question_id": 19692, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006401", - "question_id": 19701, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007226", - "question_id": 19713, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004464", - "question_id": 19736, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000069", - "question_id": 19753, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005344", - "question_id": 19755, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00001969", - "question_id": 19764, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003237", - "question_id": 19766, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004214", - "question_id": 19770, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002332", - "question_id": 19781, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001079", - "question_id": 19794, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003947", - "question_id": 19826, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005908", - "question_id": 19830, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000435", - "question_id": 19844, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00001075", - "question_id": 19848, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005728", - "question_id": 19866, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00008752", - "question_id": 19867, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004043", - "question_id": 19903, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005571", - "question_id": 19961, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003717", - "question_id": 19977, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"last\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00008489", - "question_id": 19981, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001702", - "question_id": 19988, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000975", - "question_id": 20002, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005048", - "question_id": 20006, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000426", - "question_id": 20020, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008533", - "question_id": 20046, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004909", - "question_id": 20064, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006938", - "question_id": 20074, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000559", - "question_id": 20084, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004866", - "question_id": 20108, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008816", - "question_id": 20120, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005846", - "question_id": 20123, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000822", - "question_id": 20134, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006289", - "question_id": 20151, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002592", - "question_id": 20166, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004793", - "question_id": 20191, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000842", - "question_id": 20202, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002621", - "question_id": 20210, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004667", - "question_id": 20214, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008129", - "question_id": 20216, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000979", - "question_id": 20232, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007450", - "question_id": 20241, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005115", - "question_id": 20246, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007596", - "question_id": 20254, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008514", - "question_id": 20261, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008474", - "question_id": 20262, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008473", - "question_id": 20265, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002589", - "question_id": 20266, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005928", - "question_id": 20271, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00005736", - "question_id": 20301, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008846", - "question_id": 20326, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001971", - "question_id": 20328, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002361", - "question_id": 20357, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001226", - "question_id": 20361, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008416", - "question_id": 20366, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008447", - "question_id": 20368, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005835", - "question_id": 20376, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005271", - "question_id": 20388, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002578", - "question_id": 20389, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004663", - "question_id": 20397, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006402", - "question_id": 20402, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007268", - "question_id": 20404, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005842", - "question_id": 20411, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006147", - "question_id": 20453, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002872", - "question_id": 20468, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001582", - "question_id": 20471, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003593", - "question_id": 20490, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003280", - "question_id": 20501, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001095", - "question_id": 20517, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004318", - "question_id": 20523, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000159", - "question_id": 20524, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007318", - "question_id": 20525, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005693", - "question_id": 20529, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002166", - "question_id": 20534, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001540", - "question_id": 20539, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007344", - "question_id": 20548, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003202", - "question_id": 20558, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008259", - "question_id": 20561, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006343", - "question_id": 20565, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004573", - "question_id": 20582, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008517", - "question_id": 20589, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001857", - "question_id": 20591, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002701", - "question_id": 20595, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004731", - "question_id": 20606, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006429", - "question_id": 20613, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006320", - "question_id": 20631, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003214", - "question_id": 20652, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00007913", - "question_id": 20657, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00005608", - "question_id": 20658, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003343", - "question_id": 20659, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005959", - "question_id": 20660, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004061", - "question_id": 20665, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007176", - "question_id": 20676, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008782", - "question_id": 20678, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000768", - "question_id": 20681, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003073", - "question_id": 20683, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006963", - "question_id": 20688, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002844", - "question_id": 20708, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00008472", - "question_id": 20719, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001468", - "question_id": 20720, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002176", - "question_id": 20722, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004478", - "question_id": 20738, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006385", - "question_id": 20755, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001627", - "question_id": 20756, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005235", - "question_id": 20776, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006782", - "question_id": 20779, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00002662", - "question_id": 20783, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006681", - "question_id": 20784, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001081", - "question_id": 20789, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002205", - "question_id": 20814, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002312", - "question_id": 20818, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006402", - "question_id": 20821, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007587", - "question_id": 20835, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008794", - "question_id": 20837, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00008248", - "question_id": 20841, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007124", - "question_id": 20875, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"middle\", \"bassoon\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008520", - "question_id": 20893, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007510", - "question_id": 20897, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007136", - "question_id": 20906, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007556", - "question_id": 20908, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008228", - "question_id": 20913, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001438", - "question_id": 20922, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001319", - "question_id": 20923, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003312", - "question_id": 20924, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001660", - "question_id": 20927, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002980", - "question_id": 20946, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002980", - "question_id": 20946, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002638", - "question_id": 20965, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001150", - "question_id": 20977, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008383", - "question_id": 20978, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003145", - "question_id": 20986, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004244", - "question_id": 20995, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003878", - "question_id": 20996, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002965", - "question_id": 21015, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00007169", - "question_id": 21020, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006637", - "question_id": 21043, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006070", - "question_id": 21057, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006070", - "question_id": 21057, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005100", - "question_id": 21066, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006098", - "question_id": 21075, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000772", - "question_id": 21087, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004690", - "question_id": 21135, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000610", - "question_id": 21149, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006269", - "question_id": 21159, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00007451", - "question_id": 21177, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007451", - "question_id": 21177, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000962", - "question_id": 21184, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002729", - "question_id": 21228, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"right\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002623", - "question_id": 21239, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007803", - "question_id": 21241, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006593", - "question_id": 21257, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005500", - "question_id": 21271, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004807", - "question_id": 21289, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005123", - "question_id": 21320, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001322", - "question_id": 21339, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008896", - "question_id": 21358, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000842", - "question_id": 21372, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006309", - "question_id": 21382, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006309", - "question_id": 21382, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001522", - "question_id": 21384, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008181", - "question_id": 21386, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002402", - "question_id": 21403, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007066", - "question_id": 21417, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008845", - "question_id": 21421, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001608", - "question_id": 21436, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003745", - "question_id": 21451, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002282", - "question_id": 21480, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004237", - "question_id": 21483, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004977", - "question_id": 21486, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005497", - "question_id": 21498, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000784", - "question_id": 21501, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00006289", - "question_id": 21507, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006523", - "question_id": 21510, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007684", - "question_id": 21520, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005705", - "question_id": 21523, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001425", - "question_id": 21541, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006901", - "question_id": 21546, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006954", - "question_id": 21549, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00008865", - "question_id": 21550, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007007", - "question_id": 21566, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007990", - "question_id": 21568, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004567", - "question_id": 21571, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007740", - "question_id": 21580, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008857", - "question_id": 21581, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001731", - "question_id": 21590, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006947", - "question_id": 21621, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007631", - "question_id": 21622, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00006144", - "question_id": 21651, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005888", - "question_id": 21654, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005558", - "question_id": 21712, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00007022", - "question_id": 21730, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000867", - "question_id": 21771, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008967", - "question_id": 21782, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001903", - "question_id": 21789, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005255", - "question_id": 21810, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005534", - "question_id": 21816, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005694", - "question_id": 21819, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003914", - "question_id": 21821, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00002395", - "question_id": 21864, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006461", - "question_id": 21884, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004483", - "question_id": 21894, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000152", - "question_id": 21907, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005832", - "question_id": 21911, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001761", - "question_id": 21925, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00002319", - "question_id": 21930, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00001736", - "question_id": 21960, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00004837", - "question_id": 21962, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002425", - "question_id": 21975, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008720", - "question_id": 21991, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005950", - "question_id": 21992, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003713", - "question_id": 21995, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00002324", - "question_id": 22000, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"congas\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006301", - "question_id": 22012, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004820", - "question_id": 22026, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005820", - "question_id": 22027, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006343", - "question_id": 22053, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002971", - "question_id": 22061, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001495", - "question_id": 22078, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000476", - "question_id": 22080, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003421", - "question_id": 22094, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006687", - "question_id": 22101, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001108", - "question_id": 22106, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003037", - "question_id": 22110, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006631", - "question_id": 22120, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005557", - "question_id": 22121, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008259", - "question_id": 22131, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006535", - "question_id": 22140, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004703", - "question_id": 22163, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004836", - "question_id": 22226, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003827", - "question_id": 22231, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006274", - "question_id": 22256, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00006773", - "question_id": 22260, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004610", - "question_id": 22268, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002175", - "question_id": 22271, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003300", - "question_id": 22287, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00008202", - "question_id": 22299, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004250", - "question_id": 22308, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008804", - "question_id": 22327, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006724", - "question_id": 22331, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006243", - "question_id": 22336, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004196", - "question_id": 22341, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00000707", - "question_id": 22349, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006209", - "question_id": 22355, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00006285", - "question_id": 22363, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002520", - "question_id": 22375, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00001147", - "question_id": 22383, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000069", - "question_id": 22398, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002868", - "question_id": 22405, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007685", - "question_id": 22421, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001125", - "question_id": 22426, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005684", - "question_id": 22430, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00002737", - "question_id": 22434, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004274", - "question_id": 22440, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006113", - "question_id": 22442, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005286", - "question_id": 22449, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001397", - "question_id": 22459, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003139", - "question_id": 22462, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004021", - "question_id": 22474, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000415", - "question_id": 22496, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008605", - "question_id": 22503, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008666", - "question_id": 22525, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00001186", - "question_id": 22527, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005435", - "question_id": 22543, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002259", - "question_id": 22548, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005899", - "question_id": 22590, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003754", - "question_id": 22622, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006759", - "question_id": 22623, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003666", - "question_id": 22633, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00001205", - "question_id": 22636, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00001068", - "question_id": 22654, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003326", - "question_id": 22659, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00000979", - "question_id": 22660, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00006491", - "question_id": 22661, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000424", - "question_id": 22678, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002505", - "question_id": 22691, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001110", - "question_id": 22696, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00001684", - "question_id": 22701, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00004811", - "question_id": 22743, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004246", - "question_id": 22747, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00007438", - "question_id": 22755, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008437", - "question_id": 22756, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001365", - "question_id": 22781, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003970", - "question_id": 22792, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004711", - "question_id": 22798, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008106", - "question_id": 22828, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001590", - "question_id": 22840, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005617", - "question_id": 22862, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004117", - "question_id": 22868, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008828", - "question_id": 22882, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007146", - "question_id": 22905, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00003516", - "question_id": 22945, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00008625", - "question_id": 22968, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008533", - "question_id": 22971, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007385", - "question_id": 22986, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000592", - "question_id": 22991, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005430", - "question_id": 23014, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006992", - "question_id": 23021, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001480", - "question_id": 23033, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001277", - "question_id": 23034, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00004944", - "question_id": 23044, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000573", - "question_id": 23046, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004126", - "question_id": 23082, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004676", - "question_id": 23105, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"xylophone\", \"right\", \"xylophone\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008313", - "question_id": 23127, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00006812", - "question_id": 23130, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00005124", - "question_id": 23134, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007247", - "question_id": 23136, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002653", - "question_id": 23146, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001554", - "question_id": 23167, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00006629", - "question_id": 23172, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004564", - "question_id": 23174, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00001333", - "question_id": 23194, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007983", - "question_id": 23202, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00003598", - "question_id": 23211, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008249", - "question_id": 23214, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006773", - "question_id": 23246, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"pipa\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00001438", - "question_id": 23249, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00000253", - "question_id": 23275, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005878", - "question_id": 23281, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001512", - "question_id": 23292, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00003316", - "question_id": 23297, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007341", - "question_id": 23298, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00006589", - "question_id": 23301, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00003542", - "question_id": 23303, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005497", - "question_id": 23336, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007698", - "question_id": 23340, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004982", - "question_id": 23352, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"electric_bass\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006305", - "question_id": 23364, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004507", - "question_id": 23374, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006574", - "question_id": 23396, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006449", - "question_id": 23399, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006660", - "question_id": 23418, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008376", - "question_id": 23468, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000069", - "question_id": 23469, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00001925", - "question_id": 23473, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000400", - "question_id": 23476, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006807", - "question_id": 23480, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002142", - "question_id": 23484, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007018", - "question_id": 23496, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005980", - "question_id": 23508, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004256", - "question_id": 23544, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000126", - "question_id": 23546, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005340", - "question_id": 23555, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002771", - "question_id": 23556, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005663", - "question_id": 23566, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"saxophone\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005813", - "question_id": 23580, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001644", - "question_id": 23587, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002335", - "question_id": 23588, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001274", - "question_id": 23589, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002757", - "question_id": 23602, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00004838", - "question_id": 23609, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008848", - "question_id": 23617, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008531", - "question_id": 23618, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006873", - "question_id": 23635, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002737", - "question_id": 23637, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006100", - "question_id": 23647, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000271", - "question_id": 23654, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004857", - "question_id": 23656, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000973", - "question_id": 23659, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001776", - "question_id": 23666, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000560", - "question_id": 23671, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001522", - "question_id": 23678, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003615", - "question_id": 23686, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008613", - "question_id": 23690, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006659", - "question_id": 23697, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007883", - "question_id": 23715, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007781", - "question_id": 23725, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005229", - "question_id": 23727, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006996", - "question_id": 23734, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003970", - "question_id": 23747, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007160", - "question_id": 23772, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003787", - "question_id": 23777, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008351", - "question_id": 23778, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006995", - "question_id": 23789, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002016", - "question_id": 23799, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005640", - "question_id": 23807, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000287", - "question_id": 23818, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003860", - "question_id": 23820, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004026", - "question_id": 23837, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00002714", - "question_id": 23838, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006273", - "question_id": 23849, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000286", - "question_id": 23869, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001641", - "question_id": 23911, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000643", - "question_id": 23912, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006646", - "question_id": 23914, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00008727", - "question_id": 23915, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001808", - "question_id": 23921, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001695", - "question_id": 23940, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004052", - "question_id": 23942, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bagpipe\", \"left\", \"bagpipe\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006247", - "question_id": 23969, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007943", - "question_id": 23971, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004129", - "question_id": 23982, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004686", - "question_id": 23988, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001176", - "question_id": 23998, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00002572", - "question_id": 23999, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002872", - "question_id": 24002, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008805", - "question_id": 24017, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001563", - "question_id": 24026, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"middle\", \"banjo\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008472", - "question_id": 24032, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005540", - "question_id": 24045, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004850", - "question_id": 24050, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006213", - "question_id": 24066, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008154", - "question_id": 24068, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00008589", - "question_id": 24070, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003193", - "question_id": 24079, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002103", - "question_id": 24087, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005406", - "question_id": 24135, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006170", - "question_id": 24143, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000993", - "question_id": 24145, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003171", - "question_id": 24146, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008504", - "question_id": 24156, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005057", - "question_id": 24169, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007296", - "question_id": 24182, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008071", - "question_id": 24194, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006397", - "question_id": 24203, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002957", - "question_id": 24221, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006923", - "question_id": 24223, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008933", - "question_id": 24227, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004343", - "question_id": 24233, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001769", - "question_id": 24240, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003779", - "question_id": 24247, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008069", - "question_id": 24256, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008514", - "question_id": 24288, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002834", - "question_id": 24296, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000312", - "question_id": 24301, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"drum\", \"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003731", - "question_id": 24307, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002487", - "question_id": 24308, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003049", - "question_id": 24310, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001504", - "question_id": 24374, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006373", - "question_id": 24384, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005177", - "question_id": 24415, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001990", - "question_id": 24421, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001990", - "question_id": 24421, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007074", - "question_id": 24428, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000048", - "question_id": 24429, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007401", - "question_id": 24436, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001337", - "question_id": 24455, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000501", - "question_id": 24477, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004496", - "question_id": 24480, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00006003", - "question_id": 24482, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002100", - "question_id": 24483, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006310", - "question_id": 24494, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000424", - "question_id": 24525, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002701", - "question_id": 24533, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000224", - "question_id": 24534, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"trumpet\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005569", - "question_id": 24550, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002126", - "question_id": 24567, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006743", - "question_id": 24574, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00004549", - "question_id": 24578, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007415", - "question_id": 24604, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007073", - "question_id": 24606, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007051", - "question_id": 24617, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001955", - "question_id": 24619, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005667", - "question_id": 24643, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002315", - "question_id": 24646, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003777", - "question_id": 24648, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008236", - "question_id": 24667, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004881", - "question_id": 24671, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002215", - "question_id": 24705, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005006", - "question_id": 24709, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002393", - "question_id": 24724, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00005409", - "question_id": 24738, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006028", - "question_id": 24741, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006557", - "question_id": 24743, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007916", - "question_id": 24754, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00004876", - "question_id": 24781, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000940", - "question_id": 24783, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000685", - "question_id": 24791, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"drum\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007514", - "question_id": 24817, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005163", - "question_id": 24830, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005445", - "question_id": 24840, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006216", - "question_id": 24846, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003440", - "question_id": 24883, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001154", - "question_id": 24911, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00002340", - "question_id": 24916, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00002532", - "question_id": 24922, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004765", - "question_id": 24935, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008359", - "question_id": 24948, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000849", - "question_id": 24958, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006107", - "question_id": 24969, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002015", - "question_id": 24970, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00001615", - "question_id": 24986, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008845", - "question_id": 24990, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bassoon\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002789", - "question_id": 25002, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006328", - "question_id": 25004, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008205", - "question_id": 25008, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006196", - "question_id": 25017, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001291", - "question_id": 25025, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007717", - "question_id": 25030, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004227", - "question_id": 25032, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000642", - "question_id": 25038, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004117", - "question_id": 25042, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002180", - "question_id": 25059, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004570", - "question_id": 25066, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001018", - "question_id": 25080, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000400", - "question_id": 25089, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006479", - "question_id": 25092, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002341", - "question_id": 25105, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00007228", - "question_id": 25119, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007698", - "question_id": 25123, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001841", - "question_id": 25128, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000093", - "question_id": 25143, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00003104", - "question_id": 25147, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001360", - "question_id": 25148, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002801", - "question_id": 25171, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006554", - "question_id": 25178, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005829", - "question_id": 25181, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002233", - "question_id": 25195, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00004385", - "question_id": 25210, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001375", - "question_id": 25214, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00007832", - "question_id": 25230, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001788", - "question_id": 25245, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00007380", - "question_id": 25256, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007715", - "question_id": 25263, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00006511", - "question_id": 25266, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001680", - "question_id": 25273, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001264", - "question_id": 25287, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00002252", - "question_id": 25293, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004206", - "question_id": 25309, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002179", - "question_id": 25318, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003029", - "question_id": 25332, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00003921", - "question_id": 25333, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002288", - "question_id": 25335, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002264", - "question_id": 25339, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000915", - "question_id": 25350, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005892", - "question_id": 25354, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00002561", - "question_id": 25358, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006179", - "question_id": 25362, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00005326", - "question_id": 25363, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005392", - "question_id": 25368, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00001671", - "question_id": 25371, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004154", - "question_id": 25407, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003842", - "question_id": 25430, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008070", - "question_id": 25436, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000381", - "question_id": 25446, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00008931", - "question_id": 25447, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004936", - "question_id": 25451, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"middle\", \"tuba\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001986", - "question_id": 25453, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000746", - "question_id": 25457, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004428", - "question_id": 25459, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00001459", - "question_id": 25463, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002756", - "question_id": 25472, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000210", - "question_id": 25473, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001396", - "question_id": 25475, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004679", - "question_id": 25494, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004045", - "question_id": 25505, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00005006", - "question_id": 25515, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"congas\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005521", - "question_id": 25519, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008649", - "question_id": 25522, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005867", - "question_id": 25525, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008338", - "question_id": 25527, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007122", - "question_id": 25531, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000645", - "question_id": 25560, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008109", - "question_id": 25562, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006165", - "question_id": 25569, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001414", - "question_id": 25574, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003520", - "question_id": 25576, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008631", - "question_id": 25582, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007508", - "question_id": 25593, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007253", - "question_id": 25595, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002675", - "question_id": 25596, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002057", - "question_id": 25597, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002162", - "question_id": 25606, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001800", - "question_id": 25666, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008782", - "question_id": 25700, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00005623", - "question_id": 25704, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001730", - "question_id": 25711, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00004950", - "question_id": 25722, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002310", - "question_id": 25738, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001607", - "question_id": 25754, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002901", - "question_id": 25763, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00008733", - "question_id": 25765, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001164", - "question_id": 25776, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008883", - "question_id": 25794, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00007845", - "question_id": 25801, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003731", - "question_id": 25811, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00007087", - "question_id": 25818, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00008557", - "question_id": 25833, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00003246", - "question_id": 25835, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000796", - "question_id": 25837, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004273", - "question_id": 25847, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"trumpet\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00008586", - "question_id": 25858, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005774", - "question_id": 25865, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007897", - "question_id": 25866, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001272", - "question_id": 25870, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001966", - "question_id": 25877, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000641", - "question_id": 25884, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000600", - "question_id": 25889, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004029", - "question_id": 25899, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008496", - "question_id": 25910, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004537", - "question_id": 25911, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006403", - "question_id": 25920, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"right\", \"drum\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007237", - "question_id": 25923, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003874", - "question_id": 25952, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002468", - "question_id": 25957, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003394", - "question_id": 25960, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005760", - "question_id": 25999, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001980", - "question_id": 26001, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005028", - "question_id": 26002, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004385", - "question_id": 26028, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007523", - "question_id": 26039, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007847", - "question_id": 26056, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003101", - "question_id": 26057, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001947", - "question_id": 26059, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"flute\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000488", - "question_id": 26061, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001684", - "question_id": 26068, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002678", - "question_id": 26069, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004087", - "question_id": 26075, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00005302", - "question_id": 26084, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"congas\", \"left\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005446", - "question_id": 26085, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00006614", - "question_id": 26103, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005641", - "question_id": 26114, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004133", - "question_id": 26118, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008579", - "question_id": 26142, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005493", - "question_id": 26154, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003463", - "question_id": 26158, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004275", - "question_id": 26186, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000135", - "question_id": 26188, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005595", - "question_id": 26191, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000898", - "question_id": 26199, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"left\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003405", - "question_id": 26203, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004099", - "question_id": 26227, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003266", - "question_id": 26254, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005760", - "question_id": 26259, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003938", - "question_id": 26260, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006465", - "question_id": 26267, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001320", - "question_id": 26269, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001539", - "question_id": 26274, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002583", - "question_id": 26280, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002210", - "question_id": 26301, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006216", - "question_id": 26306, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007517", - "question_id": 26329, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00005778", - "question_id": 26334, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005778", - "question_id": 26334, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006434", - "question_id": 26341, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004934", - "question_id": 26358, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005267", - "question_id": 26377, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002523", - "question_id": 26381, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008885", - "question_id": 26382, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001969", - "question_id": 26384, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001602", - "question_id": 26392, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007066", - "question_id": 26394, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002572", - "question_id": 26402, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00000350", - "question_id": 26415, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004990", - "question_id": 26419, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00001953", - "question_id": 26427, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00004459", - "question_id": 26431, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008447", - "question_id": 26440, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00002038", - "question_id": 26446, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00004054", - "question_id": 26447, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006971", - "question_id": 26453, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00007324", - "question_id": 26476, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00007385", - "question_id": 26488, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005915", - "question_id": 26502, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004647", - "question_id": 26504, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00005674", - "question_id": 26515, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007451", - "question_id": 26554, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005626", - "question_id": 26563, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00000723", - "question_id": 26566, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004730", - "question_id": 26572, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008908", - "question_id": 26596, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003420", - "question_id": 26630, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008020", - "question_id": 26636, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005478", - "question_id": 26642, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00008958", - "question_id": 26644, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007193", - "question_id": 26650, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001337", - "question_id": 26663, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000467", - "question_id": 26669, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002346", - "question_id": 26693, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008468", - "question_id": 26701, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008671", - "question_id": 26732, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001342", - "question_id": 26740, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008598", - "question_id": 26742, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002707", - "question_id": 26753, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007624", - "question_id": 26770, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004126", - "question_id": 26772, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00008043", - "question_id": 26776, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007724", - "question_id": 26781, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007004", - "question_id": 26803, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001793", - "question_id": 26814, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004733", - "question_id": 26815, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001891", - "question_id": 26820, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007870", - "question_id": 26824, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005636", - "question_id": 26835, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003503", - "question_id": 26851, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001218", - "question_id": 26872, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007201", - "question_id": 26874, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00005905", - "question_id": 26876, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004738", - "question_id": 26888, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003887", - "question_id": 26902, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004336", - "question_id": 26903, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006757", - "question_id": 26907, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008104", - "question_id": 26952, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"erhu\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007375", - "question_id": 26959, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002513", - "question_id": 26963, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001905", - "question_id": 26976, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008003", - "question_id": 26987, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006446", - "question_id": 27017, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00007534", - "question_id": 27021, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00000307", - "question_id": 27030, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004480", - "question_id": 27088, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003160", - "question_id": 27091, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00005657", - "question_id": 27099, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004136", - "question_id": 27101, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001147", - "question_id": 27103, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bassoon\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008520", - "question_id": 27106, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005937", - "question_id": 27168, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003831", - "question_id": 27169, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"electric_bass\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007489", - "question_id": 27174, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000278", - "question_id": 27179, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002682", - "question_id": 27202, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002475", - "question_id": 27213, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007604", - "question_id": 27218, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002119", - "question_id": 27221, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007839", - "question_id": 27227, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004101", - "question_id": 27230, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001678", - "question_id": 27236, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002545", - "question_id": 27257, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000957", - "question_id": 27261, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003190", - "question_id": 27268, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00006361", - "question_id": 27269, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001160", - "question_id": 27286, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003969", - "question_id": 27304, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001828", - "question_id": 27328, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004832", - "question_id": 27329, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006365", - "question_id": 27331, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007676", - "question_id": 27339, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002057", - "question_id": 27343, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007353", - "question_id": 27348, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005424", - "question_id": 27363, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004209", - "question_id": 27383, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001412", - "question_id": 27405, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003759", - "question_id": 27411, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006019", - "question_id": 27429, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00002803", - "question_id": 27432, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002435", - "question_id": 27435, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00007317", - "question_id": 27438, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003083", - "question_id": 27453, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003197", - "question_id": 27471, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001747", - "question_id": 27504, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006489", - "question_id": 27524, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000911", - "question_id": 27531, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007488", - "question_id": 27541, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006934", - "question_id": 27580, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003282", - "question_id": 27582, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001797", - "question_id": 27586, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00006231", - "question_id": 27592, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00000024", - "question_id": 27618, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00004309", - "question_id": 27638, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006861", - "question_id": 27657, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00007047", - "question_id": 27660, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008448", - "question_id": 27663, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00008671", - "question_id": 27669, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002537", - "question_id": 27677, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006718", - "question_id": 27687, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008871", - "question_id": 27690, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00000035", - "question_id": 27698, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006145", - "question_id": 27714, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002864", - "question_id": 27716, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00005200", - "question_id": 27718, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001205", - "question_id": 27738, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005460", - "question_id": 27749, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001348", - "question_id": 27751, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00006927", - "question_id": 27755, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00001051", - "question_id": 27776, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00007770", - "question_id": 27786, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007846", - "question_id": 27806, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000456", - "question_id": 27847, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00005276", - "question_id": 27886, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004261", - "question_id": 27897, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004794", - "question_id": 27907, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000692", - "question_id": 27916, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00007066", - "question_id": 27938, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000240", - "question_id": 27942, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00007708", - "question_id": 27958, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003718", - "question_id": 27961, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003581", - "question_id": 27962, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00005163", - "question_id": 27965, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000366", - "question_id": 27978, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003624", - "question_id": 27983, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007673", - "question_id": 28001, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001120", - "question_id": 28002, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006680", - "question_id": 28016, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006659", - "question_id": 28035, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001865", - "question_id": 28038, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008293", - "question_id": 28046, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00005072", - "question_id": 28052, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001824", - "question_id": 28058, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003068", - "question_id": 28083, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001692", - "question_id": 28090, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000312", - "question_id": 28102, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008586", - "question_id": 28104, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001520", - "question_id": 28111, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001248", - "question_id": 28117, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002052", - "question_id": 28122, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003607", - "question_id": 28147, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003682", - "question_id": 28186, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008212", - "question_id": 28257, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002447", - "question_id": 28263, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008666", - "question_id": 28293, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00006520", - "question_id": 28325, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00006914", - "question_id": 28329, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001485", - "question_id": 28332, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003426", - "question_id": 28339, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004465", - "question_id": 28357, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00008015", - "question_id": 28358, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002174", - "question_id": 28381, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004012", - "question_id": 28387, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "vv00000639", - "question_id": 28408, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000738", - "question_id": 28419, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006535", - "question_id": 28421, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001314", - "question_id": 28427, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00005346", - "question_id": 28443, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005788", - "question_id": 28451, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000180", - "question_id": 28460, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "sa00007434", - "question_id": 28472, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00006742", - "question_id": 28481, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005379", - "question_id": 28484, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00005599", - "question_id": 28505, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00008100", - "question_id": 28542, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005369", - "question_id": 28548, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00006092", - "question_id": 28563, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007146", - "question_id": 28573, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"suona\", \"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006853", - "question_id": 28594, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00006798", - "question_id": 28602, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"violin\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005138", - "question_id": 28615, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007866", - "question_id": 28617, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00005585", - "question_id": 28620, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006899", - "question_id": 28634, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007731", - "question_id": 28647, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00001458", - "question_id": 28648, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004345", - "question_id": 28662, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000283", - "question_id": 28686, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005004", - "question_id": 28693, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "va00005070", - "question_id": 28731, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006034", - "question_id": 28736, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003165", - "question_id": 28757, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007117", - "question_id": 28769, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "sa00008113", - "question_id": 28816, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008234", - "question_id": 28821, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002983", - "question_id": 28826, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002362", - "question_id": 28840, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001372", - "question_id": 28850, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "va00004997", - "question_id": 28863, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004119", - "question_id": 28913, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00002190", - "question_id": 28919, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004444", - "question_id": 28924, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000863", - "question_id": 28926, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00008520", - "question_id": 28958, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001377", - "question_id": 28962, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002414", - "question_id": 28964, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007918", - "question_id": 28975, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00002656", - "question_id": 28981, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003644", - "question_id": 28982, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00002666", - "question_id": 28997, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "va00005859", - "question_id": 29007, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00006426", - "question_id": 29009, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00003985", - "question_id": 29013, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00004454", - "question_id": 29036, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00003138", - "question_id": 29040, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005699", - "question_id": 29049, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00007386", - "question_id": 29050, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008605", - "question_id": 29051, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00002684", - "question_id": 29081, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00002458", - "question_id": 29093, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00007104", - "question_id": 29098, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "vv00000345", - "question_id": 29100, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003834", - "question_id": 29109, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000328", - "question_id": 29115, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004076", - "question_id": 29119, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "va00003091", - "question_id": 29131, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00003016", - "question_id": 29132, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "va00003460", - "question_id": 29160, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00008634", - "question_id": 29163, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00000744", - "question_id": 29165, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"congas\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003200", - "question_id": 29169, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007932", - "question_id": 29190, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00006905", - "question_id": 29194, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00005115", - "question_id": 29201, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004975", - "question_id": 29207, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00007363", - "question_id": 29223, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008389", - "question_id": 29229, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004565", - "question_id": 29240, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00000951", - "question_id": 29245, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008568", - "question_id": 29251, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000120", - "question_id": 29256, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "sa00006173", - "question_id": 29272, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004628", - "question_id": 29293, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00007185", - "question_id": 29301, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00001189", - "question_id": 29313, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006114", - "question_id": 29323, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000170", - "question_id": 29325, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00002768", - "question_id": 29326, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00003503", - "question_id": 29332, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005517", - "question_id": 29336, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003849", - "question_id": 29346, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00001574", - "question_id": 29347, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004597", - "question_id": 29359, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00002565", - "question_id": 29361, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00007894", - "question_id": 29368, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001550", - "question_id": 29374, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008691", - "question_id": 29381, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00004920", - "question_id": 29382, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007786", - "question_id": 29383, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00005004", - "question_id": 29432, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006961", - "question_id": 29443, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00002268", - "question_id": 29448, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007717", - "question_id": 29459, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"last\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007353", - "question_id": 29486, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "sa00006007", - "question_id": 29489, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00005535", - "question_id": 29507, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006783", - "question_id": 29509, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "sa00008532", - "question_id": 29530, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00000577", - "question_id": 29531, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004584", - "question_id": 29543, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00008053", - "question_id": 29560, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00007364", - "question_id": 29594, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006356", - "question_id": 29612, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "va00005226", - "question_id": 29619, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00004542", - "question_id": 29623, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "sa00007687", - "question_id": 29629, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00005114", - "question_id": 29643, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000923", - "question_id": 29651, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00004772", - "question_id": 29677, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00004656", - "question_id": 29691, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005612", - "question_id": 29695, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "va00005763", - "question_id": 29710, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "va00005763", - "question_id": 29710, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00004399", - "question_id": 29715, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008742", - "question_id": 29727, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005960", - "question_id": 29734, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00006129", - "question_id": 29754, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00004647", - "question_id": 29763, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008728", - "question_id": 29775, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002005", - "question_id": 29779, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008277", - "question_id": 29785, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00007213", - "question_id": 29798, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002041", - "question_id": 29803, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006545", - "question_id": 29815, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001529", - "question_id": 29853, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004471", - "question_id": 29855, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005356", - "question_id": 29865, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"xylophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005565", - "question_id": 29869, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002816", - "question_id": 29875, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00002278", - "question_id": 29880, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "sa00006533", - "question_id": 29883, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "sa00006849", - "question_id": 29902, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001633", - "question_id": 29912, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000995", - "question_id": 29944, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00000761", - "question_id": 29971, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000768", - "question_id": 29975, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00000410", - "question_id": 29987, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000892", - "question_id": 29993, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00007438", - "question_id": 30001, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00001124", - "question_id": 30016, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00006284", - "question_id": 30021, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00001719", - "question_id": 30028, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00006061", - "question_id": 30031, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002687", - "question_id": 30042, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006274", - "question_id": 30076, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008609", - "question_id": 30096, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00004824", - "question_id": 30099, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "va00004028", - "question_id": 30122, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00006500", - "question_id": 30124, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00008139", - "question_id": 30134, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "vv00008936", - "question_id": 30174, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005133", - "question_id": 30175, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004777", - "question_id": 30177, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" - }, - { - "video_id": "00001005", - "question_id": 30178, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000240", - "question_id": 30181, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000348", - "question_id": 30201, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007463", - "question_id": 30206, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005713", - "question_id": 30215, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00002900", - "question_id": 30224, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008347", - "question_id": 30242, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "sa00008119", - "question_id": 30251, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bagpipe\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008248", - "question_id": 30253, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004927", - "question_id": 30276, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00001396", - "question_id": 30280, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00005363", - "question_id": 30283, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001028", - "question_id": 30287, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00006118", - "question_id": 30291, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008960", - "question_id": 30294, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"violin\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008713", - "question_id": 30313, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007994", - "question_id": 30315, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008127", - "question_id": 30333, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00002881", - "question_id": 30341, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006501", - "question_id": 30343, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000711", - "question_id": 30346, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "vv00002527", - "question_id": 30349, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002487", - "question_id": 30363, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" - }, - { - "video_id": "00006719", - "question_id": 30367, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007963", - "question_id": 30397, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005186", - "question_id": 30403, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006889", - "question_id": 30415, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00004939", - "question_id": 30450, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00004448", - "question_id": 30453, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003307", - "question_id": 30487, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000659", - "question_id": 30495, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002087", - "question_id": 30502, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00002299", - "question_id": 30507, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00001238", - "question_id": 30514, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00003952", - "question_id": 30518, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007283", - "question_id": 30535, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000428", - "question_id": 30536, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00004736", - "question_id": 30543, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004063", - "question_id": 30545, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00004153", - "question_id": 30556, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008885", - "question_id": 30559, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000650", - "question_id": 30578, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "vv00002749", - "question_id": 30597, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005786", - "question_id": 30600, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "vv00000284", - "question_id": 30619, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004172", - "question_id": 30653, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002051", - "question_id": 30684, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008951", - "question_id": 30703, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000792", - "question_id": 30712, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00000332", - "question_id": 30723, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00008192", - "question_id": 30740, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004377", - "question_id": 30768, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00008620", - "question_id": 30779, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "vv00000478", - "question_id": 30791, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00001302", - "question_id": 30796, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"trumpet\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002159", - "question_id": 30812, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008041", - "question_id": 30818, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005742", - "question_id": 30851, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00006663", - "question_id": 30853, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006357", - "question_id": 30866, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00003703", - "question_id": 30881, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002827", - "question_id": 30892, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00001563", - "question_id": 30904, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00004176", - "question_id": 30905, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00008896", - "question_id": 30922, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008055", - "question_id": 30924, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "vv00000361", - "question_id": 30926, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003121", - "question_id": 30930, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00007370", - "question_id": 30940, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00007433", - "question_id": 30964, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005997", - "question_id": 30975, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007803", - "question_id": 30980, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005214", - "question_id": 30985, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00004939", - "question_id": 30988, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007911", - "question_id": 30998, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003953", - "question_id": 31008, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005298", - "question_id": 31013, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003400", - "question_id": 31014, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008703", - "question_id": 31024, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002821", - "question_id": 31027, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007127", - "question_id": 31046, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000943", - "question_id": 31060, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003757", - "question_id": 31103, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "sa00008693", - "question_id": 31104, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004744", - "question_id": 31109, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004027", - "question_id": 31112, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005897", - "question_id": 31129, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004259", - "question_id": 31141, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003511", - "question_id": 31147, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002888", - "question_id": 31167, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000813", - "question_id": 31173, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005964", - "question_id": 31181, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005379", - "question_id": 31212, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007504", - "question_id": 31217, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005923", - "question_id": 31225, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005462", - "question_id": 31242, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004845", - "question_id": 31261, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007511", - "question_id": 31265, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003359", - "question_id": 31267, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007092", - "question_id": 31271, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007329", - "question_id": 31290, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003551", - "question_id": 31302, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002888", - "question_id": 31304, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004708", - "question_id": 31306, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005473", - "question_id": 31314, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000075", - "question_id": 31316, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006675", - "question_id": 31322, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006353", - "question_id": 31325, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000926", - "question_id": 31337, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "sa00008769", - "question_id": 31371, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004957", - "question_id": 31375, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000584", - "question_id": 31377, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005596", - "question_id": 31381, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000935", - "question_id": 31384, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006069", - "question_id": 31395, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003641", - "question_id": 31398, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006845", - "question_id": 31421, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008000", - "question_id": 31433, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004901", - "question_id": 31439, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008526", - "question_id": 31442, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004682", - "question_id": 31447, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002541", - "question_id": 31456, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008897", - "question_id": 31470, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004272", - "question_id": 31476, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007063", - "question_id": 31486, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004133", - "question_id": 31489, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000215", - "question_id": 31495, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00001500", - "question_id": 31537, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008824", - "question_id": 31550, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004001", - "question_id": 31551, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006964", - "question_id": 31552, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000161", - "question_id": 31567, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006692", - "question_id": 31571, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002628", - "question_id": 31580, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004644", - "question_id": 31600, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006822", - "question_id": 31607, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001577", - "question_id": 31614, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007988", - "question_id": 31641, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008095", - "question_id": 31657, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004414", - "question_id": 31661, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001661", - "question_id": 31662, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00007632", - "question_id": 31671, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007555", - "question_id": 31700, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003429", - "question_id": 31721, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008198", - "question_id": 31726, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006053", - "question_id": 31739, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001940", - "question_id": 31750, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000185", - "question_id": 31752, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007149", - "question_id": 31766, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007555", - "question_id": 31768, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004390", - "question_id": 31770, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00002404", - "question_id": 31775, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00008584", - "question_id": 31777, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001240", - "question_id": 31787, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007593", - "question_id": 31822, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"electric_bass\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005860", - "question_id": 31835, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002294", - "question_id": 31837, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002016", - "question_id": 31842, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000467", - "question_id": 31851, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00004603", - "question_id": 31861, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007562", - "question_id": 31903, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006746", - "question_id": 31911, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002893", - "question_id": 31917, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005060", - "question_id": 31924, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00008937", - "question_id": 31935, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008495", - "question_id": 31936, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002933", - "question_id": 31937, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "vv00002373", - "question_id": 31938, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"tuba\", \"left\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008974", - "question_id": 31945, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006613", - "question_id": 31946, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001836", - "question_id": 31951, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007048", - "question_id": 31962, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002780", - "question_id": 31974, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000239", - "question_id": 31992, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001409", - "question_id": 32011, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004210", - "question_id": 32015, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008227", - "question_id": 32022, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006601", - "question_id": 32037, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001862", - "question_id": 32039, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006966", - "question_id": 32065, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000786", - "question_id": 32070, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007021", - "question_id": 32077, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00005374", - "question_id": 32079, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008606", - "question_id": 32109, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000785", - "question_id": 32111, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007676", - "question_id": 32114, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008925", - "question_id": 32124, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004518", - "question_id": 32142, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002378", - "question_id": 32163, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005156", - "question_id": 32168, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005462", - "question_id": 32190, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003823", - "question_id": 32207, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001882", - "question_id": 32231, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008426", - "question_id": 32237, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004011", - "question_id": 32246, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004759", - "question_id": 32247, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005444", - "question_id": 32259, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00005983", - "question_id": 32260, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004777", - "question_id": 32264, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004777", - "question_id": 32264, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004486", - "question_id": 32275, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003208", - "question_id": 32278, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006093", - "question_id": 32295, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003665", - "question_id": 32302, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006756", - "question_id": 32308, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001992", - "question_id": 32320, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002781", - "question_id": 32326, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008623", - "question_id": 32327, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007378", - "question_id": 32332, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008631", - "question_id": 32333, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001456", - "question_id": 32337, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007562", - "question_id": 32347, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001792", - "question_id": 32407, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003290", - "question_id": 32413, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002895", - "question_id": 32437, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00008875", - "question_id": 32441, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003539", - "question_id": 32451, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000367", - "question_id": 32457, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "vv00000295", - "question_id": 32459, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001059", - "question_id": 32464, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005462", - "question_id": 32471, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004462", - "question_id": 32472, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006435", - "question_id": 32473, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003816", - "question_id": 32494, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006312", - "question_id": 32496, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005169", - "question_id": 32504, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002939", - "question_id": 32545, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007956", - "question_id": 32578, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "vv00002421", - "question_id": 32581, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003434", - "question_id": 32584, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001628", - "question_id": 32589, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "va00005206", - "question_id": 32603, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004502", - "question_id": 32608, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002880", - "question_id": 32619, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008041", - "question_id": 32624, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000088", - "question_id": 32627, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"tuba\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005423", - "question_id": 32628, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007571", - "question_id": 32654, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006729", - "question_id": 32656, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003775", - "question_id": 32666, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005111", - "question_id": 32669, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000952", - "question_id": 32670, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00002302", - "question_id": 32680, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000538", - "question_id": 32685, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001669", - "question_id": 32694, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "sa00006611", - "question_id": 32700, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000842", - "question_id": 32723, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008094", - "question_id": 32749, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001536", - "question_id": 32753, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008220", - "question_id": 32776, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007460", - "question_id": 32786, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003443", - "question_id": 32814, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003636", - "question_id": 32818, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003235", - "question_id": 32826, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004082", - "question_id": 32836, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003757", - "question_id": 32850, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006580", - "question_id": 32860, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00007657", - "question_id": 32864, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001475", - "question_id": 32871, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008785", - "question_id": 32872, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002488", - "question_id": 32875, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007743", - "question_id": 32895, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002611", - "question_id": 32917, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00000531", - "question_id": 32924, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002994", - "question_id": 32932, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002539", - "question_id": 32951, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006770", - "question_id": 32959, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008551", - "question_id": 32965, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"xylophone\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000531", - "question_id": 32978, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005478", - "question_id": 32988, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000840", - "question_id": 32994, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008719", - "question_id": 33017, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005833", - "question_id": 33025, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004299", - "question_id": 33035, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000577", - "question_id": 33046, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00007332", - "question_id": 33049, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006070", - "question_id": 33053, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001813", - "question_id": 33056, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003291", - "question_id": 33059, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002507", - "question_id": 33064, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007289", - "question_id": 33089, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004715", - "question_id": 33123, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008764", - "question_id": 33126, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005889", - "question_id": 33144, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007825", - "question_id": 33150, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007391", - "question_id": 33151, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007268", - "question_id": 33166, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00003123", - "question_id": 33168, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004444", - "question_id": 33169, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008398", - "question_id": 33170, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007331", - "question_id": 33189, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003050", - "question_id": 33209, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00004441", - "question_id": 33219, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005061", - "question_id": 33234, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004222", - "question_id": 33248, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "sa00008314", - "question_id": 33249, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003907", - "question_id": 33256, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008435", - "question_id": 33260, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00007778", - "question_id": 33263, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000375", - "question_id": 33267, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001386", - "question_id": 33271, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002037", - "question_id": 33272, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00002987", - "question_id": 33285, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008807", - "question_id": 33292, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006586", - "question_id": 33300, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003385", - "question_id": 33302, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003633", - "question_id": 33311, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003022", - "question_id": 33317, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004504", - "question_id": 33323, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002095", - "question_id": 33329, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002352", - "question_id": 33333, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005586", - "question_id": 33337, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006637", - "question_id": 33343, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007639", - "question_id": 33361, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003153", - "question_id": 33371, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002153", - "question_id": 33372, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004302", - "question_id": 33386, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003324", - "question_id": 33395, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008189", - "question_id": 33397, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002822", - "question_id": 33402, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00005994", - "question_id": 33409, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007346", - "question_id": 33410, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007748", - "question_id": 33414, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007946", - "question_id": 33425, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004557", - "question_id": 33427, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00002669", - "question_id": 33432, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005885", - "question_id": 33433, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005659", - "question_id": 33454, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000926", - "question_id": 33455, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004785", - "question_id": 33456, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002665", - "question_id": 33472, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006235", - "question_id": 33505, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008296", - "question_id": 33508, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005851", - "question_id": 33509, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003917", - "question_id": 33545, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002895", - "question_id": 33553, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007181", - "question_id": 33555, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00005686", - "question_id": 33567, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006005", - "question_id": 33576, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006515", - "question_id": 33590, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004914", - "question_id": 33619, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00002748", - "question_id": 33625, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002657", - "question_id": 33638, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008535", - "question_id": 33644, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003481", - "question_id": 33647, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002931", - "question_id": 33649, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008804", - "question_id": 33658, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "vv00000268", - "question_id": 33666, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008553", - "question_id": 33672, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003781", - "question_id": 33673, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002447", - "question_id": 33674, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007470", - "question_id": 33688, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001309", - "question_id": 33699, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003800", - "question_id": 33705, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004889", - "question_id": 33706, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00000825", - "question_id": 33710, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007296", - "question_id": 33714, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006000", - "question_id": 33732, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "sa00007942", - "question_id": 33741, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008411", - "question_id": 33757, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00004960", - "question_id": 33774, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "sa00007077", - "question_id": 33778, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004197", - "question_id": 33780, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "va00003683", - "question_id": 33782, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003235", - "question_id": 33784, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002076", - "question_id": 33790, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005684", - "question_id": 33797, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007333", - "question_id": 33811, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000785", - "question_id": 33830, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "more than ten" - }, - { - "video_id": "00006168", - "question_id": 33833, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000595", - "question_id": 33863, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008413", - "question_id": 33877, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003836", - "question_id": 33882, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008358", - "question_id": 33890, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004442", - "question_id": 33915, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004570", - "question_id": 33940, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005770", - "question_id": 33949, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008452", - "question_id": 33957, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00006483", - "question_id": 33960, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007164", - "question_id": 33963, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003216", - "question_id": 33969, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008561", - "question_id": 33970, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00008245", - "question_id": 33984, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007959", - "question_id": 33992, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005332", - "question_id": 34003, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004371", - "question_id": 34006, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002021", - "question_id": 34029, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000350", - "question_id": 34045, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002516", - "question_id": 34049, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004905", - "question_id": 34066, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008913", - "question_id": 34091, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001265", - "question_id": 34092, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "sa00006762", - "question_id": 34095, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006534", - "question_id": 34102, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000363", - "question_id": 34114, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003738", - "question_id": 34124, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001100", - "question_id": 34147, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008030", - "question_id": 34152, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002424", - "question_id": 34162, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007196", - "question_id": 34168, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006230", - "question_id": 34171, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002732", - "question_id": 34184, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"congas\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "va00004025", - "question_id": 34202, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000692", - "question_id": 34214, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00003006", - "question_id": 34251, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "vv00002616", - "question_id": 34263, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002903", - "question_id": 34280, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006949", - "question_id": 34281, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006115", - "question_id": 34287, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00007711", - "question_id": 34288, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000661", - "question_id": 34291, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006177", - "question_id": 34296, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007572", - "question_id": 34336, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005075", - "question_id": 34353, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000371", - "question_id": 34368, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004395", - "question_id": 34383, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004395", - "question_id": 34383, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004544", - "question_id": 34385, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003487", - "question_id": 34413, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004922", - "question_id": 34419, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007395", - "question_id": 34442, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001501", - "question_id": 34448, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003264", - "question_id": 34450, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"pipa\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000076", - "question_id": 34464, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003559", - "question_id": 34466, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003515", - "question_id": 34472, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003517", - "question_id": 34475, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002520", - "question_id": 34483, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003521", - "question_id": 34511, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "sa00008541", - "question_id": 34519, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008082", - "question_id": 34525, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008204", - "question_id": 34536, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002198", - "question_id": 34548, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004182", - "question_id": 34556, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001044", - "question_id": 34568, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008869", - "question_id": 34581, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002072", - "question_id": 34594, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00004004", - "question_id": 34604, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001929", - "question_id": 34609, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008265", - "question_id": 34611, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008963", - "question_id": 34616, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003647", - "question_id": 34638, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006321", - "question_id": 34641, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001491", - "question_id": 34653, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007469", - "question_id": 34654, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000051", - "question_id": 34662, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004144", - "question_id": 34665, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001813", - "question_id": 34675, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005818", - "question_id": 34679, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "sa00007613", - "question_id": 34698, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002448", - "question_id": 34702, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"clarinet\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00006461", - "question_id": 34705, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003332", - "question_id": 34722, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000933", - "question_id": 34730, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"trumpet\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "va00005299", - "question_id": 34734, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000812", - "question_id": 34741, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00004233", - "question_id": 34776, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00008741", - "question_id": 34782, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003774", - "question_id": 34787, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00008763", - "question_id": 34795, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002694", - "question_id": 34800, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004298", - "question_id": 34802, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005201", - "question_id": 34809, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005031", - "question_id": 34811, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007549", - "question_id": 34820, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007917", - "question_id": 34855, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000585", - "question_id": 34857, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"trumpet\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007959", - "question_id": 34859, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"banjo\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00007994", - "question_id": 34874, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003541", - "question_id": 34875, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007622", - "question_id": 34883, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00004287", - "question_id": 34896, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008139", - "question_id": 34899, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008278", - "question_id": 34915, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007478", - "question_id": 34917, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002724", - "question_id": 34937, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"pipa\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00006908", - "question_id": 34949, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003066", - "question_id": 34959, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00005522", - "question_id": 34960, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002235", - "question_id": 34984, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001160", - "question_id": 35008, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001037", - "question_id": 35012, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "vv00000383", - "question_id": 35031, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008189", - "question_id": 35053, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002363", - "question_id": 35079, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00002363", - "question_id": 35079, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00008687", - "question_id": 35088, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00006232", - "question_id": 35098, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004213", - "question_id": 35105, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00004433", - "question_id": 35135, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00000373", - "question_id": 35143, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008860", - "question_id": 35152, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008408", - "question_id": 35192, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007215", - "question_id": 35197, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000546", - "question_id": 35205, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000888", - "question_id": 35208, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002936", - "question_id": 35213, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002777", - "question_id": 35215, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004926", - "question_id": 35218, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005759", - "question_id": 35223, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005839", - "question_id": 35224, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008829", - "question_id": 35234, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005320", - "question_id": 35240, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002257", - "question_id": 35254, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00008632", - "question_id": 35256, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008708", - "question_id": 35259, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00005727", - "question_id": 35261, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006705", - "question_id": 35265, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003747", - "question_id": 35267, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"tuba\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00007843", - "question_id": 35289, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004540", - "question_id": 35297, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "vv00000383", - "question_id": 35310, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00007616", - "question_id": 35324, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "va00004034", - "question_id": 35334, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008000", - "question_id": 35337, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003337", - "question_id": 35349, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007435", - "question_id": 35380, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003759", - "question_id": 35381, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001929", - "question_id": 35385, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008395", - "question_id": 35389, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005587", - "question_id": 35392, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00003589", - "question_id": 35418, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003986", - "question_id": 35420, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006970", - "question_id": 35425, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007909", - "question_id": 35433, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005399", - "question_id": 35453, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "00007927", - "question_id": 35455, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001117", - "question_id": 35456, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004533", - "question_id": 35467, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004810", - "question_id": 35480, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00004524", - "question_id": 35495, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000090", - "question_id": 35498, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007336", - "question_id": 35512, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007124", - "question_id": 35513, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00004284", - "question_id": 35519, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001985", - "question_id": 35526, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001760", - "question_id": 35527, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008427", - "question_id": 35532, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00003737", - "question_id": 35554, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002668", - "question_id": 35563, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006451", - "question_id": 35564, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002465", - "question_id": 35567, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003323", - "question_id": 35578, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "sa00006260", - "question_id": 35585, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004294", - "question_id": 35586, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005292", - "question_id": 35590, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001813", - "question_id": 35599, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006249", - "question_id": 35601, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007138", - "question_id": 35605, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007544", - "question_id": 35608, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006808", - "question_id": 35609, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004801", - "question_id": 35622, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006859", - "question_id": 35625, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003476", - "question_id": 35642, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002425", - "question_id": 35647, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004855", - "question_id": 35657, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003356", - "question_id": 35660, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001238", - "question_id": 35663, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006382", - "question_id": 35679, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"banjo\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008761", - "question_id": 35681, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "vv00000177", - "question_id": 35692, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000548", - "question_id": 35694, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00003536", - "question_id": 35709, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "vv00002769", - "question_id": 35714, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00006534", - "question_id": 35724, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000451", - "question_id": 35731, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003268", - "question_id": 35740, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008821", - "question_id": 35745, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005436", - "question_id": 35746, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006195", - "question_id": 35758, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007707", - "question_id": 35765, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004926", - "question_id": 35788, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"guzheng\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "va00003919", - "question_id": 35803, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002792", - "question_id": 35825, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00002492", - "question_id": 35830, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000846", - "question_id": 35843, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000242", - "question_id": 35866, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006645", - "question_id": 35881, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002435", - "question_id": 35896, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005921", - "question_id": 35918, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00001704", - "question_id": 35920, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "vv00002555", - "question_id": 35938, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007890", - "question_id": 35943, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006698", - "question_id": 35949, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "va00005220", - "question_id": 35964, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006174", - "question_id": 35970, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"clarinet\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00005632", - "question_id": 35972, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00008136", - "question_id": 35975, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008136", - "question_id": 35975, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001273", - "question_id": 35988, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"tuba\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007381", - "question_id": 36015, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007645", - "question_id": 36021, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003045", - "question_id": 36048, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008336", - "question_id": 36049, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000778", - "question_id": 36058, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00007142", - "question_id": 36077, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000656", - "question_id": 36083, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"xylophone\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00005662", - "question_id": 36086, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008356", - "question_id": 36095, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004215", - "question_id": 36099, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005823", - "question_id": 36103, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005427", - "question_id": 36117, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002212", - "question_id": 36127, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001395", - "question_id": 36131, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004229", - "question_id": 36136, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001912", - "question_id": 36137, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002074", - "question_id": 36141, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001848", - "question_id": 36150, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003728", - "question_id": 36151, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000179", - "question_id": 36173, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bagpipe\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006698", - "question_id": 36178, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008500", - "question_id": 36181, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002199", - "question_id": 36192, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"banjo\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00003695", - "question_id": 36194, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003976", - "question_id": 36210, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00001418", - "question_id": 36216, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00002594", - "question_id": 36217, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"pipa\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00005143", - "question_id": 36234, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002462", - "question_id": 36249, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004712", - "question_id": 36273, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007139", - "question_id": 36284, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007620", - "question_id": 36288, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002291", - "question_id": 36304, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000535", - "question_id": 36327, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00004027", - "question_id": 36332, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004234", - "question_id": 36333, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"tuba\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "va00005024", - "question_id": 36340, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007368", - "question_id": 36372, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004412", - "question_id": 36375, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "va00005203", - "question_id": 36389, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002705", - "question_id": 36396, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00000039", - "question_id": 36403, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004147", - "question_id": 36409, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001206", - "question_id": 36414, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007880", - "question_id": 36421, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008256", - "question_id": 36422, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008646", - "question_id": 36428, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003440", - "question_id": 36433, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007507", - "question_id": 36453, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005371", - "question_id": 36476, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000905", - "question_id": 36509, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006548", - "question_id": 36510, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004128", - "question_id": 36514, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008793", - "question_id": 36541, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005362", - "question_id": 36549, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007645", - "question_id": 36557, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006487", - "question_id": 36567, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005981", - "question_id": 36572, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000444", - "question_id": 36573, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008524", - "question_id": 36580, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002772", - "question_id": 36597, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007500", - "question_id": 36607, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00003046", - "question_id": 36683, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006929", - "question_id": 36708, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007768", - "question_id": 36714, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001244", - "question_id": 36729, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001597", - "question_id": 36748, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"middle\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003952", - "question_id": 36771, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000434", - "question_id": 36784, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006164", - "question_id": 36793, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006255", - "question_id": 36819, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007027", - "question_id": 36820, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004370", - "question_id": 36825, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "va00004512", - "question_id": 36836, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005862", - "question_id": 36838, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005718", - "question_id": 36861, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00000624", - "question_id": 36866, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005963", - "question_id": 36879, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006119", - "question_id": 36883, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000096", - "question_id": 36911, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00006746", - "question_id": 36912, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007826", - "question_id": 36916, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "vv00000572", - "question_id": 36917, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003010", - "question_id": 36927, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000554", - "question_id": 36934, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00004053", - "question_id": 36935, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001441", - "question_id": 36942, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00006863", - "question_id": 36948, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002103", - "question_id": 36967, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007322", - "question_id": 36976, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007322", - "question_id": 36976, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007409", - "question_id": 36977, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00001511", - "question_id": 36983, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005415", - "question_id": 37001, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007771", - "question_id": 37027, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00000243", - "question_id": 37030, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005290", - "question_id": 37046, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00005580", - "question_id": 37051, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004785", - "question_id": 37059, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "sa00006909", - "question_id": 37065, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002694", - "question_id": 37072, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008252", - "question_id": 37084, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "vv00000081", - "question_id": 37086, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002407", - "question_id": 37097, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003718", - "question_id": 37100, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005053", - "question_id": 37107, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003122", - "question_id": 37111, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003356", - "question_id": 37133, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007157", - "question_id": 37138, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004677", - "question_id": 37157, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002149", - "question_id": 37158, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004174", - "question_id": 37163, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008568", - "question_id": 37165, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005721", - "question_id": 37171, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001031", - "question_id": 37203, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007656", - "question_id": 37208, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004157", - "question_id": 37209, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007201", - "question_id": 37228, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007449", - "question_id": 37249, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00000498", - "question_id": 37257, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000289", - "question_id": 37262, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006419", - "question_id": 37263, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007659", - "question_id": 37283, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004399", - "question_id": 37289, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003250", - "question_id": 37296, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00002093", - "question_id": 37303, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "vv00000348", - "question_id": 37305, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002421", - "question_id": 37308, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006077", - "question_id": 37319, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002291", - "question_id": 37337, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008611", - "question_id": 37344, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003184", - "question_id": 37356, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003157", - "question_id": 37366, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008793", - "question_id": 37385, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006904", - "question_id": 37386, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007646", - "question_id": 37388, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00006847", - "question_id": 37400, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00000448", - "question_id": 37421, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00003559", - "question_id": 37434, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00001045", - "question_id": 37456, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00000158", - "question_id": 37470, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004115", - "question_id": 37488, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007667", - "question_id": 37534, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004412", - "question_id": 37535, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00005041", - "question_id": 37536, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006949", - "question_id": 37543, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004580", - "question_id": 37553, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003446", - "question_id": 37562, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003692", - "question_id": 37569, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006783", - "question_id": 37577, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000242", - "question_id": 37580, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00000453", - "question_id": 37585, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006937", - "question_id": 37601, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00000358", - "question_id": 37611, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00002852", - "question_id": 37612, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00001742", - "question_id": 37634, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00005156", - "question_id": 37638, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004052", - "question_id": 37640, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00002555", - "question_id": 37642, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002638", - "question_id": 37655, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00008408", - "question_id": 37658, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002889", - "question_id": 37659, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006169", - "question_id": 37663, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003022", - "question_id": 37671, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "sa00005995", - "question_id": 37681, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006624", - "question_id": 37700, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007732", - "question_id": 37708, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004114", - "question_id": 37716, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007196", - "question_id": 37729, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004714", - "question_id": 37731, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006052", - "question_id": 37735, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"banjo\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005115", - "question_id": 37763, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000605", - "question_id": 37790, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004580", - "question_id": 37802, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006688", - "question_id": 37807, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005415", - "question_id": 37808, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005500", - "question_id": 37830, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007109", - "question_id": 37896, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00003064", - "question_id": 37929, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "vv00002858", - "question_id": 37937, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00002858", - "question_id": 37937, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002377", - "question_id": 37940, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00002855", - "question_id": 37949, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000595", - "question_id": 37950, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"tuba\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007749", - "question_id": 37962, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00002759", - "question_id": 37963, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000178", - "question_id": 37966, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005235", - "question_id": 37985, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004619", - "question_id": 37987, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006454", - "question_id": 38002, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005403", - "question_id": 38016, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00007009", - "question_id": 38017, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"suona\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00006441", - "question_id": 38025, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002750", - "question_id": 38032, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004330", - "question_id": 38044, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "vv00002616", - "question_id": 38070, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00004622", - "question_id": 38083, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"electric_bass\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001642", - "question_id": 38091, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "sa00007659", - "question_id": 38097, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003129", - "question_id": 38103, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004967", - "question_id": 38127, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00002886", - "question_id": 38135, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00002969", - "question_id": 38138, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008732", - "question_id": 38140, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00000409", - "question_id": 38144, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"suona\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00003413", - "question_id": 38156, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "va00005533", - "question_id": 38157, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001742", - "question_id": 38164, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006713", - "question_id": 38165, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "seven" - }, - { - "video_id": "vv00003078", - "question_id": 38180, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004340", - "question_id": 38193, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008593", - "question_id": 38204, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001288", - "question_id": 38213, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006157", - "question_id": 38214, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006258", - "question_id": 38265, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006603", - "question_id": 38269, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00007826", - "question_id": 38270, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004211", - "question_id": 38283, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008638", - "question_id": 38288, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00008011", - "question_id": 38309, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000340", - "question_id": 38310, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007781", - "question_id": 38313, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004968", - "question_id": 38318, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004069", - "question_id": 38354, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008311", - "question_id": 38355, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004051", - "question_id": 38358, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004019", - "question_id": 38371, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002585", - "question_id": 38378, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005594", - "question_id": 38380, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005320", - "question_id": 38385, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003313", - "question_id": 38392, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002776", - "question_id": 38403, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006420", - "question_id": 38404, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004101", - "question_id": 38412, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00006771", - "question_id": 38416, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007243", - "question_id": 38421, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005814", - "question_id": 38426, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "vv00000196", - "question_id": 38429, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "00000861", - "question_id": 38444, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005565", - "question_id": 38458, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004453", - "question_id": 38464, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002394", - "question_id": 38489, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "va00004932", - "question_id": 38494, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006820", - "question_id": 38507, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006462", - "question_id": 38526, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008470", - "question_id": 38531, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005065", - "question_id": 38538, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007362", - "question_id": 38545, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001003", - "question_id": 38546, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003179", - "question_id": 38558, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008639", - "question_id": 38567, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002643", - "question_id": 38613, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008884", - "question_id": 38615, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007383", - "question_id": 38618, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000561", - "question_id": 38627, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00008493", - "question_id": 38628, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002557", - "question_id": 38637, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003224", - "question_id": 38640, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001242", - "question_id": 38656, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000484", - "question_id": 38668, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006588", - "question_id": 38682, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001517", - "question_id": 38687, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003255", - "question_id": 38692, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004519", - "question_id": 38695, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007462", - "question_id": 38697, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007730", - "question_id": 38699, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004242", - "question_id": 38702, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007582", - "question_id": 38727, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006220", - "question_id": 38736, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003270", - "question_id": 38739, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003675", - "question_id": 38741, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007475", - "question_id": 38742, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003838", - "question_id": 38746, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006863", - "question_id": 38751, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008876", - "question_id": 38798, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004419", - "question_id": 38806, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000118", - "question_id": 38814, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005780", - "question_id": 38840, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000412", - "question_id": 38848, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003681", - "question_id": 38852, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00003126", - "question_id": 38871, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005012", - "question_id": 38882, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006338", - "question_id": 38888, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006278", - "question_id": 38913, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007926", - "question_id": 38920, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007761", - "question_id": 38927, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005434", - "question_id": 38935, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00000276", - "question_id": 38943, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "vv00000257", - "question_id": 38944, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005084", - "question_id": 38950, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007337", - "question_id": 38967, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001042", - "question_id": 38976, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000720", - "question_id": 38980, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00006606", - "question_id": 38982, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003244", - "question_id": 38987, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007668", - "question_id": 38991, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000394", - "question_id": 39003, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007208", - "question_id": 39009, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001322", - "question_id": 39042, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004587", - "question_id": 39050, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00002311", - "question_id": 39051, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00006645", - "question_id": 39100, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001047", - "question_id": 39106, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003339", - "question_id": 39121, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004004", - "question_id": 39123, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001285", - "question_id": 39129, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005289", - "question_id": 39131, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008908", - "question_id": 39134, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004298", - "question_id": 39138, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007455", - "question_id": 39146, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002828", - "question_id": 39154, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006756", - "question_id": 39161, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008387", - "question_id": 39164, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008198", - "question_id": 39191, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007429", - "question_id": 39194, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001288", - "question_id": 39220, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "00003719", - "question_id": 39229, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005518", - "question_id": 39255, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006318", - "question_id": 39285, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00005975", - "question_id": 39297, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000116", - "question_id": 39307, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002041", - "question_id": 39311, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "sa00006455", - "question_id": 39321, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004228", - "question_id": 39342, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005529", - "question_id": 39343, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00008772", - "question_id": 39347, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004059", - "question_id": 39355, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"congas\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003702", - "question_id": 39359, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000535", - "question_id": 39374, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00005354", - "question_id": 39383, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00006983", - "question_id": 39387, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004888", - "question_id": 39395, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002416", - "question_id": 39423, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004526", - "question_id": 39459, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004617", - "question_id": 39467, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005810", - "question_id": 39489, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002538", - "question_id": 39528, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004808", - "question_id": 39533, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00001340", - "question_id": 39537, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007890", - "question_id": 39544, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007407", - "question_id": 39579, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004275", - "question_id": 39584, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004938", - "question_id": 39591, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008320", - "question_id": 39598, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003051", - "question_id": 39600, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "sa00006088", - "question_id": 39610, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006088", - "question_id": 39610, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004207", - "question_id": 39617, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"clarinet\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00008687", - "question_id": 39621, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "vv00000638", - "question_id": 39624, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005028", - "question_id": 39628, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "sa00007060", - "question_id": 39638, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007895", - "question_id": 39640, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "sa00006694", - "question_id": 39647, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003891", - "question_id": 39674, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008243", - "question_id": 39705, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005973", - "question_id": 39708, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007535", - "question_id": 39755, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005810", - "question_id": 39758, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000102", - "question_id": 39771, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003961", - "question_id": 39783, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005130", - "question_id": 39785, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008391", - "question_id": 39791, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" - }, - { - "video_id": "00008818", - "question_id": 39793, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007089", - "question_id": 39802, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003767", - "question_id": 39808, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007286", - "question_id": 39809, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003271", - "question_id": 39817, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003359", - "question_id": 39830, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00006173", - "question_id": 39852, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003992", - "question_id": 39859, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00002330", - "question_id": 39861, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00003027", - "question_id": 39865, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005758", - "question_id": 39868, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007053", - "question_id": 39895, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006984", - "question_id": 39906, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000190", - "question_id": 39947, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007332", - "question_id": 39948, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007881", - "question_id": 39957, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00005292", - "question_id": 40030, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007694", - "question_id": 40032, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"banjo\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00006192", - "question_id": 40057, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "va00003982", - "question_id": 40058, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"suona\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004788", - "question_id": 40066, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00008245", - "question_id": 40072, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006689", - "question_id": 40087, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005902", - "question_id": 40100, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00006247", - "question_id": 40102, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008042", - "question_id": 40107, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003902", - "question_id": 40118, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00005944", - "question_id": 40120, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00002268", - "question_id": 40133, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006410", - "question_id": 40137, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "va00003822", - "question_id": 40144, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00008173", - "question_id": 40156, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "vv00003053", - "question_id": 40158, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00008963", - "question_id": 40161, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "vv00000140", - "question_id": 40163, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00007245", - "question_id": 40164, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00008411", - "question_id": 40174, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "vv00002533", - "question_id": 40193, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"guzheng\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "sa00007166", - "question_id": 40211, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007219", - "question_id": 40212, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005688", - "question_id": 40215, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002936", - "question_id": 40223, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "va00005528", - "question_id": 40225, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"congas\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00000482", - "question_id": 40231, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000623", - "question_id": 40246, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"trumpet\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004347", - "question_id": 40251, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001575", - "question_id": 40252, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004708", - "question_id": 40299, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003812", - "question_id": 40303, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "va00003533", - "question_id": 40321, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006690", - "question_id": 40322, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"flute\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00004755", - "question_id": 40325, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003412", - "question_id": 40359, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002522", - "question_id": 40417, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007878", - "question_id": 40427, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "va00005545", - "question_id": 40441, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004540", - "question_id": 40479, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00002914", - "question_id": 40482, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000323", - "question_id": 40486, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005942", - "question_id": 40490, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005060", - "question_id": 40502, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006078", - "question_id": 40505, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00003456", - "question_id": 40509, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002129", - "question_id": 40510, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"clarinet\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "va00003533", - "question_id": 40532, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"flute\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00001569", - "question_id": 40583, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "va00004036", - "question_id": 40607, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "va00004541", - "question_id": 40613, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"flute\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "sa00006278", - "question_id": 40626, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00000971", - "question_id": 40637, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002817", - "question_id": 40639, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00007688", - "question_id": 40650, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004313", - "question_id": 40651, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006847", - "question_id": 40653, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003915", - "question_id": 40665, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007112", - "question_id": 40671, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "va00003603", - "question_id": 40689, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002801", - "question_id": 40716, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008861", - "question_id": 40719, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007103", - "question_id": 40727, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00002557", - "question_id": 40748, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00001631", - "question_id": 40768, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000478", - "question_id": 40770, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"xylophone\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000998", - "question_id": 40780, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008835", - "question_id": 40797, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005303", - "question_id": 40798, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005446", - "question_id": 40814, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00005862", - "question_id": 40820, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004370", - "question_id": 40853, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008320", - "question_id": 40854, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006344", - "question_id": 40859, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003844", - "question_id": 40860, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006791", - "question_id": 40862, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00003675", - "question_id": 40867, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007143", - "question_id": 40868, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00008970", - "question_id": 40872, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00006884", - "question_id": 40877, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "vv00003027", - "question_id": 40885, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007580", - "question_id": 40898, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00006336", - "question_id": 40904, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"congas\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "sa00006456", - "question_id": 40911, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00005157", - "question_id": 40938, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004965", - "question_id": 40945, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00003517", - "question_id": 40948, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005458", - "question_id": 40963, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007166", - "question_id": 40992, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001594", - "question_id": 40993, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "vv00000478", - "question_id": 40999, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00007761", - "question_id": 41019, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00006142", - "question_id": 41020, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"pipa\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "sa00007709", - "question_id": 41023, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002953", - "question_id": 41029, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006578", - "question_id": 41039, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006199", - "question_id": 41040, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005827", - "question_id": 41041, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005349", - "question_id": 41058, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004291", - "question_id": 41064, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005982", - "question_id": 41068, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00004475", - "question_id": 41074, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004329", - "question_id": 41105, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006734", - "question_id": 41116, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "sa00007509", - "question_id": 41129, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005577", - "question_id": 41137, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00008097", - "question_id": 41150, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000629", - "question_id": 41159, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006369", - "question_id": 41190, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "vv00000503", - "question_id": 41199, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005206", - "question_id": 41217, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003376", - "question_id": 41228, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"congas\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003004", - "question_id": 41233, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00004283", - "question_id": 41243, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00005738", - "question_id": 41250, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "six" - }, - { - "video_id": "00006300", - "question_id": 41279, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006015", - "question_id": 41293, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "vv00000396", - "question_id": 41298, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002149", - "question_id": 41302, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004677", - "question_id": 41326, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006915", - "question_id": 41343, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00001031", - "question_id": 41346, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008068", - "question_id": 41356, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000052", - "question_id": 41359, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003478", - "question_id": 41364, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"drum\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "sa00007332", - "question_id": 41393, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00008156", - "question_id": 41395, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002405", - "question_id": 41400, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"accordion\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "va00003236", - "question_id": 41403, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002703", - "question_id": 41411, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004993", - "question_id": 41412, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"suona\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00005132", - "question_id": 41490, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"tuba\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "sa00007412", - "question_id": 41495, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "sa00006083", - "question_id": 41515, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005286", - "question_id": 41528, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005872", - "question_id": 41535, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"congas\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "sa00008269", - "question_id": 41552, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00006649", - "question_id": 41556, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000052", - "question_id": 41575, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000674", - "question_id": 41582, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"piano\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00005770", - "question_id": 41589, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00006567", - "question_id": 41595, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003495", - "question_id": 41613, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003933", - "question_id": 41614, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00008191", - "question_id": 41629, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "va00004239", - "question_id": 41633, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"xylophone\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "vv00002656", - "question_id": 41634, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004544", - "question_id": 41639, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00005495", - "question_id": 41650, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002510", - "question_id": 41667, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"tuba\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00001138", - "question_id": 41669, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"banjo\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "sa00005991", - "question_id": 41673, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008218", - "question_id": 41683, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000220", - "question_id": 41685, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003453", - "question_id": 41696, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007256", - "question_id": 41701, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004511", - "question_id": 41710, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00006419", - "question_id": 41712, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005750", - "question_id": 41740, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002909", - "question_id": 41743, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00007754", - "question_id": 41779, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "sa00008696", - "question_id": 41795, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005553", - "question_id": 41806, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005649", - "question_id": 41822, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003771", - "question_id": 41825, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00005907", - "question_id": 41827, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006009", - "question_id": 41863, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00000744", - "question_id": 41865, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "five" - }, - { - "video_id": "va00003130", - "question_id": 41868, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006210", - "question_id": 41879, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"congas\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005099", - "question_id": 41885, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002944", - "question_id": 41889, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005946", - "question_id": 41904, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "00005772", - "question_id": 41910, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "va00005583", - "question_id": 41921, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"electric_bass\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "sa00008936", - "question_id": 41932, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "00003174", - "question_id": 41962, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008508", - "question_id": 41988, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002497", - "question_id": 41993, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "va00004282", - "question_id": 41999, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006059", - "question_id": 42001, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" - }, - { - "video_id": "00005880", - "question_id": 42007, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "eight" - }, - { - "video_id": "va00003094", - "question_id": 42010, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002988", - "question_id": 42042, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005175", - "question_id": 42045, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "va00005931", - "question_id": 42051, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006015", - "question_id": 42070, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008283", - "question_id": 42120, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "va00005723", - "question_id": 42123, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007931", - "question_id": 42128, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"flute\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "sa00008817", - "question_id": 42135, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003296", - "question_id": 42137, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005715", - "question_id": 42144, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00008647", - "question_id": 42147, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"bassoon\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "va00004786", - "question_id": 42154, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00003645", - "question_id": 42172, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00007778", - "question_id": 42181, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004374", - "question_id": 42208, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00007948", - "question_id": 42219, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008795", - "question_id": 42235, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000314", - "question_id": 42267, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00000314", - "question_id": 42274, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"congas\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007804", - "question_id": 42276, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005495", - "question_id": 42277, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "va00005298", - "question_id": 42278, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00006832", - "question_id": 42295, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"guzheng\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00001628", - "question_id": 42296, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008653", - "question_id": 42300, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00005536", - "question_id": 42301, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "sa00005972", - "question_id": 42302, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "vv00002772", - "question_id": 42305, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001057", - "question_id": 42318, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007032", - "question_id": 42334, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "va00003760", - "question_id": 42341, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "vv00002622", - "question_id": 42363, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00006731", - "question_id": 42368, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004137", - "question_id": 42383, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "sa00007746", - "question_id": 42387, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00007562", - "question_id": 42390, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00008269", - "question_id": 42417, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00003568", - "question_id": 42440, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00007735", - "question_id": 42453, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002021", - "question_id": 42455, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "va00005174", - "question_id": 42481, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00001287", - "question_id": 42497, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00003525", - "question_id": 42499, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00000443", - "question_id": 42501, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00002911", - "question_id": 42507, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00003672", - "question_id": 42516, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "nine" - }, - { - "video_id": "va00003386", - "question_id": 42521, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000647", - "question_id": 42526, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00006985", - "question_id": 42527, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005224", - "question_id": 42530, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "sa00008229", - "question_id": 42533, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002071", - "question_id": 42537, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004305", - "question_id": 42542, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00004351", - "question_id": 42550, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00008388", - "question_id": 42559, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "sa00008219", - "question_id": 42566, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00001966", - "question_id": 42609, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "va00003645", - "question_id": 42613, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "va00003173", - "question_id": 42620, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "va00005378", - "question_id": 42624, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00007623", - "question_id": 42638, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00002920", - "question_id": 42644, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007256", - "question_id": 42676, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "vv00000524", - "question_id": 42703, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006224", - "question_id": 42711, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00005013", - "question_id": 42712, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"xylophone\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00001738", - "question_id": 42715, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00000812", - "question_id": 42717, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006424", - "question_id": 42732, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "va00004993", - "question_id": 42745, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00004469", - "question_id": 42746, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "sa00008400", - "question_id": 42769, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000812", - "question_id": 42771, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000190", - "question_id": 42798, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00004623", - "question_id": 42843, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00000010", - "question_id": 42852, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00003812", - "question_id": 42853, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "sa00006909", - "question_id": 42872, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00007732", - "question_id": 42888, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "va00003369", - "question_id": 42895, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00008138", - "question_id": 42897, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "va00003898", - "question_id": 42902, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00008585", - "question_id": 42906, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002975", - "question_id": 42909, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00001823", - "question_id": 42919, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "four" - }, - { - "video_id": "va00003295", - "question_id": 42924, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00007804", - "question_id": 42962, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "sa00008723", - "question_id": 42973, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "vv00000227", - "question_id": 42979, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "sa00007186", - "question_id": 42993, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "sa00007103", - "question_id": 43018, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000513", - "question_id": 43023, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "sa00008746", - "question_id": 43024, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "sa00006586", - "question_id": 43026, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "00005047", - "question_id": 43031, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00000876", - "question_id": 43050, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007605", - "question_id": 43051, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00000193", - "question_id": 43052, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"tuba\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "sa00008630", - "question_id": 43060, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000438", - "question_id": 43065, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "va00003240", - "question_id": 43072, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00006341", - "question_id": 43074, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"xylophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001362", - "question_id": 43100, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "va00005660", - "question_id": 43113, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"erhu\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "va00004591", - "question_id": 43119, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00003231", - "question_id": 43123, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00004640", - "question_id": 43154, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "va00003156", - "question_id": 43155, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00008897", - "question_id": 43181, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "va00005894", - "question_id": 43215, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002797", - "question_id": 43243, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "zero" - }, - { - "video_id": "va00003255", - "question_id": 43248, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"congas\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "sa00007605", - "question_id": 43260, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "00004817", - "question_id": 43264, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "va00004470", - "question_id": 43268, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" - }, - { - "video_id": "vv00002404", - "question_id": 43294, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "va00003988", - "question_id": 43304, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002093", - "question_id": 43321, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00008462", - "question_id": 43342, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00008566", - "question_id": 43349, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "va00004513", - "question_id": 43377, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004591", - "question_id": 43396, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007125", - "question_id": 43403, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "va00003702", - "question_id": 43424, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00004257", - "question_id": 43440, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "va00005894", - "question_id": 43443, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00000140", - "question_id": 43453, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "sa00008897", - "question_id": 43487, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00007323", - "question_id": 43492, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008939", - "question_id": 43508, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006312", - "question_id": 43519, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "va00005243", - "question_id": 43541, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006451", - "question_id": 43551, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "va00003898", - "question_id": 43555, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002674", - "question_id": 43560, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "00003765", - "question_id": 43601, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00003853", - "question_id": 43616, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008513", - "question_id": 43617, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"trumpet\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008314", - "question_id": 43632, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bagpipe\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007799", - "question_id": 43640, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003115", - "question_id": 43653, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006712", - "question_id": 43657, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003345", - "question_id": 43676, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"accordion\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "eva00000772", - "question_id": 43706, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001021", - "question_id": 43713, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001324", - "question_id": 43729, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000818", - "question_id": 43734, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000966", - "question_id": 43746, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "eva00001018", - "question_id": 43785, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001262", - "question_id": 43796, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000652", - "question_id": 43801, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000718", - "question_id": 43808, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000635", - "question_id": 43840, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000615", - "question_id": 43847, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000540", - "question_id": 43873, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001228", - "question_id": 43892, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000951", - "question_id": 43893, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001407", - "question_id": 43904, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000291", - "question_id": 43909, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001089", - "question_id": 43929, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000875", - "question_id": 43930, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000875", - "question_id": 43930, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001241", - "question_id": 43932, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001244", - "question_id": 43945, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000980", - "question_id": 43955, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001228", - "question_id": 43965, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00001005", - "question_id": 43971, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00002562", - "question_id": 43996, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"last\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "eva00001189", - "question_id": 44023, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000809", - "question_id": 44036, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "eva00001107", - "question_id": 44046, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00001037", - "question_id": 44050, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006013", - "question_id": 44053, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000660", - "question_id": 44065, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000197", - "question_id": 44069, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000618", - "question_id": 44074, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000232", - "question_id": 44077, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000783", - "question_id": 44119, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001481", - "question_id": 44128, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000151", - "question_id": 44133, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001201", - "question_id": 44143, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000172", - "question_id": 44151, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008047", - "question_id": 44152, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000437", - "question_id": 44158, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005069", - "question_id": 44163, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003699", - "question_id": 44175, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001397", - "question_id": 44181, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000259", - "question_id": 44190, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000795", - "question_id": 44203, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "evv00001243", - "question_id": 44211, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001312", - "question_id": 44224, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "esa00000400", - "question_id": 44236, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000522", - "question_id": 44237, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002193", - "question_id": 44244, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000566", - "question_id": 44256, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000397", - "question_id": 44266, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001381", - "question_id": 44276, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000951", - "question_id": 44281, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001278", - "question_id": 44295, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001032", - "question_id": 44300, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001182", - "question_id": 44308, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00002764", - "question_id": 44313, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"suona\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000970", - "question_id": 44315, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000426", - "question_id": 44317, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"banjo\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001387", - "question_id": 44324, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000461", - "question_id": 44350, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000906", - "question_id": 44366, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000211", - "question_id": 44378, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000975", - "question_id": 44437, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001203", - "question_id": 44448, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000620", - "question_id": 44450, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000732", - "question_id": 44482, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001481", - "question_id": 44487, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000899", - "question_id": 44510, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000807", - "question_id": 44525, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000756", - "question_id": 44527, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001252", - "question_id": 44552, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006892", - "question_id": 44564, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006892", - "question_id": 44564, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001099", - "question_id": 44571, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001063", - "question_id": 44583, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002831", - "question_id": 44587, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001756", - "question_id": 44601, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "esa00000004", - "question_id": 44620, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000899", - "question_id": 44622, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00000726", - "question_id": 44642, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000933", - "question_id": 44648, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000933", - "question_id": 44648, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000149", - "question_id": 44692, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004899", - "question_id": 44705, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000493", - "question_id": 44720, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000805", - "question_id": 44728, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000549", - "question_id": 44752, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001145", - "question_id": 44756, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001118", - "question_id": 44765, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bassoon\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001278", - "question_id": 44767, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004716", - "question_id": 44777, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003103", - "question_id": 44784, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000307", - "question_id": 44790, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006215", - "question_id": 44803, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000277", - "question_id": 44811, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000753", - "question_id": 44822, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001182", - "question_id": 44857, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00002355", - "question_id": 44859, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "eva00000962", - "question_id": 44876, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000768", - "question_id": 44877, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00000768", - "question_id": 44881, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000832", - "question_id": 44902, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000559", - "question_id": 44905, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"congas\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001366", - "question_id": 44907, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001353", - "question_id": 44914, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000811", - "question_id": 44924, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"tuba\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006314", - "question_id": 44932, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000697", - "question_id": 44936, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000301", - "question_id": 44948, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001305", - "question_id": 44955, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "eva00000932", - "question_id": 44963, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000903", - "question_id": 44969, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008328", - "question_id": 44982, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000501", - "question_id": 44989, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001073", - "question_id": 44993, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00000825", - "question_id": 45021, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000296", - "question_id": 45024, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008683", - "question_id": 45028, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005619", - "question_id": 45036, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "eva00001132", - "question_id": 45041, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000475", - "question_id": 45058, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000705", - "question_id": 45063, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000705", - "question_id": 45063, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000199", - "question_id": 45071, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003286", - "question_id": 45094, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001304", - "question_id": 45107, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000565", - "question_id": 45112, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000601", - "question_id": 45118, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000628", - "question_id": 45133, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000313", - "question_id": 45134, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001215", - "question_id": 45141, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000911", - "question_id": 45148, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000313", - "question_id": 45173, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000294", - "question_id": 45195, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "esa00000232", - "question_id": 45203, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001150", - "question_id": 45269, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001467", - "question_id": 45270, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000271", - "question_id": 45289, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001277", - "question_id": 45292, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"trumpet\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001233", - "question_id": 45302, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "evv00001308", - "question_id": 45333, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000367", - "question_id": 45334, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00003597", - "question_id": 45336, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "evv00001442", - "question_id": 45340, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"xylophone\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000921", - "question_id": 45343, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00001205", - "question_id": 45354, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001166", - "question_id": 45365, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001414", - "question_id": 45367, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004899", - "question_id": 45373, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000328", - "question_id": 45384, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001145", - "question_id": 45394, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000994", - "question_id": 45401, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "sa00007778", - "question_id": 45407, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00000987", - "question_id": 45415, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000402", - "question_id": 45417, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001446", - "question_id": 45432, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00000826", - "question_id": 45442, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "eva00001081", - "question_id": 45454, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000891", - "question_id": 45457, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001173", - "question_id": 45461, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"electric_bass\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006733", - "question_id": 45466, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000982", - "question_id": 45476, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000678", - "question_id": 45481, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001056", - "question_id": 45488, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001392", - "question_id": 45502, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "sa00006207", - "question_id": 45509, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000636", - "question_id": 45516, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000243", - "question_id": 45528, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00000932", - "question_id": 45560, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "eva00001085", - "question_id": 45574, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001377", - "question_id": 45592, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "eva00000941", - "question_id": 45629, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000645", - "question_id": 45636, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "eva00001098", - "question_id": 45647, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000337", - "question_id": 45673, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001412", - "question_id": 45688, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "eva00000822", - "question_id": 45724, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004074", - "question_id": 45726, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001344", - "question_id": 45755, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"ukulele\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001063", - "question_id": 45766, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000433", - "question_id": 45802, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000631", - "question_id": 45828, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000880", - "question_id": 45840, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00001070", - "question_id": 45855, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000449", - "question_id": 45862, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "eva00000852", - "question_id": 45869, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00000813", - "question_id": 45908, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008587", - "question_id": 45918, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001425", - "question_id": 45920, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00000921", - "question_id": 45929, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001267", - "question_id": 45933, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000312", - "question_id": 45963, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000547", - "question_id": 45976, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001250", - "question_id": 45990, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001395", - "question_id": 45994, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001612", - "question_id": 46009, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000405", - "question_id": 46032, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00008080", - "question_id": 46045, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000700", - "question_id": 46058, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001407", - "question_id": 46088, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00007665", - "question_id": 46120, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "evv00001262", - "question_id": 46135, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"middle\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007710", - "question_id": 46137, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001291", - "question_id": 46143, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00000720", - "question_id": 46183, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"middle\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001292", - "question_id": 46235, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000442", - "question_id": 46240, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001334", - "question_id": 46249, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001454", - "question_id": 46253, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000889", - "question_id": 46273, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"last\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "esa00000522", - "question_id": 46285, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"clarinet\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002018", - "question_id": 46294, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001156", - "question_id": 46298, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001202", - "question_id": 46305, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001018", - "question_id": 46324, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00000866", - "question_id": 46336, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"electric_bass\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000699", - "question_id": 46368, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000831", - "question_id": 46398, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "evv00001343", - "question_id": 46425, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001427", - "question_id": 46434, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000678", - "question_id": 46436, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001363", - "question_id": 46437, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001114", - "question_id": 46439, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000797", - "question_id": 46468, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000528", - "question_id": 46479, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000297", - "question_id": 46488, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00000732", - "question_id": 46491, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00001000", - "question_id": 46493, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004989", - "question_id": 46494, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001344", - "question_id": 46507, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"ukulele\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "00005138", - "question_id": 46521, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000772", - "question_id": 46535, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000328", - "question_id": 46559, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006266", - "question_id": 46565, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000792", - "question_id": 46577, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001264", - "question_id": 46585, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002615", - "question_id": 46602, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001217", - "question_id": 46622, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"middle\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000852", - "question_id": 46624, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00001186", - "question_id": 46631, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000504", - "question_id": 46635, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000867", - "question_id": 46661, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00001158", - "question_id": 46664, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001484", - "question_id": 46666, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"saxophone\"]", - "question_deleted": 0, - "anser": "electric_bass" - }, - { - "video_id": "evv00001356", - "question_id": 46691, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "evv00001415", - "question_id": 46698, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"suona\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000748", - "question_id": 46719, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001297", - "question_id": 46762, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000664", - "question_id": 46763, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005052", - "question_id": 46774, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000697", - "question_id": 46800, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000896", - "question_id": 46819, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00000990", - "question_id": 46823, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "eva00001030", - "question_id": 46841, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "eva00001044", - "question_id": 46863, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003884", - "question_id": 46890, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"first\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "eva00001195", - "question_id": 46924, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "esa00000477", - "question_id": 46925, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000582", - "question_id": 46950, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00006636", - "question_id": 46954, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000968", - "question_id": 46962, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "esa00000418", - "question_id": 46975, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "esa00000021", - "question_id": 46980, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000640", - "question_id": 46991, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000248", - "question_id": 47015, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "eva00001117", - "question_id": 47025, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000528", - "question_id": 47039, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000230", - "question_id": 47048, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000182", - "question_id": 47054, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bagpipe\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001373", - "question_id": 47070, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00001104", - "question_id": 47077, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "evv00001338", - "question_id": 47080, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "esa00000582", - "question_id": 47089, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000347", - "question_id": 47117, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000500", - "question_id": 47142, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000211", - "question_id": 47144, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"congas\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "evv00001445", - "question_id": 47160, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"xylophone\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "esa00000463", - "question_id": 47164, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000368", - "question_id": 47203, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000267", - "question_id": 47216, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001107", - "question_id": 47239, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "sa00008641", - "question_id": 47257, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"flute\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001172", - "question_id": 47263, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000451", - "question_id": 47264, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "esa00000451", - "question_id": 47264, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00000853", - "question_id": 47275, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000427", - "question_id": 47306, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "eva00000713", - "question_id": 47309, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "00003846", - "question_id": 47315, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "eva00000968", - "question_id": 47317, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "evv00001327", - "question_id": 47321, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "eva00001081", - "question_id": 47322, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000354", - "question_id": 47388, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000557", - "question_id": 47390, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"xylophone\", \"middle\", \"congas\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000222", - "question_id": 47399, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000269", - "question_id": 47421, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004304", - "question_id": 47433, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000737", - "question_id": 47449, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001126", - "question_id": 47469, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "esa00000667", - "question_id": 47476, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" - }, - { - "video_id": "evv00001329", - "question_id": 47482, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001467", - "question_id": 47485, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000706", - "question_id": 47488, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "esa00000169", - "question_id": 47510, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "sa00007976", - "question_id": 47586, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "esa00000587", - "question_id": 47591, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"saxophone\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00005454", - "question_id": 47603, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001182", - "question_id": 47632, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "sa00008696", - "question_id": 47652, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "va00004009", - "question_id": 47657, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "eva00001046", - "question_id": 47664, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "00008944", - "question_id": 47673, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" - }, - { - "video_id": "sa00008889", - "question_id": 47681, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" - }, - { - "video_id": "sa00006083", - "question_id": 47688, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006706", - "question_id": 47694, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002647", - "question_id": 47729, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008440", - "question_id": 47753, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00006608", - "question_id": 47758, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00001020", - "question_id": 47792, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004782", - "question_id": 47794, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" - }, - { - "video_id": "00003299", - "question_id": 47796, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00002062", - "question_id": 47801, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"trumpet\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00008302", - "question_id": 47816, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00004553", - "question_id": 47818, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "eva00000740", - "question_id": 47825, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00002703", - "question_id": 47828, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00003973", - "question_id": 47840, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "esa00000472", - "question_id": 47841, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "va00005764", - "question_id": 47845, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "eva00001011", - "question_id": 47867, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005148", - "question_id": 47922, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "eva00001118", - "question_id": 47931, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "sa00007783", - "question_id": 47939, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" - }, - { - "video_id": "vv00000373", - "question_id": 47976, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "va00005904", - "question_id": 47992, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "sa00006755", - "question_id": 48044, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00000167", - "question_id": 48063, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005417", - "question_id": 48079, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" - }, - { - "video_id": "00002957", - "question_id": 48080, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000660", - "question_id": 48091, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007668", - "question_id": 48094, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "sa00006159", - "question_id": 48139, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "esa00000007", - "question_id": 48183, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000021", - "question_id": 48188, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004742", - "question_id": 48203, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000210", - "question_id": 48222, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004148", - "question_id": 48226, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00004462", - "question_id": 48248, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00000522", - "question_id": 48260, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00006253", - "question_id": 48266, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00000473", - "question_id": 48282, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" - }, - { - "video_id": "evv00001450", - "question_id": 48283, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00000882", - "question_id": 48296, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00000578", - "question_id": 48300, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "sa00008116", - "question_id": 48302, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" - }, - { - "video_id": "00000840", - "question_id": 48321, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00002091", - "question_id": 48332, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000016", - "question_id": 48347, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "00003132", - "question_id": 48359, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003095", - "question_id": 48362, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "eva00000940", - "question_id": 48377, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000839", - "question_id": 48383, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000207", - "question_id": 48394, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004887", - "question_id": 48409, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004190", - "question_id": 48415, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "00007931", - "question_id": 48417, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "va00005341", - "question_id": 48437, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" - }, - { - "video_id": "va00003871", - "question_id": 48446, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00001293", - "question_id": 48463, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005774", - "question_id": 48468, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"banjo\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "va00004617", - "question_id": 48474, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "esa00000172", - "question_id": 48478, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "vv00003046", - "question_id": 48479, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005620", - "question_id": 48481, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"clarinet\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "sa00006569", - "question_id": 48482, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "esa00000418", - "question_id": 48498, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007323", - "question_id": 48511, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "00002057", - "question_id": 48519, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000402", - "question_id": 48536, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"right\", \"banjo\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000072", - "question_id": 48537, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "banjo" - }, - { - "video_id": "00001854", - "question_id": 48554, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" - }, - { - "video_id": "00008586", - "question_id": 48586, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00000585", - "question_id": 48601, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003177", - "question_id": 48609, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004421", - "question_id": 48614, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005045", - "question_id": 48625, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003571", - "question_id": 48627, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006066", - "question_id": 48638, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003567", - "question_id": 48655, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00006077", - "question_id": 48666, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "eva00001207", - "question_id": 48667, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00000398", - "question_id": 48673, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004337", - "question_id": 48702, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007084", - "question_id": 48716, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "va00005528", - "question_id": 48717, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "esa00000164", - "question_id": 48727, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000368", - "question_id": 48735, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00001308", - "question_id": 48744, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000602", - "question_id": 48759, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001154", - "question_id": 48762, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "esa00000266", - "question_id": 48770, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "esa00000465", - "question_id": 48777, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00005222", - "question_id": 48778, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "esa00000564", - "question_id": 48783, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "00002464", - "question_id": 48788, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00008142", - "question_id": 48795, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00004978", - "question_id": 48799, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" - }, - { - "video_id": "00004185", - "question_id": 48805, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000505", - "question_id": 48812, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00007605", - "question_id": 48831, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "va00005596", - "question_id": 48834, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000677", - "question_id": 48835, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"xylophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003592", - "question_id": 48846, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "va00004770", - "question_id": 48858, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001029", - "question_id": 48873, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002075", - "question_id": 48890, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" - }, - { - "video_id": "00002338", - "question_id": 48891, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00006515", - "question_id": 48942, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005943", - "question_id": 48943, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00008890", - "question_id": 48960, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" - }, - { - "video_id": "00008847", - "question_id": 48967, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00000927", - "question_id": 48996, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000339", - "question_id": 49004, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003441", - "question_id": 49011, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00004437", - "question_id": 49015, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00002720", - "question_id": 49018, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" - }, - { - "video_id": "00004236", - "question_id": 49021, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" - }, - { - "video_id": "eva00000951", - "question_id": 49030, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001432", - "question_id": 49035, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "eva00001133", - "question_id": 49052, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007437", - "question_id": 49083, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000368", - "question_id": 49099, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00002511", - "question_id": 49110, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "eva00001104", - "question_id": 49121, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001469", - "question_id": 49122, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00001173", - "question_id": 49143, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003989", - "question_id": 49147, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000281", - "question_id": 49158, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00006928", - "question_id": 49181, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "sa00007203", - "question_id": 49193, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" - }, - { - "video_id": "00008025", - "question_id": 49194, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00004432", - "question_id": 49198, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "00006339", - "question_id": 49202, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"xylophone\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "00003349", - "question_id": 49207, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000249", - "question_id": 49220, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"congas\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00000957", - "question_id": 49226, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "esa00000688", - "question_id": 49240, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"tuba\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "vv00000647", - "question_id": 49244, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"suona\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00003810", - "question_id": 49245, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00005225", - "question_id": 49263, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "esa00000347", - "question_id": 49270, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00007072", - "question_id": 49297, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005469", - "question_id": 49304, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00001720", - "question_id": 49313, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" - }, - { - "video_id": "va00005713", - "question_id": 49333, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" - }, - { - "video_id": "00001218", - "question_id": 49337, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" - }, - { - "video_id": "00007547", - "question_id": 49338, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" - }, - { - "video_id": "00003161", - "question_id": 49347, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "evv00001302", - "question_id": 49364, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "congas" - }, - { - "video_id": "00007189", - "question_id": 49390, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" - }, - { - "video_id": "sa00008194", - "question_id": 49398, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" - }, - { - "video_id": "esa00000005", - "question_id": 49408, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"middle\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "sa00008653", - "question_id": 49409, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" - }, - { - "video_id": "00005984", - "question_id": 49416, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - }, - { - "video_id": "sa00007055", - "question_id": 49426, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" - }, - { - "video_id": "esa00000016", - "question_id": 49435, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" - } -] \ No newline at end of file diff --git a/data/json/avqa-val_fake.json b/data/json/avqa-val_fake.json deleted file mode 100644 index c6524b1..0000000 --- a/data/json/avqa-val_fake.json +++ /dev/null @@ -1,7177 +0,0 @@ -[{ - "video_id": "vv00000639", - "question_id": 28408, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000180", - "question_id": 28460, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "sa00007434", - "question_id": 28472, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "va00005379", - "question_id": 28484, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "sa00006092", - "question_id": 28563, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "va00005070", - "question_id": 28731, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "sa00007117", - "question_id": 28769, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "sa00008113", - "question_id": 28816, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004997", - "question_id": 28863, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007918", - "question_id": 28975, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00002656", - "question_id": 28981, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "va00005859", - "question_id": 29007, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "vv00000345", - "question_id": 29100, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "va00003091", - "question_id": 29131, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "va00003460", - "question_id": 29160, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "sa00007932", - "question_id": 29190, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00006905", - "question_id": 29194, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "sa00006173", - "question_id": 29272, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "sa00006961", - "question_id": 29443, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "sa00006007", - "question_id": 29489, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "sa00006783", - "question_id": 29509, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "sa00008532", - "question_id": 29530, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "sa00008053", - "question_id": 29560, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "va00005226", - "question_id": 29619, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00007687", - "question_id": 29629, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "va00005763", - "question_id": 29710, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "va00005763", - "question_id": 29710, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "sa00006545", - "question_id": 29815, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005356", - "question_id": 29865, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"xylophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005565", - "question_id": 29869, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "sa00006533", - "question_id": 29883, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "sa00006849", - "question_id": 29902, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008609", - "question_id": 30096, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "va00004028", - "question_id": 30122, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "vv00008936", - "question_id": 30174, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004777", - "question_id": 30177, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "vv00000348", - "question_id": 30201, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005713", - "question_id": 30215, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00008347", - "question_id": 30242, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "sa00008119", - "question_id": 30251, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bagpipe\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002527", - "question_id": 30349, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000650", - "question_id": 30578, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "vv00002749", - "question_id": 30597, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000284", - "question_id": 30619, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "vv00000478", - "question_id": 30791, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "vv00000361", - "question_id": 30926, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007433", - "question_id": 30964, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005298", - "question_id": 31013, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003400", - "question_id": 31014, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008693", - "question_id": 31104, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004259", - "question_id": 31141, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003511", - "question_id": 31147, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002888", - "question_id": 31167, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005964", - "question_id": 31181, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005379", - "question_id": 31212, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005923", - "question_id": 31225, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005462", - "question_id": 31242, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002888", - "question_id": 31304, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004708", - "question_id": 31306, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008769", - "question_id": 31371, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000584", - "question_id": 31377, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005596", - "question_id": 31381, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00008000", - "question_id": 31433, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004901", - "question_id": 31439, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004682", - "question_id": 31447, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008897", - "question_id": 31470, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000161", - "question_id": 31567, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003429", - "question_id": 31721, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008198", - "question_id": 31726, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007149", - "question_id": 31766, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002404", - "question_id": 31775, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "sa00007562", - "question_id": 31903, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005060", - "question_id": 31924, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00008937", - "question_id": 31935, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00002933", - "question_id": 31937, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "vv00002373", - "question_id": 31938, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"tuba\", \"left\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000239", - "question_id": 31992, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004518", - "question_id": 32142, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005462", - "question_id": 32190, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003823", - "question_id": 32207, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00005983", - "question_id": 32260, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004777", - "question_id": 32264, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004777", - "question_id": 32264, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006093", - "question_id": 32295, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006756", - "question_id": 32308, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007562", - "question_id": 32347, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003539", - "question_id": 32451, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000295", - "question_id": 32459, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005462", - "question_id": 32471, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004462", - "question_id": 32472, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006435", - "question_id": 32473, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003816", - "question_id": 32494, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006312", - "question_id": 32496, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00002421", - "question_id": 32581, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005206", - "question_id": 32603, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000088", - "question_id": 32627, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"tuba\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005111", - "question_id": 32669, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "vv00000538", - "question_id": 32685, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006611", - "question_id": 32700, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008094", - "question_id": 32749, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008785", - "question_id": 32872, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000531", - "question_id": 32924, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000531", - "question_id": 32978, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004299", - "question_id": 33035, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007332", - "question_id": 33049, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002507", - "question_id": 33064, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005889", - "question_id": 33144, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003123", - "question_id": 33168, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008398", - "question_id": 33170, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008314", - "question_id": 33249, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007778", - "question_id": 33263, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000375", - "question_id": 33267, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002987", - "question_id": 33285, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006586", - "question_id": 33300, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005586", - "question_id": 33337, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003153", - "question_id": 33371, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00005994", - "question_id": 33409, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002669", - "question_id": 33432, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006235", - "question_id": 33505, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005851", - "question_id": 33509, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006515", - "question_id": 33590, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00002748", - "question_id": 33625, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00000268", - "question_id": 33666, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007942", - "question_id": 33741, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007077", - "question_id": 33778, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003683", - "question_id": 33782, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007333", - "question_id": 33811, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000595", - "question_id": 33863, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008413", - "question_id": 33877, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003836", - "question_id": 33882, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005770", - "question_id": 33949, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003216", - "question_id": 33969, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008245", - "question_id": 33984, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005332", - "question_id": 34003, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004905", - "question_id": 34066, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006762", - "question_id": 34095, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006534", - "question_id": 34102, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008030", - "question_id": 34152, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007196", - "question_id": 34168, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002732", - "question_id": 34184, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"congas\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "va00004025", - "question_id": 34202, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "vv00003006", - "question_id": 34251, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "vv00002616", - "question_id": 34263, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006949", - "question_id": 34281, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007711", - "question_id": 34288, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006177", - "question_id": 34296, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004395", - "question_id": 34383, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004395", - "question_id": 34383, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004544", - "question_id": 34385, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003517", - "question_id": 34475, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008541", - "question_id": 34519, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004182", - "question_id": 34556, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008869", - "question_id": 34581, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00008963", - "question_id": 34616, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007469", - "question_id": 34654, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007613", - "question_id": 34698, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005299", - "question_id": 34734, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008741", - "question_id": 34782, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000383", - "question_id": 35031, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000373", - "question_id": 35143, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007215", - "question_id": 35197, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004926", - "question_id": 35218, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005759", - "question_id": 35223, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005320", - "question_id": 35240, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000383", - "question_id": 35310, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "va00004034", - "question_id": 35334, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008000", - "question_id": 35337, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003337", - "question_id": 35349, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007435", - "question_id": 35380, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008395", - "question_id": 35389, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007909", - "question_id": 35433, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004284", - "question_id": 35519, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006451", - "question_id": 35564, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006260", - "question_id": 35585, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004294", - "question_id": 35586, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006249", - "question_id": 35601, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007544", - "question_id": 35608, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006808", - "question_id": 35609, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004801", - "question_id": 35622, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006859", - "question_id": 35625, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003476", - "question_id": 35642, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003356", - "question_id": 35660, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000177", - "question_id": 35692, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00002769", - "question_id": 35714, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "sa00006534", - "question_id": 35724, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003268", - "question_id": 35740, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006195", - "question_id": 35758, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004926", - "question_id": 35788, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"guzheng\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "va00003919", - "question_id": 35803, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002792", - "question_id": 35825, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "sa00006645", - "question_id": 35881, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002555", - "question_id": 35938, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007890", - "question_id": 35943, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005220", - "question_id": 35964, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "sa00008136", - "question_id": 35975, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00008136", - "question_id": 35975, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005823", - "question_id": 36103, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005427", - "question_id": 36117, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000179", - "question_id": 36173, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bagpipe\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008500", - "question_id": 36181, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007139", - "question_id": 36284, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00005024", - "question_id": 36340, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007368", - "question_id": 36372, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005203", - "question_id": 36389, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008256", - "question_id": 36422, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008646", - "question_id": 36428, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000444", - "question_id": 36573, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008524", - "question_id": 36580, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002772", - "question_id": 36597, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007500", - "question_id": 36607, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00003046", - "question_id": 36683, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007768", - "question_id": 36714, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007027", - "question_id": 36820, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004370", - "question_id": 36825, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "va00004512", - "question_id": 36836, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005862", - "question_id": 36838, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006119", - "question_id": 36883, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000096", - "question_id": 36911, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"ukulele\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "vv00000572", - "question_id": 36917, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000554", - "question_id": 36934, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "sa00006863", - "question_id": 36948, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006909", - "question_id": 37065, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000081", - "question_id": 37086, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003356", - "question_id": 37133, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004677", - "question_id": 37157, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004157", - "question_id": 37209, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "sa00007659", - "question_id": 37283, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000348", - "question_id": 37305, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002421", - "question_id": 37308, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006077", - "question_id": 37319, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008611", - "question_id": 37344, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003157", - "question_id": 37366, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006847", - "question_id": 37400, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "vv00000158", - "question_id": 37470, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007667", - "question_id": 37534, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005041", - "question_id": 37536, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006949", - "question_id": 37543, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004580", - "question_id": 37553, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003446", - "question_id": 37562, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003692", - "question_id": 37569, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006783", - "question_id": 37577, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000453", - "question_id": 37585, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006937", - "question_id": 37601, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00002852", - "question_id": 37612, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "vv00002555", - "question_id": 37642, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00005995", - "question_id": 37681, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004114", - "question_id": 37716, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007196", - "question_id": 37729, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004714", - "question_id": 37731, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004580", - "question_id": 37802, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00003064", - "question_id": 37929, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "vv00002858", - "question_id": 37937, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00002858", - "question_id": 37937, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000595", - "question_id": 37950, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"tuba\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "sa00006454", - "question_id": 38002, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005403", - "question_id": 38016, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00002750", - "question_id": 38032, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002616", - "question_id": 38070, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "sa00007659", - "question_id": 38097, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002886", - "question_id": 38135, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00002969", - "question_id": 38138, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00000409", - "question_id": 38144, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"suona\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "va00005533", - "question_id": 38157, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00003078", - "question_id": 38180, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008593", - "question_id": 38204, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004211", - "question_id": 38283, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004968", - "question_id": 38318, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00004069", - "question_id": 38354, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004051", - "question_id": 38358, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004019", - "question_id": 38371, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002585", - "question_id": 38378, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005594", - "question_id": 38380, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005320", - "question_id": 38385, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003313", - "question_id": 38392, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002776", - "question_id": 38403, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00000196", - "question_id": 38429, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "va00005565", - "question_id": 38458, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004932", - "question_id": 38494, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006820", - "question_id": 38507, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006462", - "question_id": 38526, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008470", - "question_id": 38531, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008639", - "question_id": 38567, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002643", - "question_id": 38613, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007383", - "question_id": 38618, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008493", - "question_id": 38628, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00000484", - "question_id": 38668, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003255", - "question_id": 38692, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007462", - "question_id": 38697, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004242", - "question_id": 38702, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007582", - "question_id": 38727, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006220", - "question_id": 38736, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003675", - "question_id": 38741, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003838", - "question_id": 38746, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006863", - "question_id": 38751, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008876", - "question_id": 38798, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004419", - "question_id": 38806, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000118", - "question_id": 38814, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005780", - "question_id": 38840, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006278", - "question_id": 38913, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005434", - "question_id": 38935, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "vv00000257", - "question_id": 38944, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00006606", - "question_id": 38982, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00003244", - "question_id": 38987, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007668", - "question_id": 38991, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000394", - "question_id": 39003, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "sa00007208", - "question_id": 39009, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006645", - "question_id": 39100, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005289", - "question_id": 39131, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "sa00007455", - "question_id": 39146, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006756", - "question_id": 39161, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008387", - "question_id": 39164, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008198", - "question_id": 39191, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005518", - "question_id": 39255, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006318", - "question_id": 39285, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00005975", - "question_id": 39297, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006455", - "question_id": 39321, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005529", - "question_id": 39343, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "sa00008772", - "question_id": 39347, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004059", - "question_id": 39355, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"congas\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003702", - "question_id": 39359, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006983", - "question_id": 39387, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004888", - "question_id": 39395, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002416", - "question_id": 39423, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004526", - "question_id": 39459, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004617", - "question_id": 39467, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004808", - "question_id": 39533, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00007890", - "question_id": 39544, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007407", - "question_id": 39579, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008320", - "question_id": 39598, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"ukulele\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00006088", - "question_id": 39610, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006088", - "question_id": 39610, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004207", - "question_id": 39617, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"clarinet\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "vv00000638", - "question_id": 39624, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007060", - "question_id": 39638, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006694", - "question_id": 39647, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003891", - "question_id": 39674, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008243", - "question_id": 39705, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000102", - "question_id": 39771, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003961", - "question_id": 39783, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005130", - "question_id": 39785, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007089", - "question_id": 39802, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003767", - "question_id": 39808, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007286", - "question_id": 39809, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003271", - "question_id": 39817, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006173", - "question_id": 39852, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003992", - "question_id": 39859, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "vv00003027", - "question_id": 39865, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005758", - "question_id": 39868, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006984", - "question_id": 39906, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000190", - "question_id": 39947, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007332", - "question_id": 39948, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003982", - "question_id": 40058, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"suona\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008245", - "question_id": 40072, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003822", - "question_id": 40144, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"drum\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "vv00003053", - "question_id": 40158, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00008963", - "question_id": 40161, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "vv00000140", - "question_id": 40163, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "vv00002533", - "question_id": 40193, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"guzheng\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "sa00007166", - "question_id": 40211, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005528", - "question_id": 40225, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"congas\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "va00004708", - "question_id": 40299, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003533", - "question_id": 40321, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006690", - "question_id": 40322, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"flute\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "va00005545", - "question_id": 40441, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002914", - "question_id": 40482, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000323", - "question_id": 40486, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005942", - "question_id": 40490, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005060", - "question_id": 40502, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003456", - "question_id": 40509, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003533", - "question_id": 40532, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"flute\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "va00004036", - "question_id": 40607, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "va00004541", - "question_id": 40613, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"flute\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "sa00006278", - "question_id": 40626, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "va00004313", - "question_id": 40651, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006847", - "question_id": 40653, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003915", - "question_id": 40665, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003603", - "question_id": 40689, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007103", - "question_id": 40727, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00000478", - "question_id": 40770, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"xylophone\", \"right\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008835", - "question_id": 40797, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005303", - "question_id": 40798, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005862", - "question_id": 40820, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004370", - "question_id": 40853, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008320", - "question_id": 40854, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006344", - "question_id": 40859, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003844", - "question_id": 40860, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003675", - "question_id": 40867, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00003027", - "question_id": 40885, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007580", - "question_id": 40898, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "sa00006336", - "question_id": 40904, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"congas\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "sa00006456", - "question_id": 40911, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00005157", - "question_id": 40938, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004965", - "question_id": 40945, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00003517", - "question_id": 40948, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005458", - "question_id": 40963, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007166", - "question_id": 40992, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000478", - "question_id": 40999, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "sa00007709", - "question_id": 41023, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002953", - "question_id": 41029, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006199", - "question_id": 41040, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005827", - "question_id": 41041, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005349", - "question_id": 41058, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004329", - "question_id": 41105, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007509", - "question_id": 41129, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005577", - "question_id": 41137, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00008097", - "question_id": 41150, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000503", - "question_id": 41199, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005206", - "question_id": 41217, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003376", - "question_id": 41228, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"congas\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006015", - "question_id": 41293, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "vv00000396", - "question_id": 41298, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004677", - "question_id": 41326, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008068", - "question_id": 41356, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000052", - "question_id": 41359, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007332", - "question_id": 41393, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "sa00008156", - "question_id": 41395, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003236", - "question_id": 41403, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004993", - "question_id": 41412, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"suona\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "sa00007412", - "question_id": 41495, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"drum\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "sa00006083", - "question_id": 41515, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008269", - "question_id": 41552, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "vv00000052", - "question_id": 41575, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "va00005770", - "question_id": 41589, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00006567", - "question_id": 41595, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003495", - "question_id": 41613, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00004239", - "question_id": 41633, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"xylophone\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "vv00002656", - "question_id": 41634, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004544", - "question_id": 41639, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00005495", - "question_id": 41650, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00005991", - "question_id": 41673, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003453", - "question_id": 41696, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007256", - "question_id": 41701, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004511", - "question_id": 41710, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "va00005750", - "question_id": 41740, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002909", - "question_id": 41743, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008696", - "question_id": 41795, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005553", - "question_id": 41806, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005649", - "question_id": 41822, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003130", - "question_id": 41868, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006210", - "question_id": 41879, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005099", - "question_id": 41885, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005946", - "question_id": 41904, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "va00005583", - "question_id": 41921, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"electric_bass\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "sa00008936", - "question_id": 41932, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004282", - "question_id": 41999, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003094", - "question_id": 42010, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002988", - "question_id": 42042, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005931", - "question_id": 42051, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006015", - "question_id": 42070, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005723", - "question_id": 42123, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008817", - "question_id": 42135, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00003296", - "question_id": 42137, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005715", - "question_id": 42144, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004786", - "question_id": 42154, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00003645", - "question_id": 42172, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00007778", - "question_id": 42181, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004374", - "question_id": 42208, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "sa00008795", - "question_id": 42235, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "sa00007804", - "question_id": 42276, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005495", - "question_id": 42277, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "va00005298", - "question_id": 42278, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "sa00008653", - "question_id": 42300, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00005972", - "question_id": 42302, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "vv00002772", - "question_id": 42305, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "sa00007032", - "question_id": 42334, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "va00003760", - "question_id": 42341, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "vv00002622", - "question_id": 42363, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004137", - "question_id": 42383, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "sa00007746", - "question_id": 42387, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00007562", - "question_id": 42390, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00008269", - "question_id": 42417, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "sa00007735", - "question_id": 42453, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "va00005174", - "question_id": 42481, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "va00003386", - "question_id": 42521, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000647", - "question_id": 42526, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006985", - "question_id": 42527, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00005224", - "question_id": 42530, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00008229", - "question_id": 42533, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004305", - "question_id": 42542, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "va00004351", - "question_id": 42550, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00008388", - "question_id": 42559, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "sa00008219", - "question_id": 42566, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "va00003645", - "question_id": 42613, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "va00003173", - "question_id": 42620, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "va00005378", - "question_id": 42624, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007256", - "question_id": 42676, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "vv00000524", - "question_id": 42703, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006224", - "question_id": 42711, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "sa00006424", - "question_id": 42732, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "va00004993", - "question_id": 42745, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004469", - "question_id": 42746, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "sa00008400", - "question_id": 42769, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000190", - "question_id": 42798, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00004623", - "question_id": 42843, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00000010", - "question_id": 42852, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "sa00006909", - "question_id": 42872, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00003369", - "question_id": 42895, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "sa00008138", - "question_id": 42897, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "va00003898", - "question_id": 42902, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "vv00002975", - "question_id": 42909, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "va00003295", - "question_id": 42924, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "sa00007804", - "question_id": 42962, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "sa00008723", - "question_id": 42973, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "vv00000227", - "question_id": 42979, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "sa00007186", - "question_id": 42993, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "sa00007103", - "question_id": 43018, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000513", - "question_id": 43023, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "sa00008746", - "question_id": 43024, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "sa00006586", - "question_id": 43026, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "sa00007605", - "question_id": 43051, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "sa00008630", - "question_id": 43060, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003240", - "question_id": 43072, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00006341", - "question_id": 43074, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"xylophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005660", - "question_id": 43113, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"erhu\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "va00004591", - "question_id": 43119, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"trumpet\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "va00004640", - "question_id": 43154, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "va00003156", - "question_id": 43155, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00008897", - "question_id": 43181, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "va00005894", - "question_id": 43215, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002797", - "question_id": 43243, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "va00003255", - "question_id": 43248, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"congas\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "sa00007605", - "question_id": 43260, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "va00004470", - "question_id": 43268, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "vv00002404", - "question_id": 43294, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "va00003988", - "question_id": 43304, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "sa00008462", - "question_id": 43342, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "sa00008566", - "question_id": 43349, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00004513", - "question_id": 43377, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"banjo\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004591", - "question_id": 43396, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003702", - "question_id": 43424, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "va00005894", - "question_id": 43443, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00000140", - "question_id": 43453, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "sa00008897", - "question_id": 43487, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00007323", - "question_id": 43492, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006312", - "question_id": 43519, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "va00005243", - "question_id": 43541, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006451", - "question_id": 43551, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "va00003898", - "question_id": 43555, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002674", - "question_id": 43560, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "va00003853", - "question_id": 43616, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008513", - "question_id": 43617, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"trumpet\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008314", - "question_id": 43632, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bagpipe\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00007799", - "question_id": 43640, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003115", - "question_id": 43653, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00006712", - "question_id": 43657, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003345", - "question_id": 43676, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"accordion\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "eva00000772", - "question_id": 43706, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001021", - "question_id": 43713, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001324", - "question_id": 43729, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000818", - "question_id": 43734, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000966", - "question_id": 43746, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "eva00001018", - "question_id": 43785, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001262", - "question_id": 43796, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000652", - "question_id": 43801, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000718", - "question_id": 43808, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000635", - "question_id": 43840, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000615", - "question_id": 43847, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000540", - "question_id": 43873, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001228", - "question_id": 43892, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000951", - "question_id": 43893, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001407", - "question_id": 43904, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000291", - "question_id": 43909, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001089", - "question_id": 43929, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000875", - "question_id": 43930, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000875", - "question_id": 43930, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001241", - "question_id": 43932, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001244", - "question_id": 43945, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000980", - "question_id": 43955, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001228", - "question_id": 43965, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00001005", - "question_id": 43971, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001189", - "question_id": 44023, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000809", - "question_id": 44036, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "eva00001107", - "question_id": 44046, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00001037", - "question_id": 44050, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000660", - "question_id": 44065, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000197", - "question_id": 44069, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000618", - "question_id": 44074, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000232", - "question_id": 44077, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000783", - "question_id": 44119, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001481", - "question_id": 44128, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000151", - "question_id": 44133, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001201", - "question_id": 44143, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000172", - "question_id": 44151, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000437", - "question_id": 44158, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001397", - "question_id": 44181, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000259", - "question_id": 44190, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000795", - "question_id": 44203, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "evv00001243", - "question_id": 44211, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001312", - "question_id": 44224, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "esa00000400", - "question_id": 44236, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000522", - "question_id": 44237, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bassoon\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000566", - "question_id": 44256, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000397", - "question_id": 44266, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001381", - "question_id": 44276, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000951", - "question_id": 44281, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001278", - "question_id": 44295, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001032", - "question_id": 44300, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001182", - "question_id": 44308, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00002764", - "question_id": 44313, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000970", - "question_id": 44315, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000426", - "question_id": 44317, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"banjo\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001387", - "question_id": 44324, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000461", - "question_id": 44350, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000906", - "question_id": 44366, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000211", - "question_id": 44378, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000975", - "question_id": 44437, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000620", - "question_id": 44450, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000732", - "question_id": 44482, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001481", - "question_id": 44487, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000899", - "question_id": 44510, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000807", - "question_id": 44525, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000756", - "question_id": 44527, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001252", - "question_id": 44552, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001099", - "question_id": 44571, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001063", - "question_id": 44583, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000004", - "question_id": 44620, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000899", - "question_id": 44622, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00000726", - "question_id": 44642, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000933", - "question_id": 44648, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000933", - "question_id": 44648, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000149", - "question_id": 44692, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000493", - "question_id": 44720, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000805", - "question_id": 44728, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000549", - "question_id": 44752, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001145", - "question_id": 44756, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001118", - "question_id": 44765, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bassoon\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001278", - "question_id": 44767, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000307", - "question_id": 44790, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000277", - "question_id": 44811, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000753", - "question_id": 44822, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001182", - "question_id": 44857, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "eva00000962", - "question_id": 44876, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000768", - "question_id": 44877, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00000768", - "question_id": 44881, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000832", - "question_id": 44902, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000559", - "question_id": 44905, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001366", - "question_id": 44907, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001353", - "question_id": 44914, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000811", - "question_id": 44924, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"tuba\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000697", - "question_id": 44936, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000301", - "question_id": 44948, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001305", - "question_id": 44955, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "eva00000932", - "question_id": 44963, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000903", - "question_id": 44969, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000501", - "question_id": 44989, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001073", - "question_id": 44993, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00000825", - "question_id": 45021, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000296", - "question_id": 45024, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001132", - "question_id": 45041, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000475", - "question_id": 45058, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000705", - "question_id": 45063, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000705", - "question_id": 45063, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000199", - "question_id": 45071, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001304", - "question_id": 45107, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"tuba\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000565", - "question_id": 45112, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000601", - "question_id": 45118, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000628", - "question_id": 45133, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000313", - "question_id": 45134, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001215", - "question_id": 45141, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000911", - "question_id": 45148, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000313", - "question_id": 45173, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000294", - "question_id": 45195, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "esa00000232", - "question_id": 45203, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001150", - "question_id": 45269, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001467", - "question_id": 45270, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000271", - "question_id": 45289, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001277", - "question_id": 45292, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"trumpet\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001233", - "question_id": 45302, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "evv00001308", - "question_id": 45333, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000367", - "question_id": 45334, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00003597", - "question_id": 45336, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "evv00001442", - "question_id": 45340, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"xylophone\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000921", - "question_id": 45343, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00001205", - "question_id": 45354, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001166", - "question_id": 45365, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001414", - "question_id": 45367, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000328", - "question_id": 45384, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001145", - "question_id": 45394, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000994", - "question_id": 45401, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "sa00007778", - "question_id": 45407, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00000987", - "question_id": 45415, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000402", - "question_id": 45417, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001446", - "question_id": 45432, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00000826", - "question_id": 45442, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "eva00001081", - "question_id": 45454, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000891", - "question_id": 45457, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001173", - "question_id": 45461, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"electric_bass\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000982", - "question_id": 45476, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000678", - "question_id": 45481, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001056", - "question_id": 45488, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001392", - "question_id": 45502, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "sa00006207", - "question_id": 45509, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000636", - "question_id": 45516, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000243", - "question_id": 45528, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00000932", - "question_id": 45560, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "eva00001085", - "question_id": 45574, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001377", - "question_id": 45592, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "eva00000941", - "question_id": 45629, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000645", - "question_id": 45636, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "eva00001098", - "question_id": 45647, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000337", - "question_id": 45673, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001412", - "question_id": 45688, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "eva00000822", - "question_id": 45724, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001344", - "question_id": 45755, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"ukulele\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001063", - "question_id": 45766, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000433", - "question_id": 45802, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000631", - "question_id": 45828, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000880", - "question_id": 45840, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00001070", - "question_id": 45855, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000852", - "question_id": 45869, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00000813", - "question_id": 45908, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001425", - "question_id": 45920, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00000921", - "question_id": 45929, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001267", - "question_id": 45933, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000312", - "question_id": 45963, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000547", - "question_id": 45976, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001250", - "question_id": 45990, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001395", - "question_id": 45994, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000405", - "question_id": 46032, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "evv00001407", - "question_id": 46088, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "evv00001262", - "question_id": 46135, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"middle\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007710", - "question_id": 46137, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001291", - "question_id": 46143, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00000720", - "question_id": 46183, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"middle\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001292", - "question_id": 46235, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000442", - "question_id": 46240, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001334", - "question_id": 46249, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001454", - "question_id": 46253, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000889", - "question_id": 46273, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"last\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "esa00000522", - "question_id": 46285, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"clarinet\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "eva00001156", - "question_id": 46298, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001202", - "question_id": 46305, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001018", - "question_id": 46324, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00000866", - "question_id": 46336, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"electric_bass\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000699", - "question_id": 46368, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000831", - "question_id": 46398, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001343", - "question_id": 46425, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"suona\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001427", - "question_id": 46434, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000678", - "question_id": 46436, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001363", - "question_id": 46437, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001114", - "question_id": 46439, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000797", - "question_id": 46468, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000528", - "question_id": 46479, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000297", - "question_id": 46488, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000732", - "question_id": 46491, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00001000", - "question_id": 46493, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004989", - "question_id": 46494, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001344", - "question_id": 46507, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"ukulele\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "eva00000772", - "question_id": 46535, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000328", - "question_id": 46559, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000792", - "question_id": 46577, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001264", - "question_id": 46585, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001217", - "question_id": 46622, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"middle\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000852", - "question_id": 46624, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00001186", - "question_id": 46631, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000504", - "question_id": 46635, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000867", - "question_id": 46661, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00001158", - "question_id": 46664, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001484", - "question_id": 46666, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"saxophone\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "evv00001356", - "question_id": 46691, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "evv00001415", - "question_id": 46698, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000748", - "question_id": 46719, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001297", - "question_id": 46762, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005052", - "question_id": 46774, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000697", - "question_id": 46800, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000990", - "question_id": 46823, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00001030", - "question_id": 46841, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "eva00001044", - "question_id": 46863, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001195", - "question_id": 46924, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "esa00000477", - "question_id": 46925, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000582", - "question_id": 46950, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000968", - "question_id": 46962, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "esa00000418", - "question_id": 46975, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "esa00000021", - "question_id": 46980, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000640", - "question_id": 46991, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000248", - "question_id": 47015, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "eva00001117", - "question_id": 47025, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000528", - "question_id": 47039, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000230", - "question_id": 47048, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000182", - "question_id": 47054, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"bagpipe\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001373", - "question_id": 47070, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001338", - "question_id": 47080, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "esa00000582", - "question_id": 47089, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000347", - "question_id": 47117, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "esa00000211", - "question_id": 47144, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"congas\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "evv00001445", - "question_id": 47160, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"xylophone\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "esa00000463", - "question_id": 47164, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000368", - "question_id": 47203, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000267", - "question_id": 47216, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001107", - "question_id": 47239, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "sa00008641", - "question_id": 47257, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001172", - "question_id": 47263, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000451", - "question_id": 47264, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "esa00000451", - "question_id": 47264, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00000853", - "question_id": 47275, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000427", - "question_id": 47306, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "eva00000713", - "question_id": 47309, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "eva00000968", - "question_id": 47317, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "evv00001327", - "question_id": 47321, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "eva00001081", - "question_id": 47322, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000354", - "question_id": 47388, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000557", - "question_id": 47390, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"xylophone\", \"middle\", \"congas\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000222", - "question_id": 47399, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000269", - "question_id": 47421, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"banjo\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004304", - "question_id": 47433, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000737", - "question_id": 47449, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001126", - "question_id": 47469, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "esa00000667", - "question_id": 47476, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "evv00001329", - "question_id": 47482, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001467", - "question_id": 47485, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000706", - "question_id": 47488, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "esa00000169", - "question_id": 47510, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "sa00007976", - "question_id": 47586, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "esa00000587", - "question_id": 47591, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"saxophone\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "eva00001182", - "question_id": 47632, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "sa00008696", - "question_id": 47652, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"banjo\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "va00004009", - "question_id": 47657, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "eva00001046", - "question_id": 47664, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00008889", - "question_id": 47681, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "sa00006083", - "question_id": 47688, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006706", - "question_id": 47694, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002647", - "question_id": 47729, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000740", - "question_id": 47825, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "esa00000472", - "question_id": 47841, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "va00005764", - "question_id": 47845, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "eva00001011", - "question_id": 47867, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005148", - "question_id": 47922, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "eva00001118", - "question_id": 47931, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "sa00007783", - "question_id": 47939, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "vv00000373", - "question_id": 47976, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "va00005904", - "question_id": 47992, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "sa00006755", - "question_id": 48044, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "esa00000660", - "question_id": 48091, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007668", - "question_id": 48094, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "sa00006159", - "question_id": 48139, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "esa00000007", - "question_id": 48183, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000021", - "question_id": 48188, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000210", - "question_id": 48222, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004462", - "question_id": 48248, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "evv00001450", - "question_id": 48283, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000882", - "question_id": 48296, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "sa00008116", - "question_id": 48302, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "esa00000016", - "question_id": 48347, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "eva00000940", - "question_id": 48377, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000839", - "question_id": 48383, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000207", - "question_id": 48394, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00004887", - "question_id": 48409, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005341", - "question_id": 48437, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "va00003871", - "question_id": 48446, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "va00004617", - "question_id": 48474, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "esa00000172", - "question_id": 48478, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "vv00003046", - "question_id": 48479, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006569", - "question_id": 48482, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "esa00000418", - "question_id": 48498, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007323", - "question_id": 48511, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "esa00000402", - "question_id": 48536, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"right\", \"banjo\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006077", - "question_id": 48666, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "eva00001207", - "question_id": 48667, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "va00005528", - "question_id": 48717, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "esa00000164", - "question_id": 48727, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000368", - "question_id": 48735, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "esa00000602", - "question_id": 48759, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001154", - "question_id": 48762, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "esa00000266", - "question_id": 48770, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "esa00000465", - "question_id": 48777, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005222", - "question_id": 48778, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "esa00000564", - "question_id": 48783, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "va00004978", - "question_id": 48799, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "esa00000505", - "question_id": 48812, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007605", - "question_id": 48831, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00005596", - "question_id": 48834, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000677", - "question_id": 48835, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"xylophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "va00004770", - "question_id": 48858, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"erhu\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001029", - "question_id": 48873, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00006515", - "question_id": 48942, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"drum\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00000927", - "question_id": 48996, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000339", - "question_id": 49004, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"guzheng\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00000951", - "question_id": 49030, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001432", - "question_id": 49035, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "eva00001133", - "question_id": 49052, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000368", - "question_id": 49099, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00002511", - "question_id": 49110, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "eva00001104", - "question_id": 49121, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "evv00001469", - "question_id": 49122, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "esa00000281", - "question_id": 49158, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007203", - "question_id": 49193, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "esa00000249", - "question_id": 49220, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"congas\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000688", - "question_id": 49240, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"tuba\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "vv00000647", - "question_id": 49244, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"suona\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "esa00000347", - "question_id": 49270, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "va00005713", - "question_id": 49333, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "evv00001302", - "question_id": 49364, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "sa00008194", - "question_id": 49398, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "esa00000005", - "question_id": 49408, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"middle\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00008653", - "question_id": 49409, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "sa00007055", - "question_id": 49426, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "esa00000016", - "question_id": 49435, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}] \ No newline at end of file diff --git a/data/json/avqa-val_real.json b/data/json/avqa-val_real.json deleted file mode 100644 index 3551fdd..0000000 --- a/data/json/avqa-val_real.json +++ /dev/null @@ -1,29585 +0,0 @@ -[{ - "video_id": "00000028", - "question_id": 7, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000108", - "question_id": 10, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"guzheng\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000288", - "question_id": 11, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00000132", - "question_id": 31, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000112", - "question_id": 37, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000037", - "question_id": 60, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000093", - "question_id": 68, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000241", - "question_id": 74, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000272", - "question_id": 86, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000250", - "question_id": 98, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000226", - "question_id": 100, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000022", - "question_id": 106, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000039", - "question_id": 113, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000007", - "question_id": 133, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000107", - "question_id": 137, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000074", - "question_id": 154, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000057", - "question_id": 172, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000065", - "question_id": 183, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000198", - "question_id": 206, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000027", - "question_id": 208, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005792", - "question_id": 226, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004170", - "question_id": 263, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005178", - "question_id": 266, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004893", - "question_id": 268, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001215", - "question_id": 273, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004684", - "question_id": 282, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007300", - "question_id": 291, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007300", - "question_id": 291, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000792", - "question_id": 311, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007457", - "question_id": 314, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003328", - "question_id": 337, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005850", - "question_id": 343, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008978", - "question_id": 346, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000210", - "question_id": 348, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006431", - "question_id": 349, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008355", - "question_id": 356, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000875", - "question_id": 357, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001877", - "question_id": 359, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001144", - "question_id": 362, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006774", - "question_id": 373, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006155", - "question_id": 392, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005430", - "question_id": 404, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002981", - "question_id": 410, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007801", - "question_id": 411, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000420", - "question_id": 419, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005469", - "question_id": 427, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008946", - "question_id": 428, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007521", - "question_id": 449, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007495", - "question_id": 456, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005570", - "question_id": 459, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004129", - "question_id": 476, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000859", - "question_id": 485, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006211", - "question_id": 489, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002683", - "question_id": 510, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001601", - "question_id": 514, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008064", - "question_id": 531, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002124", - "question_id": 545, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001310", - "question_id": 559, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008469", - "question_id": 580, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007559", - "question_id": 602, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004630", - "question_id": 604, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000948", - "question_id": 617, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001577", - "question_id": 626, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005129", - "question_id": 641, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004063", - "question_id": 654, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001929", - "question_id": 655, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003610", - "question_id": 663, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006135", - "question_id": 664, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007604", - "question_id": 685, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006868", - "question_id": 688, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000187", - "question_id": 689, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007981", - "question_id": 694, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006669", - "question_id": 698, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000496", - "question_id": 703, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003454", - "question_id": 732, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004317", - "question_id": 741, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000402", - "question_id": 749, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001590", - "question_id": 769, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001822", - "question_id": 784, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005264", - "question_id": 802, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004389", - "question_id": 805, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008054", - "question_id": 816, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000898", - "question_id": 833, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003535", - "question_id": 835, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006082", - "question_id": 860, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002395", - "question_id": 862, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007742", - "question_id": 872, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001190", - "question_id": 878, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002650", - "question_id": 880, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002854", - "question_id": 914, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007404", - "question_id": 957, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005675", - "question_id": 972, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005591", - "question_id": 973, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000341", - "question_id": 985, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003513", - "question_id": 998, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005389", - "question_id": 1023, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007030", - "question_id": 1028, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003138", - "question_id": 1041, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002026", - "question_id": 1048, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008457", - "question_id": 1051, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005247", - "question_id": 1059, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008082", - "question_id": 1064, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002095", - "question_id": 1071, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000729", - "question_id": 1077, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000785", - "question_id": 1087, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "more than ten" -}, { - "video_id": "00007876", - "question_id": 1088, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000137", - "question_id": 1108, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003497", - "question_id": 1112, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001845", - "question_id": 1125, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001471", - "question_id": 1161, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004201", - "question_id": 1185, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008373", - "question_id": 1194, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001453", - "question_id": 1201, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008907", - "question_id": 1218, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005067", - "question_id": 1231, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007381", - "question_id": 1235, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005412", - "question_id": 1236, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008161", - "question_id": 1246, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002189", - "question_id": 1256, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002232", - "question_id": 1258, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002741", - "question_id": 1262, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003011", - "question_id": 1284, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003649", - "question_id": 1306, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002426", - "question_id": 1325, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007305", - "question_id": 1338, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008315", - "question_id": 1344, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006322", - "question_id": 1364, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005375", - "question_id": 1383, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008177", - "question_id": 1396, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004400", - "question_id": 1411, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007963", - "question_id": 1416, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002727", - "question_id": 1425, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008960", - "question_id": 1428, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003630", - "question_id": 1441, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002788", - "question_id": 1447, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005497", - "question_id": 1459, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005317", - "question_id": 1463, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000826", - "question_id": 1467, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004743", - "question_id": 1471, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002077", - "question_id": 1509, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004679", - "question_id": 1512, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001697", - "question_id": 1513, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001802", - "question_id": 1517, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006189", - "question_id": 1518, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006021", - "question_id": 1522, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000688", - "question_id": 1523, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008160", - "question_id": 1526, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004184", - "question_id": 1527, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007025", - "question_id": 1553, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000324", - "question_id": 1560, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002327", - "question_id": 1561, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003530", - "question_id": 1563, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00000961", - "question_id": 1579, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004730", - "question_id": 1593, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003660", - "question_id": 1606, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004694", - "question_id": 1612, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003332", - "question_id": 1626, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00001435", - "question_id": 1631, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007595", - "question_id": 1633, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001904", - "question_id": 1639, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007231", - "question_id": 1641, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002521", - "question_id": 1648, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007669", - "question_id": 1654, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001521", - "question_id": 1672, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004258", - "question_id": 1684, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008888", - "question_id": 1688, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002376", - "question_id": 1709, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005716", - "question_id": 1739, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000716", - "question_id": 1753, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003279", - "question_id": 1759, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007833", - "question_id": 1761, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000486", - "question_id": 1789, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005309", - "question_id": 1800, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001409", - "question_id": 1807, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005524", - "question_id": 1829, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003110", - "question_id": 1837, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007503", - "question_id": 1878, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001744", - "question_id": 1891, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007821", - "question_id": 1905, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008753", - "question_id": 1907, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005121", - "question_id": 1908, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002339", - "question_id": 1910, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005607", - "question_id": 1912, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004105", - "question_id": 1917, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006479", - "question_id": 1933, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003177", - "question_id": 1939, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000266", - "question_id": 1940, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000446", - "question_id": 1943, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006457", - "question_id": 1944, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006754", - "question_id": 1949, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006044", - "question_id": 1956, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003399", - "question_id": 1973, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006912", - "question_id": 1993, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003962", - "question_id": 2033, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "seven" -}, { - "video_id": "00003620", - "question_id": 2035, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000050", - "question_id": 2051, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000144", - "question_id": 2056, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008008", - "question_id": 2064, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007947", - "question_id": 2065, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003694", - "question_id": 2071, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001121", - "question_id": 2074, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001255", - "question_id": 2084, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008849", - "question_id": 2090, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000514", - "question_id": 2132, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008239", - "question_id": 2146, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008272", - "question_id": 2147, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004900", - "question_id": 2155, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004860", - "question_id": 2161, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005867", - "question_id": 2171, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000880", - "question_id": 2175, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006703", - "question_id": 2176, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008916", - "question_id": 2186, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001665", - "question_id": 2190, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004827", - "question_id": 2193, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005191", - "question_id": 2196, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005412", - "question_id": 2215, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003532", - "question_id": 2227, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005248", - "question_id": 2230, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006309", - "question_id": 2234, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003933", - "question_id": 2238, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006969", - "question_id": 2250, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007840", - "question_id": 2268, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008342", - "question_id": 2279, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005986", - "question_id": 2287, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007012", - "question_id": 2288, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001489", - "question_id": 2303, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004517", - "question_id": 2305, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00000867", - "question_id": 2311, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008127", - "question_id": 2315, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002358", - "question_id": 2323, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007080", - "question_id": 2326, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004811", - "question_id": 2328, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001860", - "question_id": 2337, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002243", - "question_id": 2352, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002962", - "question_id": 2360, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006345", - "question_id": 2362, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003829", - "question_id": 2366, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007157", - "question_id": 2374, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004281", - "question_id": 2379, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008428", - "question_id": 2407, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004362", - "question_id": 2434, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008584", - "question_id": 2441, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008569", - "question_id": 2446, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001713", - "question_id": 2459, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004720", - "question_id": 2467, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005209", - "question_id": 2478, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006171", - "question_id": 2493, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000889", - "question_id": 2502, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003035", - "question_id": 2511, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000168", - "question_id": 2512, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003975", - "question_id": 2515, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000352", - "question_id": 2517, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001535", - "question_id": 2533, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003074", - "question_id": 2534, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003799", - "question_id": 2547, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004537", - "question_id": 2548, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005459", - "question_id": 2551, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000297", - "question_id": 2557, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006390", - "question_id": 2560, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005554", - "question_id": 2565, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008540", - "question_id": 2567, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003344", - "question_id": 2577, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004081", - "question_id": 2580, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006045", - "question_id": 2586, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002203", - "question_id": 2589, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005143", - "question_id": 2615, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002443", - "question_id": 2643, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008816", - "question_id": 2644, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008106", - "question_id": 2648, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003377", - "question_id": 2692, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001644", - "question_id": 2705, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001307", - "question_id": 2711, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000175", - "question_id": 2723, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001392", - "question_id": 2725, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007317", - "question_id": 2735, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007131", - "question_id": 2739, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005618", - "question_id": 2747, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008915", - "question_id": 2758, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006953", - "question_id": 2764, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008390", - "question_id": 2803, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006810", - "question_id": 2805, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003870", - "question_id": 2819, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006496", - "question_id": 2841, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002795", - "question_id": 2846, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002862", - "question_id": 2855, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002488", - "question_id": 2864, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004768", - "question_id": 2873, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002002", - "question_id": 2899, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001688", - "question_id": 2904, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004554", - "question_id": 2906, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003946", - "question_id": 2907, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007274", - "question_id": 2929, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004461", - "question_id": 2950, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007862", - "question_id": 2976, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004152", - "question_id": 2988, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003291", - "question_id": 3003, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000706", - "question_id": 3005, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007843", - "question_id": 3026, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003492", - "question_id": 3036, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005517", - "question_id": 3045, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001024", - "question_id": 3057, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005966", - "question_id": 3058, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003846", - "question_id": 3068, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003252", - "question_id": 3069, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000393", - "question_id": 3080, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000677", - "question_id": 3099, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005234", - "question_id": 3127, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001557", - "question_id": 3151, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000310", - "question_id": 3153, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006333", - "question_id": 3181, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002620", - "question_id": 3190, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003472", - "question_id": 3195, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007105", - "question_id": 3198, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008675", - "question_id": 3200, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006510", - "question_id": 3210, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002502", - "question_id": 3214, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004245", - "question_id": 3215, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002605", - "question_id": 3226, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002232", - "question_id": 3228, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000100", - "question_id": 3235, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001878", - "question_id": 3237, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004957", - "question_id": 3241, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008616", - "question_id": 3248, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002208", - "question_id": 3253, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002059", - "question_id": 3259, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000665", - "question_id": 3262, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007431", - "question_id": 3263, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001709", - "question_id": 3292, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006267", - "question_id": 3307, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006795", - "question_id": 3309, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005847", - "question_id": 3314, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001266", - "question_id": 3339, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001173", - "question_id": 3344, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008846", - "question_id": 3350, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004927", - "question_id": 3366, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001082", - "question_id": 3376, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002264", - "question_id": 3379, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007220", - "question_id": 3383, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002410", - "question_id": 3398, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004331", - "question_id": 3417, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004523", - "question_id": 3419, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006367", - "question_id": 3426, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004613", - "question_id": 3433, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007273", - "question_id": 3437, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001869", - "question_id": 3443, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001078", - "question_id": 3453, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008491", - "question_id": 3456, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005706", - "question_id": 3479, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005579", - "question_id": 3500, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000763", - "question_id": 3514, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000156", - "question_id": 3516, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005088", - "question_id": 3519, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008703", - "question_id": 3524, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006719", - "question_id": 3526, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005187", - "question_id": 3546, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007359", - "question_id": 3560, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003946", - "question_id": 3563, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003463", - "question_id": 3565, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005598", - "question_id": 3574, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000590", - "question_id": 3576, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003228", - "question_id": 3593, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001507", - "question_id": 3632, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001123", - "question_id": 3637, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008484", - "question_id": 3647, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003611", - "question_id": 3689, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003312", - "question_id": 3704, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001561", - "question_id": 3708, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005488", - "question_id": 3716, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001287", - "question_id": 3735, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001098", - "question_id": 3736, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006033", - "question_id": 3740, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007904", - "question_id": 3756, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006737", - "question_id": 3761, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000198", - "question_id": 3805, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008662", - "question_id": 3818, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002586", - "question_id": 3825, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000922", - "question_id": 3831, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008568", - "question_id": 3839, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005777", - "question_id": 3840, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008133", - "question_id": 3841, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004425", - "question_id": 3848, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002839", - "question_id": 3866, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006639", - "question_id": 3893, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000250", - "question_id": 3901, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008294", - "question_id": 3904, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004992", - "question_id": 3935, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007048", - "question_id": 3963, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001185", - "question_id": 3980, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008940", - "question_id": 3982, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003711", - "question_id": 4021, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000294", - "question_id": 4028, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001221", - "question_id": 4035, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003575", - "question_id": 4041, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002968", - "question_id": 4044, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008276", - "question_id": 4046, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008304", - "question_id": 4059, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005556", - "question_id": 4068, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003753", - "question_id": 4077, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004225", - "question_id": 4083, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003824", - "question_id": 4088, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006838", - "question_id": 4089, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002923", - "question_id": 4091, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000601", - "question_id": 4096, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004818", - "question_id": 4103, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000008", - "question_id": 4117, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007612", - "question_id": 4123, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006672", - "question_id": 4124, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007542", - "question_id": 4138, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003916", - "question_id": 4140, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments sound in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001946", - "question_id": 4141, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005204", - "question_id": 4145, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005722", - "question_id": 4152, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"banjo\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003161", - "question_id": 4163, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002167", - "question_id": 4168, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002358", - "question_id": 4176, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006715", - "question_id": 4181, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008134", - "question_id": 4198, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007762", - "question_id": 4238, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00007255", - "question_id": 4242, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007791", - "question_id": 4246, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00005689", - "question_id": 4257, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00001948", - "question_id": 4260, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008932", - "question_id": 4287, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003987", - "question_id": 4296, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007858", - "question_id": 4301, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005793", - "question_id": 4311, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006242", - "question_id": 4327, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007125", - "question_id": 4358, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001435", - "question_id": 4363, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007167", - "question_id": 4367, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00007099", - "question_id": 4374, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002651", - "question_id": 4389, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006126", - "question_id": 4394, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004356", - "question_id": 4399, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000466", - "question_id": 4412, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002872", - "question_id": 4424, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002812", - "question_id": 4430, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006350", - "question_id": 4432, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005018", - "question_id": 4446, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004510", - "question_id": 4467, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00004972", - "question_id": 4468, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006737", - "question_id": 4470, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00001297", - "question_id": 4475, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000335", - "question_id": 4495, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000625", - "question_id": 4507, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008260", - "question_id": 4527, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006489", - "question_id": 4554, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002108", - "question_id": 4560, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006416", - "question_id": 4563, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004856", - "question_id": 4564, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004792", - "question_id": 4571, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005839", - "question_id": 4588, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004500", - "question_id": 4589, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003308", - "question_id": 4590, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00007847", - "question_id": 4609, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000581", - "question_id": 4612, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008774", - "question_id": 4630, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006139", - "question_id": 4634, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006560", - "question_id": 4640, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008542", - "question_id": 4646, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008975", - "question_id": 4647, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004433", - "question_id": 4655, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000051", - "question_id": 4673, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008057", - "question_id": 4679, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006037", - "question_id": 4748, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003182", - "question_id": 4768, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005380", - "question_id": 4776, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006647", - "question_id": 4781, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00003522", - "question_id": 4790, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008363", - "question_id": 4803, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004649", - "question_id": 4819, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002220", - "question_id": 4821, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005219", - "question_id": 4822, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001248", - "question_id": 4841, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008782", - "question_id": 4848, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008402", - "question_id": 4856, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00000982", - "question_id": 4861, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007168", - "question_id": 4875, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00000231", - "question_id": 4891, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007255", - "question_id": 4892, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008569", - "question_id": 4894, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"xylophone\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005072", - "question_id": 4903, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"last\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000570", - "question_id": 4934, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003552", - "question_id": 4940, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00001615", - "question_id": 4941, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001777", - "question_id": 4948, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003501", - "question_id": 4963, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000559", - "question_id": 4981, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007861", - "question_id": 4984, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006878", - "question_id": 4991, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000666", - "question_id": 4993, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004151", - "question_id": 4999, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005760", - "question_id": 5001, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006383", - "question_id": 5008, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000612", - "question_id": 5019, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004625", - "question_id": 5032, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005448", - "question_id": 5033, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"drum\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001060", - "question_id": 5035, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "seven" -}, { - "video_id": "00001643", - "question_id": 5036, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007655", - "question_id": 5052, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003998", - "question_id": 5072, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002375", - "question_id": 5075, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002190", - "question_id": 5078, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007471", - "question_id": 5080, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00002034", - "question_id": 5082, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003155", - "question_id": 5088, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001446", - "question_id": 5094, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004357", - "question_id": 5104, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002853", - "question_id": 5122, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003562", - "question_id": 5124, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00007655", - "question_id": 5136, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006421", - "question_id": 5139, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003346", - "question_id": 5154, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005927", - "question_id": 5165, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005646", - "question_id": 5180, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "more than ten" -}, { - "video_id": "00002796", - "question_id": 5198, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00005479", - "question_id": 5201, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006190", - "question_id": 5208, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008482", - "question_id": 5212, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008709", - "question_id": 5229, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008443", - "question_id": 5234, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007478", - "question_id": 5235, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006384", - "question_id": 5236, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002834", - "question_id": 5242, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00001199", - "question_id": 5245, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001909", - "question_id": 5254, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003172", - "question_id": 5265, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008020", - "question_id": 5269, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007571", - "question_id": 5288, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006675", - "question_id": 5292, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00002614", - "question_id": 5298, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003389", - "question_id": 5300, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007165", - "question_id": 5309, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004100", - "question_id": 5311, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00005240", - "question_id": 5314, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003799", - "question_id": 5316, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006897", - "question_id": 5336, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001627", - "question_id": 5339, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002432", - "question_id": 5349, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002917", - "question_id": 5358, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006529", - "question_id": 5385, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004879", - "question_id": 5411, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000461", - "question_id": 5432, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004576", - "question_id": 5439, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002863", - "question_id": 5448, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005043", - "question_id": 5464, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001974", - "question_id": 5469, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000805", - "question_id": 5476, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000093", - "question_id": 5488, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004583", - "question_id": 5494, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"bassoon\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008808", - "question_id": 5499, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"middle\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002905", - "question_id": 5512, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003811", - "question_id": 5513, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005906", - "question_id": 5519, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007764", - "question_id": 5530, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008334", - "question_id": 5531, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002409", - "question_id": 5535, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005090", - "question_id": 5545, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007094", - "question_id": 5550, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002250", - "question_id": 5578, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001698", - "question_id": 5587, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007000", - "question_id": 5598, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005541", - "question_id": 5602, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006233", - "question_id": 5617, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007999", - "question_id": 5640, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000291", - "question_id": 5654, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001224", - "question_id": 5664, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005034", - "question_id": 5682, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007566", - "question_id": 5691, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002149", - "question_id": 5706, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008141", - "question_id": 5707, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004880", - "question_id": 5710, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004165", - "question_id": 5738, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007225", - "question_id": 5740, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005346", - "question_id": 5742, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00004843", - "question_id": 5745, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005327", - "question_id": 5749, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007941", - "question_id": 5770, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003060", - "question_id": 5774, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005140", - "question_id": 5783, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007742", - "question_id": 5784, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008009", - "question_id": 5785, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003103", - "question_id": 5798, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002148", - "question_id": 5813, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004160", - "question_id": 5816, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000338", - "question_id": 5825, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006717", - "question_id": 5835, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000117", - "question_id": 5838, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003571", - "question_id": 5855, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007489", - "question_id": 5884, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002606", - "question_id": 5897, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000829", - "question_id": 5950, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008666", - "question_id": 5958, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001803", - "question_id": 5987, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003205", - "question_id": 6008, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008392", - "question_id": 6009, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005962", - "question_id": 6015, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006836", - "question_id": 6017, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004668", - "question_id": 6024, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008364", - "question_id": 6032, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"flute\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000883", - "question_id": 6034, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001363", - "question_id": 6042, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008261", - "question_id": 6064, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000434", - "question_id": 6089, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003893", - "question_id": 6104, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007962", - "question_id": 6111, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003206", - "question_id": 6132, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005926", - "question_id": 6143, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005754", - "question_id": 6153, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006171", - "question_id": 6167, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00000547", - "question_id": 6170, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004842", - "question_id": 6173, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004803", - "question_id": 6186, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000073", - "question_id": 6191, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003021", - "question_id": 6192, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006978", - "question_id": 6205, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003857", - "question_id": 6214, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001554", - "question_id": 6217, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005288", - "question_id": 6223, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002937", - "question_id": 6240, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008178", - "question_id": 6290, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001516", - "question_id": 6299, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000020", - "question_id": 6318, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007195", - "question_id": 6332, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000739", - "question_id": 6344, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003626", - "question_id": 6356, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003698", - "question_id": 6357, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008492", - "question_id": 6361, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004752", - "question_id": 6378, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002806", - "question_id": 6386, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006056", - "question_id": 6411, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001793", - "question_id": 6415, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005599", - "question_id": 6417, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006583", - "question_id": 6426, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003220", - "question_id": 6430, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006966", - "question_id": 6459, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005600", - "question_id": 6460, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001974", - "question_id": 6463, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005216", - "question_id": 6481, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002791", - "question_id": 6482, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008620", - "question_id": 6486, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006143", - "question_id": 6511, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00002400", - "question_id": 6522, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006436", - "question_id": 6524, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004914", - "question_id": 6540, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006037", - "question_id": 6550, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001805", - "question_id": 6569, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007250", - "question_id": 6606, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001889", - "question_id": 6621, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000714", - "question_id": 6645, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003879", - "question_id": 6648, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00000522", - "question_id": 6659, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000034", - "question_id": 6714, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005201", - "question_id": 6720, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002995", - "question_id": 6728, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006112", - "question_id": 6740, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000029", - "question_id": 6748, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003422", - "question_id": 6762, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002945", - "question_id": 6791, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002449", - "question_id": 6800, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007963", - "question_id": 6821, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007779", - "question_id": 6824, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007285", - "question_id": 6827, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004185", - "question_id": 6830, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006629", - "question_id": 6844, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003661", - "question_id": 6863, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006570", - "question_id": 6868, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006004", - "question_id": 6881, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000378", - "question_id": 6917, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008040", - "question_id": 6928, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001373", - "question_id": 6944, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006980", - "question_id": 6958, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006865", - "question_id": 6977, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003624", - "question_id": 6979, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004941", - "question_id": 6991, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"last\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00006192", - "question_id": 7015, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00008329", - "question_id": 7026, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000330", - "question_id": 7045, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005748", - "question_id": 7047, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004493", - "question_id": 7058, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002376", - "question_id": 7061, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006426", - "question_id": 7062, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006557", - "question_id": 7076, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005397", - "question_id": 7105, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00007679", - "question_id": 7111, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008170", - "question_id": 7113, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003169", - "question_id": 7131, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006080", - "question_id": 7149, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006704", - "question_id": 7163, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005265", - "question_id": 7166, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000636", - "question_id": 7175, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006121", - "question_id": 7187, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003055", - "question_id": 7206, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00007995", - "question_id": 7214, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003892", - "question_id": 7246, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005409", - "question_id": 7248, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001827", - "question_id": 7250, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004086", - "question_id": 7251, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001535", - "question_id": 7255, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006608", - "question_id": 7257, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003234", - "question_id": 7266, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00000823", - "question_id": 7285, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008789", - "question_id": 7349, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005937", - "question_id": 7382, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007220", - "question_id": 7389, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006535", - "question_id": 7399, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00004749", - "question_id": 7402, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003711", - "question_id": 7436, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008238", - "question_id": 7440, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008193", - "question_id": 7447, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003320", - "question_id": 7448, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005381", - "question_id": 7454, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005394", - "question_id": 7456, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004460", - "question_id": 7464, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006128", - "question_id": 7490, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002274", - "question_id": 7494, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00007644", - "question_id": 7506, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000864", - "question_id": 7511, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007765", - "question_id": 7516, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000547", - "question_id": 7520, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007349", - "question_id": 7526, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003324", - "question_id": 7528, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003416", - "question_id": 7533, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000343", - "question_id": 7546, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00001352", - "question_id": 7586, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006997", - "question_id": 7601, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007270", - "question_id": 7604, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006988", - "question_id": 7605, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007480", - "question_id": 7608, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00004877", - "question_id": 7641, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"ukulele\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008720", - "question_id": 7648, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00002972", - "question_id": 7656, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002698", - "question_id": 7677, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bassoon\", \"right\", \"accordion\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008132", - "question_id": 7681, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000399", - "question_id": 7688, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006922", - "question_id": 7694, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005634", - "question_id": 7706, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006538", - "question_id": 7719, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006542", - "question_id": 7732, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008823", - "question_id": 7742, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008361", - "question_id": 7757, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007204", - "question_id": 7766, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002568", - "question_id": 7768, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006514", - "question_id": 7773, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002167", - "question_id": 7779, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008750", - "question_id": 7784, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000059", - "question_id": 7788, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004728", - "question_id": 7791, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00008285", - "question_id": 7794, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002502", - "question_id": 7799, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000461", - "question_id": 7809, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005361", - "question_id": 7823, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008571", - "question_id": 7854, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001203", - "question_id": 7858, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001521", - "question_id": 7865, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00007855", - "question_id": 7880, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007717", - "question_id": 7881, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008709", - "question_id": 7891, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007304", - "question_id": 7903, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003037", - "question_id": 7907, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00005020", - "question_id": 7929, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005394", - "question_id": 7939, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000313", - "question_id": 7973, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001949", - "question_id": 7993, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004915", - "question_id": 8004, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007773", - "question_id": 8014, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00007255", - "question_id": 8035, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004382", - "question_id": 8037, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003220", - "question_id": 8054, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006566", - "question_id": 8093, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003923", - "question_id": 8097, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005181", - "question_id": 8122, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002712", - "question_id": 8126, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000212", - "question_id": 8138, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00004585", - "question_id": 8141, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001548", - "question_id": 8175, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001889", - "question_id": 8182, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001983", - "question_id": 8203, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005874", - "question_id": 8214, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002991", - "question_id": 8216, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00002412", - "question_id": 8222, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004183", - "question_id": 8257, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00003010", - "question_id": 8266, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000004", - "question_id": 8269, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008957", - "question_id": 8282, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00001348", - "question_id": 8285, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00007823", - "question_id": 8299, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005934", - "question_id": 8318, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008090", - "question_id": 8326, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001012", - "question_id": 8334, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004871", - "question_id": 8343, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"guzheng\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00006010", - "question_id": 8348, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"clarinet\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007430", - "question_id": 8355, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006378", - "question_id": 8358, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00003523", - "question_id": 8365, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007539", - "question_id": 8372, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007610", - "question_id": 8374, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004086", - "question_id": 8406, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004086", - "question_id": 8406, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006856", - "question_id": 8425, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005595", - "question_id": 8439, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006302", - "question_id": 8474, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001739", - "question_id": 8479, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007263", - "question_id": 8482, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003254", - "question_id": 8484, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004474", - "question_id": 8489, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003561", - "question_id": 8493, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00007024", - "question_id": 8514, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007626", - "question_id": 8522, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001582", - "question_id": 8539, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001363", - "question_id": 8543, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00006354", - "question_id": 8554, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00005865", - "question_id": 8561, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004854", - "question_id": 8564, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004644", - "question_id": 8572, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000045", - "question_id": 8585, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008306", - "question_id": 8598, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004539", - "question_id": 8627, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005617", - "question_id": 8657, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007772", - "question_id": 8663, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005474", - "question_id": 8683, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005801", - "question_id": 8708, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00001151", - "question_id": 8717, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007358", - "question_id": 8744, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00000926", - "question_id": 8754, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004988", - "question_id": 8796, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002381", - "question_id": 8801, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003362", - "question_id": 8808, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002655", - "question_id": 8822, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00005968", - "question_id": 8831, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002958", - "question_id": 8838, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00007396", - "question_id": 8846, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00005839", - "question_id": 8850, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001000", - "question_id": 8864, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003893", - "question_id": 8872, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005244", - "question_id": 8875, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000636", - "question_id": 8886, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001617", - "question_id": 8892, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00000269", - "question_id": 8912, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005183", - "question_id": 8927, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007218", - "question_id": 8934, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003133", - "question_id": 8947, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00000137", - "question_id": 8955, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007944", - "question_id": 8962, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"tuba\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001494", - "question_id": 8967, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003714", - "question_id": 8969, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00002445", - "question_id": 8977, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006778", - "question_id": 8983, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008931", - "question_id": 9021, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004331", - "question_id": 9035, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001905", - "question_id": 9055, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001706", - "question_id": 9076, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005276", - "question_id": 9091, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008099", - "question_id": 9106, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001100", - "question_id": 9114, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00007808", - "question_id": 9117, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008444", - "question_id": 9119, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003945", - "question_id": 9122, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008232", - "question_id": 9129, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00007003", - "question_id": 9144, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001429", - "question_id": 9157, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007662", - "question_id": 9163, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005429", - "question_id": 9169, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006322", - "question_id": 9173, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006153", - "question_id": 9175, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008152", - "question_id": 9181, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"banjo\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000937", - "question_id": 9188, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002405", - "question_id": 9193, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00006846", - "question_id": 9201, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005082", - "question_id": 9212, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003012", - "question_id": 9220, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006829", - "question_id": 9232, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007955", - "question_id": 9246, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008201", - "question_id": 9253, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001559", - "question_id": 9257, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000964", - "question_id": 9264, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005260", - "question_id": 9272, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007972", - "question_id": 9274, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005315", - "question_id": 9289, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00005298", - "question_id": 9294, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"trumpet\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001458", - "question_id": 9298, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006504", - "question_id": 9318, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000477", - "question_id": 9342, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007816", - "question_id": 9357, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001646", - "question_id": 9376, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004757", - "question_id": 9379, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00001035", - "question_id": 9421, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003072", - "question_id": 9424, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003031", - "question_id": 9471, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002296", - "question_id": 9473, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00000191", - "question_id": 9482, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003632", - "question_id": 9495, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004629", - "question_id": 9501, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002593", - "question_id": 9522, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007428", - "question_id": 9533, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000691", - "question_id": 9545, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00005097", - "question_id": 9547, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00006683", - "question_id": 9561, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"drum\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007058", - "question_id": 9591, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002682", - "question_id": 9612, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00008684", - "question_id": 9619, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007111", - "question_id": 9633, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007185", - "question_id": 9637, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005662", - "question_id": 9639, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007231", - "question_id": 9650, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005343", - "question_id": 9659, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005343", - "question_id": 9659, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001453", - "question_id": 9669, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008204", - "question_id": 9683, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001850", - "question_id": 9700, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000240", - "question_id": 9706, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00007036", - "question_id": 9707, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000722", - "question_id": 9708, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008182", - "question_id": 9710, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006614", - "question_id": 9732, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004725", - "question_id": 9738, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"suona\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000982", - "question_id": 9743, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004527", - "question_id": 9746, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00004555", - "question_id": 9771, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003904", - "question_id": 9775, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005221", - "question_id": 9780, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006182", - "question_id": 9789, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008771", - "question_id": 9812, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001327", - "question_id": 9824, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002592", - "question_id": 9840, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008082", - "question_id": 9849, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003575", - "question_id": 9858, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001536", - "question_id": 9861, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000418", - "question_id": 9878, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001895", - "question_id": 9880, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003643", - "question_id": 9928, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00005230", - "question_id": 9942, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007549", - "question_id": 9946, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007235", - "question_id": 9964, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000718", - "question_id": 9992, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008278", - "question_id": 10009, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004402", - "question_id": 10019, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007495", - "question_id": 10024, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002117", - "question_id": 10033, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"electric_bass\", \"left\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002036", - "question_id": 10035, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001768", - "question_id": 10049, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001406", - "question_id": 10051, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006865", - "question_id": 10072, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002320", - "question_id": 10073, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000827", - "question_id": 10074, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006024", - "question_id": 10079, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003448", - "question_id": 10084, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008014", - "question_id": 10090, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008838", - "question_id": 10117, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004356", - "question_id": 10129, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00000377", - "question_id": 10132, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000280", - "question_id": 10134, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004605", - "question_id": 10142, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008345", - "question_id": 10145, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006474", - "question_id": 10146, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005459", - "question_id": 10149, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000914", - "question_id": 10171, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000205", - "question_id": 10176, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002627", - "question_id": 10192, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004947", - "question_id": 10201, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007044", - "question_id": 10206, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000725", - "question_id": 10212, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"pipa\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008155", - "question_id": 10229, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00007633", - "question_id": 10238, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001141", - "question_id": 10240, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005112", - "question_id": 10243, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001725", - "question_id": 10246, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005869", - "question_id": 10247, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002487", - "question_id": 10264, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003380", - "question_id": 10274, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003737", - "question_id": 10275, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"last\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006758", - "question_id": 10288, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007985", - "question_id": 10337, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001912", - "question_id": 10340, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003604", - "question_id": 10344, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005801", - "question_id": 10351, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007296", - "question_id": 10355, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003788", - "question_id": 10362, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007886", - "question_id": 10370, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005721", - "question_id": 10372, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000855", - "question_id": 10376, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"middle\", \"electric_bass\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004044", - "question_id": 10393, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008749", - "question_id": 10409, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008692", - "question_id": 10410, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006096", - "question_id": 10411, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002242", - "question_id": 10419, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004895", - "question_id": 10424, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000316", - "question_id": 10426, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003957", - "question_id": 10439, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006481", - "question_id": 10462, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002938", - "question_id": 10468, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002367", - "question_id": 10479, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001424", - "question_id": 10500, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000801", - "question_id": 10501, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001544", - "question_id": 10506, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004884", - "question_id": 10513, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001135", - "question_id": 10518, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006376", - "question_id": 10530, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003428", - "question_id": 10545, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000012", - "question_id": 10548, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001972", - "question_id": 10565, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002158", - "question_id": 10619, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001723", - "question_id": 10625, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007559", - "question_id": 10672, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00004602", - "question_id": 10700, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"xylophone\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006866", - "question_id": 10713, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00005595", - "question_id": 10748, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006114", - "question_id": 10768, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"trumpet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003040", - "question_id": 10781, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007414", - "question_id": 10803, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"guzheng\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00008331", - "question_id": 10805, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007588", - "question_id": 10809, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00008618", - "question_id": 10842, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001067", - "question_id": 10852, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002023", - "question_id": 10856, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002994", - "question_id": 10863, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002754", - "question_id": 10891, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00002353", - "question_id": 10907, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003655", - "question_id": 10922, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004314", - "question_id": 10935, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003092", - "question_id": 10941, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002897", - "question_id": 10943, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008369", - "question_id": 10965, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00003407", - "question_id": 10968, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00000972", - "question_id": 10986, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001473", - "question_id": 10999, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00004023", - "question_id": 11021, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008771", - "question_id": 11090, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005235", - "question_id": 11102, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002043", - "question_id": 11113, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003913", - "question_id": 11137, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000733", - "question_id": 11143, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008120", - "question_id": 11145, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002725", - "question_id": 11158, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006480", - "question_id": 11162, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001127", - "question_id": 11163, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005319", - "question_id": 11164, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"erhu\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003742", - "question_id": 11166, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004861", - "question_id": 11168, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001592", - "question_id": 11170, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006263", - "question_id": 11179, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005493", - "question_id": 11180, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001334", - "question_id": 11183, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006091", - "question_id": 11221, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006598", - "question_id": 11222, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006806", - "question_id": 11238, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002155", - "question_id": 11240, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005525", - "question_id": 11248, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000608", - "question_id": 11252, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004303", - "question_id": 11256, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002961", - "question_id": 11273, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008505", - "question_id": 11274, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002305", - "question_id": 11280, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008422", - "question_id": 11281, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007879", - "question_id": 11285, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001364", - "question_id": 11287, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000767", - "question_id": 11291, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004361", - "question_id": 11326, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003996", - "question_id": 11329, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007052", - "question_id": 11332, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006765", - "question_id": 11334, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002109", - "question_id": 11338, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002236", - "question_id": 11345, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002531", - "question_id": 11347, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003056", - "question_id": 11357, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008699", - "question_id": 11363, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001918", - "question_id": 11367, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000381", - "question_id": 11395, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00000721", - "question_id": 11402, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005847", - "question_id": 11412, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002297", - "question_id": 11413, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001874", - "question_id": 11444, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003353", - "question_id": 11447, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001581", - "question_id": 11452, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007214", - "question_id": 11459, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004833", - "question_id": 11465, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001342", - "question_id": 11470, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006230", - "question_id": 11475, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007516", - "question_id": 11479, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000651", - "question_id": 11498, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006991", - "question_id": 11528, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008940", - "question_id": 11546, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002894", - "question_id": 11548, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002188", - "question_id": 11575, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005707", - "question_id": 11583, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003029", - "question_id": 11592, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002842", - "question_id": 11624, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001474", - "question_id": 11639, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003544", - "question_id": 11649, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00005039", - "question_id": 11653, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008467", - "question_id": 11660, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"ukulele\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007980", - "question_id": 11667, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00004198", - "question_id": 11670, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005105", - "question_id": 11671, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"pipa\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005090", - "question_id": 11674, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006829", - "question_id": 11676, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00004692", - "question_id": 11677, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00007533", - "question_id": 11689, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003872", - "question_id": 11719, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006846", - "question_id": 11726, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006406", - "question_id": 11729, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006749", - "question_id": 11741, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000545", - "question_id": 11757, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005708", - "question_id": 11776, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007899", - "question_id": 11797, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003471", - "question_id": 11799, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006654", - "question_id": 11805, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00000387", - "question_id": 11808, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001309", - "question_id": 11823, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002743", - "question_id": 11831, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006352", - "question_id": 11859, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003394", - "question_id": 11863, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005808", - "question_id": 11865, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00000797", - "question_id": 11879, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003804", - "question_id": 11909, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004264", - "question_id": 11910, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008867", - "question_id": 11923, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003686", - "question_id": 11962, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008675", - "question_id": 11968, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004164", - "question_id": 11970, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00005067", - "question_id": 11974, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008014", - "question_id": 11979, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"erhu\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000472", - "question_id": 11983, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002126", - "question_id": 11997, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004700", - "question_id": 12005, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005324", - "question_id": 12036, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008036", - "question_id": 12043, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00003841", - "question_id": 12048, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004696", - "question_id": 12068, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006542", - "question_id": 12072, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000687", - "question_id": 12076, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "eight" -}, { - "video_id": "00002853", - "question_id": 12078, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008567", - "question_id": 12087, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000521", - "question_id": 12095, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00008422", - "question_id": 12097, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005959", - "question_id": 12101, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007867", - "question_id": 12108, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001837", - "question_id": 12116, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007036", - "question_id": 12142, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003450", - "question_id": 12149, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"last\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006917", - "question_id": 12156, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006917", - "question_id": 12156, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000738", - "question_id": 12179, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003488", - "question_id": 12190, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008126", - "question_id": 12205, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00008066", - "question_id": 12265, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00000334", - "question_id": 12266, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001673", - "question_id": 12270, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004416", - "question_id": 12274, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007415", - "question_id": 12276, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000516", - "question_id": 12293, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005011", - "question_id": 12295, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001752", - "question_id": 12306, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000526", - "question_id": 12316, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"accordion\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008394", - "question_id": 12317, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004175", - "question_id": 12331, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004635", - "question_id": 12351, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00003794", - "question_id": 12355, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000757", - "question_id": 12366, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003364", - "question_id": 12373, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008950", - "question_id": 12379, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003662", - "question_id": 12402, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00006384", - "question_id": 12425, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006657", - "question_id": 12443, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007454", - "question_id": 12461, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001187", - "question_id": 12503, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006071", - "question_id": 12514, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000106", - "question_id": 12537, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003269", - "question_id": 12549, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008268", - "question_id": 12564, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bagpipe\", \"right\", \"drum\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002787", - "question_id": 12567, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000907", - "question_id": 12570, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006552", - "question_id": 12576, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002510", - "question_id": 12578, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005699", - "question_id": 12613, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006696", - "question_id": 12616, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00006144", - "question_id": 12623, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005674", - "question_id": 12631, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004144", - "question_id": 12633, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008311", - "question_id": 12639, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00004076", - "question_id": 12660, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005025", - "question_id": 12662, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"bassoon\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002139", - "question_id": 12676, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001598", - "question_id": 12688, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002877", - "question_id": 12693, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008169", - "question_id": 12711, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004481", - "question_id": 12714, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003796", - "question_id": 12721, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008657", - "question_id": 12724, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001230", - "question_id": 12728, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004761", - "question_id": 12752, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007533", - "question_id": 12755, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00002376", - "question_id": 12759, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00005352", - "question_id": 12771, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008383", - "question_id": 12777, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004178", - "question_id": 12788, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008062", - "question_id": 12793, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"middle\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008434", - "question_id": 12798, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008326", - "question_id": 12799, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001213", - "question_id": 12811, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000149", - "question_id": 12820, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000149", - "question_id": 12820, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008788", - "question_id": 12827, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00005370", - "question_id": 12852, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000129", - "question_id": 12854, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000129", - "question_id": 12854, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006886", - "question_id": 12856, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004290", - "question_id": 12858, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000977", - "question_id": 12863, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00003223", - "question_id": 12878, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004628", - "question_id": 12879, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007867", - "question_id": 12880, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000410", - "question_id": 12882, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001157", - "question_id": 12883, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00008901", - "question_id": 12893, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007051", - "question_id": 12923, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00006927", - "question_id": 12924, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00008014", - "question_id": 12959, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001902", - "question_id": 12964, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000592", - "question_id": 12968, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005712", - "question_id": 12971, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008802", - "question_id": 12981, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008452", - "question_id": 12985, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005949", - "question_id": 12992, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007395", - "question_id": 13024, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006792", - "question_id": 13043, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001020", - "question_id": 13055, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005264", - "question_id": 13078, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00005981", - "question_id": 13083, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008717", - "question_id": 13103, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003478", - "question_id": 13107, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001651", - "question_id": 13150, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004670", - "question_id": 13168, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00004202", - "question_id": 13182, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002875", - "question_id": 13199, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005091", - "question_id": 13218, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003249", - "question_id": 13224, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"acoustic_guitar\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006041", - "question_id": 13228, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005613", - "question_id": 13235, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005644", - "question_id": 13247, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000699", - "question_id": 13249, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002603", - "question_id": 13272, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008812", - "question_id": 13323, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006603", - "question_id": 13359, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003873", - "question_id": 13366, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004598", - "question_id": 13372, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006629", - "question_id": 13383, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000171", - "question_id": 13384, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000541", - "question_id": 13397, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002279", - "question_id": 13409, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002132", - "question_id": 13415, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00006852", - "question_id": 13423, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004509", - "question_id": 13427, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006324", - "question_id": 13443, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006952", - "question_id": 13447, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"electric_bass\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004787", - "question_id": 13448, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003840", - "question_id": 13451, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00005388", - "question_id": 13461, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00005102", - "question_id": 13470, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000362", - "question_id": 13479, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001170", - "question_id": 13487, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001261", - "question_id": 13499, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001399", - "question_id": 13518, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00008552", - "question_id": 13520, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002849", - "question_id": 13535, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000582", - "question_id": 13536, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00001950", - "question_id": 13545, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003252", - "question_id": 13549, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008162", - "question_id": 13551, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003410", - "question_id": 13571, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000604", - "question_id": 13584, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00000004", - "question_id": 13588, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007624", - "question_id": 13613, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"guzheng\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007471", - "question_id": 13615, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005648", - "question_id": 13627, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001976", - "question_id": 13656, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"electric_bass\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004257", - "question_id": 13659, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002519", - "question_id": 13662, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008088", - "question_id": 13671, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00008406", - "question_id": 13679, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007906", - "question_id": 13692, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00002318", - "question_id": 13706, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"middle\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003700", - "question_id": 13709, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008520", - "question_id": 13723, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004004", - "question_id": 13726, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002638", - "question_id": 13727, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003797", - "question_id": 13730, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003858", - "question_id": 13731, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002469", - "question_id": 13735, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000528", - "question_id": 13762, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000098", - "question_id": 13769, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000016", - "question_id": 13772, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003689", - "question_id": 13783, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007312", - "question_id": 13789, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006644", - "question_id": 13836, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005010", - "question_id": 13840, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003729", - "question_id": 13842, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007019", - "question_id": 13843, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00000637", - "question_id": 13847, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001303", - "question_id": 13864, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000252", - "question_id": 13867, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001778", - "question_id": 13895, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002256", - "question_id": 13904, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006438", - "question_id": 13915, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003586", - "question_id": 13925, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00004716", - "question_id": 13950, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"banjo\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000473", - "question_id": 13956, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008737", - "question_id": 13969, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007283", - "question_id": 13975, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001999", - "question_id": 13986, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002360", - "question_id": 13988, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006975", - "question_id": 13990, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008955", - "question_id": 14062, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006085", - "question_id": 14067, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008924", - "question_id": 14068, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001655", - "question_id": 14088, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003505", - "question_id": 14103, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bagpipe\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000144", - "question_id": 14108, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000909", - "question_id": 14112, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00002915", - "question_id": 14120, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003663", - "question_id": 14122, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00000163", - "question_id": 14126, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007335", - "question_id": 14134, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007827", - "question_id": 14140, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001824", - "question_id": 14151, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001650", - "question_id": 14156, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001757", - "question_id": 14160, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007334", - "question_id": 14165, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006898", - "question_id": 14166, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"right\", \"electric_bass\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005884", - "question_id": 14209, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005776", - "question_id": 14213, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007699", - "question_id": 14246, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004072", - "question_id": 14249, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007898", - "question_id": 14260, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003510", - "question_id": 14263, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"guzheng\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002761", - "question_id": 14266, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008951", - "question_id": 14269, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003851", - "question_id": 14272, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003269", - "question_id": 14278, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003576", - "question_id": 14296, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002652", - "question_id": 14305, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002413", - "question_id": 14316, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000768", - "question_id": 14326, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005318", - "question_id": 14389, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006512", - "question_id": 14396, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008348", - "question_id": 14408, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005180", - "question_id": 14413, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003980", - "question_id": 14460, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00007028", - "question_id": 14461, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001493", - "question_id": 14466, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00001934", - "question_id": 14468, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001934", - "question_id": 14468, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008826", - "question_id": 14470, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003371", - "question_id": 14474, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"violin\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004661", - "question_id": 14478, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"right\", \"pipa\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000947", - "question_id": 14497, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002445", - "question_id": 14503, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003025", - "question_id": 14504, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002569", - "question_id": 14506, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003210", - "question_id": 14542, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007356", - "question_id": 14555, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006460", - "question_id": 14592, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008649", - "question_id": 14593, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000678", - "question_id": 14596, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005751", - "question_id": 14606, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003457", - "question_id": 14609, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003769", - "question_id": 14646, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002921", - "question_id": 14650, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006468", - "question_id": 14659, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007793", - "question_id": 14660, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001901", - "question_id": 14670, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003292", - "question_id": 14677, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"middle\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000625", - "question_id": 14678, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000810", - "question_id": 14685, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007945", - "question_id": 14690, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002958", - "question_id": 14697, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001187", - "question_id": 14699, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00007006", - "question_id": 14719, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005059", - "question_id": 14730, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008283", - "question_id": 14740, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005344", - "question_id": 14755, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00001034", - "question_id": 14761, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00008461", - "question_id": 14776, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002612", - "question_id": 14795, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007141", - "question_id": 14799, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003247", - "question_id": 14812, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003954", - "question_id": 14851, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000616", - "question_id": 14857, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00003912", - "question_id": 14873, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000194", - "question_id": 14880, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000194", - "question_id": 14880, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000171", - "question_id": 14899, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005694", - "question_id": 14942, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006889", - "question_id": 14964, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001000", - "question_id": 14988, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003598", - "question_id": 14990, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005786", - "question_id": 14997, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000590", - "question_id": 14998, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001671", - "question_id": 15000, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005934", - "question_id": 15004, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006283", - "question_id": 15010, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001785", - "question_id": 15015, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008296", - "question_id": 15033, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007297", - "question_id": 15051, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003089", - "question_id": 15053, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004686", - "question_id": 15060, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008540", - "question_id": 15062, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00001475", - "question_id": 15065, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003492", - "question_id": 15074, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004403", - "question_id": 15076, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00002076", - "question_id": 15093, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002635", - "question_id": 15096, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003861", - "question_id": 15106, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00004319", - "question_id": 15115, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005813", - "question_id": 15121, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007581", - "question_id": 15138, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006869", - "question_id": 15154, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001090", - "question_id": 15161, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002479", - "question_id": 15193, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003187", - "question_id": 15211, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000234", - "question_id": 15232, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001494", - "question_id": 15234, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000042", - "question_id": 15241, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003480", - "question_id": 15250, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008201", - "question_id": 15262, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002839", - "question_id": 15265, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006526", - "question_id": 15266, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000210", - "question_id": 15269, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005333", - "question_id": 15281, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004862", - "question_id": 15283, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002757", - "question_id": 15303, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004402", - "question_id": 15312, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001024", - "question_id": 15324, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005936", - "question_id": 15330, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007119", - "question_id": 15364, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006510", - "question_id": 15365, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "more than ten" -}, { - "video_id": "00003554", - "question_id": 15393, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001668", - "question_id": 15435, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006246", - "question_id": 15437, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001728", - "question_id": 15441, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006813", - "question_id": 15445, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006285", - "question_id": 15452, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005474", - "question_id": 15489, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005645", - "question_id": 15497, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"guzheng\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004841", - "question_id": 15510, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003414", - "question_id": 15523, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002976", - "question_id": 15530, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007607", - "question_id": 15534, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007685", - "question_id": 15545, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005667", - "question_id": 15549, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003079", - "question_id": 15558, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001776", - "question_id": 15568, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003112", - "question_id": 15575, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007206", - "question_id": 15584, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006837", - "question_id": 15598, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008733", - "question_id": 15604, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003367", - "question_id": 15610, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008309", - "question_id": 15619, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008414", - "question_id": 15621, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002997", - "question_id": 15635, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008145", - "question_id": 15637, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002540", - "question_id": 15641, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00007483", - "question_id": 15642, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008724", - "question_id": 15654, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008971", - "question_id": 15660, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007225", - "question_id": 15663, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005451", - "question_id": 15672, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008686", - "question_id": 15674, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007689", - "question_id": 15675, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005205", - "question_id": 15702, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004376", - "question_id": 15705, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001712", - "question_id": 15706, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006887", - "question_id": 15720, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004387", - "question_id": 15721, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003931", - "question_id": 15732, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002200", - "question_id": 15740, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00004042", - "question_id": 15758, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00004421", - "question_id": 15774, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00004767", - "question_id": 15775, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003291", - "question_id": 15786, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003676", - "question_id": 15790, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"tuba\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001388", - "question_id": 15801, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002478", - "question_id": 15821, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004904", - "question_id": 15822, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004602", - "question_id": 15829, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004746", - "question_id": 15830, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008218", - "question_id": 15833, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001761", - "question_id": 15844, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00007809", - "question_id": 15847, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002570", - "question_id": 15848, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000557", - "question_id": 15851, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"xylophone\", \"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003492", - "question_id": 15859, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004364", - "question_id": 15865, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006461", - "question_id": 15903, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00007978", - "question_id": 15913, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008166", - "question_id": 15914, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008756", - "question_id": 15933, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003909", - "question_id": 15937, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003975", - "question_id": 15948, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005152", - "question_id": 15951, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002817", - "question_id": 15961, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003648", - "question_id": 15965, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003127", - "question_id": 15966, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001541", - "question_id": 15971, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000756", - "question_id": 15979, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003623", - "question_id": 15992, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004840", - "question_id": 15997, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006592", - "question_id": 16000, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007811", - "question_id": 16064, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006948", - "question_id": 16068, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001979", - "question_id": 16079, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007447", - "question_id": 16085, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003869", - "question_id": 16087, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001354", - "question_id": 16094, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000539", - "question_id": 16102, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007720", - "question_id": 16113, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003397", - "question_id": 16115, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001125", - "question_id": 16119, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002040", - "question_id": 16120, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003387", - "question_id": 16121, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001909", - "question_id": 16134, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"pipa\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00000620", - "question_id": 16135, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007989", - "question_id": 16142, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000123", - "question_id": 16161, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004674", - "question_id": 16162, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008688", - "question_id": 16164, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008600", - "question_id": 16171, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007843", - "question_id": 16187, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002910", - "question_id": 16190, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005635", - "question_id": 16192, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000296", - "question_id": 16195, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008048", - "question_id": 16210, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001796", - "question_id": 16230, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007102", - "question_id": 16250, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003803", - "question_id": 16257, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00007678", - "question_id": 16274, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006202", - "question_id": 16276, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005658", - "question_id": 16289, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"right\", \"drum\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000946", - "question_id": 16306, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004565", - "question_id": 16315, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006058", - "question_id": 16318, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004664", - "question_id": 16366, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002228", - "question_id": 16370, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007075", - "question_id": 16391, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00008234", - "question_id": 16416, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001087", - "question_id": 16433, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003449", - "question_id": 16438, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007376", - "question_id": 16441, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004001", - "question_id": 16446, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005125", - "question_id": 16449, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006572", - "question_id": 16452, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003747", - "question_id": 16454, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007916", - "question_id": 16476, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000701", - "question_id": 16502, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007284", - "question_id": 16509, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001426", - "question_id": 16549, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002746", - "question_id": 16553, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000995", - "question_id": 16555, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002459", - "question_id": 16565, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007593", - "question_id": 16567, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003213", - "question_id": 16568, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00004342", - "question_id": 16576, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004595", - "question_id": 16590, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "eight" -}, { - "video_id": "00003442", - "question_id": 16595, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000382", - "question_id": 16668, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004076", - "question_id": 16696, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00004399", - "question_id": 16722, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005137", - "question_id": 16731, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007414", - "question_id": 16743, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002114", - "question_id": 16752, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007289", - "question_id": 16755, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000152", - "question_id": 16757, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000057", - "question_id": 16760, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005249", - "question_id": 16769, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008083", - "question_id": 16794, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00006382", - "question_id": 16825, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005797", - "question_id": 16852, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001263", - "question_id": 16863, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003618", - "question_id": 16866, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002931", - "question_id": 16885, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000826", - "question_id": 16896, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003933", - "question_id": 16898, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006834", - "question_id": 16920, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004016", - "question_id": 16922, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001180", - "question_id": 16937, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008733", - "question_id": 16939, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003139", - "question_id": 16952, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000440", - "question_id": 16983, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005744", - "question_id": 16984, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008871", - "question_id": 17005, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008034", - "question_id": 17016, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002723", - "question_id": 17025, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004797", - "question_id": 17030, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002961", - "question_id": 17038, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002924", - "question_id": 17047, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002624", - "question_id": 17049, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00003788", - "question_id": 17051, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001762", - "question_id": 17053, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000265", - "question_id": 17059, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002678", - "question_id": 17081, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004981", - "question_id": 17105, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000002", - "question_id": 17115, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001056", - "question_id": 17139, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004973", - "question_id": 17155, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006840", - "question_id": 17159, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006028", - "question_id": 17162, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005860", - "question_id": 17176, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006263", - "question_id": 17181, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000483", - "question_id": 17187, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000145", - "question_id": 17190, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00004097", - "question_id": 17199, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00004309", - "question_id": 17211, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006715", - "question_id": 17212, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005767", - "question_id": 17225, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005201", - "question_id": 17252, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005260", - "question_id": 17275, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003983", - "question_id": 17299, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006881", - "question_id": 17304, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00003563", - "question_id": 17308, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001928", - "question_id": 17312, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004611", - "question_id": 17320, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00001387", - "question_id": 17326, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001070", - "question_id": 17358, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00005989", - "question_id": 17361, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000270", - "question_id": 17368, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000875", - "question_id": 17369, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007428", - "question_id": 17376, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000034", - "question_id": 17378, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003089", - "question_id": 17391, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00006303", - "question_id": 17405, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008403", - "question_id": 17410, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007497", - "question_id": 17413, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005743", - "question_id": 17423, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003305", - "question_id": 17433, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002194", - "question_id": 17449, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00008660", - "question_id": 17459, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006666", - "question_id": 17470, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00005423", - "question_id": 17485, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003257", - "question_id": 17488, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001214", - "question_id": 17495, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008930", - "question_id": 17508, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007179", - "question_id": 17519, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006028", - "question_id": 17556, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"middle\", \"cello\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008842", - "question_id": 17560, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003856", - "question_id": 17568, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000208", - "question_id": 17590, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003738", - "question_id": 17591, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007475", - "question_id": 17593, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004100", - "question_id": 17604, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005556", - "question_id": 17605, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002274", - "question_id": 17613, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007794", - "question_id": 17620, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006211", - "question_id": 17667, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002605", - "question_id": 17668, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002596", - "question_id": 17671, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008957", - "question_id": 17684, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003195", - "question_id": 17695, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000807", - "question_id": 17705, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00005539", - "question_id": 17724, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001387", - "question_id": 17735, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001338", - "question_id": 17738, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00005298", - "question_id": 17739, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000137", - "question_id": 17753, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008602", - "question_id": 17755, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008548", - "question_id": 17760, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008212", - "question_id": 17761, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005926", - "question_id": 17768, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005153", - "question_id": 17771, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001099", - "question_id": 17799, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000097", - "question_id": 17803, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007299", - "question_id": 17820, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002178", - "question_id": 17861, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003033", - "question_id": 17869, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008900", - "question_id": 17886, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002719", - "question_id": 17906, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002537", - "question_id": 17910, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006812", - "question_id": 17914, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000667", - "question_id": 17918, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"electric_bass\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004489", - "question_id": 17919, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000667", - "question_id": 17924, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002247", - "question_id": 17926, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001955", - "question_id": 17946, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007901", - "question_id": 17952, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004119", - "question_id": 17970, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007081", - "question_id": 17976, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005025", - "question_id": 17979, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00003630", - "question_id": 17988, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006796", - "question_id": 17999, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002474", - "question_id": 18001, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002804", - "question_id": 18003, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001474", - "question_id": 18007, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00008750", - "question_id": 18012, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004697", - "question_id": 18019, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00000907", - "question_id": 18027, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004815", - "question_id": 18031, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001402", - "question_id": 18050, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007147", - "question_id": 18074, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003181", - "question_id": 18075, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005902", - "question_id": 18090, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002492", - "question_id": 18105, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004897", - "question_id": 18108, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003160", - "question_id": 18113, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007526", - "question_id": 18123, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004862", - "question_id": 18137, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000486", - "question_id": 18145, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004648", - "question_id": 18155, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006448", - "question_id": 18158, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001176", - "question_id": 18160, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006117", - "question_id": 18176, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001730", - "question_id": 18179, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005195", - "question_id": 18184, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000325", - "question_id": 18222, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004709", - "question_id": 18223, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006617", - "question_id": 18272, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00001156", - "question_id": 18285, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000873", - "question_id": 18300, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007195", - "question_id": 18303, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000528", - "question_id": 18326, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004068", - "question_id": 18346, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006561", - "question_id": 18347, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002314", - "question_id": 18349, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002998", - "question_id": 18361, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003421", - "question_id": 18371, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00008645", - "question_id": 18380, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002058", - "question_id": 18408, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008108", - "question_id": 18410, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008791", - "question_id": 18434, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002349", - "question_id": 18436, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006413", - "question_id": 18441, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008324", - "question_id": 18446, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000964", - "question_id": 18450, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004937", - "question_id": 18453, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001052", - "question_id": 18460, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"tuba\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006189", - "question_id": 18466, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003881", - "question_id": 18467, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002029", - "question_id": 18477, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001239", - "question_id": 18492, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00003342", - "question_id": 18496, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001624", - "question_id": 18506, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005844", - "question_id": 18509, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003542", - "question_id": 18518, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002387", - "question_id": 18519, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006530", - "question_id": 18526, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002815", - "question_id": 18530, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"xylophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005167", - "question_id": 18531, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001924", - "question_id": 18537, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004098", - "question_id": 18540, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002765", - "question_id": 18541, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000510", - "question_id": 18555, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002737", - "question_id": 18576, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00008109", - "question_id": 18580, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008888", - "question_id": 18596, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005916", - "question_id": 18605, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008517", - "question_id": 18608, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"erhu\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003829", - "question_id": 18611, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005559", - "question_id": 18617, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003661", - "question_id": 18618, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004880", - "question_id": 18619, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006827", - "question_id": 18645, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006134", - "question_id": 18647, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006752", - "question_id": 18652, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005075", - "question_id": 18656, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008480", - "question_id": 18668, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002579", - "question_id": 18690, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006513", - "question_id": 18702, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003371", - "question_id": 18708, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007545", - "question_id": 18712, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001606", - "question_id": 18723, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006955", - "question_id": 18724, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004776", - "question_id": 18725, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005554", - "question_id": 18740, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007245", - "question_id": 18748, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004309", - "question_id": 18758, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005966", - "question_id": 18760, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000359", - "question_id": 18799, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000954", - "question_id": 18803, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"cello\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003689", - "question_id": 18823, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005310", - "question_id": 18825, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008916", - "question_id": 18826, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007564", - "question_id": 18831, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00007903", - "question_id": 18837, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003114", - "question_id": 18838, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002160", - "question_id": 18840, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001081", - "question_id": 18877, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006047", - "question_id": 18892, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001617", - "question_id": 18919, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000206", - "question_id": 18925, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006091", - "question_id": 18928, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"tuba\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006583", - "question_id": 18939, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002560", - "question_id": 18959, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005731", - "question_id": 18966, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"banjo\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004647", - "question_id": 18970, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007578", - "question_id": 18986, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005672", - "question_id": 18989, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004422", - "question_id": 18994, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004078", - "question_id": 19004, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006495", - "question_id": 19007, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005492", - "question_id": 19013, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005526", - "question_id": 19026, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002464", - "question_id": 19039, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00008054", - "question_id": 19049, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008315", - "question_id": 19084, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006989", - "question_id": 19098, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008114", - "question_id": 19109, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003431", - "question_id": 19113, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005804", - "question_id": 19119, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00008463", - "question_id": 19138, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008884", - "question_id": 19161, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008151", - "question_id": 19182, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000728", - "question_id": 19184, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002678", - "question_id": 19189, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002252", - "question_id": 19197, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005312", - "question_id": 19200, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002641", - "question_id": 19203, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007658", - "question_id": 19227, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004982", - "question_id": 19244, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007416", - "question_id": 19260, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001924", - "question_id": 19261, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001105", - "question_id": 19275, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000746", - "question_id": 19285, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002345", - "question_id": 19288, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004161", - "question_id": 19292, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007097", - "question_id": 19293, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bagpipe\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005093", - "question_id": 19295, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006392", - "question_id": 19307, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001839", - "question_id": 19337, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00006809", - "question_id": 19348, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000679", - "question_id": 19371, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004676", - "question_id": 19378, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006795", - "question_id": 19388, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001844", - "question_id": 19396, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004367", - "question_id": 19398, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00005149", - "question_id": 19399, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002209", - "question_id": 19402, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"right\", \"piano\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008026", - "question_id": 19424, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000696", - "question_id": 19434, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008836", - "question_id": 19437, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006373", - "question_id": 19448, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007941", - "question_id": 19457, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004764", - "question_id": 19459, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006902", - "question_id": 19463, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001626", - "question_id": 19473, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000752", - "question_id": 19488, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000172", - "question_id": 19499, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007797", - "question_id": 19504, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003359", - "question_id": 19510, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005885", - "question_id": 19512, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004979", - "question_id": 19514, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003466", - "question_id": 19520, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003348", - "question_id": 19523, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005271", - "question_id": 19524, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003592", - "question_id": 19542, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007872", - "question_id": 19582, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00004779", - "question_id": 19586, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004262", - "question_id": 19609, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004934", - "question_id": 19610, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005375", - "question_id": 19618, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007919", - "question_id": 19633, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002446", - "question_id": 19641, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004964", - "question_id": 19652, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00003673", - "question_id": 19686, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004359", - "question_id": 19691, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003008", - "question_id": 19692, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006401", - "question_id": 19701, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007226", - "question_id": 19713, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004464", - "question_id": 19736, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000069", - "question_id": 19753, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005344", - "question_id": 19755, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00001969", - "question_id": 19764, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003237", - "question_id": 19766, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004214", - "question_id": 19770, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002332", - "question_id": 19781, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001079", - "question_id": 19794, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003947", - "question_id": 19826, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005908", - "question_id": 19830, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000435", - "question_id": 19844, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00001075", - "question_id": 19848, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005728", - "question_id": 19866, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00008752", - "question_id": 19867, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004043", - "question_id": 19903, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005571", - "question_id": 19961, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003717", - "question_id": 19977, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"last\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00008489", - "question_id": 19981, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001702", - "question_id": 19988, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"drum\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000975", - "question_id": 20002, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005048", - "question_id": 20006, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000426", - "question_id": 20020, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008533", - "question_id": 20046, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004909", - "question_id": 20064, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006938", - "question_id": 20074, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000559", - "question_id": 20084, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004866", - "question_id": 20108, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008816", - "question_id": 20120, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"third\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005846", - "question_id": 20123, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000822", - "question_id": 20134, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006289", - "question_id": 20151, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002592", - "question_id": 20166, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004793", - "question_id": 20191, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000842", - "question_id": 20202, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002621", - "question_id": 20210, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004667", - "question_id": 20214, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008129", - "question_id": 20216, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000979", - "question_id": 20232, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007450", - "question_id": 20241, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005115", - "question_id": 20246, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007596", - "question_id": 20254, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008514", - "question_id": 20261, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008474", - "question_id": 20262, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008473", - "question_id": 20265, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002589", - "question_id": 20266, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005928", - "question_id": 20271, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005736", - "question_id": 20301, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008846", - "question_id": 20326, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001971", - "question_id": 20328, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002361", - "question_id": 20357, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001226", - "question_id": 20361, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008416", - "question_id": 20366, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008447", - "question_id": 20368, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005835", - "question_id": 20376, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005271", - "question_id": 20388, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002578", - "question_id": 20389, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004663", - "question_id": 20397, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006402", - "question_id": 20402, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007268", - "question_id": 20404, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005842", - "question_id": 20411, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006147", - "question_id": 20453, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002872", - "question_id": 20468, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001582", - "question_id": 20471, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003593", - "question_id": 20490, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003280", - "question_id": 20501, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001095", - "question_id": 20517, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004318", - "question_id": 20523, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000159", - "question_id": 20524, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007318", - "question_id": 20525, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005693", - "question_id": 20529, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002166", - "question_id": 20534, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001540", - "question_id": 20539, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007344", - "question_id": 20548, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003202", - "question_id": 20558, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008259", - "question_id": 20561, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006343", - "question_id": 20565, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004573", - "question_id": 20582, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008517", - "question_id": 20589, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001857", - "question_id": 20591, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002701", - "question_id": 20595, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004731", - "question_id": 20606, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006429", - "question_id": 20613, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006320", - "question_id": 20631, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003214", - "question_id": 20652, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00007913", - "question_id": 20657, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005608", - "question_id": 20658, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003343", - "question_id": 20659, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005959", - "question_id": 20660, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004061", - "question_id": 20665, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007176", - "question_id": 20676, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008782", - "question_id": 20678, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000768", - "question_id": 20681, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003073", - "question_id": 20683, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006963", - "question_id": 20688, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002844", - "question_id": 20708, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00008472", - "question_id": 20719, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001468", - "question_id": 20720, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002176", - "question_id": 20722, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004478", - "question_id": 20738, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006385", - "question_id": 20755, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001627", - "question_id": 20756, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005235", - "question_id": 20776, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006782", - "question_id": 20779, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00002662", - "question_id": 20783, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006681", - "question_id": 20784, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001081", - "question_id": 20789, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002205", - "question_id": 20814, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002312", - "question_id": 20818, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006402", - "question_id": 20821, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007587", - "question_id": 20835, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008794", - "question_id": 20837, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00008248", - "question_id": 20841, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007124", - "question_id": 20875, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"middle\", \"bassoon\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008520", - "question_id": 20893, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007510", - "question_id": 20897, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007136", - "question_id": 20906, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00007556", - "question_id": 20908, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008228", - "question_id": 20913, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001438", - "question_id": 20922, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001319", - "question_id": 20923, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003312", - "question_id": 20924, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001660", - "question_id": 20927, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002980", - "question_id": 20946, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002980", - "question_id": 20946, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002638", - "question_id": 20965, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001150", - "question_id": 20977, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008383", - "question_id": 20978, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003145", - "question_id": 20986, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004244", - "question_id": 20995, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003878", - "question_id": 20996, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002965", - "question_id": 21015, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00007169", - "question_id": 21020, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006637", - "question_id": 21043, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"ukulele\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006070", - "question_id": 21057, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006070", - "question_id": 21057, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005100", - "question_id": 21066, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006098", - "question_id": 21075, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000772", - "question_id": 21087, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004690", - "question_id": 21135, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000610", - "question_id": 21149, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006269", - "question_id": 21159, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00007451", - "question_id": 21177, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007451", - "question_id": 21177, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000962", - "question_id": 21184, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002729", - "question_id": 21228, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"tuba\", \"right\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002623", - "question_id": 21239, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007803", - "question_id": 21241, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006593", - "question_id": 21257, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005500", - "question_id": 21271, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004807", - "question_id": 21289, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005123", - "question_id": 21320, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001322", - "question_id": 21339, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008896", - "question_id": 21358, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000842", - "question_id": 21372, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006309", - "question_id": 21382, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006309", - "question_id": 21382, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001522", - "question_id": 21384, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008181", - "question_id": 21386, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002402", - "question_id": 21403, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007066", - "question_id": 21417, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008845", - "question_id": 21421, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001608", - "question_id": 21436, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003745", - "question_id": 21451, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002282", - "question_id": 21480, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004237", - "question_id": 21483, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004977", - "question_id": 21486, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005497", - "question_id": 21498, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000784", - "question_id": 21501, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006289", - "question_id": 21507, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006523", - "question_id": 21510, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007684", - "question_id": 21520, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005705", - "question_id": 21523, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001425", - "question_id": 21541, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006901", - "question_id": 21546, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006954", - "question_id": 21549, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00008865", - "question_id": 21550, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007007", - "question_id": 21566, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007990", - "question_id": 21568, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004567", - "question_id": 21571, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007740", - "question_id": 21580, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008857", - "question_id": 21581, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001731", - "question_id": 21590, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006947", - "question_id": 21621, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007631", - "question_id": 21622, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00006144", - "question_id": 21651, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005888", - "question_id": 21654, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"accordion\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005558", - "question_id": 21712, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00007022", - "question_id": 21730, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000867", - "question_id": 21771, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008967", - "question_id": 21782, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001903", - "question_id": 21789, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005255", - "question_id": 21810, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005534", - "question_id": 21816, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005694", - "question_id": 21819, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003914", - "question_id": 21821, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00002395", - "question_id": 21864, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006461", - "question_id": 21884, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004483", - "question_id": 21894, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000152", - "question_id": 21907, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005832", - "question_id": 21911, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001761", - "question_id": 21925, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00002319", - "question_id": 21930, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00001736", - "question_id": 21960, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00004837", - "question_id": 21962, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002425", - "question_id": 21975, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008720", - "question_id": 21991, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005950", - "question_id": 21992, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003713", - "question_id": 21995, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00002324", - "question_id": 22000, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"congas\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006301", - "question_id": 22012, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004820", - "question_id": 22026, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005820", - "question_id": 22027, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006343", - "question_id": 22053, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002971", - "question_id": 22061, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001495", - "question_id": 22078, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000476", - "question_id": 22080, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003421", - "question_id": 22094, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006687", - "question_id": 22101, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00001108", - "question_id": 22106, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003037", - "question_id": 22110, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006631", - "question_id": 22120, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005557", - "question_id": 22121, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008259", - "question_id": 22131, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006535", - "question_id": 22140, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004703", - "question_id": 22163, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004836", - "question_id": 22226, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003827", - "question_id": 22231, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006274", - "question_id": 22256, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00006773", - "question_id": 22260, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004610", - "question_id": 22268, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002175", - "question_id": 22271, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003300", - "question_id": 22287, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00008202", - "question_id": 22299, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004250", - "question_id": 22308, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008804", - "question_id": 22327, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006724", - "question_id": 22331, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006243", - "question_id": 22336, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004196", - "question_id": 22341, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00000707", - "question_id": 22349, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006209", - "question_id": 22355, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00006285", - "question_id": 22363, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002520", - "question_id": 22375, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00001147", - "question_id": 22383, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000069", - "question_id": 22398, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002868", - "question_id": 22405, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007685", - "question_id": 22421, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001125", - "question_id": 22426, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005684", - "question_id": 22430, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"electric_bass\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00002737", - "question_id": 22434, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004274", - "question_id": 22440, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00006113", - "question_id": 22442, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005286", - "question_id": 22449, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001397", - "question_id": 22459, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003139", - "question_id": 22462, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004021", - "question_id": 22474, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000415", - "question_id": 22496, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008605", - "question_id": 22503, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008666", - "question_id": 22525, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00001186", - "question_id": 22527, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005435", - "question_id": 22543, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002259", - "question_id": 22548, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005899", - "question_id": 22590, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003754", - "question_id": 22622, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006759", - "question_id": 22623, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003666", - "question_id": 22633, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00001205", - "question_id": 22636, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00001068", - "question_id": 22654, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003326", - "question_id": 22659, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00000979", - "question_id": 22660, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00006491", - "question_id": 22661, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000424", - "question_id": 22678, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002505", - "question_id": 22691, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001110", - "question_id": 22696, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00001684", - "question_id": 22701, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00004811", - "question_id": 22743, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004246", - "question_id": 22747, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00007438", - "question_id": 22755, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008437", - "question_id": 22756, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001365", - "question_id": 22781, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Is there a sound?", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003970", - "question_id": 22792, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004711", - "question_id": 22798, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008106", - "question_id": 22828, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001590", - "question_id": 22840, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005617", - "question_id": 22862, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Is there a in the entire video?", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004117", - "question_id": 22868, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008828", - "question_id": 22882, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007146", - "question_id": 22905, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00003516", - "question_id": 22945, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00008625", - "question_id": 22968, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008533", - "question_id": 22971, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007385", - "question_id": 22986, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000592", - "question_id": 22991, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many are in the entire video?", - "templ_values": "[\"erhu\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005430", - "question_id": 23014, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Which is the musical instrument that sounds at the same time as the ?", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006992", - "question_id": 23021, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001480", - "question_id": 23033, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001277", - "question_id": 23034, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00004944", - "question_id": 23044, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000573", - "question_id": 23046, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004126", - "question_id": 23082, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004676", - "question_id": 23105, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"xylophone\", \"right\", \"xylophone\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008313", - "question_id": 23127, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00006812", - "question_id": 23130, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005124", - "question_id": 23134, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007247", - "question_id": 23136, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002653", - "question_id": 23146, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001554", - "question_id": 23167, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00006629", - "question_id": 23172, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004564", - "question_id": 23174, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00001333", - "question_id": 23194, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007983", - "question_id": 23202, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00003598", - "question_id": 23211, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008249", - "question_id": 23214, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006773", - "question_id": 23246, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"pipa\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00001438", - "question_id": 23249, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00000253", - "question_id": 23275, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005878", - "question_id": 23281, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001512", - "question_id": 23292, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00003316", - "question_id": 23297, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007341", - "question_id": 23298, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00006589", - "question_id": 23301, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00003542", - "question_id": 23303, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005497", - "question_id": 23336, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007698", - "question_id": 23340, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004982", - "question_id": 23352, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"electric_bass\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006305", - "question_id": 23364, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00004507", - "question_id": 23374, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006574", - "question_id": 23396, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006449", - "question_id": 23399, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"flute\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006660", - "question_id": 23418, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008376", - "question_id": 23468, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000069", - "question_id": 23469, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00001925", - "question_id": 23473, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000400", - "question_id": 23476, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006807", - "question_id": 23480, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002142", - "question_id": 23484, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007018", - "question_id": 23496, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005980", - "question_id": 23508, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004256", - "question_id": 23544, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000126", - "question_id": 23546, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005340", - "question_id": 23555, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002771", - "question_id": 23556, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005663", - "question_id": 23566, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"saxophone\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005813", - "question_id": 23580, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001644", - "question_id": 23587, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002335", - "question_id": 23588, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001274", - "question_id": 23589, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002757", - "question_id": 23602, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00004838", - "question_id": 23609, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008848", - "question_id": 23617, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008531", - "question_id": 23618, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006873", - "question_id": 23635, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002737", - "question_id": 23637, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006100", - "question_id": 23647, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000271", - "question_id": 23654, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004857", - "question_id": 23656, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000973", - "question_id": 23659, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001776", - "question_id": 23666, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000560", - "question_id": 23671, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001522", - "question_id": 23678, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003615", - "question_id": 23686, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008613", - "question_id": 23690, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006659", - "question_id": 23697, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007883", - "question_id": 23715, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007781", - "question_id": 23725, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005229", - "question_id": 23727, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006996", - "question_id": 23734, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00003970", - "question_id": 23747, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007160", - "question_id": 23772, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003787", - "question_id": 23777, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008351", - "question_id": 23778, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006995", - "question_id": 23789, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002016", - "question_id": 23799, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005640", - "question_id": 23807, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000287", - "question_id": 23818, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003860", - "question_id": 23820, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004026", - "question_id": 23837, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00002714", - "question_id": 23838, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006273", - "question_id": 23849, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000286", - "question_id": 23869, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001641", - "question_id": 23911, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000643", - "question_id": 23912, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006646", - "question_id": 23914, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00008727", - "question_id": 23915, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001808", - "question_id": 23921, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001695", - "question_id": 23940, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004052", - "question_id": 23942, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"bagpipe\", \"left\", \"bagpipe\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006247", - "question_id": 23969, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007943", - "question_id": 23971, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004129", - "question_id": 23982, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004686", - "question_id": 23988, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001176", - "question_id": 23998, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00002572", - "question_id": 23999, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002872", - "question_id": 24002, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008805", - "question_id": 24017, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00001563", - "question_id": 24026, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"middle\", \"banjo\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008472", - "question_id": 24032, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005540", - "question_id": 24045, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004850", - "question_id": 24050, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006213", - "question_id": 24066, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008154", - "question_id": 24068, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00008589", - "question_id": 24070, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003193", - "question_id": 24079, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002103", - "question_id": 24087, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005406", - "question_id": 24135, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006170", - "question_id": 24143, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000993", - "question_id": 24145, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003171", - "question_id": 24146, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008504", - "question_id": 24156, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005057", - "question_id": 24169, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007296", - "question_id": 24182, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008071", - "question_id": 24194, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006397", - "question_id": 24203, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002957", - "question_id": 24221, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006923", - "question_id": 24223, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008933", - "question_id": 24227, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004343", - "question_id": 24233, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"violin\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001769", - "question_id": 24240, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003779", - "question_id": 24247, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008069", - "question_id": 24256, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008514", - "question_id": 24288, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002834", - "question_id": 24296, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000312", - "question_id": 24301, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"drum\", \"congas\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003731", - "question_id": 24307, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002487", - "question_id": 24308, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003049", - "question_id": 24310, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001504", - "question_id": 24374, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006373", - "question_id": 24384, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005177", - "question_id": 24415, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001990", - "question_id": 24421, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001990", - "question_id": 24421, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007074", - "question_id": 24428, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000048", - "question_id": 24429, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007401", - "question_id": 24436, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001337", - "question_id": 24455, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000501", - "question_id": 24477, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004496", - "question_id": 24480, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00006003", - "question_id": 24482, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002100", - "question_id": 24483, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006310", - "question_id": 24494, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000424", - "question_id": 24525, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002701", - "question_id": 24533, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000224", - "question_id": 24534, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"right\", \"trumpet\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005569", - "question_id": 24550, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002126", - "question_id": 24567, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006743", - "question_id": 24574, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004549", - "question_id": 24578, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007415", - "question_id": 24604, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007073", - "question_id": 24606, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007051", - "question_id": 24617, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001955", - "question_id": 24619, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005667", - "question_id": 24643, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002315", - "question_id": 24646, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003777", - "question_id": 24648, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008236", - "question_id": 24667, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004881", - "question_id": 24671, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002215", - "question_id": 24705, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005006", - "question_id": 24709, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002393", - "question_id": 24724, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00005409", - "question_id": 24738, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006028", - "question_id": 24741, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006557", - "question_id": 24743, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007916", - "question_id": 24754, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00004876", - "question_id": 24781, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000940", - "question_id": 24783, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000685", - "question_id": 24791, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"drum\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007514", - "question_id": 24817, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005163", - "question_id": 24830, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005445", - "question_id": 24840, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006216", - "question_id": 24846, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003440", - "question_id": 24883, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001154", - "question_id": 24911, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00002340", - "question_id": 24916, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002532", - "question_id": 24922, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004765", - "question_id": 24935, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008359", - "question_id": 24948, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000849", - "question_id": 24958, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006107", - "question_id": 24969, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002015", - "question_id": 24970, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001615", - "question_id": 24986, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008845", - "question_id": 24990, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bassoon\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002789", - "question_id": 25002, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006328", - "question_id": 25004, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008205", - "question_id": 25008, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006196", - "question_id": 25017, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001291", - "question_id": 25025, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"accordion\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007717", - "question_id": 25030, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"ukulele\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004227", - "question_id": 25032, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000642", - "question_id": 25038, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004117", - "question_id": 25042, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002180", - "question_id": 25059, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004570", - "question_id": 25066, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001018", - "question_id": 25080, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000400", - "question_id": 25089, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006479", - "question_id": 25092, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002341", - "question_id": 25105, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00007228", - "question_id": 25119, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007698", - "question_id": 25123, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001841", - "question_id": 25128, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000093", - "question_id": 25143, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00003104", - "question_id": 25147, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001360", - "question_id": 25148, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002801", - "question_id": 25171, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006554", - "question_id": 25178, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005829", - "question_id": 25181, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002233", - "question_id": 25195, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00004385", - "question_id": 25210, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001375", - "question_id": 25214, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007832", - "question_id": 25230, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001788", - "question_id": 25245, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00007380", - "question_id": 25256, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007715", - "question_id": 25263, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00006511", - "question_id": 25266, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001680", - "question_id": 25273, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001264", - "question_id": 25287, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00002252", - "question_id": 25293, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004206", - "question_id": 25309, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"clarinet\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002179", - "question_id": 25318, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003029", - "question_id": 25332, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00003921", - "question_id": 25333, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002288", - "question_id": 25335, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002264", - "question_id": 25339, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000915", - "question_id": 25350, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005892", - "question_id": 25354, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00002561", - "question_id": 25358, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006179", - "question_id": 25362, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00005326", - "question_id": 25363, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005392", - "question_id": 25368, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00001671", - "question_id": 25371, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004154", - "question_id": 25407, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003842", - "question_id": 25430, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008070", - "question_id": 25436, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000381", - "question_id": 25446, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00008931", - "question_id": 25447, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004936", - "question_id": 25451, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"middle\", \"tuba\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001986", - "question_id": 25453, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000746", - "question_id": 25457, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"electric_bass\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004428", - "question_id": 25459, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00001459", - "question_id": 25463, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002756", - "question_id": 25472, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000210", - "question_id": 25473, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001396", - "question_id": 25475, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004679", - "question_id": 25494, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004045", - "question_id": 25505, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00005006", - "question_id": 25515, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"congas\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005521", - "question_id": 25519, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"guzheng\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008649", - "question_id": 25522, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005867", - "question_id": 25525, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"last\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008338", - "question_id": 25527, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007122", - "question_id": 25531, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000645", - "question_id": 25560, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008109", - "question_id": 25562, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006165", - "question_id": 25569, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001414", - "question_id": 25574, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003520", - "question_id": 25576, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"acoustic_guitar\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008631", - "question_id": 25582, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007508", - "question_id": 25593, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007253", - "question_id": 25595, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002675", - "question_id": 25596, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002057", - "question_id": 25597, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002162", - "question_id": 25606, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001800", - "question_id": 25666, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008782", - "question_id": 25700, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00005623", - "question_id": 25704, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001730", - "question_id": 25711, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00004950", - "question_id": 25722, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002310", - "question_id": 25738, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001607", - "question_id": 25754, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002901", - "question_id": 25763, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008733", - "question_id": 25765, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001164", - "question_id": 25776, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008883", - "question_id": 25794, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00007845", - "question_id": 25801, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003731", - "question_id": 25811, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00007087", - "question_id": 25818, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00008557", - "question_id": 25833, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00003246", - "question_id": 25835, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000796", - "question_id": 25837, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004273", - "question_id": 25847, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"trumpet\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00008586", - "question_id": 25858, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005774", - "question_id": 25865, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007897", - "question_id": 25866, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001272", - "question_id": 25870, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001966", - "question_id": 25877, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000641", - "question_id": 25884, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000600", - "question_id": 25889, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004029", - "question_id": 25899, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008496", - "question_id": 25910, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004537", - "question_id": 25911, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006403", - "question_id": 25920, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"right\", \"drum\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007237", - "question_id": 25923, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003874", - "question_id": 25952, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002468", - "question_id": 25957, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003394", - "question_id": 25960, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005760", - "question_id": 25999, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001980", - "question_id": 26001, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005028", - "question_id": 26002, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004385", - "question_id": 26028, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007523", - "question_id": 26039, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007847", - "question_id": 26056, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003101", - "question_id": 26057, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"bassoon\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001947", - "question_id": 26059, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"flute\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000488", - "question_id": 26061, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001684", - "question_id": 26068, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002678", - "question_id": 26069, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004087", - "question_id": 26075, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00005302", - "question_id": 26084, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"congas\", \"left\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005446", - "question_id": 26085, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00006614", - "question_id": 26103, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005641", - "question_id": 26114, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004133", - "question_id": 26118, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"erhu\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008579", - "question_id": 26142, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005493", - "question_id": 26154, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003463", - "question_id": 26158, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004275", - "question_id": 26186, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000135", - "question_id": 26188, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005595", - "question_id": 26191, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"right\", \"clarinet\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000898", - "question_id": 26199, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"left\", \"drum\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003405", - "question_id": 26203, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004099", - "question_id": 26227, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003266", - "question_id": 26254, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005760", - "question_id": 26259, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003938", - "question_id": 26260, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"flute\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006465", - "question_id": 26267, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001320", - "question_id": 26269, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001539", - "question_id": 26274, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002583", - "question_id": 26280, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002210", - "question_id": 26301, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006216", - "question_id": 26306, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"banjo\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007517", - "question_id": 26329, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00005778", - "question_id": 26334, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005778", - "question_id": 26334, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006434", - "question_id": 26341, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004934", - "question_id": 26358, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005267", - "question_id": 26377, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002523", - "question_id": 26381, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008885", - "question_id": 26382, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001969", - "question_id": 26384, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001602", - "question_id": 26392, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007066", - "question_id": 26394, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002572", - "question_id": 26402, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00000350", - "question_id": 26415, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004990", - "question_id": 26419, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00001953", - "question_id": 26427, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00004459", - "question_id": 26431, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008447", - "question_id": 26440, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002038", - "question_id": 26446, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00004054", - "question_id": 26447, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006971", - "question_id": 26453, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00007324", - "question_id": 26476, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00007385", - "question_id": 26488, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005915", - "question_id": 26502, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004647", - "question_id": 26504, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00005674", - "question_id": 26515, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007451", - "question_id": 26554, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005626", - "question_id": 26563, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00000723", - "question_id": 26566, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004730", - "question_id": 26572, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008908", - "question_id": 26596, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003420", - "question_id": 26630, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008020", - "question_id": 26636, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005478", - "question_id": 26642, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00008958", - "question_id": 26644, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007193", - "question_id": 26650, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001337", - "question_id": 26663, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000467", - "question_id": 26669, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002346", - "question_id": 26693, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008468", - "question_id": 26701, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"piano\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008671", - "question_id": 26732, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001342", - "question_id": 26740, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008598", - "question_id": 26742, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002707", - "question_id": 26753, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007624", - "question_id": 26770, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004126", - "question_id": 26772, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008043", - "question_id": 26776, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007724", - "question_id": 26781, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007004", - "question_id": 26803, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001793", - "question_id": 26814, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004733", - "question_id": 26815, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001891", - "question_id": 26820, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007870", - "question_id": 26824, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005636", - "question_id": 26835, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003503", - "question_id": 26851, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001218", - "question_id": 26872, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007201", - "question_id": 26874, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00005905", - "question_id": 26876, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004738", - "question_id": 26888, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003887", - "question_id": 26902, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"accordion\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004336", - "question_id": 26903, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00006757", - "question_id": 26907, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008104", - "question_id": 26952, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"erhu\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007375", - "question_id": 26959, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"flute\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002513", - "question_id": 26963, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"tuba\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001905", - "question_id": 26976, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008003", - "question_id": 26987, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006446", - "question_id": 27017, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00007534", - "question_id": 27021, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00000307", - "question_id": 27030, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004480", - "question_id": 27088, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003160", - "question_id": 27091, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005657", - "question_id": 27099, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004136", - "question_id": 27101, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001147", - "question_id": 27103, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bassoon\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008520", - "question_id": 27106, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005937", - "question_id": 27168, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003831", - "question_id": 27169, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"electric_bass\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007489", - "question_id": 27174, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000278", - "question_id": 27179, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002682", - "question_id": 27202, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002475", - "question_id": 27213, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007604", - "question_id": 27218, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002119", - "question_id": 27221, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007839", - "question_id": 27227, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004101", - "question_id": 27230, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001678", - "question_id": 27236, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002545", - "question_id": 27257, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000957", - "question_id": 27261, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003190", - "question_id": 27268, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00006361", - "question_id": 27269, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001160", - "question_id": 27286, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"trumpet\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003969", - "question_id": 27304, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001828", - "question_id": 27328, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004832", - "question_id": 27329, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006365", - "question_id": 27331, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007676", - "question_id": 27339, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002057", - "question_id": 27343, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"cello\", \"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007353", - "question_id": 27348, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"guzheng\", \"erhu\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005424", - "question_id": 27363, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00004209", - "question_id": 27383, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001412", - "question_id": 27405, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"pipa\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003759", - "question_id": 27411, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006019", - "question_id": 27429, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00002803", - "question_id": 27432, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002435", - "question_id": 27435, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00007317", - "question_id": 27438, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003083", - "question_id": 27453, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003197", - "question_id": 27471, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001747", - "question_id": 27504, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006489", - "question_id": 27524, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000911", - "question_id": 27531, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007488", - "question_id": 27541, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"trumpet\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006934", - "question_id": 27580, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003282", - "question_id": 27582, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001797", - "question_id": 27586, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00006231", - "question_id": 27592, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00000024", - "question_id": 27618, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00004309", - "question_id": 27638, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006861", - "question_id": 27657, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007047", - "question_id": 27660, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008448", - "question_id": 27663, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00008671", - "question_id": 27669, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "Are there and sound? ", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002537", - "question_id": 27677, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006718", - "question_id": 27687, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008871", - "question_id": 27690, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00000035", - "question_id": 27698, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006145", - "question_id": 27714, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002864", - "question_id": 27716, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00005200", - "question_id": 27718, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001205", - "question_id": 27738, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is there a voiceover?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005460", - "question_id": 27749, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001348", - "question_id": 27751, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00006927", - "question_id": 27755, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00001051", - "question_id": 27776, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00007770", - "question_id": 27786, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007846", - "question_id": 27806, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000456", - "question_id": 27847, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00005276", - "question_id": 27886, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004261", - "question_id": 27897, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004794", - "question_id": 27907, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000692", - "question_id": 27916, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00007066", - "question_id": 27938, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000240", - "question_id": 27942, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00007708", - "question_id": 27958, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003718", - "question_id": 27961, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003581", - "question_id": 27962, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00005163", - "question_id": 27965, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000366", - "question_id": 27978, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003624", - "question_id": 27983, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007673", - "question_id": 28001, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001120", - "question_id": 28002, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"banjo\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006680", - "question_id": 28016, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006659", - "question_id": 28035, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"pipa\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001865", - "question_id": 28038, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008293", - "question_id": 28046, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00005072", - "question_id": 28052, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001824", - "question_id": 28058, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003068", - "question_id": 28083, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001692", - "question_id": 28090, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000312", - "question_id": 28102, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008586", - "question_id": 28104, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001520", - "question_id": 28111, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001248", - "question_id": 28117, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002052", - "question_id": 28122, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003607", - "question_id": 28147, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003682", - "question_id": 28186, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008212", - "question_id": 28257, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002447", - "question_id": 28263, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008666", - "question_id": 28293, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00006520", - "question_id": 28325, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00006914", - "question_id": 28329, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001485", - "question_id": 28332, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00003426", - "question_id": 28339, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004465", - "question_id": 28357, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00008015", - "question_id": 28358, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002174", - "question_id": 28381, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004012", - "question_id": 28387, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000738", - "question_id": 28419, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006535", - "question_id": 28421, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001314", - "question_id": 28427, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00005346", - "question_id": 28443, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005788", - "question_id": 28451, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006742", - "question_id": 28481, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005599", - "question_id": 28505, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00008100", - "question_id": 28542, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005369", - "question_id": 28548, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00007146", - "question_id": 28573, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"suona\", \"suona\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006853", - "question_id": 28594, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00006798", - "question_id": 28602, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"violin\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005138", - "question_id": 28615, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007866", - "question_id": 28617, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00005585", - "question_id": 28620, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006899", - "question_id": 28634, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007731", - "question_id": 28647, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00001458", - "question_id": 28648, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004345", - "question_id": 28662, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000283", - "question_id": 28686, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005004", - "question_id": 28693, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00006034", - "question_id": 28736, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003165", - "question_id": 28757, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"congas\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008234", - "question_id": 28821, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002983", - "question_id": 28826, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002362", - "question_id": 28840, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"electric_bass\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001372", - "question_id": 28850, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00004119", - "question_id": 28913, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00002190", - "question_id": 28919, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004444", - "question_id": 28924, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000863", - "question_id": 28926, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00008520", - "question_id": 28958, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001377", - "question_id": 28962, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"suona\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002414", - "question_id": 28964, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"saxophone\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003644", - "question_id": 28982, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00002666", - "question_id": 28997, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00006426", - "question_id": 29009, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00003985", - "question_id": 29013, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00004454", - "question_id": 29036, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00003138", - "question_id": 29040, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005699", - "question_id": 29049, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00007386", - "question_id": 29050, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008605", - "question_id": 29051, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00002684", - "question_id": 29081, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00002458", - "question_id": 29093, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00007104", - "question_id": 29098, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00003834", - "question_id": 29109, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000328", - "question_id": 29115, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004076", - "question_id": 29119, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003016", - "question_id": 29132, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00008634", - "question_id": 29163, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00000744", - "question_id": 29165, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"congas\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003200", - "question_id": 29169, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005115", - "question_id": 29201, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004975", - "question_id": 29207, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00007363", - "question_id": 29223, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"erhu\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008389", - "question_id": 29229, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00004565", - "question_id": 29240, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00000951", - "question_id": 29245, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008568", - "question_id": 29251, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000120", - "question_id": 29256, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00004628", - "question_id": 29293, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00007185", - "question_id": 29301, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00001189", - "question_id": 29313, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006114", - "question_id": 29323, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000170", - "question_id": 29325, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00002768", - "question_id": 29326, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00003503", - "question_id": 29332, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005517", - "question_id": 29336, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003849", - "question_id": 29346, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00001574", - "question_id": 29347, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004597", - "question_id": 29359, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00002565", - "question_id": 29361, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00007894", - "question_id": 29368, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001550", - "question_id": 29374, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008691", - "question_id": 29381, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00004920", - "question_id": 29382, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007786", - "question_id": 29383, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00005004", - "question_id": 29432, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"erhu\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002268", - "question_id": 29448, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007717", - "question_id": 29459, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"last\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007353", - "question_id": 29486, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00005535", - "question_id": 29507, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"acoustic_guitar\", \"banjo\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000577", - "question_id": 29531, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004584", - "question_id": 29543, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007364", - "question_id": 29594, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"tuba\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006356", - "question_id": 29612, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00004542", - "question_id": 29623, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00005114", - "question_id": 29643, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000923", - "question_id": 29651, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00004772", - "question_id": 29677, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00004656", - "question_id": 29691, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005612", - "question_id": 29695, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004399", - "question_id": 29715, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008742", - "question_id": 29727, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005960", - "question_id": 29734, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00006129", - "question_id": 29754, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00004647", - "question_id": 29763, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"drum\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008728", - "question_id": 29775, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002005", - "question_id": 29779, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008277", - "question_id": 29785, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00007213", - "question_id": 29798, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00002041", - "question_id": 29803, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001529", - "question_id": 29853, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"bassoon\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004471", - "question_id": 29855, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002816", - "question_id": 29875, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00002278", - "question_id": 29880, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00001633", - "question_id": 29912, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000995", - "question_id": 29944, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00000761", - "question_id": 29971, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000768", - "question_id": 29975, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00000410", - "question_id": 29987, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000892", - "question_id": 29993, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00007438", - "question_id": 30001, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00001124", - "question_id": 30016, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00006284", - "question_id": 30021, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00001719", - "question_id": 30028, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "outdoor" -}, { - "video_id": "00006061", - "question_id": 30031, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002687", - "question_id": 30042, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006274", - "question_id": 30076, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"accordion\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004824", - "question_id": 30099, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006500", - "question_id": 30124, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00008139", - "question_id": 30134, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00005133", - "question_id": 30175, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"violin\", \"tuba\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001005", - "question_id": 30178, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"acoustic_guitar\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000240", - "question_id": 30181, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"saxophone\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007463", - "question_id": 30206, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002900", - "question_id": 30224, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"clarinet\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008248", - "question_id": 30253, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "Are there and instruments in the video?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004927", - "question_id": 30276, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00001396", - "question_id": 30280, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00005363", - "question_id": 30283, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001028", - "question_id": 30287, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00006118", - "question_id": 30291, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008960", - "question_id": 30294, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"violin\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008713", - "question_id": 30313, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007994", - "question_id": 30315, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008127", - "question_id": 30333, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00002881", - "question_id": 30341, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006501", - "question_id": 30343, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000711", - "question_id": 30346, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00002487", - "question_id": 30363, - "type": "[\"Visual\", \"Location\"]", - "question_content": "Where is the performance?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "indoor" -}, { - "video_id": "00006719", - "question_id": 30367, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"clarinet\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007963", - "question_id": 30397, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005186", - "question_id": 30403, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006889", - "question_id": 30415, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00004939", - "question_id": 30450, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004448", - "question_id": 30453, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"ukulele\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003307", - "question_id": 30487, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000659", - "question_id": 30495, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002087", - "question_id": 30502, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002299", - "question_id": 30507, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00001238", - "question_id": 30514, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00003952", - "question_id": 30518, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007283", - "question_id": 30535, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000428", - "question_id": 30536, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00004736", - "question_id": 30543, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004063", - "question_id": 30545, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00004153", - "question_id": 30556, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008885", - "question_id": 30559, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005786", - "question_id": 30600, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00004172", - "question_id": 30653, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00002051", - "question_id": 30684, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008951", - "question_id": 30703, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000792", - "question_id": 30712, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000332", - "question_id": 30723, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008192", - "question_id": 30740, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004377", - "question_id": 30768, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00008620", - "question_id": 30779, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001302", - "question_id": 30796, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"trumpet\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002159", - "question_id": 30812, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008041", - "question_id": 30818, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005742", - "question_id": 30851, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00006663", - "question_id": 30853, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006357", - "question_id": 30866, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00003703", - "question_id": 30881, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002827", - "question_id": 30892, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00001563", - "question_id": 30904, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00004176", - "question_id": 30905, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00008896", - "question_id": 30922, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008055", - "question_id": 30924, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003121", - "question_id": 30930, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00007370", - "question_id": 30940, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00005997", - "question_id": 30975, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007803", - "question_id": 30980, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005214", - "question_id": 30985, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00004939", - "question_id": 30988, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"accordion\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007911", - "question_id": 30998, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003953", - "question_id": 31008, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008703", - "question_id": 31024, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002821", - "question_id": 31027, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007127", - "question_id": 31046, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000943", - "question_id": 31060, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003757", - "question_id": 31103, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004744", - "question_id": 31109, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004027", - "question_id": 31112, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005897", - "question_id": 31129, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000813", - "question_id": 31173, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007504", - "question_id": 31217, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004845", - "question_id": 31261, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007511", - "question_id": 31265, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003359", - "question_id": 31267, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007092", - "question_id": 31271, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007329", - "question_id": 31290, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003551", - "question_id": 31302, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005473", - "question_id": 31314, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000075", - "question_id": 31316, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006675", - "question_id": 31322, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006353", - "question_id": 31325, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000926", - "question_id": 31337, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"xylophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004957", - "question_id": 31375, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000935", - "question_id": 31384, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006069", - "question_id": 31395, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003641", - "question_id": 31398, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006845", - "question_id": 31421, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008526", - "question_id": 31442, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002541", - "question_id": 31456, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004272", - "question_id": 31476, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007063", - "question_id": 31486, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004133", - "question_id": 31489, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000215", - "question_id": 31495, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00001500", - "question_id": 31537, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008824", - "question_id": 31550, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004001", - "question_id": 31551, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006964", - "question_id": 31552, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006692", - "question_id": 31571, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002628", - "question_id": 31580, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004644", - "question_id": 31600, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006822", - "question_id": 31607, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001577", - "question_id": 31614, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007988", - "question_id": 31641, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008095", - "question_id": 31657, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004414", - "question_id": 31661, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001661", - "question_id": 31662, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00007632", - "question_id": 31671, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007555", - "question_id": 31700, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006053", - "question_id": 31739, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001940", - "question_id": 31750, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000185", - "question_id": 31752, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007555", - "question_id": 31768, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004390", - "question_id": 31770, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008584", - "question_id": 31777, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001240", - "question_id": 31787, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007593", - "question_id": 31822, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"cello\", \"left\", \"electric_bass\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005860", - "question_id": 31835, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002294", - "question_id": 31837, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002016", - "question_id": 31842, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000467", - "question_id": 31851, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00004603", - "question_id": 31861, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006746", - "question_id": 31911, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"pipa\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002893", - "question_id": 31917, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008495", - "question_id": 31936, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008974", - "question_id": 31945, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006613", - "question_id": 31946, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001836", - "question_id": 31951, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007048", - "question_id": 31962, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002780", - "question_id": 31974, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001409", - "question_id": 32011, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004210", - "question_id": 32015, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008227", - "question_id": 32022, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006601", - "question_id": 32037, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001862", - "question_id": 32039, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006966", - "question_id": 32065, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000786", - "question_id": 32070, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007021", - "question_id": 32077, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00005374", - "question_id": 32079, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008606", - "question_id": 32109, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000785", - "question_id": 32111, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007676", - "question_id": 32114, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008925", - "question_id": 32124, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002378", - "question_id": 32163, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005156", - "question_id": 32168, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001882", - "question_id": 32231, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008426", - "question_id": 32237, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004011", - "question_id": 32246, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004759", - "question_id": 32247, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005444", - "question_id": 32259, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004486", - "question_id": 32275, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003208", - "question_id": 32278, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003665", - "question_id": 32302, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001992", - "question_id": 32320, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002781", - "question_id": 32326, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008623", - "question_id": 32327, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007378", - "question_id": 32332, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008631", - "question_id": 32333, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001456", - "question_id": 32337, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001792", - "question_id": 32407, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003290", - "question_id": 32413, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002895", - "question_id": 32437, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00008875", - "question_id": 32441, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000367", - "question_id": 32457, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00001059", - "question_id": 32464, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005169", - "question_id": 32504, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002939", - "question_id": 32545, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007956", - "question_id": 32578, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00003434", - "question_id": 32584, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001628", - "question_id": 32589, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00004502", - "question_id": 32608, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002880", - "question_id": 32619, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008041", - "question_id": 32624, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005423", - "question_id": 32628, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007571", - "question_id": 32654, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006729", - "question_id": 32656, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003775", - "question_id": 32666, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000952", - "question_id": 32670, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002302", - "question_id": 32680, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001669", - "question_id": 32694, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000842", - "question_id": 32723, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001536", - "question_id": 32753, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008220", - "question_id": 32776, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007460", - "question_id": 32786, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003443", - "question_id": 32814, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003636", - "question_id": 32818, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003235", - "question_id": 32826, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004082", - "question_id": 32836, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003757", - "question_id": 32850, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006580", - "question_id": 32860, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007657", - "question_id": 32864, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001475", - "question_id": 32871, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002488", - "question_id": 32875, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"acoustic_guitar\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007743", - "question_id": 32895, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002611", - "question_id": 32917, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002994", - "question_id": 32932, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002539", - "question_id": 32951, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006770", - "question_id": 32959, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008551", - "question_id": 32965, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"xylophone\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005478", - "question_id": 32988, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00000840", - "question_id": 32994, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008719", - "question_id": 33017, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005833", - "question_id": 33025, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000577", - "question_id": 33046, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006070", - "question_id": 33053, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001813", - "question_id": 33056, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003291", - "question_id": 33059, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007289", - "question_id": 33089, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004715", - "question_id": 33123, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008764", - "question_id": 33126, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007825", - "question_id": 33150, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007391", - "question_id": 33151, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007268", - "question_id": 33166, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004444", - "question_id": 33169, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007331", - "question_id": 33189, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003050", - "question_id": 33209, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00004441", - "question_id": 33219, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005061", - "question_id": 33234, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004222", - "question_id": 33248, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"leftest\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00003907", - "question_id": 33256, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008435", - "question_id": 33260, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001386", - "question_id": 33271, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of instrument is the instrument? ", - "templ_values": "[\"rightest\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002037", - "question_id": 33272, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008807", - "question_id": 33292, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003385", - "question_id": 33302, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003633", - "question_id": 33311, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003022", - "question_id": 33317, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004504", - "question_id": 33323, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002095", - "question_id": 33329, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002352", - "question_id": 33333, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006637", - "question_id": 33343, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007639", - "question_id": 33361, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002153", - "question_id": 33372, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004302", - "question_id": 33386, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003324", - "question_id": 33395, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008189", - "question_id": 33397, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002822", - "question_id": 33402, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007346", - "question_id": 33410, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007748", - "question_id": 33414, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007946", - "question_id": 33425, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004557", - "question_id": 33427, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005885", - "question_id": 33433, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005659", - "question_id": 33454, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000926", - "question_id": 33455, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004785", - "question_id": 33456, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002665", - "question_id": 33472, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008296", - "question_id": 33508, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003917", - "question_id": 33545, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002895", - "question_id": 33553, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007181", - "question_id": 33555, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005686", - "question_id": 33567, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006005", - "question_id": 33576, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004914", - "question_id": 33619, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002657", - "question_id": 33638, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008535", - "question_id": 33644, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003481", - "question_id": 33647, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002931", - "question_id": 33649, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008804", - "question_id": 33658, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00008553", - "question_id": 33672, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003781", - "question_id": 33673, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002447", - "question_id": 33674, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007470", - "question_id": 33688, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"bassoon\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001309", - "question_id": 33699, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003800", - "question_id": 33705, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004889", - "question_id": 33706, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000825", - "question_id": 33710, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007296", - "question_id": 33714, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006000", - "question_id": 33732, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008411", - "question_id": 33757, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00004960", - "question_id": 33774, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004197", - "question_id": 33780, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003235", - "question_id": 33784, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002076", - "question_id": 33790, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005684", - "question_id": 33797, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000785", - "question_id": 33830, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "more than ten" -}, { - "video_id": "00006168", - "question_id": 33833, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008358", - "question_id": 33890, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004442", - "question_id": 33915, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004570", - "question_id": 33940, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008452", - "question_id": 33957, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00006483", - "question_id": 33960, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007164", - "question_id": 33963, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008561", - "question_id": 33970, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007959", - "question_id": 33992, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004371", - "question_id": 34006, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002021", - "question_id": 34029, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000350", - "question_id": 34045, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002516", - "question_id": 34049, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008913", - "question_id": 34091, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001265", - "question_id": 34092, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000363", - "question_id": 34114, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003738", - "question_id": 34124, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001100", - "question_id": 34147, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002424", - "question_id": 34162, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006230", - "question_id": 34171, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000692", - "question_id": 34214, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002903", - "question_id": 34280, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006115", - "question_id": 34287, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000661", - "question_id": 34291, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007572", - "question_id": 34336, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005075", - "question_id": 34353, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000371", - "question_id": 34368, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003487", - "question_id": 34413, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004922", - "question_id": 34419, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007395", - "question_id": 34442, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001501", - "question_id": 34448, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003264", - "question_id": 34450, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"pipa\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000076", - "question_id": 34464, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003559", - "question_id": 34466, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003515", - "question_id": 34472, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002520", - "question_id": 34483, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003521", - "question_id": 34511, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00008082", - "question_id": 34525, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008204", - "question_id": 34536, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002198", - "question_id": 34548, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001044", - "question_id": 34568, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002072", - "question_id": 34594, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00004004", - "question_id": 34604, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001929", - "question_id": 34609, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008265", - "question_id": 34611, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003647", - "question_id": 34638, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006321", - "question_id": 34641, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001491", - "question_id": 34653, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000051", - "question_id": 34662, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"left\", \"erhu\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004144", - "question_id": 34665, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001813", - "question_id": 34675, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005818", - "question_id": 34679, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00002448", - "question_id": 34702, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"clarinet\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00006461", - "question_id": 34705, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003332", - "question_id": 34722, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000933", - "question_id": 34730, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"trumpet\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000812", - "question_id": 34741, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00004233", - "question_id": 34776, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003774", - "question_id": 34787, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00008763", - "question_id": 34795, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002694", - "question_id": 34800, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00004298", - "question_id": 34802, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005201", - "question_id": 34809, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005031", - "question_id": 34811, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007549", - "question_id": 34820, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007917", - "question_id": 34855, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000585", - "question_id": 34857, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"trumpet\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007959", - "question_id": 34859, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"banjo\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007994", - "question_id": 34874, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003541", - "question_id": 34875, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007622", - "question_id": 34883, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00004287", - "question_id": 34896, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008139", - "question_id": 34899, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008278", - "question_id": 34915, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007478", - "question_id": 34917, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002724", - "question_id": 34937, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"pipa\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00006908", - "question_id": 34949, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003066", - "question_id": 34959, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"pipa\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00005522", - "question_id": 34960, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002235", - "question_id": 34984, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001160", - "question_id": 35008, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001037", - "question_id": 35012, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00008189", - "question_id": 35053, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002363", - "question_id": 35079, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00002363", - "question_id": 35079, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00008687", - "question_id": 35088, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00006232", - "question_id": 35098, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004213", - "question_id": 35105, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00004433", - "question_id": 35135, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008860", - "question_id": 35152, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00008408", - "question_id": 35192, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000546", - "question_id": 35205, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000888", - "question_id": 35208, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002936", - "question_id": 35213, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002777", - "question_id": 35215, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005839", - "question_id": 35224, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008829", - "question_id": 35234, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002257", - "question_id": 35254, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00008632", - "question_id": 35256, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008708", - "question_id": 35259, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005727", - "question_id": 35261, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006705", - "question_id": 35265, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003747", - "question_id": 35267, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"tuba\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00007843", - "question_id": 35289, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"clarinet\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004540", - "question_id": 35297, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00007616", - "question_id": 35324, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00003759", - "question_id": 35381, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001929", - "question_id": 35385, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005587", - "question_id": 35392, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00003589", - "question_id": 35418, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003986", - "question_id": 35420, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006970", - "question_id": 35425, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005399", - "question_id": 35453, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00007927", - "question_id": 35455, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001117", - "question_id": 35456, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004533", - "question_id": 35467, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004810", - "question_id": 35480, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"pipa\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004524", - "question_id": 35495, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000090", - "question_id": 35498, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007336", - "question_id": 35512, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007124", - "question_id": 35513, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001985", - "question_id": 35526, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001760", - "question_id": 35527, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"ukulele\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008427", - "question_id": 35532, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00003737", - "question_id": 35554, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002668", - "question_id": 35563, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002465", - "question_id": 35567, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003323", - "question_id": 35578, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00005292", - "question_id": 35590, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001813", - "question_id": 35599, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007138", - "question_id": 35605, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002425", - "question_id": 35647, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is this sound from the instrument in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004855", - "question_id": 35657, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001238", - "question_id": 35663, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006382", - "question_id": 35679, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"banjo\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008761", - "question_id": 35681, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000548", - "question_id": 35694, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00003536", - "question_id": 35709, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00000451", - "question_id": 35731, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008821", - "question_id": 35745, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005436", - "question_id": 35746, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007707", - "question_id": 35765, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002492", - "question_id": 35830, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000846", - "question_id": 35843, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000242", - "question_id": 35866, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002435", - "question_id": 35896, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005921", - "question_id": 35918, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00001704", - "question_id": 35920, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006698", - "question_id": 35949, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"cello\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00006174", - "question_id": 35970, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"clarinet\"]", - "question_deleted": 0, - "anser": "electric_bass" -}, { - "video_id": "00005632", - "question_id": 35972, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001273", - "question_id": 35988, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"clarinet\", \"right\", \"tuba\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007381", - "question_id": 36015, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007645", - "question_id": 36021, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003045", - "question_id": 36048, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008336", - "question_id": 36049, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"saxophone\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00000778", - "question_id": 36058, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00007142", - "question_id": 36077, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000656", - "question_id": 36083, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"xylophone\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00005662", - "question_id": 36086, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008356", - "question_id": 36095, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004215", - "question_id": 36099, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002212", - "question_id": 36127, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001395", - "question_id": 36131, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004229", - "question_id": 36136, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001912", - "question_id": 36137, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"pipa\", \"erhu\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002074", - "question_id": 36141, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001848", - "question_id": 36150, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003728", - "question_id": 36151, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"left\", \"accordion\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006698", - "question_id": 36178, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002199", - "question_id": 36192, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"banjo\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00003695", - "question_id": 36194, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003976", - "question_id": 36210, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001418", - "question_id": 36216, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002594", - "question_id": 36217, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"pipa\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00005143", - "question_id": 36234, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002462", - "question_id": 36249, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004712", - "question_id": 36273, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007620", - "question_id": 36288, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002291", - "question_id": 36304, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000535", - "question_id": 36327, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00004027", - "question_id": 36332, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004234", - "question_id": 36333, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"tuba\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00004412", - "question_id": 36375, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002705", - "question_id": 36396, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00000039", - "question_id": 36403, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004147", - "question_id": 36409, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001206", - "question_id": 36414, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"bassoon\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007880", - "question_id": 36421, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"middle\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003440", - "question_id": 36433, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"guzheng\", \"right\", \"ukulele\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007507", - "question_id": 36453, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005371", - "question_id": 36476, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000905", - "question_id": 36509, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006548", - "question_id": 36510, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004128", - "question_id": 36514, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008793", - "question_id": 36541, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005362", - "question_id": 36549, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007645", - "question_id": 36557, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"clarinet\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006487", - "question_id": 36567, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"pipa\", \"left\", \"guzheng\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005981", - "question_id": 36572, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006929", - "question_id": 36708, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001244", - "question_id": 36729, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001597", - "question_id": 36748, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"middle\", \"flute\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003952", - "question_id": 36771, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000434", - "question_id": 36784, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006164", - "question_id": 36793, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006255", - "question_id": 36819, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00005718", - "question_id": 36861, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00000624", - "question_id": 36866, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005963", - "question_id": 36879, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"acoustic_guitar\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006746", - "question_id": 36912, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007826", - "question_id": 36916, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00003010", - "question_id": 36927, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004053", - "question_id": 36935, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001441", - "question_id": 36942, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002103", - "question_id": 36967, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007322", - "question_id": 36976, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007322", - "question_id": 36976, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007409", - "question_id": 36977, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00001511", - "question_id": 36983, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005415", - "question_id": 37001, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007771", - "question_id": 37027, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00000243", - "question_id": 37030, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"trumpet\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005290", - "question_id": 37046, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00005580", - "question_id": 37051, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004785", - "question_id": 37059, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00002694", - "question_id": 37072, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008252", - "question_id": 37084, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00002407", - "question_id": 37097, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"clarinet\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003718", - "question_id": 37100, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005053", - "question_id": 37107, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003122", - "question_id": 37111, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007157", - "question_id": 37138, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002149", - "question_id": 37158, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004174", - "question_id": 37163, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008568", - "question_id": 37165, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005721", - "question_id": 37171, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001031", - "question_id": 37203, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007656", - "question_id": 37208, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007201", - "question_id": 37228, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007449", - "question_id": 37249, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00000498", - "question_id": 37257, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000289", - "question_id": 37262, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006419", - "question_id": 37263, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"flute\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004399", - "question_id": 37289, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003250", - "question_id": 37296, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00002093", - "question_id": 37303, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"saxophone\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002291", - "question_id": 37337, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003184", - "question_id": 37356, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008793", - "question_id": 37385, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006904", - "question_id": 37386, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007646", - "question_id": 37388, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00000448", - "question_id": 37421, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003559", - "question_id": 37434, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001045", - "question_id": 37456, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004115", - "question_id": 37488, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004412", - "question_id": 37535, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000242", - "question_id": 37580, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000358", - "question_id": 37611, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001742", - "question_id": 37634, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"ukulele\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005156", - "question_id": 37638, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004052", - "question_id": 37640, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00002638", - "question_id": 37655, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00008408", - "question_id": 37658, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002889", - "question_id": 37659, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006169", - "question_id": 37663, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003022", - "question_id": 37671, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006624", - "question_id": 37700, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007732", - "question_id": 37708, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006052", - "question_id": 37735, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"banjo\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005115", - "question_id": 37763, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000605", - "question_id": 37790, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006688", - "question_id": 37807, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005415", - "question_id": 37808, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005500", - "question_id": 37830, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007109", - "question_id": 37896, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002377", - "question_id": 37940, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00002855", - "question_id": 37949, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007749", - "question_id": 37962, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00002759", - "question_id": 37963, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000178", - "question_id": 37966, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005235", - "question_id": 37985, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004619", - "question_id": 37987, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007009", - "question_id": 38017, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"suona\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00006441", - "question_id": 38025, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004330", - "question_id": 38044, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00004622", - "question_id": 38083, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"electric_bass\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001642", - "question_id": 38091, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00003129", - "question_id": 38103, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004967", - "question_id": 38127, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008732", - "question_id": 38140, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003413", - "question_id": 38156, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001742", - "question_id": 38164, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006713", - "question_id": 38165, - "type": "[\"Audio\", \"Counting\"]", - "question_content": "How many musical instruments were heard throughout the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "seven" -}, { - "video_id": "00004340", - "question_id": 38193, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001288", - "question_id": 38213, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"clarinet\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006157", - "question_id": 38214, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006258", - "question_id": 38265, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006603", - "question_id": 38269, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00007826", - "question_id": 38270, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008638", - "question_id": 38288, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008011", - "question_id": 38309, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"cello\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000340", - "question_id": 38310, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007781", - "question_id": 38313, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008311", - "question_id": 38355, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006420", - "question_id": 38404, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004101", - "question_id": 38412, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00006771", - "question_id": 38416, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007243", - "question_id": 38421, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005814", - "question_id": 38426, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00000861", - "question_id": 38444, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004453", - "question_id": 38464, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002394", - "question_id": 38489, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005065", - "question_id": 38538, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"drum\", \"left\", \"saxophone\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007362", - "question_id": 38545, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001003", - "question_id": 38546, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003179", - "question_id": 38558, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00008884", - "question_id": 38615, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000561", - "question_id": 38627, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002557", - "question_id": 38637, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003224", - "question_id": 38640, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001242", - "question_id": 38656, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"cello\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006588", - "question_id": 38682, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001517", - "question_id": 38687, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004519", - "question_id": 38695, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007730", - "question_id": 38699, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00003270", - "question_id": 38739, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007475", - "question_id": 38742, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000412", - "question_id": 38848, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003681", - "question_id": 38852, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00003126", - "question_id": 38871, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005012", - "question_id": 38882, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006338", - "question_id": 38888, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007926", - "question_id": 38920, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007761", - "question_id": 38927, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000276", - "question_id": 38943, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005084", - "question_id": 38950, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007337", - "question_id": 38967, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"last\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001042", - "question_id": 38976, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000720", - "question_id": 38980, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001322", - "question_id": 39042, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004587", - "question_id": 39050, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00002311", - "question_id": 39051, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00001047", - "question_id": 39106, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003339", - "question_id": 39121, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004004", - "question_id": 39123, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"flute\", \"right\", \"piano\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001285", - "question_id": 39129, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008908", - "question_id": 39134, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004298", - "question_id": 39138, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002828", - "question_id": 39154, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007429", - "question_id": 39194, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001288", - "question_id": 39220, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00003719", - "question_id": 39229, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000116", - "question_id": 39307, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002041", - "question_id": 39311, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00004228", - "question_id": 39342, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00000535", - "question_id": 39374, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005354", - "question_id": 39383, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005810", - "question_id": 39489, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002538", - "question_id": 39528, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001340", - "question_id": 39537, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004275", - "question_id": 39584, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004938", - "question_id": 39591, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003051", - "question_id": 39600, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00008687", - "question_id": 39621, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005028", - "question_id": 39628, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007895", - "question_id": 39640, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments are sounding in the video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00005973", - "question_id": 39708, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007535", - "question_id": 39755, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005810", - "question_id": 39758, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008391", - "question_id": 39791, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "three" -}, { - "video_id": "00008818", - "question_id": 39793, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many instruments in the video did not sound from beginning to end?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00003359", - "question_id": 39830, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002330", - "question_id": 39861, - "type": "[\"Visual\", \"Counting\"]", - "question_content": "How many types of musical instruments appeared in the entire video?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007053", - "question_id": 39895, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007881", - "question_id": 39957, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "erhu" -}, { - "video_id": "00005292", - "question_id": 40030, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007694", - "question_id": 40032, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"banjo\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00006192", - "question_id": 40057, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00004788", - "question_id": 40066, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006689", - "question_id": 40087, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005902", - "question_id": 40100, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00006247", - "question_id": 40102, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"saxophone\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008042", - "question_id": 40107, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003902", - "question_id": 40118, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"erhu\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005944", - "question_id": 40120, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00002268", - "question_id": 40133, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006410", - "question_id": 40137, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"flute\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00008173", - "question_id": 40156, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"erhu\"]", - "question_deleted": 0, - "anser": "guzheng" -}, { - "video_id": "00007245", - "question_id": 40164, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"piano\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00008411", - "question_id": 40174, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"bassoon\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00007219", - "question_id": 40212, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005688", - "question_id": 40215, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00002936", - "question_id": 40223, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"violin\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00000482", - "question_id": 40231, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000623", - "question_id": 40246, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"trumpet\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00004347", - "question_id": 40251, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001575", - "question_id": 40252, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003812", - "question_id": 40303, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00004755", - "question_id": 40325, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00003412", - "question_id": 40359, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"left\", \"flute\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002522", - "question_id": 40417, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007878", - "question_id": 40427, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"piano\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004540", - "question_id": 40479, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"banjo\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006078", - "question_id": 40505, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00002129", - "question_id": 40510, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"clarinet\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00001569", - "question_id": 40583, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000971", - "question_id": 40637, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002817", - "question_id": 40639, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007688", - "question_id": 40650, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"suona\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00007112", - "question_id": 40671, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002801", - "question_id": 40716, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008861", - "question_id": 40719, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002557", - "question_id": 40748, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00001631", - "question_id": 40768, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000998", - "question_id": 40780, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005446", - "question_id": 40814, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bagpipe\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00006791", - "question_id": 40862, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"banjo\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00007143", - "question_id": 40868, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"bassoon\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008970", - "question_id": 40872, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"clarinet\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00006884", - "question_id": 40877, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00001594", - "question_id": 40993, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007761", - "question_id": 41019, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00006142", - "question_id": 41020, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"pipa\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00006578", - "question_id": 41039, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00004291", - "question_id": 41064, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00005982", - "question_id": 41068, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00004475", - "question_id": 41074, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006734", - "question_id": 41116, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000629", - "question_id": 41159, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00006369", - "question_id": 41190, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"cello\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00003004", - "question_id": 41233, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00004283", - "question_id": 41243, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bassoon\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00005738", - "question_id": 41250, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "six" -}, { - "video_id": "00006300", - "question_id": 41279, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002149", - "question_id": 41302, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006915", - "question_id": 41343, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00001031", - "question_id": 41346, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"erhu\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003478", - "question_id": 41364, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"drum\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00002405", - "question_id": 41400, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"accordion\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00002703", - "question_id": 41411, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005132", - "question_id": 41490, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"tuba\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00005286", - "question_id": 41528, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005872", - "question_id": 41535, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"congas\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00006649", - "question_id": 41556, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"bassoon\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000674", - "question_id": 41582, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"piano\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00003933", - "question_id": 41614, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"piano\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00008191", - "question_id": 41629, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"flute\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00002510", - "question_id": 41667, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"tuba\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00001138", - "question_id": 41669, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"banjo\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00008218", - "question_id": 41683, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"clarinet\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000220", - "question_id": 41685, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"saxophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006419", - "question_id": 41712, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00007754", - "question_id": 41779, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00003771", - "question_id": 41825, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00005907", - "question_id": 41827, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00006009", - "question_id": 41863, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "zero" -}, { - "video_id": "00000744", - "question_id": 41865, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"congas\"]", - "question_deleted": 0, - "anser": "five" -}, { - "video_id": "00002944", - "question_id": 41889, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00005772", - "question_id": 41910, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00003174", - "question_id": 41962, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00008508", - "question_id": 41988, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"violin\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002497", - "question_id": 41993, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "clarinet" -}, { - "video_id": "00006059", - "question_id": 42001, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"ukulele\"]", - "question_deleted": 0, - "anser": "two" -}, { - "video_id": "00005880", - "question_id": 42007, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"cello\"]", - "question_deleted": 0, - "anser": "eight" -}, { - "video_id": "00005175", - "question_id": 42045, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008283", - "question_id": 42120, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00007931", - "question_id": 42128, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"flute\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00008647", - "question_id": 42147, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"bassoon\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00007948", - "question_id": 42219, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000314", - "question_id": 42267, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00000314", - "question_id": 42274, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"congas\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006832", - "question_id": 42295, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"right\", \"guzheng\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001628", - "question_id": 42296, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005536", - "question_id": 42301, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"trumpet\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001057", - "question_id": 42318, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"violin\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006731", - "question_id": 42368, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"ukulele\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003568", - "question_id": 42440, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00002021", - "question_id": 42455, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00001287", - "question_id": 42497, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00003525", - "question_id": 42499, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00000443", - "question_id": 42501, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"flute\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00002911", - "question_id": 42507, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"bagpipe\"]", - "question_deleted": 0, - "anser": "bagpipe" -}, { - "video_id": "00003672", - "question_id": 42516, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"accordion\"]", - "question_deleted": 0, - "anser": "nine" -}, { - "video_id": "00002071", - "question_id": 42537, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"banjo\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001966", - "question_id": 42609, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00007623", - "question_id": 42638, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"tuba\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00002920", - "question_id": 42644, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005013", - "question_id": 42712, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"xylophone\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00001738", - "question_id": 42715, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"xylophone\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00000812", - "question_id": 42717, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"tuba\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000812", - "question_id": 42771, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003812", - "question_id": 42853, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"middle\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}, { - "video_id": "00007732", - "question_id": 42888, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008585", - "question_id": 42906, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"violin\", \"left\", \"cello\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001823", - "question_id": 42919, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"pipa\"]", - "question_deleted": 0, - "anser": "four" -}, { - "video_id": "00005047", - "question_id": 43031, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What kind of musical instrument is it?", - "templ_values": "[]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000876", - "question_id": 43050, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"saxophone\", \"clarinet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000193", - "question_id": 43052, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"tuba\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00000438", - "question_id": 43065, - "type": "[\"Visual\", \"Location\"]", - "question_content": "What is the instrument on the of ?", - "templ_values": "[\"left\", \"accordion\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00001362", - "question_id": 43100, - "type": "[\"Audio-Visual\", \"Counting\"]", - "question_content": "How many sounding in the video\uff1f", - "templ_values": "[\"guzheng\"]", - "question_deleted": 0, - "anser": "one" -}, { - "video_id": "00003231", - "question_id": 43123, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004817", - "question_id": 43264, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00002093", - "question_id": 43321, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00007125", - "question_id": 43403, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"bagpipe\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00004257", - "question_id": 43440, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Where is the sounding instrument?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "right" -}, { - "video_id": "00008939", - "question_id": 43508, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"accordion\", \"drum\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003765", - "question_id": 43601, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"drum\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00002562", - "question_id": 43996, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"last\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00006013", - "question_id": 44053, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"lowest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008047", - "question_id": 44152, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"acoustic_guitar\", \"accordion\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005069", - "question_id": 44163, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003699", - "question_id": 44175, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002193", - "question_id": 44244, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the more rhythmic than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001203", - "question_id": 44448, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006892", - "question_id": 44564, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006892", - "question_id": 44564, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"flute\", \"bassoon\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002831", - "question_id": 44587, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"accordion\", \"right\", \"violin\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001756", - "question_id": 44601, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00004899", - "question_id": 44705, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"violin\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004716", - "question_id": 44777, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003103", - "question_id": 44784, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"electric_bass\", \"drum\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006215", - "question_id": 44803, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00002355", - "question_id": 44859, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "ukulele" -}, { - "video_id": "00006314", - "question_id": 44932, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"bagpipe\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008328", - "question_id": 44982, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"cello\", \"violin\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008683", - "question_id": 45028, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"piano\", \"trumpet\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005619", - "question_id": 45036, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "pipa" -}, { - "video_id": "00003286", - "question_id": 45094, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004899", - "question_id": 45373, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"piano\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006733", - "question_id": 45466, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004074", - "question_id": 45726, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"right\", \"acoustic_guitar\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000449", - "question_id": 45862, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00008587", - "question_id": 45918, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00001612", - "question_id": 46009, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008080", - "question_id": 46045, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the louder than the ?", - "templ_values": "[\"xylophone\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000700", - "question_id": 46058, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007665", - "question_id": 46120, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "middle" -}, { - "video_id": "00002018", - "question_id": 46294, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005138", - "question_id": 46521, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the louder than the on the ?", - "templ_values": "[\"trumpet\", \"right\", \"cello\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006266", - "question_id": 46565, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002615", - "question_id": 46602, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"pipa\", \"guzheng\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00000664", - "question_id": 46763, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000896", - "question_id": 46819, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00003884", - "question_id": 46890, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"middle\", \"first\"]", - "question_deleted": 0, - "anser": "congas" -}, { - "video_id": "00006636", - "question_id": 46954, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"accordion\", \"tuba\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001104", - "question_id": 47077, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"piano\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00000500", - "question_id": 47142, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003846", - "question_id": 47315, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"violin\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00005454", - "question_id": 47603, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Is the sound coming from the instrument?", - "templ_values": "[\"first\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008944", - "question_id": 47673, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "Where is the instrument?", - "templ_values": "[\"loudest\"]", - "question_deleted": 0, - "anser": "left" -}, { - "video_id": "00008440", - "question_id": 47753, - "type": "[\"Audio-Visual\", \"Existential\"]", - "question_content": "Is the in the video always playing?", - "templ_values": "[\"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006608", - "question_id": 47758, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00001020", - "question_id": 47792, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"middle\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004782", - "question_id": 47794, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which makes the sound ?", - "templ_values": "[\"violin\", \"first\"]", - "question_deleted": 0, - "anser": "simultaneously" -}, { - "video_id": "00003299", - "question_id": 47796, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"second\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00002062", - "question_id": 47801, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"trumpet\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00008302", - "question_id": 47816, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00004553", - "question_id": 47818, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002703", - "question_id": 47828, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00003973", - "question_id": 47840, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"right\", \"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00000167", - "question_id": 48063, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005417", - "question_id": 48079, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "drum" -}, { - "video_id": "00002957", - "question_id": 48080, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004742", - "question_id": 48203, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004148", - "question_id": 48226, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00000522", - "question_id": 48260, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00006253", - "question_id": 48266, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000473", - "question_id": 48282, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "trumpet" -}, { - "video_id": "00000578", - "question_id": 48300, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00000840", - "question_id": 48321, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002091", - "question_id": 48332, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003132", - "question_id": 48359, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003095", - "question_id": 48362, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00004190", - "question_id": 48415, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"violin\"]", - "question_deleted": 0, - "anser": "piano" -}, { - "video_id": "00007931", - "question_id": 48417, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00001293", - "question_id": 48463, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005774", - "question_id": 48468, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"banjo\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00005620", - "question_id": 48481, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"clarinet\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00002057", - "question_id": 48519, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"flute\", \"left\", \"piano\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000072", - "question_id": 48537, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "banjo" -}, { - "video_id": "00001854", - "question_id": 48554, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "tuba" -}, { - "video_id": "00008586", - "question_id": 48586, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00000585", - "question_id": 48601, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"trumpet\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003177", - "question_id": 48609, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"guzheng\", \"piano\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004421", - "question_id": 48614, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005045", - "question_id": 48625, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003571", - "question_id": 48627, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00006066", - "question_id": 48638, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"erhu\", \"pipa\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003567", - "question_id": 48655, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000398", - "question_id": 48673, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004337", - "question_id": 48702, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007084", - "question_id": 48716, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"after\", \"saxophone\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00001308", - "question_id": 48744, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002464", - "question_id": 48788, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"saxophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008142", - "question_id": 48795, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"drum\", \"xylophone\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004185", - "question_id": 48805, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003592", - "question_id": 48846, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002075", - "question_id": 48890, - "type": "[\"Audio-Visual\", \"Location\"]", - "question_content": "What is the instrument of the sounding instrument?", - "templ_values": "[\"left\", \"first\"]", - "question_deleted": 0, - "anser": "saxophone" -}, { - "video_id": "00002338", - "question_id": 48891, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the on the more rhythmic than the on the ?", - "templ_values": "[\"violin\", \"left\", \"violin\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005943", - "question_id": 48943, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00008890", - "question_id": 48960, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "xylophone" -}, { - "video_id": "00008847", - "question_id": 48967, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003441", - "question_id": 49011, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"flute\", \"xylophone\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00004437", - "question_id": 49015, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00002720", - "question_id": 49018, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "bassoon" -}, { - "video_id": "00004236", - "question_id": 49021, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "accordion" -}, { - "video_id": "00007437", - "question_id": 49083, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"piano\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00001173", - "question_id": 49143, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003989", - "question_id": 49147, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"piano\", \"electric_bass\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00006928", - "question_id": 49181, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"right\", \"left\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00008025", - "question_id": 49194, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"middle\", \"right\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00004432", - "question_id": 49198, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00006339", - "question_id": 49202, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "Which instrument makes sounds the ?", - "templ_values": "[\"before\", \"xylophone\"]", - "question_deleted": 0, - "anser": "flute" -}, { - "video_id": "00003349", - "question_id": 49207, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"saxophone\", \"acoustic_guitar\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00000957", - "question_id": 49226, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"clarinet\", \"piano\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00003810", - "question_id": 49245, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the playing longer than the ?", - "templ_values": "[\"clarinet\", \"bassoon\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00005225", - "question_id": 49263, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"ukulele\", \"banjo\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00007072", - "question_id": 49297, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00005469", - "question_id": 49304, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00001720", - "question_id": 49313, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "suona" -}, { - "video_id": "00001218", - "question_id": 49337, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "violin" -}, { - "video_id": "00007547", - "question_id": 49338, - "type": "[\"Audio\", \"Comparative\"]", - "question_content": "Is the more rhythmic than the ?", - "templ_values": "[\"violin\", \"cello\"]", - "question_deleted": 0, - "anser": "yes" -}, { - "video_id": "00003161", - "question_id": 49347, - "type": "[\"Audio-Visual\", \"Comparative\"]", - "question_content": "Is the instrument on the louder than the instrument on the ?", - "templ_values": "[\"left\", \"right\"]", - "question_deleted": 0, - "anser": "no" -}, { - "video_id": "00007189", - "question_id": 49390, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "cello" -}, { - "video_id": "00005984", - "question_id": 49416, - "type": "[\"Audio-Visual\", \"Temporal\"]", - "question_content": "What is the instrument that comes in?", - "templ_values": "[\"first\"]", - "question_deleted": 0, - "anser": "acoustic_guitar" -}] \ No newline at end of file diff --git a/feat_script/extract_audio_cues/extract_audio.py b/feat_script/extract_audio_cues/extract_audio.py deleted file mode 100644 index 0db49aa..0000000 --- a/feat_script/extract_audio_cues/extract_audio.py +++ /dev/null @@ -1,36 +0,0 @@ -import os -import moviepy -from moviepy.audio.AudioClip import AudioArrayClip -from moviepy.editor import VideoFileClip - -''' -Function: Extract audio files(.wav) from videos. -''' - -def get_audio_wav(name, save_pth, audio_name): - - video = VideoFileClip(name) - audio = video.audio - audio.write_audiofile(os.path.join(save_pth, audio_name), fps=16000) - - -if __name__ == "__main__": - - video_pth = "./data/video/" - save_pth = "./data/audio/" - - sound_list = os.listdir(video_pth) - for audio_id in sound_list: - name = os.path.join(video_pth, audio_id) - audio_name = audio_id[:-4] + '.wav' - exist_lis = os.listdir(save_pth) - if audio_name in exist_lis: - print("already exist!") - continue - try: - get_audio_wav(name, save_pth, audio_name) - print("finish video id: " + audio_name) - except: - print("cannot load ", name) - - print("\n------------------------------ end -------------------------------\n") diff --git a/feat_script/extract_audio_cues/extract_audio_multiprocessing.py b/feat_script/extract_audio_cues/extract_audio_multiprocessing.py deleted file mode 100644 index 554e982..0000000 --- a/feat_script/extract_audio_cues/extract_audio_multiprocessing.py +++ /dev/null @@ -1,63 +0,0 @@ -import os -import moviepy -from moviepy.audio.AudioClip import AudioArrayClip -from moviepy.editor import VideoFileClip -import multiprocessing - -''' -Function: Extract audio files(.wav) from videos with multiprocessing. -''' - -def get_audio_wav(name, save_pth, audio_name): - video = VideoFileClip(name) - audio = video.audio - audio.write_audiofile(os.path.join(save_pth, audio_name), fps=16000) - -def aud_process(params): - video_pth = params['video_path'] - save_pth = params['save_pth'] - - sound_list = os.listdir(video_pth) - sound_list.sort() - for audio_id in sound_list: - name = os.path.join(video_pth, audio_id) - audio_name = audio_id[:-4] + '.wav' - exist_lis = os.listdir(save_pth) - if audio_name in exist_lis: - print("already exist!") - continue - try: - get_audio_wav(name, save_pth, audio_name) - print("finish video id: " + audio_name) - except: - print("cannot load ", name) - -def pool_process(video_pth, save_pth, pool=None): - params = {'video_pth': video_pth, 'save_pth': save_pth} - request_param = [] - - if pool is None: - aud_process(param) - else: - request_param.append(param) - - if pool is not None: - pool.map(aud_process, request_param) - pool.close() - pool.join() - -if __name__ == "__main__": - - video_pth = "./data/video/" - save_pth = "./data/audio/" - - # multiprocessing - cpu_count = multiprocessing.cpu_count() # cpu nums, 获取CPU核数 - process_count = cpu_count * 2 - 1 # thread nums, 获取最大线程数 - pool = multiprocessing.Pool(process_count) - - pool_process(video_pth, save_pth, pool) - - - - diff --git a/feat_script/extract_audio_feat/audio_feature_extractor.py b/feat_script/extract_audio_feat/audio_feature_extractor.py deleted file mode 100644 index 9e75d31..0000000 --- a/feat_script/extract_audio_feat/audio_feature_extractor.py +++ /dev/null @@ -1,87 +0,0 @@ -import os -os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2' -os.environ["CUDA_VISIBLE_DEVICES"] = "1" # set gpu number -import numpy as np -import tensorflow as tf - -import vggish_input -import vggish_params -import vggish_slim -import h5py -import contextlib -import wave - - -# get audio length -def get_audio_len(audio_file): - # audio_file = os.path.join(audio_path, audio_name) - with contextlib.closing(wave.open(audio_file, 'r')) as f: - frames = f.getnframes() - rate = f.getframerate() - wav_length = int(frames / float(rate)) - # print("wave_len: ", wav_length) - - return wav_length - - - -# Paths to downloaded VGGish files. -checkpoint_path = 'vggish_model.ckpt' -pca_params_path = 'vggish_pca_params.npz' -# num_secs = 60 # length of the audio sequence. Videos in our dataset are all 10s long. -freq = 1000 -sr = 44100 - - -audio_dir = "./data/audio/" # .wav audio files -save_dir = "./data/feats/vggish/" - - -lis = sorted(os.listdir(audio_dir)) -len_data = len(lis) -print(len_data) - -i = 0 - -for n in range(len_data): - i += 1 - - # save file - outfile = os.path.join(save_dir, lis[n][:-4] + '.npy') - if os.path.exists(outfile): - print("\nProcessing: ", i, " / ", len_data, " ----> ", lis[n][:-4] + '.npy', " is already exist! ") - continue - - '''feature learning by VGG-net trained by audioset''' - audio_index = os.path.join(audio_dir, lis[n]) # path of your audio files - num_secs = get_audio_len(audio_index) - print("\nProcessing: ", i, " / ", len_data, " --------> video: ", lis[n], " ---> sec: ", num_secs) - - input_batch = vggish_input.wavfile_to_examples(audio_index, num_secs) - np.testing.assert_equal( - input_batch.shape, - [num_secs, vggish_params.NUM_FRAMES, vggish_params.NUM_BANDS]) - - - - # Define VGGish, load the checkpoint, and run the batch through the model to - # produce embeddings. - # with tf.Graph().as_default(), tf.Session() as sess: - with tf.Graph().as_default(), tf.compat.v1.Session() as sess: - vggish_slim.define_vggish_slim() - vggish_slim.load_vggish_slim_checkpoint(sess, checkpoint_path) - - features_tensor = sess.graph.get_tensor_by_name(vggish_params.INPUT_TENSOR_NAME) - embedding_tensor = sess.graph.get_tensor_by_name(vggish_params.OUTPUT_TENSOR_NAME) - [embedding_batch] = sess.run([embedding_tensor], feed_dict={features_tensor: input_batch}) - #print('VGGish embedding: ', embedding_batch[0]) - # outfile = os.path.join(save_dir, lis[n][:-4] + '.npy') - np.save(outfile, embedding_batch) - #audio_features[i, :, :] = embedding_batch - print(" save info: ", lis[n][:-4] + '.npy', " ---> ", embedding_batch.shape) - - i += 1 - -print("\n---------------------------------- end ----------------------------------\n") - - diff --git a/feat_script/extract_audio_feat/mel_features.py b/feat_script/extract_audio_feat/mel_features.py deleted file mode 100644 index 2d9dc5a..0000000 --- a/feat_script/extract_audio_feat/mel_features.py +++ /dev/null @@ -1,233 +0,0 @@ -# Copyright 2017 The TensorFlow Authors All Rights Reserved. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ============================================================================== - -"""Defines routines to compute mel spectrogram features from audio waveform.""" - -import numpy as np - - -def frame(data, window_length, hop_length): - """Convert array into a sequence of successive possibly overlapping frames. - - An n-dimensional array of shape (num_samples, ...) is converted into an - (n+1)-D array of shape (num_frames, window_length, ...), where each frame - starts hop_length points after the preceding one. - - This is accomplished using stride_tricks, so the original data is not - copied. However, there is no zero-padding, so any incomplete frames at the - end are not included. - - Args: - data: np.array of dimension N >= 1. - window_length: Number of samples in each frame. - hop_length: Advance (in samples) between each window. - - Returns: - (N+1)-D np.array with as many rows as there are complete frames that can be - extracted. - """ - - # print("data: ", data.shape) - num_samples = data.shape[0] - # print("num_samples: ", num_samples) - num_frames = 1 + int(np.floor((num_samples - window_length) / hop_length)) - # print("num_frames: ", num_frames) - shape = (num_frames, window_length) + data.shape[1:] - # print("shape: ", shape) - strides = (data.strides[0] * hop_length,) + data.strides - # print("strides: ", strides) - - - - # 按shape进行分块 - return np.lib.stride_tricks.as_strided(data, shape=shape, strides=strides) - - -def periodic_hann(window_length): - """Calculate a "periodic" Hann window. - - The classic Hann window is defined as a raised cosine that starts and - ends on zero, and where every value appears twice, except the middle - point for an odd-length window. Matlab calls this a "symmetric" window - and np.hanning() returns it. However, for Fourier analysis, this - actually represents just over one cycle of a period N-1 cosine, and - thus is not compactly expressed on a length-N Fourier basis. Instead, - it's better to use a raised cosine that ends just before the final - zero value - i.e. a complete cycle of a period-N cosine. Matlab - calls this a "periodic" window. This routine calculates it. - - Args: - window_length: The number of points in the returned window. - - Returns: - A 1D np.array containing the periodic hann window. - """ - return 0.5 - (0.5 * np.cos(2 * np.pi / window_length * - np.arange(window_length))) - - -def stft_magnitude(signal, fft_length, - hop_length=None, - window_length=None): - """Calculate the short-time Fourier transform magnitude. - - Args: - signal: 1D np.array of the input time-domain signal. - fft_length: Size of the FFT to apply. - hop_length: Advance (in samples) between each frame passed to FFT. - window_length: Length of each block of samples to pass to FFT. - - Returns: - 2D np.array where each row contains the magnitudes of the fft_length/2+1 - unique values of the FFT for the corresponding frame of input samples. - """ - frames = frame(signal, window_length, hop_length) - # Apply frame window to each frame. We use a periodic Hann (cosine of period - # window_length) instead of the symmetric Hann of np.hanning (period - # window_length-1). - window = periodic_hann(window_length) - windowed_frames = frames * window - return np.abs(np.fft.rfft(windowed_frames, int(fft_length))) - - -# Mel spectrum constants and functions. -_MEL_BREAK_FREQUENCY_HERTZ = 700.0 -_MEL_HIGH_FREQUENCY_Q = 1127.0 - - -def hertz_to_mel(frequencies_hertz): - """Convert frequencies to mel scale using HTK formula. - - Args: - frequencies_hertz: Scalar or np.array of frequencies in hertz. - - Returns: - Object of same size as frequencies_hertz containing corresponding values - on the mel scale. - """ - return _MEL_HIGH_FREQUENCY_Q * np.log( - 1.0 + (frequencies_hertz / _MEL_BREAK_FREQUENCY_HERTZ)) - - -def spectrogram_to_mel_matrix(num_mel_bins=20, - num_spectrogram_bins=129, - audio_sample_rate=8000, - lower_edge_hertz=125.0, - upper_edge_hertz=3800.0): - """Return a matrix that can post-multiply spectrogram rows to make mel. - - Returns a np.array matrix A that can be used to post-multiply a matrix S of - spectrogram values (STFT magnitudes) arranged as frames x bins to generate a - "mel spectrogram" M of frames x num_mel_bins. M = S A. - - The classic HTK algorithm exploits the complementarity of adjacent mel bands - to multiply each FFT bin by only one mel weight, then add it, with positive - and negative signs, to the two adjacent mel bands to which that bin - contributes. Here, by expressing this operation as a matrix multiply, we go - from num_fft multiplies per frame (plus around 2*num_fft adds) to around - num_fft^2 multiplies and adds. However, because these are all presumably - accomplished in a single call to np.dot(), it's not clear which approach is - faster in Python. The matrix multiplication has the attraction of being more - general and flexible, and much easier to read. - - Args: - num_mel_bins: How many bands in the resulting mel spectrum. This is - the number of columns in the output matrix. - num_spectrogram_bins: How many bins there are in the source spectrogram - data, which is understood to be fft_size/2 + 1, i.e. the spectrogram - only contains the nonredundant FFT bins. - audio_sample_rate: Samples per second of the audio at the input to the - spectrogram. We need this to figure out the actual frequencies for - each spectrogram bin, which dictates how they are mapped into mel. - lower_edge_hertz: Lower bound on the frequencies to be included in the mel - spectrum. This corresponds to the lower edge of the lowest triangular - band. - upper_edge_hertz: The desired top edge of the highest frequency band. - - Returns: - An np.array with shape (num_spectrogram_bins, num_mel_bins). - - Raises: - ValueError: if frequency edges are incorrectly ordered or out of range. - """ - nyquist_hertz = audio_sample_rate / 2. - if lower_edge_hertz < 0.0: - raise ValueError("lower_edge_hertz %.1f must be >= 0" % lower_edge_hertz) - if lower_edge_hertz >= upper_edge_hertz: - raise ValueError("lower_edge_hertz %.1f >= upper_edge_hertz %.1f" % - (lower_edge_hertz, upper_edge_hertz)) - if upper_edge_hertz > nyquist_hertz: - raise ValueError("upper_edge_hertz %.1f is greater than Nyquist %.1f" % - (upper_edge_hertz, nyquist_hertz)) - spectrogram_bins_hertz = np.linspace(0.0, nyquist_hertz, num_spectrogram_bins) - spectrogram_bins_mel = hertz_to_mel(spectrogram_bins_hertz) - # The i'th mel band (starting from i=1) has center frequency - # band_edges_mel[i], lower edge band_edges_mel[i-1], and higher edge - # band_edges_mel[i+1]. Thus, we need num_mel_bins + 2 values in - # the band_edges_mel arrays. - band_edges_mel = np.linspace(hertz_to_mel(lower_edge_hertz), - hertz_to_mel(upper_edge_hertz), num_mel_bins + 2) - # Matrix to post-multiply feature arrays whose rows are num_spectrogram_bins - # of spectrogram values. - mel_weights_matrix = np.empty((num_spectrogram_bins, num_mel_bins)) - for i in range(num_mel_bins): - lower_edge_mel, center_mel, upper_edge_mel = band_edges_mel[i:i + 3] - # Calculate lower and upper slopes for every spectrogram bin. - # Line segments are linear in the *mel* domain, not hertz. - lower_slope = ((spectrogram_bins_mel - lower_edge_mel) / - (center_mel - lower_edge_mel)) - upper_slope = ((upper_edge_mel - spectrogram_bins_mel) / - (upper_edge_mel - center_mel)) - # .. then intersect them with each other and zero. - mel_weights_matrix[:, i] = np.maximum(0.0, np.minimum(lower_slope, - upper_slope)) - # HTK excludes the spectrogram DC bin; make sure it always gets a zero - # coefficient. - mel_weights_matrix[0, :] = 0.0 - return mel_weights_matrix - - -def log_mel_spectrogram(data, - audio_sample_rate=8000, - log_offset=0.0, - window_length_secs=0.025, - hop_length_secs=0.010, - **kwargs): - """Convert waveform to a log magnitude mel-frequency spectrogram. - - Args: - data: 1D np.array of waveform data. - audio_sample_rate: The sampling rate of data. - log_offset: Add this to values when taking log to avoid -Infs. - window_length_secs: Duration of each window to analyze. - hop_length_secs: Advance between successive analysis windows. - **kwargs: Additional arguments to pass to spectrogram_to_mel_matrix. - - Returns: - 2D np.array of (num_frames, num_mel_bins) consisting of log mel filterbank - magnitudes for successive frames. - """ - window_length_samples = int(round(audio_sample_rate * window_length_secs)) - hop_length_samples = int(round(audio_sample_rate * hop_length_secs)) - fft_length = 2 ** int(np.ceil(np.log(window_length_samples) / np.log(2.0))) - spectrogram = stft_magnitude( - data, - fft_length=fft_length, - hop_length=hop_length_samples, - window_length=window_length_samples) - mel_spectrogram = np.dot(spectrogram, spectrogram_to_mel_matrix( - num_spectrogram_bins=spectrogram.shape[1], - audio_sample_rate=audio_sample_rate, **kwargs)) - return np.log(mel_spectrogram + log_offset) diff --git a/feat_script/extract_audio_feat/vggish_input.py b/feat_script/extract_audio_feat/vggish_input.py deleted file mode 100644 index a39c733..0000000 --- a/feat_script/extract_audio_feat/vggish_input.py +++ /dev/null @@ -1,121 +0,0 @@ -# Copyright 2017 The TensorFlow Authors All Rights Reserved. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ============================================================================== - -"""Compute input examples for VGGish from audio waveform.""" - -import numpy as np -import resampy -from scipy.io import wavfile - -import mel_features -import vggish_params - - -def waveform_to_examples(data, sample_rate): - """Converts audio waveform into an array of examples for VGGish. - - Args: - data: np.array of either one dimension (mono) or two dimensions - (multi-channel, with the outer dimension representing channels). - Each sample is generally expected to lie in the range [-1.0, +1.0], - although this is not required. - sample_rate: Sample rate of data. - - Returns: - 3-D np.array of shape [num_examples, num_frames, num_bands] which represents - a sequence of examples, each of which contains a patch of log mel - spectrogram, covering num_frames frames of audio and num_bands mel frequency - bands, where the frame length is vggish_params.STFT_HOP_LENGTH_SECONDS. - """ - # Convert to mono. - if len(data.shape) > 1: - data = np.mean(data, axis=1) - # Resample to the rate assumed by VGGish. - if sample_rate != vggish_params.SAMPLE_RATE: - data = resampy.resample(data, sample_rate, vggish_params.SAMPLE_RATE) - - # Compute log mel spectrogram features. - log_mel = mel_features.log_mel_spectrogram( - data, - audio_sample_rate=vggish_params.SAMPLE_RATE, - log_offset=vggish_params.LOG_OFFSET, - window_length_secs=vggish_params.STFT_WINDOW_LENGTH_SECONDS, - hop_length_secs=vggish_params.STFT_HOP_LENGTH_SECONDS, - num_mel_bins=vggish_params.NUM_MEL_BINS, - lower_edge_hertz=vggish_params.MEL_MIN_HZ, - upper_edge_hertz=vggish_params.MEL_MAX_HZ) - - # Frame features into examples. - features_sample_rate = 1.0 / vggish_params.STFT_HOP_LENGTH_SECONDS - example_window_length = int(round( - vggish_params.EXAMPLE_WINDOW_SECONDS * features_sample_rate)) - example_hop_length = int(round( - vggish_params.EXAMPLE_HOP_SECONDS * features_sample_rate)) - log_mel_examples = mel_features.frame( - log_mel, - window_length=example_window_length, - hop_length=example_hop_length) - return log_mel_examples - - -def wavfile_to_examples(wav_file, num_secs): - """Convenience wrapper around waveform_to_examples() for a common WAV format. - - Args: - wav_file: String path to a file, or a file-like object. The file - is assumed to contain WAV audio data with signed 16-bit PCM samples. - - Returns: - See waveform_to_examples. - """ - sr, snd = wavfile.read(wav_file) - # L = sr * 60 - L = sr * num_secs - ch = 1 - if len(snd.shape) >1: - ch = snd.shape[1] - wav_data = np.zeros((L, ch)) - - # if snd.shape[0] < sr * 60: - # wav_data[:snd.shape[0], :] = snd - # else: - # wav_data = snd[:L, :] - - wav_data = snd[:L, :] - - wav_data = wav_data / 32768.0 # Convert to [-1.0, +1.0] - # T = 60 - T = num_secs - L = wav_data.shape[0] - log_mel = np.zeros([T, 96, 64]) - - # print("\nT: ", T) - # print("L: ", L) - # print("log_mel: ", log_mel.shape) - - for i in range(T): - s = i * sr - e = (i + 1) * sr - if len(wav_data.shape) > 1: - data = wav_data[s:e, :] - else: - data = wav_data[s:e] - - # print("\ns-e: ", s, e) - # print("data input: ", data.shape) - log_mel[i, :, :] = waveform_to_examples(data, sr) - - # print("log mel: ", log_mel.shape) - return log_mel diff --git a/feat_script/extract_audio_feat/vggish_params.py b/feat_script/extract_audio_feat/vggish_params.py deleted file mode 100644 index a38ce26..0000000 --- a/feat_script/extract_audio_feat/vggish_params.py +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 2017 The TensorFlow Authors All Rights Reserved. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ============================================================================== - -"""Global parameters for the VGGish model. - -See vggish_slim.py for more information. -""" - -# Architectural constants. -NUM_FRAMES = 96 # Frames in input mel-spectrogram patch. -NUM_BANDS = 64 # Frequency bands in input mel-spectrogram patch. -EMBEDDING_SIZE = 128 # Size of embedding layer. - -# Hyperparameters used in feature and example generation. -SAMPLE_RATE = 16000 -STFT_WINDOW_LENGTH_SECONDS = 0.025 -STFT_HOP_LENGTH_SECONDS = 0.010 -NUM_MEL_BINS = NUM_BANDS -MEL_MIN_HZ = 125 -MEL_MAX_HZ = 7500 -LOG_OFFSET = 0.01 # Offset used for stabilized log of input mel-spectrogram. -EXAMPLE_WINDOW_SECONDS = 0.96 # Each example contains 96 10ms frames -EXAMPLE_HOP_SECONDS = 0.96 # with zero overlap. - -# Parameters used for embedding postprocessing. -PCA_EIGEN_VECTORS_NAME = 'pca_eigen_vectors' -PCA_MEANS_NAME = 'pca_means' -QUANTIZE_MIN_VAL = -2.0 -QUANTIZE_MAX_VAL = +2.0 - -# Hyperparameters used in training. -INIT_STDDEV = 0.01 # Standard deviation used to initialize weights. -LEARNING_RATE = 1e-4 # Learning rate for the Adam optimizer. -ADAM_EPSILON = 1e-8 # Epsilon for the Adam optimizer. - -# Names of ops, tensors, and features. -INPUT_OP_NAME = 'vggish/input_features' -INPUT_TENSOR_NAME = INPUT_OP_NAME + ':0' -OUTPUT_OP_NAME = 'vggish/embedding' -OUTPUT_TENSOR_NAME = OUTPUT_OP_NAME + ':0' -AUDIO_EMBEDDING_FEATURE_NAME = 'audio_embedding' diff --git a/feat_script/extract_audio_feat/vggish_slim.py b/feat_script/extract_audio_feat/vggish_slim.py deleted file mode 100644 index 8cfb5bd..0000000 --- a/feat_script/extract_audio_feat/vggish_slim.py +++ /dev/null @@ -1,133 +0,0 @@ -# Copyright 2017 The TensorFlow Authors All Rights Reserved. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ============================================================================== - -"""Defines the 'VGGish' model used to generate AudioSet embedding features. - -The public AudioSet release (https://research.google.com/audioset/download.html) -includes 128-D features extracted from the embedding layer of a VGG-like model -that was trained on a large Google-internal YouTube dataset. Here we provide -a TF-Slim definition of the same model, without any dependences on libraries -internal to Google. We call it 'VGGish'. - -Note that we only define the model up to the embedding layer, which is the -penultimate layer before the final classifier layer. We also provide various -hyperparameter values (in vggish_params.py) that were used to train this model -internally. - -For comparison, here is TF-Slim's VGG definition: -https://github.com/tensorflow/models/blob/master/research/slim/nets/vgg.py -""" - -import tensorflow as tf -import vggish_params as params - -slim = tf.contrib.slim - - -def define_vggish_slim(training=False): - """Defines the VGGish TensorFlow model. - - All ops are created in the current default graph, under the scope 'vggish/'. - - The input is a placeholder named 'vggish/input_features' of type float32 and - shape [batch_size, num_frames, num_bands] where batch_size is variable and - num_frames and num_bands are constants, and [num_frames, num_bands] represents - a log-mel-scale spectrogram patch covering num_bands frequency bands and - num_frames time frames (where each frame step is usually 10ms). This is - produced by computing the stabilized log(mel-spectrogram + params.LOG_OFFSET). - The output is an op named 'vggish/embedding' which produces the activations of - a 128-D embedding layer, which is usually the penultimate layer when used as - part of a full model with a final classifier layer. - - Args: - training: If true, all parameters are marked trainable. - - Returns: - The op 'vggish/embeddings'. - """ - # Defaults: - # - All weights are initialized to N(0, INIT_STDDEV). - # - All biases are initialized to 0. - # - All activations are ReLU. - # - All convolutions are 3x3 with stride 1 and SAME padding. - # - All max-pools are 2x2 with stride 2 and SAME padding. - with slim.arg_scope([slim.conv2d, slim.fully_connected], - weights_initializer=tf.truncated_normal_initializer( - stddev=params.INIT_STDDEV), - biases_initializer=tf.zeros_initializer(), - activation_fn=tf.nn.relu, - trainable=training), \ - slim.arg_scope([slim.conv2d], - kernel_size=[3, 3], stride=1, padding='SAME'), \ - slim.arg_scope([slim.max_pool2d], - kernel_size=[2, 2], stride=2, padding='SAME'), \ - tf.compat.v1.variable_scope('vggish'): - # tf.variable_scope('vggish'): - # Input: a batch of 2-D log-mel-spectrogram patches. - # features = tf.placeholder( - features = tf.compat.v1.placeholder( - tf.float32, shape=(None, params.NUM_FRAMES, params.NUM_BANDS), - name='input_features') - # Reshape to 4-D so that we can convolve a batch with conv2d(). - net = tf.reshape(features, [-1, params.NUM_FRAMES, params.NUM_BANDS, 1]) - - # The VGG stack of alternating convolutions and max-pools. - net = slim.conv2d(net, 64, scope='conv1') - net = slim.max_pool2d(net, scope='pool1') - net = slim.conv2d(net, 128, scope='conv2') - net = slim.max_pool2d(net, scope='pool2') - net = slim.repeat(net, 2, slim.conv2d, 256, scope='conv3') - net = slim.max_pool2d(net, scope='pool3') - net = slim.repeat(net, 2, slim.conv2d, 512, scope='conv4') - net = slim.max_pool2d(net, scope='pool4') - - # Flatten before entering fully-connected layers - net = slim.flatten(net) - net = slim.repeat(net, 2, slim.fully_connected, 4096, scope='fc1') - # The embedding layer. - net = slim.fully_connected(net, params.EMBEDDING_SIZE, scope='fc2') - return tf.identity(net, name='embedding') - - -def load_vggish_slim_checkpoint(session, checkpoint_path): - """Loads a pre-trained VGGish-compatible checkpoint. - - This function can be used as an initialization function (referred to as - init_fn in TensorFlow documentation) which is called in a Session after - initializating all variables. When used as an init_fn, this will load - a pre-trained checkpoint that is compatible with the VGGish model - definition. Only variables defined by VGGish will be loaded. - - Args: - session: an active TensorFlow session. - checkpoint_path: path to a file containing a checkpoint that is - compatible with the VGGish model definition. - """ - # Get the list of names of all VGGish variables that exist in - # the checkpoint (i.e., all inference-mode VGGish variables). - with tf.Graph().as_default(): - define_vggish_slim(training=False) - # vggish_var_names = [v.name for v in tf.global_variables()] - vggish_var_names = [v.name for v in tf.compat.v1.global_variables()] - - # Get the list of all currently existing variables that match - # the list of variable names we just computed. - # vggish_vars = [v for v in tf.global_variables() if v.name in vggish_var_names] - vggish_vars = [v for v in tf.compat.v1.global_variables() if v.name in vggish_var_names] - - # Use a Saver to restore just the variables selected above. - # saver = tf.train.Saver(vggish_vars, name='vggish_load_pretrained') - saver = tf.compat.v1.train.Saver(vggish_vars, name='vggish_load_pretrained') - saver.restore(session, checkpoint_path) diff --git a/feat_script/extract_visual_feat/extract_3D_feat.py b/feat_script/extract_visual_feat/extract_3D_feat.py deleted file mode 100644 index fc58def..0000000 --- a/feat_script/extract_visual_feat/extract_3D_feat.py +++ /dev/null @@ -1,105 +0,0 @@ -import shutil -import sys -import subprocess -import glob -from tqdm import tqdm -import numpy as np -import os -import argparse -from PIL import Image -import torch -from torch import nn -import torch.nn.functional as F -import torchvision.models as models -import transforms as TF -import utils -import torchvision - - -C, H, W = 3, 112, 112 - -def extract_feats(params, model, load_img): - global C, H, W - model.eval() - dir_fc = os.path.join(os.getcwd(), params['output_dir']) - if not os.path.isdir(dir_fc): - os.mkdir(dir_fc) - - video_list = os.listdir(params['video_path']) - nn = 0 - total_len = len(video_list) - for video in video_list: - print("\n-->: ", video) - - nn = nn + 1 - dst = video - - if video == 'yz02dWv_shs': - print(video, " is too large!") - continue - - outfile = os.path.join(dir_fc, video + '.npy') - if os.path.exists(outfile): - print(video, " is already processed!") - continue - - image_list = sorted(glob.glob(os.path.join(params['video_path'], dst, '*.jpg'))) - - # samples = np.round(np.linspace(0, len(image_list) - 1, params['n_frame_steps'])) - - params_frames = len(image_list) - samples = np.round(np.linspace(0, len(image_list) - 1, params_frames)) - - image_list = [image_list[int(sample)] for sample in samples] - images = torch.zeros((len(image_list)//1, C, 1, H, W)) - i = 0 - for iImg in range(len(image_list)): - - ii = i//1 - img = load_img(image_list[iImg]) - images[ii, :, i%1, :, :] = img - i += 1 - - with torch.no_grad(): - fc_feats = model(images.cuda()).squeeze() - img_feats = fc_feats.cpu().numpy() - # Save the inception features - # outfile = os.path.join(dir_fc, video + '.npy') - np.save(outfile, img_feats) - # cleanup - #shutil.rmtree(dst) - # print(nn) - print("Process: ", nn, " / ", total_len, " ------- video id: ", video, " ------- save shape: ", img_feats.shape) - - -if __name__ == '__main__': - parser = argparse.ArgumentParser() - parser.add_argument("--gpu", dest='gpu', type=str, default='1', - help='Set CUDA_VISIBLE_DEVICES environment variable, optional') - parser.add_argument("--output_dir", dest='output_dir', type=str, - default='./data/feats/r2plus1d', help='directory to store features') - parser.add_argument("--n_frame_steps", dest='n_frame_steps', type=int, default=80, - help='how many frames to sampler per video') - - parser.add_argument("--video_path", dest='video_path', type=str, - default='./data/frames/', help='path to video dataset') - parser.add_argument("--model", dest="model", type=str, default='r2plus1d_18', - help='the CNN model you want to use to extract_feats') - - args = parser.parse_args() - os.environ['CUDA_VISIBLE_DEVICES'] = args.gpu - params = vars(args) - if params['model'] == 'r2plus1d_18': - model = models.video.r2plus1d_18(pretrained=True) - model = nn.Sequential(*list(model.children())[:-1]) - for param in model.parameters(): - param.requires_grad = False - T, C, H, W = 1, 3, 112, 112 - load_img = utils.LoadTransformImage() - - else: - print("doesn't support %s" % (params['model'])) - - model = nn.DataParallel(model) - model = model.cuda() - extract_feats(params, model, load_img) diff --git a/feat_script/extract_visual_feat/extract_rgb_feat.py b/feat_script/extract_visual_feat/extract_rgb_feat.py deleted file mode 100644 index 2f8bfff..0000000 --- a/feat_script/extract_visual_feat/extract_rgb_feat.py +++ /dev/null @@ -1,118 +0,0 @@ -import shutil -import subprocess -import glob -from tqdm import tqdm -import numpy as np -import os -import argparse -from PIL import Image -import torch -from torch import nn -import torch.nn.functional as F -import pretrainedmodels -from pretrainedmodels import utils - -C, H, W = 3, 224, 224 - -def extract_feats(params, model, load_image_fn): - global C, H, W - model.eval() - dir_fc = os.path.join(os.getcwd(), params['output_dir']) - if not os.path.isdir(dir_fc): - os.mkdir(dir_fc) - - video_list = os.listdir(params['video_path']) - nn = 0 - total_len = len(video_list) - for video in video_list: - - nn = nn + 1 - dst = video - print("\n-->: ", video) - - outfile = os.path.join(dir_fc, video + '.npy') - if os.path.exists(outfile): - print(video, " is already processed!") - continue - - image_list = sorted(glob.glob(os.path.join(params['video_path'], dst, '*.jpg'))) - # print("n_frame_steps: ", params['n_frame_steps']) - # samples = np.round(np.linspace(0, len(image_list) - 1, params['n_frame_steps'])) - - params_frames = len(image_list) - # print("params_frames: ", params_frames) - samples = np.round(np.linspace(0, len(image_list) - 1, params_frames)) - - image_list = [image_list[int(sample)] for sample in samples] - # print("image_list len: ", len(image_list)) - images = torch.zeros((len(image_list), C, H, W)) - i = 0 - for iImg in range(len(image_list)): - img = load_image_fn(image_list[iImg]) - images[iImg] = img - - - with torch.no_grad(): - fc_feats = model(images.cuda()).squeeze() - img_feats = fc_feats.cpu().numpy() - # print(img_feats.shape) - # Save the inception features - # outfile = os.path.join(dir_fc, video + '.npy') - np.save(outfile, img_feats) - # cleanup - #shutil.rmtree(dst) - print("Process: ", nn, " / ", total_len, " ------- video id: ", video, " ------- save shape: ", img_feats.shape) - - -if __name__ == '__main__': - parser = argparse.ArgumentParser() - parser.add_argument("--gpu", dest='gpu', type=str, default='0', - help='Set CUDA_VISIBLE_DEVICES environment variable, optional') - parser.add_argument("--output_dir", dest='output_dir', type=str, - default='./data/feats/res18', help='directory to store features') - parser.add_argument("--n_frame_steps", dest='n_frame_steps', type=int, default=80, - help='how many frames to sampler per video') - - parser.add_argument("--video_path", dest='video_path', type=str, - default='./data/feats/frames/', help='path to video dataset') - parser.add_argument("--model", dest="model", type=str, default='resnet18', - help='the CNN model you want to use to extract_feats') - - args = parser.parse_args() - os.environ['CUDA_VISIBLE_DEVICES'] = args.gpu - params = vars(args) - if params['model'] == 'inception_v3': - C, H, W = 3, 299, 299 - model = pretrainedmodels.inceptionv3(pretrained='imagenet') - load_image_fn = utils.LoadTransformImage(model) - elif params['model'] == 'resnet18': - C, H, W = 3, 224, 224 - model = pretrainedmodels.resnet18(pretrained='imagenet') - load_image_fn = utils.LoadTransformImage(model) - elif params['model'] == 'resnet152': - C, H, W = 3, 224, 224 - model = pretrainedmodels.resnet152(pretrained='imagenet') - load_image_fn = utils.LoadTransformImage(model) - elif params['model'] == 'vgg19_bn': - C, H, W = 3, 224, 224 - model = pretrainedmodels.vgg19_bn(pretrained='imagenet') - load_image_fn = utils.LoadTransformImage(model) - elif params['model'] == 'inception_v4': - C, H, W = 3, 299, 299 - model = pretrainedmodels.inceptionv4( - num_classes=1000, pretrained='imagenet') - load_image_fn = utils.LoadTransformImage(model) - elif params['model'] == 'nasnetalarge': - C, H, W = 3, 299, 299 - model = pretrainedmodels.inceptionv4( - num_classes=1000, pretrained='imagenet') - load_image_fn = utils.LoadTransformImage(model) - - else: - print("doesn't support %s" % (params['model'])) - - model.last_linear = utils.Identity() - model = nn.DataParallel(model) - - model = model.cuda() - extract_feats(params, model, load_image_fn) diff --git a/feat_script/extract_visual_feat/transforms.py b/feat_script/extract_visual_feat/transforms.py deleted file mode 100644 index 9435450..0000000 --- a/feat_script/extract_visual_feat/transforms.py +++ /dev/null @@ -1,122 +0,0 @@ -import torch -import random - - -def crop(vid, i, j, h, w): - return vid[..., i:(i + h), j:(j + w)] - - -def center_crop(vid, output_size): - h, w = vid.shape[-2:] - th, tw = output_size - - i = int(round((h - th) / 2.)) - j = int(round((w - tw) / 2.)) - return crop(vid, i, j, th, tw) - - -def hflip(vid): - return vid.flip(dims=(-1,)) - - -# NOTE: for those functions, which generally expect mini-batches, we keep them -# as non-minibatch so that they are applied as if they were 4d (thus image). -# this way, we only apply the transformation in the spatial domain -def resize(vid, size, interpolation='bilinear'): - # NOTE: using bilinear interpolation because we don't work on minibatches - # at this level - scale = None - if isinstance(size, int): - scale = float(size) / min(vid.shape[-2:]) - size = None - return torch.nn.functional.interpolate( - vid, size=size, scale_factor=scale, mode=interpolation, align_corners=False) - - -def pad(vid, padding, fill=0, padding_mode="constant"): - # NOTE: don't want to pad on temporal dimension, so let as non-batch - # (4d) before padding. This works as expected - return torch.nn.functional.pad(vid, padding, value=fill, mode=padding_mode) - - -def to_normalized_float_tensor(vid): - return vid.permute(3, 0, 1, 2).to(torch.float32) / 255 - - -def normalize(vid, mean, std): - shape = (-1,) + (1,) * (vid.dim() - 1) - mean = torch.as_tensor(mean).reshape(shape) - std = torch.as_tensor(std).reshape(shape) - return (vid - mean) / std - - -# Class interface - -class RandomCrop(object): - def __init__(self, size): - self.size = size - - @staticmethod - def get_params(vid, output_size): - """Get parameters for ``crop`` for a random crop. - """ - h, w = vid.shape[-2:] - th, tw = output_size - if w == tw and h == th: - return 0, 0, h, w - i = random.randint(0, h - th) - j = random.randint(0, w - tw) - return i, j, th, tw - - def __call__(self, vid): - i, j, h, w = self.get_params(vid, self.size) - return crop(vid, i, j, h, w) - - -class CenterCrop(object): - def __init__(self, size): - self.size = size - - def __call__(self, vid): - return center_crop(vid, self.size) - - -class Resize(object): - def __init__(self, size): - self.size = size - - def __call__(self, vid): - return resize(vid, self.size) - - -class ToFloatTensorInZeroOne(object): - def __call__(self, vid): - return to_normalized_float_tensor(vid) - - -class Normalize(object): - def __init__(self, mean, std): - self.mean = mean - self.std = std - - def __call__(self, vid): - return normalize(vid, self.mean, self.std) - - -class RandomHorizontalFlip(object): - def __init__(self, p=0.5): - self.p = p - - def __call__(self, vid): - if random.random() < self.p: - return hflip(vid) - return vid - - -class Pad(object): - def __init__(self, padding, fill=0): - self.padding = padding - self.fill = fill - - def __call__(self, vid): - return pad(vid, self.padding, self.fill) diff --git a/feat_script/extract_visual_feat/utils.py b/feat_script/extract_visual_feat/utils.py deleted file mode 100644 index 8706db5..0000000 --- a/feat_script/extract_visual_feat/utils.py +++ /dev/null @@ -1,84 +0,0 @@ -from __future__ import print_function, division, absolute_import -import math -import torch -import torch.nn as nn -import torchvision.transforms as transforms -from PIL import Image -import numpy as np -from munch import munchify - -class ToSpaceBGR(object): - - def __init__(self, is_bgr): - self.is_bgr = is_bgr - - def __call__(self, tensor): - if self.is_bgr: - new_tensor = tensor.clone() - new_tensor[0] = tensor[2] - new_tensor[2] = tensor[0] - tensor = new_tensor - return tensor - - -class ToRange255(object): - - def __init__(self, is_255): - self.is_255 = is_255 - - def __call__(self, tensor): - if self.is_255: - tensor.mul_(255) - return tensor - - -class TransformImage(object): - - def __init__(self): - self.mean = [0.43216, 0.394666, 0.37645] - self.std = [0.22803, 0.22145, 0.216989] - tfs = [] - tfs.append(transforms.Resize((112, 112))) - tfs.append(transforms.ToTensor()) - tfs.append(ToSpaceBGR('RGB'=='BGR')) - tfs.append(ToRange255(max([0, 1])==255)) - tfs.append(transforms.Normalize(mean=self.mean, std=self.std)) - - self.tf = transforms.Compose(tfs) - - def __call__(self, img): - tensor = self.tf(img) - return tensor - - -class LoadImage(object): - - def __init__(self, space='RGB'): - self.space = space - - def __call__(self, path_img): - with open(path_img, 'rb') as f: - with Image.open(f) as img: - img = img.convert(self.space) - return img - - -class LoadTransformImage(object): - - def __init__(self): - self.load = LoadImage() - self.tf = TransformImage() - - def __call__(self, path_img): - img = self.load(path_img) - tensor = self.tf(img) - return tensor - - -class Identity(nn.Module): - - def __init__(self): - super(Identity, self).__init__() - - def forward(self, x): - return x \ No newline at end of file diff --git a/feat_script/extract_visual_feat_14x14/extract_14x14_feat.py b/feat_script/extract_visual_feat_14x14/extract_14x14_feat.py deleted file mode 100644 index fdb0844..0000000 --- a/feat_script/extract_visual_feat_14x14/extract_14x14_feat.py +++ /dev/null @@ -1,150 +0,0 @@ -import sys -sys.path.append("/home/guangyao_li/projects/music_avqa/") -import shutil -import subprocess -import glob -from tqdm import tqdm -import numpy as np -import os -import argparse -from PIL import Image -import torch -from torch import nn -import torch.nn.functional as F -import pretrainedmodels -from pretrainedmodels import utils -from extract_visual_feat.nets_14x14_feat import AVQA_Fusion_Net -from torchvision import transforms - - -print("\n\n---------------------- extract_14x14_feats -------------------\n\n") - -C, H, W = 3, 224, 224 - - -def TransformImage(img): - - transform_list = [] - mean = [0.43216, 0.394666, 0.37645] - std = [0.22803, 0.22145, 0.216989] - - transform_list.append(transforms.Resize([224,224])) - transform_list.append(transforms.ToTensor()) - transform_list.append(transforms.Normalize(mean, std)) - trans = transforms.Compose(transform_list) - frame_tensor = trans(img) - - return frame_tensor - - -def load_frame_info(img_path): - - img = Image.open(img_path).convert('RGB') - frame_tensor = TransformImage(img) - - return frame_tensor - -def extract_feats(params, model, load_image_fn): - global C, H, W - model.eval() - dir_fc = os.path.join(os.getcwd(), params['output_dir']) - if not os.path.isdir(dir_fc): - os.mkdir(dir_fc) - - video_list = os.listdir(params['video_path']) - list_len = len(video_list) - print(list_len) - - cnt = 0 - for video in video_list: - - print("name: ", video) - outfile1 = os.path.join(dir_fc, video + '.npy') - if os.path.exists(outfile1): - print(video, " is already exist!") - continue - - dst = video - - ### image - select_img = [] - image_list = sorted(glob.glob(os.path.join(params['video_path'], dst, '*.jpg'))) - # samples = np.round(np.linspace(0, len(image_list) - 1, params['n_frame_steps'])) - print("img len: ", len(image_list)) - samples = np.round(np.linspace(0, len(image_list) - 1, len(image_list))) - - image_list = [image_list[int(sample)] for sample in samples] - image_list=image_list[::18] - for img in image_list: - frame_tensor_info = load_frame_info(img) - select_img.append(frame_tensor_info.cpu().numpy()) - select_img=np.array(select_img) - select_img=torch.from_numpy(select_img) - - select_img=select_img.unsqueeze(0) - - - with torch.no_grad(): - visual_out = model(select_img.cuda()) - fea = visual_out.cpu().numpy() - - # print('fea shape', fea.shape) - # Save the inception features - outfile_before = os.path.join(dir_fc, video + '.npy') - np.save(outfile_before, fea) - - cnt = cnt + 1 - print("----------------->> ", cnt, " / ", list_len) - - -if __name__ == '__main__': - parser = argparse.ArgumentParser() - parser.add_argument("--gpu", dest='gpu', type=str, default='0, 1', - help='Set CUDA_VISIBLE_DEVICES environment variable, optional') - parser.add_argument("--output_dir", dest='output_dir', type=str, default='./data/feats/res18_14x14/', - help='directory to store features') - parser.add_argument("--n_frame_steps", dest='n_frame_steps', type=int, default=480, - help='how many frames to sampler per video') - parser.add_argument("--video_path", dest='video_path', type=str, default='./data/frames', - help='path to video dataset') - parser.add_argument("--model", dest="model", type=str, default='resnet18', - help='the CNN model you want to use to extract_feats') - - args = parser.parse_args() - os.environ['CUDA_VISIBLE_DEVICES'] = args.gpu - params = vars(args) - - if params['model'] == 'inception_v3': - C, H, W = 3, 299, 299 - model = pretrainedmodels.inceptionv3(pretrained='imagenet') - load_image_fn = utils.LoadTransformImage(model) - elif params['model'] == 'resnet18': - C, H, W = 3, 224, 224 - model = pretrainedmodels.resnet18(pretrained='imagenet') - load_image_fn = utils.LoadTransformImage(model) - elif params['model'] == 'resnet152': - C, H, W = 3, 224, 224 - model = pretrainedmodels.resnet152(pretrained='imagenet') - load_image_fn = utils.LoadTransformImage(model) - elif params['model'] == 'vgg19_bn': - C, H, W = 3, 224, 224 - model = pretrainedmodels.vgg19_bn(pretrained='imagenet') - load_image_fn = utils.LoadTransformImage(model) - elif params['model'] == 'inception_v4': - C, H, W = 3, 299, 299 - model = pretrainedmodels.inceptionv4(num_classes=1000, pretrained='imagenet') - load_image_fn = utils.LoadTransformImage(model) - elif params['model'] == 'nasnetalarge': - C, H, W = 3, 299, 299 - model = pretrainedmodels.inceptionv4( - num_classes=1000, pretrained='imagenet') - load_image_fn = utils.LoadTransformImage(model) - - else: - print("doesn't support %s" % (params['model'])) - - model=AVQA_Fusion_Net() - model = nn.DataParallel(model) - model = model.cuda() - - extract_feats(params, model, load_image_fn) diff --git a/feat_script/extract_visual_feat_14x14/nets_14x14_feat.py b/feat_script/extract_visual_feat_14x14/nets_14x14_feat.py deleted file mode 100644 index e0a99c6..0000000 --- a/feat_script/extract_visual_feat_14x14/nets_14x14_feat.py +++ /dev/null @@ -1,77 +0,0 @@ -import sys -sys.path.append("path to MUSIC-AVQA_CVPR2022") -import torch -# import torchvision -import torchvision.models as models -import torch.nn as nn -import torch.nn.functional as F - -import numpy as np -from extract_visual_feat.visual_net_14x14 import resnet18 - -# Question -class QstEncoder(nn.Module): - - def __init__(self, qst_vocab_size, word_embed_size, embed_size, num_layers, hidden_size): - - super(QstEncoder, self).__init__() - self.word2vec = nn.Embedding(qst_vocab_size, word_embed_size) - self.tanh = nn.Tanh() - self.lstm = nn.LSTM(word_embed_size, hidden_size, num_layers) - self.fc = nn.Linear(2*num_layers*hidden_size, embed_size) # 2 for hidden and cell states - - def forward(self, question): - - qst_vec = self.word2vec(question) # [batch_size, max_qst_length=30, word_embed_size=300] - qst_vec = self.tanh(qst_vec) - qst_vec = qst_vec.transpose(0, 1) # [max_qst_length=30, batch_size, word_embed_size=300] - self.lstm.flatten_parameters() - _, (hidden, cell) = self.lstm(qst_vec) # [num_layers=2, batch_size, hidden_size=512] - qst_feature = torch.cat((hidden, cell), 2) # [num_layers=2, batch_size, 2*hidden_size=1024] - qst_feature = qst_feature.transpose(0, 1) # [batch_size, num_layers=2, 2*hidden_size=1024] - qst_feature = qst_feature.reshape(qst_feature.size()[0], -1) # [batch_size, 2*num_layers*hidden_size=2048] - qst_feature = self.tanh(qst_feature) - qst_feature = self.fc(qst_feature) # [batch_size, embed_size] - - return qst_feature - - -class AVQA_Fusion_Net(nn.Module): - - def __init__(self): - super(AVQA_Fusion_Net, self).__init__() - - - - # for features - self.fc_a1 = nn.Linear(128, 512) - self.fc_a2=nn.Linear(512,512) - - # visual - self.visual_net = resnet18(pretrained=True) - - # combine - self.fc1 = nn.Linear(1024, 512) - self.relu1 = nn.ReLU() - self.fc2 = nn.Linear(512, 256) - self.relu2 = nn.ReLU() - self.fc3 = nn.Linear(256, 128) - self.relu3 = nn.ReLU() - self.fc4 = nn.Linear(128, 2) - self.relu4 = nn.ReLU() - self.avgpool = nn.AdaptiveAvgPool2d((1, 1)) - - self.fc_gl=nn.Linear(1024,512) - self.tanh = nn.Tanh() - - - def forward(self,visual): - - ## visual, input: [16, 20, 3, 224, 224] - (B, T, C, H, W) = visual.size() - visual = visual.view(B * T, C, H, W) # [320, 3, 224, 224] - v_feat_out_res18 = self.visual_net(visual) # [320, 512, 14, 14] - - - - return v_feat_out_res18 diff --git a/feat_script/extract_visual_feat_14x14/visual_net_14x14.py b/feat_script/extract_visual_feat_14x14/visual_net_14x14.py deleted file mode 100644 index 3446bd2..0000000 --- a/feat_script/extract_visual_feat_14x14/visual_net_14x14.py +++ /dev/null @@ -1,232 +0,0 @@ -import torch -import torch.nn as nn - - -__all__ = ['ResNet', 'resnet18', 'resnet34', 'resnet50', 'resnet101', - 'resnet152', 'resnext50_32x4d', 'resnext101_32x8d', - 'wide_resnet50_2', 'wide_resnet101_2'] - - -model_urls = { - 'resnet18': 'https://download.pytorch.org/models/resnet18-5c106cde.pth', - 'resnet34': 'https://download.pytorch.org/models/resnet34-333f7ec4.pth', - 'resnet50': 'https://download.pytorch.org/models/resnet50-19c8e357.pth', - 'resnet101': 'https://download.pytorch.org/models/resnet101-5d3b4d8f.pth', - 'resnet152': 'https://download.pytorch.org/models/resnet152-b121ed2d.pth', - 'resnext50_32x4d': 'https://download.pytorch.org/models/resnext50_32x4d-7cdf4587.pth', - 'resnext101_32x8d': 'https://download.pytorch.org/models/resnext101_32x8d-8ba56ff5.pth', - 'wide_resnet50_2': 'https://download.pytorch.org/models/wide_resnet50_2-95faca4d.pth', - 'wide_resnet101_2': 'https://download.pytorch.org/models/wide_resnet101_2-32ee1156.pth', -} - - -def conv3x3(in_planes, out_planes, stride=1, groups=1, dilation=1): - """3x3 convolution with padding""" - return nn.Conv2d(in_planes, out_planes, kernel_size=3, stride=stride, - padding=dilation, groups=groups, bias=False, dilation=dilation) - - -def conv1x1(in_planes, out_planes, stride=1): - """1x1 convolution""" - return nn.Conv2d(in_planes, out_planes, kernel_size=1, stride=stride, bias=False) - - -class BasicBlock(nn.Module): - expansion = 1 - - def __init__(self, inplanes, planes, stride=1, downsample=None, groups=1, - base_width=64, dilation=1, norm_layer=None): - super(BasicBlock, self).__init__() - if norm_layer is None: - norm_layer = nn.BatchNorm2d - if groups != 1 or base_width != 64: - raise ValueError('BasicBlock only supports groups=1 and base_width=64') - if dilation > 1: - raise NotImplementedError("Dilation > 1 not supported in BasicBlock") - # Both self.conv1 and self.downsample layers downsample the input when stride != 1 - self.conv1 = conv3x3(inplanes, planes, stride) - self.bn1 = norm_layer(planes) - self.relu = nn.ReLU(inplace=True) - self.conv2 = conv3x3(planes, planes) - self.bn2 = norm_layer(planes) - self.downsample = downsample - self.stride = stride - - def forward(self, x): - identity = x - - out = self.conv1(x) - out = self.bn1(out) - out = self.relu(out) - - out = self.conv2(out) - out = self.bn2(out) - - if self.downsample is not None: - identity = self.downsample(x) - - out += identity - out = self.relu(out) - - return out - - -class Bottleneck(nn.Module): - expansion = 4 - - def __init__(self, inplanes, planes, stride=1, downsample=None, groups=1, - base_width=64, dilation=1, norm_layer=None): - super(Bottleneck, self).__init__() - if norm_layer is None: - norm_layer = nn.BatchNorm2d - width = int(planes * (base_width / 64.)) * groups - # Both self.conv2 and self.downsample layers downsample the input when stride != 1 - self.conv1 = conv1x1(inplanes, width) - self.bn1 = norm_layer(width) - self.conv2 = conv3x3(width, width, stride, groups, dilation) - self.bn2 = norm_layer(width) - self.conv3 = conv1x1(width, planes * self.expansion) - self.bn3 = norm_layer(planes * self.expansion) - self.relu = nn.ReLU(inplace=True) - self.downsample = downsample - self.stride = stride - - def forward(self, x): - identity = x - - out = self.conv1(x) - out = self.bn1(out) - out = self.relu(out) - - out = self.conv2(out) - out = self.bn2(out) - out = self.relu(out) - - out = self.conv3(out) - out = self.bn3(out) - - if self.downsample is not None: - identity = self.downsample(x) - - out += identity - out = self.relu(out) - - return out - - -class ResNet(nn.Module): - - def __init__(self, block, layers, modal, num_classes=1000, zero_init_residual=False, - groups=1, width_per_group=64, replace_stride_with_dilation=None, - norm_layer=None): - super(ResNet, self).__init__() - if norm_layer is None: - norm_layer = nn.BatchNorm2d - self._norm_layer = norm_layer - - self.inplanes = 64 - self.dilation = 1 - if replace_stride_with_dilation is None: - # each element in the tuple indicates if we should replace - # the 2x2 stride with a dilated convolution instead - replace_stride_with_dilation = [False, False, False] - if len(replace_stride_with_dilation) != 3: - raise ValueError("replace_stride_with_dilation should be None " - "or a 3-element tuple, got {}".format(replace_stride_with_dilation)) - self.modal = modal - self.groups = groups - self.base_width = width_per_group - self.conv1_a = nn.Conv2d(1, self.inplanes, kernel_size=7, stride=2, padding=3, - bias=False) - self.conv1 = nn.Conv2d(3, self.inplanes, kernel_size=7, stride=2, padding=3, - bias=False) - self.bn1 = norm_layer(self.inplanes) - self.relu = nn.ReLU(inplace=True) - self.maxpool = nn.MaxPool2d(kernel_size=3, stride=2, padding=1) - self.layer1 = self._make_layer(block, 64, layers[0], stride=1) - self.layer2 = self._make_layer(block, 128, layers[1], stride=2, - dilate=replace_stride_with_dilation[0]) - self.layer3 = self._make_layer(block, 256, layers[2], stride=2, - dilate=replace_stride_with_dilation[1]) - self.layer4 = self._make_layer(block, 512, layers[3], stride=1, - dilate=replace_stride_with_dilation[2]) - self.avgpool = nn.AdaptiveAvgPool2d((1, 1)) - self.fc = nn.Linear(512 * block.expansion, num_classes) - - for m in self.modules(): - if isinstance(m, nn.Conv2d): - nn.init.kaiming_normal_(m.weight, mode='fan_out', nonlinearity='relu') - elif isinstance(m, (nn.BatchNorm2d, nn.GroupNorm)): - nn.init.constant_(m.weight, 1) - nn.init.constant_(m.bias, 0) - - # Zero-initialize the last BN in each residual branch, - # so that the residual branch starts with zeros, and each residual block behaves like an identity. - # This improves the model by 0.2~0.3% according to https://arxiv.org/abs/1706.02677 - if zero_init_residual: - for m in self.modules(): - if isinstance(m, Bottleneck): - nn.init.constant_(m.bn3.weight, 0) - elif isinstance(m, BasicBlock): - nn.init.constant_(m.bn2.weight, 0) - - def _make_layer(self, block, planes, blocks, stride=1, dilate=False): - norm_layer = self._norm_layer - downsample = None - previous_dilation = self.dilation - if dilate: - self.dilation *= stride - stride = 1 - if stride != 1 or self.inplanes != planes * block.expansion: - downsample = nn.Sequential( - conv1x1(self.inplanes, planes * block.expansion, stride), - norm_layer(planes * block.expansion), - ) - - layers = [] - layers.append(block(self.inplanes, planes, stride, downsample, self.groups, - self.base_width, previous_dilation, norm_layer)) - self.inplanes = planes * block.expansion - for _ in range(1, blocks): - layers.append(block(self.inplanes, planes, groups=self.groups, - base_width=self.base_width, dilation=self.dilation, - norm_layer=norm_layer)) - - return nn.Sequential(*layers) - - def _forward_impl(self, x): - # See note [TorchScript super()] - if self.modal == 'audio': - x = self.conv1_a(x) - else: - x = self.conv1(x) - x = self.bn1(x) - x = self.relu(x) - x = self.maxpool(x) - - x = self.layer1(x) - x = self.layer2(x) - x = self.layer3(x) - x = self.layer4(x) - - return x - - def forward(self, x): - return self._forward_impl(x) - - -def _resnet(arch, block, layers, pretrained, progress, modal, **kwargs): - model = ResNet(block, layers, modal, **kwargs) - if pretrained: - print('---------- >>> load pretrained res-18 <<< ----------\n') - model.load_state_dict(torch.load('/home/guangyao_li/projects/pretrained/resnet18-5c106cde.pth'), strict=False) - return model - -def resnet18(pretrained=False, progress=True, modal='vision',**kwargs): - r"""ResNet-18 model from - `"Deep Residual Learning for Image Recognition" `_ - Args: - pretrained (bool): If True, returns a model pre-trained on ImageNet - progress (bool): If True, displays a progress bar of the download to stderr - """ - return _resnet('resnet18', BasicBlock, [2, 2, 2, 2], pretrained, progress, modal, **kwargs) \ No newline at end of file diff --git a/feat_script/extract_visual_frames/extract_frames.py b/feat_script/extract_visual_frames/extract_frames.py deleted file mode 100644 index cb0fea9..0000000 --- a/feat_script/extract_visual_frames/extract_frames.py +++ /dev/null @@ -1,34 +0,0 @@ -import shutil -import subprocess -import os -import argparse -import glob - -def extract_frames(video, dst): - command1 = 'ffmpeg ' - command1 += '-i ' + video + " " - command1 += '-y' + " " - command1 += "-r " + "1 " - command1 += '{0}/%06d.jpg'.format(dst) - print(command1) - # print command1 - os.system(command1) - - return - -if __name__ == '__main__': - parser = argparse.ArgumentParser() - parser.add_argument('--out_dir', dest='out_dir', type=str, default='./data/videos') - parser.add_argument('--video_path', dest='video_path', type=str, default='./data/frames') - args = parser.parse_args() - - vid_list = os.listdir(args.video_path) - - for vid_id in vid_list: - name = os.path.join(args.video_path, vid_id) - dst = os.path.join(args.out_dir, vid_id[:-4]) - print(dst) - if not os.path.exists(dst): - os.makedirs(dst) - extract_frames(name, dst) - print("finish video id: " + vid_id) diff --git a/feat_script/extract_visual_frames/extract_frames_adaptive.py b/feat_script/extract_visual_frames/extract_frames_adaptive.py deleted file mode 100644 index 546d13f..0000000 --- a/feat_script/extract_visual_frames/extract_frames_adaptive.py +++ /dev/null @@ -1,245 +0,0 @@ -# -*- coding: utf-8 -*- -''' -Author: Guangyao Li -E-mail: guangyaoli@ruc.edu.cn -Date: 17/4/2021 - -Functions: - -输入参数: -- 视频原始路径 (dir_paht = "") -- 提帧目标路径 (dst_path = "") -- 每秒取几帧(frame = 1 or frame = 4) -- 固定or不固定(固定的话写参数N,不固定就是四舍五入取整) -- 线程数(默认最大,否则写参数J) - - -''' - - -import os -import logging -import time -import sys -import multiprocessing -from imageio import imsave -from moviepy.editor import VideoFileClip, concatenate_videoclips -import warnings -import cv2 - -warnings.filterwarnings('ignore') - -# save log -def log_config(logger=None, file_name="log"): - if logger is None: - logger = logging.getLogger() - logger.setLevel(logging.DEBUG) - if not os.path.exists("log"): - os.makedirs("log") - formatter = logging.Formatter('%(asctime)s - %(levelname)s - %(name)s - %(message)s') - ch = logging.StreamHandler(sys.stdout) - ch.setLevel(logging.INFO) - ch.setFormatter(formatter) - logger.addHandler(ch) - if file_name is not None: - fh = logging.FileHandler("log/%s-%s.log" % (file_name, time.strftime("%Y-%m-%d")), mode='a') - fh.setLevel(logging.DEBUG) - fh.setFormatter(formatter) - logger.addHandler(fh) - return logger - - -def is_generate(out_path, dst=10): - if not os.path.exists(out_path): - return False - folder_list = os.listdir(out_path) - jpg_number = 0 - for file_name in folder_list: - if file_name.strip().lower().endswith('.jpg'): - jpg_number += 1 - return jpg_number >= dst - - -def fixed_video(clip, video_len_pre): - if clip.duration >= video_len_pre: - return clip - t_start = int(clip.duration) - if t_start == clip.duration: - t_start = -1 - last_clip = clip.subclip(t_start) - final_clip = clip - while final_clip.duration < video_len_pre: - final_clip = concatenate_videoclips([final_clip, last_clip]) - return final_clip - - -def read_frame(reader, pos): - if not reader.proc: - reader.initialize() - reader.pos = pos - reader.lastread = reader.read_frame() - - if pos == reader.pos: - return reader.lastread - elif (pos < reader.pos) or (pos > reader.pos + 100): - reader.initialize() - reader.pos = pos - else: - reader.skip_frames(pos - reader.pos - 1) - result = reader.read_frame() - reader.pos = pos - return result - -def compute_numbers(outpath): - folder_list = os.listdir(outpath) - folder_list.sort() - - jpg_number = 0 - pkl_number = 0 - for file_name in folder_list: - if os.path.splitext(file_name)[-1].lower() == ".jpg": - jpg_number += 1 - if os.path.splitext(file_name)[-1].lower() == ".pkl": - pkl_number += 1 - - if jpg_number != 10 or pkl_number != 10: - return 1 - else: - return 0 - -def deal_video(video_file, out_path, fix_second, fps_count): - - # total_temp = compute_numbers(out_path) - total_temp = 1 - if total_temp == 0: - return - else: - try: - if is_generate(out_path): - return - # if os.path.exists(out_path): - # print(out_path, " is already extract! ****") - # return - if not os.path.exists(out_path): - os.makedirs(out_path) - if not os.path.isfile(video_file): - logger.error("deal video error, %s is not a file", video_file) - return - with VideoFileClip(video_file) as clip: - step = 1 - - reader = clip.reader - fps = clip.reader.fps - total_frames = reader.nframes - - last_frames = int(total_frames % fps) - - if last_frames == 0: - last_frames = int(fps) - last_start = total_frames - last_frames - - - save_frame_index_arr = [] - - video_len_pre = fix_second - if fix_second == 0: - video_len_pre = round(total_frames/fps) - - video_len_pre = video_len_pre * fps_count - - for i in range(video_len_pre): - absolute_frame_pos = round((1 / (2*fps_count) + i / fps_count) * fps) - - if absolute_frame_pos > total_frames: - relative_frame_pos = last_start + 1 + ((absolute_frame_pos - last_start - 1) % last_frames) - else: - relative_frame_pos = absolute_frame_pos - - save_frame_index_arr.append(relative_frame_pos) - - save_frame_map = {} - loop_arr = list(set(save_frame_index_arr)) - loop_arr.sort() - for i in loop_arr: - if i not in save_frame_map: - im = read_frame(reader, i) - save_frame_map[i] = im - - success_frame_count = 0 - for i in range(len(save_frame_index_arr)): - try: - out_file_name = os.path.join(out_path, "{:08d}.jpg".format(i + 1)) - im = save_frame_map[save_frame_index_arr[i]] - imsave(out_file_name, im) - success_frame_count += 1 - except Exception as e: - logger.error("(%s) save frame(%s) error", video_file, str(i + 1), e) - log_str = "video(%s) save frame, save count(%s) total(%s) fps(%s) %s, " - if success_frame_count == video_len_pre: - logger.debug(log_str, video_file, success_frame_count, total_frames, fps, save_frame_index_arr) - else: - logger.error(log_str, video_file, success_frame_count, total_frames, fps, save_frame_index_arr) - - except Exception as e: - logger.error("deal video(%s) error", video_file, e) - - -def process_dir_path_class(param): - dir_path_class = param["dir_path_class"] - dst_path_class = param["dst_path_class"] - fix_second = param["fix_second"] - fps_count = param["fps_count"] - try: - print("\n-----------------------------------------\n") - files = os.listdir(dir_path_class) - files.sort() - cnt = 0 - total_cnt = len(files) - for video_file in files: - name, ext = os.path.splitext(video_file) - out_path = os.path.join(dst_path_class, name) - cnt += 1 - # deal_video(os.path.join(dir_path_class, video_file), os.path.join(dst_path_class, name), fix_second, fps_count) - if os.path.exists(out_path): - print("Progress: ", cnt, " / ", total_cnt, " ------- id: ", video_file, " is already extract!") - continue - else: - deal_video(os.path.join(dir_path_class, video_file), out_path, fix_second, fps_count) - print("Progress: ", cnt, " / ", total_cnt, " ------- id: ", video_file) - - except Exception as e: - logger.error("process(%s) error", dir_path_class, e) - - -def deal_dir(dir_path, dst_path, fix_second, fps_count, pool=None): - print("----------------------------------") - - logger.info("----- deal dir: (%s), to path: (%s) -----", dir_path, dst_path) - request_param = [] - - param = {'dir_path_class': dir_path, 'dst_path_class': dst_path, "fix_second": fix_second, "fps_count": fps_count} - if pool is None: - process_dir_path_class(param) - else: - request_param.append(param) - - if pool is not None: - pool.map(process_dir_path_class, request_param) - pool.close() - pool.join() - - -logger = log_config() - -def video_processing(dir_path, dst_path, process_count, fix_second, fps_count): - - cpu_count = multiprocessing.cpu_count() - if process_count == 0: - # cpu_count = multiprocessing.cpu_count() - process_count = cpu_count * 2 - 1 - - logger.info("cpu count is {}, create {}, process pool".format(cpu_count, process_count)) - pool = multiprocessing.Pool(process_count) - - deal_dir(dir_path, dst_path, fix_second, fps_count, pool) - print("--------------------------- end!-------------------------\n") \ No newline at end of file diff --git a/feat_script/extract_visual_frames/extract_frames_adaptive_script.py b/feat_script/extract_visual_frames/extract_frames_adaptive_script.py deleted file mode 100644 index cbfc07c..0000000 --- a/feat_script/extract_visual_frames/extract_frames_adaptive_script.py +++ /dev/null @@ -1,18 +0,0 @@ -# -*- coding: utf-8 -*- - -''' -Function: Extract video frames. -''' - -from video2frames import video_processing - -if __name__ == "__main__": - - dir_path = './data/videos/' - dst_path = './data/frames/' - - process_count = 0 - fix_second = 0 - fps_count = 1 - - video_processing(dir_path, dst_path, process_count, fix_second, fps_count) diff --git a/figs/avqa_white.png b/figs/avqa_white.png deleted file mode 100644 index be91527..0000000 Binary files a/figs/avqa_white.png and /dev/null differ diff --git a/grounding_gen/dataloader_grd_gen.py b/grounding_gen/dataloader_grd_gen.py deleted file mode 100644 index 9053160..0000000 --- a/grounding_gen/dataloader_grd_gen.py +++ /dev/null @@ -1,128 +0,0 @@ -import numpy as np -import torch -import os -from torch.utils.data import Dataset, DataLoader -from torchvision import transforms, utils -import pandas as pd -import ast -import json - -from PIL import Image -from munch import munchify - -import time -import random - - - -def TransformImage(img): - - transform_list = [] - mean = [0.43216, 0.394666, 0.37645] - std = [0.22803, 0.22145, 0.216989] - - transform_list.append(transforms.Resize([224,224])) - transform_list.append(transforms.ToTensor()) - transform_list.append(transforms.Normalize(mean, std)) - trans = transforms.Compose(transform_list) - frame_tensor = trans(img) - - return frame_tensor - - -def load_frame_info(img_path, img_file): - - img_info = os.path.join(img_path, img_file) - img = Image.open(img_info).convert('RGB') - frame_tensor = TransformImage(img) - - return frame_tensor - - -def image_info(video_name, frame_flag): - - # path = "./data/frames-8fps" - path = "./data/frames" - img_path = os.path.join(path, video_name) - - img_list = os.listdir(img_path) - img_list.sort() - - frame_idx = img_list[0 + frame_flag] - img_tensor = load_frame_info(img_path, frame_idx) - select_img = img_tensor.cpu().numpy() - - return select_img - -def audio_info(audio_dir, audeo_name, aud_flag): - - audio = np.load(os.path.join(audio_dir, audeo_name + '.npy')) - select_aud = audio[aud_flag] - - return select_aud - -class AVQA_dataset(Dataset): - - def __init__(self, label_data, audio_dir, video_dir, transform=None): - - samples = json.load(open('./data/avqa-train_real.json', 'r')) - - self.samples = json.load(open(label_data, 'r')) - - video_list = [] - for sample in samples: - video_name = sample['video_id'] - if video_name not in video_list: - video_list.append(video_name) - - self.video_list = video_list - self.audio_len = 10 * len(video_list) - self.video_len = 10 * len(video_list) - - self.audio_dir = audio_dir - self.video_dir = video_dir - self.transform = transform - - - def __len__(self): - return self.video_len - - def __getitem__(self, idx): - - pos_frame_id = idx - pos_video_id = int(idx / 10) - pos_frame_flag = idx % 10 - pos_video_name = self.video_list[pos_video_id] - # print("pos name: ", pos_video_name) - - while(1): - neg_frame_id = random.randint(0, self.video_len - 1) - if int(neg_frame_id/10) != int(pos_frame_id/10): - break - neg_video_id = int(neg_frame_id / 10) - neg_frame_flag = neg_frame_id % 10 - neg_video_name = self.video_list[neg_video_id] - - aud_frame_id = pos_frame_id - aud_id = pos_video_id - aud_flag = pos_frame_flag - - # print(pos_video_id, neg_video_id, aud_id) - pos_frame = torch.Tensor(image_info(pos_video_name, pos_frame_flag)).unsqueeze(0) - neg_frame = torch.Tensor(image_info(neg_video_name, neg_frame_flag)).unsqueeze(0) - - sec_audio = torch.Tensor(audio_info(self.audio_dir, pos_video_name, aud_flag)).unsqueeze(0) - - video_s = torch.cat((pos_frame, neg_frame), dim=0) - audio = torch.cat((sec_audio, sec_audio), dim=0) - - label = torch.Tensor(np.array([1, 0])) - - video_id = pos_video_name - sample = {'video_id':video_id, 'audio': audio, 'video_s': video_s, 'label': label} - - if self.transform: - sample = self.transform(sample) - - return sample - \ No newline at end of file diff --git a/grounding_gen/dataloader_grd_gen_vis.py b/grounding_gen/dataloader_grd_gen_vis.py deleted file mode 100644 index 5eb63e5..0000000 --- a/grounding_gen/dataloader_grd_gen_vis.py +++ /dev/null @@ -1,131 +0,0 @@ -import numpy as np -import torch -import os -from torch.utils.data import Dataset, DataLoader -from torchvision import transforms, utils -import pandas as pd -import ast -import json - -from PIL import Image -from munch import munchify - -import time -import random - - - -def TransformImage(img): - - transform_list = [] - mean = [0.43216, 0.394666, 0.37645] - std = [0.22803, 0.22145, 0.216989] - - transform_list.append(transforms.Resize([224,224])) - transform_list.append(transforms.ToTensor()) - transform_list.append(transforms.Normalize(mean, std)) - trans = transforms.Compose(transform_list) - frame_tensor = trans(img) - - return frame_tensor - - -def load_frame_info(img_path, img_file): - - img_info = os.path.join(img_path, img_file) - img = Image.open(img_info).convert('RGB') - frame_tensor = TransformImage(img) - - return img, frame_tensor - - -def image_info(video_name, frame_flag): - - # path = "./data/frames-8fps" - path = "./data/frames" - img_path = os.path.join(path, video_name) - - img_list = os.listdir(img_path) - img_list.sort() - - frame_idx = img_list[0 + frame_flag] - img_org, img_tensor = load_frame_info(img_path, frame_idx) - select_img = img_tensor.cpu().numpy() - img_org = np.array(img_org) - - return img_org, select_img - -def audio_info(audio_dir, audeo_name, aud_flag): - - audio = np.load(os.path.join(audio_dir, audeo_name + '.npy')) - select_aud = audio[aud_flag] - - return select_aud - - - -class AVQA_dataset(Dataset): - - def __init__(self, label_data, audio_dir, video_dir, transform=None): - - samples = json.load(open('../data/json/avqa-train_real.json', 'r')) - - self.samples = json.load(open(label_data, 'r')) - - video_list = [] - for sample in samples: - video_name = sample['video_id'] - if video_name not in video_list: - video_list.append(video_name) - - self.video_list = video_list - self.audio_len = 10 * len(video_list) - self.video_len = 10 * len(video_list) - - self.audio_dir = audio_dir - self.video_dir = video_dir - self.transform = transform - - - def __len__(self): - return self.video_len - - def __getitem__(self, idx): - - pos_frame_id = idx - pos_video_id = int(idx / 10) - pos_frame_flag = idx % 10 - pos_video_name = self.video_list[pos_video_id] - - while(1): - neg_frame_id = random.randint(0, self.video_len - 1) - if int(neg_frame_id/10) != int(pos_frame_id/10): - break - neg_video_id = int(neg_frame_id / 10) - neg_frame_flag = neg_frame_id % 10 - neg_video_name = self.video_list[neg_video_id] - - aud_frame_id = pos_frame_id - aud_id = pos_video_id - aud_flag = pos_frame_flag - - pos_frame_org, pos_frame = image_info(pos_video_name, pos_frame_flag) - neg_frame_org, neg_frame = image_info(neg_video_name, neg_frame_flag) - - pos_frame = torch.Tensor(pos_frame).unsqueeze(0) - neg_frame = torch.Tensor(neg_frame).unsqueeze(0) - - sec_audio = torch.Tensor(audio_info(self.audio_dir, pos_video_name, aud_flag)).unsqueeze(0) - - video_s = torch.cat((pos_frame, neg_frame), dim=0) - audio = torch.cat((sec_audio, sec_audio), dim=0) - - label = torch.Tensor(np.array([1, 0])) - - video_id = pos_video_name - sample = {'video_id':video_id, 'audio': audio, 'pos_frame_org':pos_frame_org, 'video_s': video_s, 'label': label} - - if self.transform: - sample = self.transform(sample) - - return sample diff --git a/grounding_gen/main_grd_gen.py b/grounding_gen/main_grd_gen.py deleted file mode 100644 index bb7e0ab..0000000 --- a/grounding_gen/main_grd_gen.py +++ /dev/null @@ -1,240 +0,0 @@ -from __future__ import print_function -import sys -sys.path.append("/home/guangyao_li/projects/music_avqa/") # path to your project root - -import argparse -import torch -import torch.nn as nn -import torch.optim as optim -from grounding_gen.dataloader_grd_gen import * -from grounding_gen.nets_grd_gen import AVQA_AVatt_Grounding -import ast -import json -import numpy as np -import torch.nn.functional as F - -import warnings -from datetime import datetime -TIMESTAMP = "{0:%Y-%m-%d-%H-%M-%S/}".format(datetime.now()) -warnings.filterwarnings('ignore') -from torch.utils.tensorboard import SummaryWriter -writer = SummaryWriter('runs/grounding_gen/'+TIMESTAMP) - - -print("\n ------------------- grounding_gen ---------------------\n") - - -def train(args, model, train_loader, optimizer, criterion, epoch): - model.train() - label = np.array(1) - for batch_idx, sample in enumerate(train_loader): - video_id, audio, video, target = sample['video_id'], sample['audio'].to('cuda'), sample['video_s'].to('cuda'), sample['label'].to('cuda') - optimizer.zero_grad() - - feat = model(video_id, audio, video) - B = target.shape[0] - C = target.shape[1] - target = target.view(-1, B*C).squeeze() - target = target.type(torch.LongTensor).cuda() - # output.clamp_(min=1e-7, max=1 - 1e-7) - - loss = criterion(feat, target) - writer.add_scalar('train/grd_gen_loss',loss.item(), epoch * len(train_loader) + batch_idx) - - loss.backward() - optimizer.step() - - if batch_idx % args.log_interval == 0: - print('Train Epoch: {} [{}/{} ({:.0f}%)]\tLoss: {:.6f}'.format( - epoch, batch_idx * len(audio), len(train_loader.dataset), - 100. * batch_idx / len(train_loader), loss.item())) - -def eval(model, val_loader, epoch): - model.eval() - total = 0 - correct = 0 - with torch.no_grad(): - for batch_idx, sample in enumerate(val_loader): - video_id, audio, video, target = sample['video_id'], sample['audio'].to('cuda'), sample['video_s'].to('cuda'), sample['label'].to('cuda') - preds = model(video_id, audio, video) - - _, predicted = torch.max(preds, 1) - total += preds.size(0) - correct += (predicted == target).sum().item() - - print('Accuracy: %.2f %%' % (100 * correct / total)) - writer.add_scalar('eval/grd_gen_acc', float((100 * correct / total)), epoch) - - return 100 * correct / total - - -def test(model, val_loader): - model.eval() - total = 0 - correct = 0 - samples = json.load(open('./data/json/avqa-test_real.json', 'r')) - A_count = [] - A_cmp = [] - V_count = [] - V_loc = [] - AV_ext = [] - AV_count = [] - AV_loc = [] - AV_cmp = [] - AV_temp = [] - with torch.no_grad(): - for batch_idx, sample in enumerate(val_loader): - video_id, audio, video, target = sample['video_id'], sample['audio'].to('cuda'), sample['video_s'].to('cuda'), sample['label'].to('cuda') - - preds = model(video_id, audio, video) - _, predicted = torch.max(preds.data, 1) - - total += preds.size(0) - correct += (predicted == target).sum().item() - - x = samples[batch_idx] - type =ast.literal_eval(x['type']) - if type[0] == 'Audio': - if type[1] == 'Counting': - A_count.append((predicted == target).sum().item()) - elif type[1] == 'Comparative': - A_cmp.append((predicted == target).sum().item()) - elif type[0] == 'Visual': - if type[1] == 'Counting': - V_count.append((predicted == target).sum().item()) - elif type[1] == 'Location': - V_loc.append((predicted == target).sum().item()) - elif type[0] == 'Audio-Visual': - if type[1] == 'Existential': - AV_ext.append((predicted == target).sum().item()) - # AV_ext.append((predicted == target).sum().item()) - elif type[1] == 'Counting': - AV_count.append((predicted == target).sum().item()) - elif type[1] == 'Location': - AV_loc.append((predicted == target).sum().item()) - elif type[1] == 'Comparative': - AV_cmp.append((predicted == target).sum().item()) - elif type[1] == 'Temporal': - AV_temp.append((predicted == target).sum().item()) - - print('Audio Counting Accuracy: %.2f %%' % ( - 100 * sum(A_count)/len(A_count))) - print('Audio Cmp Accuracy: %.2f %%' % ( - 100 * sum(A_cmp) / len(A_cmp))) - print('Audio Accuracy: %.2f %%' % ( - 100 * (sum(A_count) + sum(A_cmp)) / (len(A_count) + len(A_cmp)))) - print('Visual Counting Accuracy: %.2f %%' % ( - 100 * sum(V_count) / len(V_count))) - print('Visual Loc Accuracy: %.2f %%' % ( - 100 * sum(V_loc) / len(V_loc))) - print('Visual Accuracy: %.2f %%' % ( - 100 * (sum(V_count) + sum(V_loc)) / (len(V_count) + len(V_loc)))) - print('AV Ext Accuracy: %.2f %%' % ( - 100 * sum(AV_ext) / len(AV_ext))) - print('AV counting Accuracy: %.2f %%' % ( - 100 * sum(AV_count) / len(AV_count))) - print('AV Loc Accuracy: %.2f %%' % ( - 100 * sum(AV_loc) / len(AV_loc))) - print('AV Cmp Accuracy: %.2f %%' % ( - 100 * sum(AV_cmp) / len(AV_cmp))) - print('AV Temporal Accuracy: %.2f %%' % ( - 100 * sum(AV_temp) / len(AV_temp))) - - print('AV Accuracy: %.2f %%' % ( - 100 * (sum(AV_count) + sum(AV_loc)+sum(AV_ext)+sum(AV_temp) - +sum(AV_cmp)) / (len(AV_count) + len(AV_loc)+len(AV_ext)+len(AV_temp)+len(AV_cmp)))) - - print('Overall Accuracy: %.2f %%' % (100 * correct / total)) - return 100 * correct / total - -def main(): - # Training settings - parser = argparse.ArgumentParser(description='PyTorch Implementation of Audio-Visual Question Answering') - - parser.add_argument( - "--audio_dir", type=str, default='./data/feats/vggish', help="audio dir") - parser.add_argument( - "--video_dir", type=str, default='./data/frames', help="video dir") - parser.add_argument( - "--st_dir", type=str, default='./data/feats/r2plus1d_18', help="video dir") - - parser.add_argument( - "--label_train", type=str, default="./data/json/avqa-train_real.json", help="train csv file") - parser.add_argument( - "--label_val", type=str, default="./data/json/avqa-val_real.json", help="val csv file") - parser.add_argument( - "--label_test", type=str, default="./data/json/avqa-test_real.json", help="test csv file") - parser.add_argument( - '--batch-size', type=int, default=64, metavar='N', help='input batch size for training (default: 64)') - parser.add_argument( - '--epochs', type=int, default=30, metavar='N', help='number of epochs to train (default: 60)') - parser.add_argument( - '--lr', type=float, default=1e-4, metavar='LR', help='learning rate (default: 3e-4)') - parser.add_argument( - "--model", type=str, default='AVQA_AVatt_Grounding', help="with model to use") - parser.add_argument( - "--mode", type=str, default='train', help="with mode to use") - parser.add_argument( - '--seed', type=int, default=1, metavar='S', help='random seed (default: 1)') - parser.add_argument( - '--log-interval', type=int, default=50, metavar='N', help='how many batches to wait before logging training status') - parser.add_argument( - "--model_save_dir", type=str, default='grounding_gen/models_grounding_gen/', help="model save dir") - parser.add_argument( - "--checkpoint", type=str, default='main_grounding_gen', help="save model name") - parser.add_argument( - '--gpu', type=str, default='0, 1', help='gpu device number') - - - args = parser.parse_args() - os.environ['CUDA_VISIBLE_DEVICES'] = args.gpu - torch.manual_seed(args.seed) - - if args.model == 'AVQA_AVatt_Grounding': - model = AVQA_AVatt_Grounding() - model = nn.DataParallel(model) - model = model.to('cuda') - else: - raise ('not recognized') - - if args.mode == 'train': - train_dataset = AVQA_dataset(label_data=args.label_train, audio_dir=args.audio_dir, video_dir=args.video_dir) - train_loader = DataLoader(train_dataset, batch_size=args.batch_size, shuffle=True, num_workers=1, pin_memory=True) - - val_dataset = AVQA_dataset(label_data=args.label_val, audio_dir=args.audio_dir, video_dir=args.video_dir) - val_loader = DataLoader(val_dataset, batch_size=1, shuffle=False, num_workers=1, pin_memory=True) - - ##### frozen - for name, parameters in model.named_parameters(): - layer=str(name).split('.')[1] - if(layer=='visual_net'): - parameters.requires_grad= False - - optimizer = optim.Adam(model.parameters(), lr=args.lr) - scheduler = optim.lr_scheduler.StepLR(optimizer, step_size=8, gamma=0.1) - criterion = nn.CrossEntropyLoss() - - best_F = 0 - for epoch in range(1, args.epochs + 1): - train(args, model, train_loader, optimizer, criterion, epoch=epoch) - scheduler.step(epoch) - F = eval(model, val_loader, epoch=epoch) - if F >= best_F: - best_F = F - torch.save(model.state_dict(), args.model_save_dir + args.checkpoint + "_best.pt") - torch.save(model.state_dict(), args.model_save_dir + args.checkpoint + str(epoch) + ".pt") - - elif args.mode == 'val': - test_dataset = AVQA_dataset(label_data=args.label_val, audio_dir=args.audio_dir, video_dir=args.video_dir) - test_loader = DataLoader(test_dataset, batch_size=1, shuffle=False, num_workers=1, pin_memory=True) - model.load_state_dict(torch.load(args.model_save_dir + args.checkpoint + "_best.pt")) - eval(model, test_loader, epoch=epoch) - else: - test_dataset = AVQA_dataset(label_data=args.label_test, audio_dir=args.audio_dir, video_dir=args.video_dir) - print(test_dataset.__len__()) - test_loader = DataLoader(test_dataset, batch_size=1, shuffle=False, num_workers=4, pin_memory=True) - model.load_state_dict(torch.load(args.model_save_dir + args.checkpoint + "_best.pt")) - test(model, test_loader) - -if __name__ == '__main__': - main() \ No newline at end of file diff --git a/grounding_gen/main_grd_gen_vis.py b/grounding_gen/main_grd_gen_vis.py deleted file mode 100644 index d6d637d..0000000 --- a/grounding_gen/main_grd_gen_vis.py +++ /dev/null @@ -1,277 +0,0 @@ -from __future__ import print_function -import sys -sys.path.append("/home/guangyao_li/projects/music_avqa/") - -import argparse -import torch -import torch.nn as nn -import torch.optim as optim -from grounding_gen.dataloader_grd_gen_vis import * -from grounding_gen.nets_grd_gen_vis import AVQA_AVatt_Grounding -import ast -import json -import numpy as np -import torch.nn.functional as F - -# from sklearn import cluster, metrics -# from skimage import img_as_ubyte -# from sklearn.preprocessing import normalize -import cv2 - - -import warnings -from datetime import datetime -TIMESTAMP = "{0:%Y-%m-%d-%H-%M-%S/}".format(datetime.now()) -warnings.filterwarnings('ignore') -from torch.utils.tensorboard import SummaryWriter -writer = SummaryWriter('runs/grounding_gen_vis/'+TIMESTAMP) - - - - -print("\n ------------------- grounding_gen visualization ---------------------\n") - - -def train(args, model, train_loader, optimizer, criterion, epoch): - model.train() - label = np.array(1) - for batch_idx, sample in enumerate(train_loader): - video_id, audio, video, target = sample['video_id'], sample['audio'].to('cuda'), sample['video_s'].to('cuda'), sample['label'].to('cuda') - optimizer.zero_grad() - - feat = model(video_id, audio, video) - B = target.shape[0] - C = target.shape[1] - target = target.view(-1, B*C).squeeze() - target = target.type(torch.LongTensor).cuda() - # output.clamp_(min=1e-7, max=1 - 1e-7) - - loss = criterion(feat, target) - writer.add_scalar('train/grd_gen_loss_vis',loss.item(), epoch * len(train_loader) + batch_idx) - - loss.backward() - optimizer.step() - - if batch_idx % args.log_interval == 0: - print('Train Epoch: {} [{}/{} ({:.0f}%)]\tLoss: {:.6f}'.format( - epoch, batch_idx * len(audio), len(train_loader.dataset), - 100. * batch_idx / len(train_loader), loss.item())) - - -def eval(model, val_loader): - model.eval() - total = 0 - correct = 0 - with torch.no_grad(): - for batch_idx, sample in enumerate(val_loader): - video_id, audio, video_org, video, target = sample['video_id'], sample['audio'].to('cuda'), sample['pos_frame_org'].to('cuda'), sample['video_s'].to('cuda'), sample['label'].to('cuda') - - av_atten, preds = model(video_id, audio, video) - - print("\n\nvideo name: ", video_id) - print("video_org type: ", type(video_org)) - - # 正负样本交替的, 隔一个取一个mask - obj_localization = av_atten.detach().cpu().numpy() # (2, 1, 196) - obj_localization = obj_localization[::2] # (1, 1, 196) - - posi_img_data = video_org # [1, 3, 224, 224] - - obj_len = obj_localization.shape[0] - print("obj_len: ", obj_len) - for j in range(obj_len): - print("obj: ", obj_localization.shape) - map = obj_localization[j, :, :].squeeze() - - print("map: ", map.shape) - map = (map-map.min()) / (map.max()-map.min()) - map=cv2.resize(map.reshape(14,14),(224,224)) - map=map/map.max() - map=np.uint8(map*255) - heatmap = cv2.applyColorMap(map, cv2.COLORMAP_JET) - - print("map type: ", type(map)) - - current_img = posi_img_data[j].cpu().numpy() - print("current_img type: ", type(current_img)) - current_img = cv2.resize(current_img, (224, 224)) - print("current_img: ", current_img.shape) - - result = heatmap * 0.4 + current_img * 0.6 - - file_name = '%04d_' % batch_idx + '%04d_0' % j + '.jpg' - print("file_name: ", file_name) - cv2.imwrite(os.path.join('grounding_gen/models_grd_vis/vis_h4_c6', file_name), result) - - - -def test(model, val_loader): - model.eval() - total = 0 - correct = 0 - samples = json.load(open('../data/json/avqa-test_real.json', 'r')) - A_count = [] - A_cmp = [] - V_count = [] - V_loc = [] - AV_ext = [] - AV_count = [] - AV_loc = [] - AV_cmp = [] - AV_temp = [] - with torch.no_grad(): - for batch_idx, sample in enumerate(val_loader): - video_id, audio, video, target = sample['video_id'], sample['audio'].to('cuda'), sample['video_s'].to('cuda'), sample['label'].to('cuda') - - preds = model(video_id, audio, video) - _, predicted = torch.max(preds.data, 1) - - total += preds.size(0) - correct += (predicted == target).sum().item() - - x = samples[batch_idx] - type =ast.literal_eval(x['type']) - if type[0] == 'Audio': - if type[1] == 'Counting': - A_count.append((predicted == target).sum().item()) - elif type[1] == 'Comparative': - A_cmp.append((predicted == target).sum().item()) - elif type[0] == 'Visual': - if type[1] == 'Counting': - V_count.append((predicted == target).sum().item()) - elif type[1] == 'Location': - V_loc.append((predicted == target).sum().item()) - elif type[0] == 'Audio-Visual': - if type[1] == 'Existential': - AV_ext.append((predicted == target).sum().item()) - # AV_ext.append((predicted == target).sum().item()) - elif type[1] == 'Counting': - AV_count.append((predicted == target).sum().item()) - elif type[1] == 'Location': - AV_loc.append((predicted == target).sum().item()) - elif type[1] == 'Comparative': - AV_cmp.append((predicted == target).sum().item()) - elif type[1] == 'Temporal': - AV_temp.append((predicted == target).sum().item()) - - print('Audio Counting Accuracy: %.2f %%' % ( - 100 * sum(A_count)/len(A_count))) - print('Audio Cmp Accuracy: %.2f %%' % ( - 100 * sum(A_cmp) / len(A_cmp))) - print('Audio Accuracy: %.2f %%' % ( - 100 * (sum(A_count) + sum(A_cmp)) / (len(A_count) + len(A_cmp)))) - print('Visual Counting Accuracy: %.2f %%' % ( - 100 * sum(V_count) / len(V_count))) - print('Visual Loc Accuracy: %.2f %%' % ( - 100 * sum(V_loc) / len(V_loc))) - print('Visual Accuracy: %.2f %%' % ( - 100 * (sum(V_count) + sum(V_loc)) / (len(V_count) + len(V_loc)))) - print('AV Ext Accuracy: %.2f %%' % ( - 100 * sum(AV_ext) / len(AV_ext))) - print('AV counting Accuracy: %.2f %%' % ( - 100 * sum(AV_count) / len(AV_count))) - print('AV Loc Accuracy: %.2f %%' % ( - 100 * sum(AV_loc) / len(AV_loc))) - print('AV Cmp Accuracy: %.2f %%' % ( - 100 * sum(AV_cmp) / len(AV_cmp))) - print('AV Temporal Accuracy: %.2f %%' % ( - 100 * sum(AV_temp) / len(AV_temp))) - - print('AV Accuracy: %.2f %%' % ( - 100 * (sum(AV_count) + sum(AV_loc)+sum(AV_ext)+sum(AV_temp) - +sum(AV_cmp)) / (len(AV_count) + len(AV_loc)+len(AV_ext)+len(AV_temp)+len(AV_cmp)))) - - print('Overall Accuracy: %.2f %%' % (100 * correct / total)) - return 100 * correct / total - -def main(): - # Training settings - parser = argparse.ArgumentParser(description='PyTorch Implementation of Audio-Visual Question Answering') - - parser.add_argument( - "--audio_dir", type=str, default='./data/feats/vggish', help="audio dir") - parser.add_argument( - "--video_dir", type=str, default='./data/frames', help="video dir") - parser.add_argument( - "--st_dir", type=str, default='./data/feats/r2plus1d_18', help="video dir") - - parser.add_argument( - "--label_train", type=str, default="../dataset/avqa-train_real.json", help="train csv file") - parser.add_argument( - "--label_val", type=str, default="../dataset/avqa-val_real.json", help="val csv file") - parser.add_argument( - "--label_test", type=str, default="../dataset/avqa-test_real.json", help="test csv file") - parser.add_argument( - '--batch-size', type=int, default=64, metavar='N', help='input batch size for training (default: 64)') - parser.add_argument( - '--epochs', type=int, default=30, metavar='N', help='number of epochs to train (default: 60)') - parser.add_argument( - '--lr', type=float, default=1e-4, metavar='LR', help='learning rate (default: 3e-4)') - parser.add_argument( - "--model", type=str, default='AVQA_AVatt_Grounding', help="with model to use") - parser.add_argument( - "--mode", type=str, default='train', help="with mode to use") - parser.add_argument( - '--seed', type=int, default=1, metavar='S', help='random seed (default: 1)') - parser.add_argument( - '--log-interval', type=int, default=50, metavar='N', help='how many batches to wait before logging training status') - parser.add_argument( - "--model_save_dir", type=str, default='grounding_gen/models_grounding_gen/', help="model save dir") - parser.add_argument( - "--checkpoint", type=str, default='main_grounding_gen', help="save model name") - parser.add_argument( - '--gpu', type=str, default='0, 1', help='gpu device number') - - - args = parser.parse_args() - os.environ['CUDA_VISIBLE_DEVICES'] = args.gpu - torch.manual_seed(args.seed) - - if args.model == 'AVQA_AVatt_Grounding': - model = AVQA_AVatt_Grounding() - model = nn.DataParallel(model) - model = model.to('cuda') - else: - raise ('not recognized') - - if args.mode == 'train': - train_dataset = AVQA_dataset(label_data=args.label_train, audio_dir=args.audio_dir, video_dir=args.video_dir) - train_loader = DataLoader(train_dataset, batch_size=args.batch_size, shuffle=True, num_workers=1, pin_memory=True) - - val_dataset = AVQA_dataset(label_data=args.label_val, audio_dir=args.audio_dir, video_dir=args.video_dir) - val_loader = DataLoader(val_dataset, batch_size=1, shuffle=False, num_workers=1, pin_memory=True) - - ##### frozen - for name, parameters in model.named_parameters(): - layer=str(name).split('.')[1] - if(layer=='visual_net'): - parameters.requires_grad= False - - optimizer = optim.Adam(model.parameters(), lr=args.lr) - scheduler = optim.lr_scheduler.StepLR(optimizer, step_size=8, gamma=0.1) - criterion = nn.CrossEntropyLoss() - - best_F = 0 - for epoch in range(1, args.epochs + 1): - # train(args, model, train_loader, optimizer, criterion, epoch=epoch) - scheduler.step(epoch) - F = eval(model, val_loader) - if F >= best_F: - best_F = F - torch.save(model.state_dict(), args.model_save_dir + args.checkpoint + "_best.pt") - torch.save(model.state_dict(), args.model_save_dir + args.checkpoint + str(epoch) + ".pt") - - elif args.mode == 'val': - test_dataset = AVQA_dataset(label_data=args.label_val, audio_dir=args.audio_dir, video_dir=args.video_dir) - test_loader = DataLoader(test_dataset, batch_size=1, shuffle=False, num_workers=1, pin_memory=True) - model.load_state_dict(torch.load(args.model_save_dir + args.checkpoint + "_best.pt")) - eval(model, test_loader) - else: - test_dataset = AVQA_dataset(label_data=args.label_test, audio_dir=args.audio_dir, video_dir=args.video_dir) - print(test_dataset.__len__()) - test_loader = DataLoader(test_dataset, batch_size=1, shuffle=False, num_workers=4, pin_memory=True) - model.load_state_dict(torch.load(args.model_save_dir + args.checkpoint + "_best.pt")) - test(model, test_loader) - -if __name__ == '__main__': - main() \ No newline at end of file diff --git a/grounding_gen/models_grounding_gen/main_grounding_gen_best.pt b/grounding_gen/models_grounding_gen/main_grounding_gen_best.pt deleted file mode 100644 index 0e43e21..0000000 Binary files a/grounding_gen/models_grounding_gen/main_grounding_gen_best.pt and /dev/null differ diff --git a/grounding_gen/nets_grd_gen.py b/grounding_gen/nets_grd_gen.py deleted file mode 100644 index 509e167..0000000 --- a/grounding_gen/nets_grd_gen.py +++ /dev/null @@ -1,80 +0,0 @@ -import torch -import torchvision.models as models -import torch.nn as nn -import torch.nn.functional as F -import numpy as np - -from visual_net import resnet18 - - -class AVQA_AVatt_Grounding(nn.Module): - - def __init__(self): - super(AVQA_AVatt_Grounding, self).__init__() - - # for features - self.fc_a1 = nn.Linear(128, 512) - self.fc_a2=nn.Linear(512,512) - - # visual - self.visual_net = resnet18(pretrained=True) - - # combine - self.fc1 = nn.Linear(1024, 512) - self.relu1 = nn.ReLU() - self.fc2 = nn.Linear(512, 256) - self.relu2 = nn.ReLU() - self.fc3 = nn.Linear(256, 128) - self.relu3 = nn.ReLU() - self.fc4 = nn.Linear(128, 2) - self.relu4 = nn.ReLU() - self.avgpool = nn.AdaptiveAvgPool2d((1, 1)) - - self.fc_gl=nn.Linear(1024,512) - self.tanh = nn.Tanh() - - - def forward(self, video_id, audio, visual): - - ## audio features - audio_feat = F.relu(self.fc_a1(audio)) - audio_feat=self.fc_a2(audio_feat) # [16, 20, 512] - (B, T, C) = audio_feat.size() - audio_feat = audio_feat.view(B*T, C) # [320, 512] - - ## visual, input: [16, 20, 3, 224, 224] - (B, T, C, H, W) = visual.size() - visual = visual.view(B * T, C, H, W) # [320, 3, 224, 224] - - v_feat_out_res18 = self.visual_net(visual) # [320, 512, 14, 14] - v_feat=self.avgpool(v_feat_out_res18) - visual_feat_before_grounding=v_feat.squeeze() # 320 512 - - (B, C, H, W) = v_feat_out_res18.size() - v_feat = v_feat_out_res18.view(B, C, H * W) - v_feat = v_feat.permute(0, 2, 1) # B, HxW, C - visual = nn.functional.normalize(v_feat, dim=2) - - ## audio-visual grounding - audio_feat_aa = audio_feat.unsqueeze(-1) # [320, 512, 1] - audio_feat_aa = nn.functional.normalize(audio_feat_aa, dim=1) - visual_feat = visual - x2_va = torch.matmul(visual_feat, audio_feat_aa).squeeze() - - x2_p = F.softmax(x2_va, dim=-1).unsqueeze(-2) # [320, 1, 196] - visual_feat_grd = torch.matmul(x2_p, visual_feat) - visual_feat_grd = visual_feat_grd.squeeze() # [320, 512] - - visual_gl=torch.cat((visual_feat_before_grounding,visual_feat_grd),dim=-1) - visual_feat_grd=self.tanh(visual_gl) - visual_feat_grd=self.fc_gl(visual_feat_grd) - - # combine a and v - feat = torch.cat((audio_feat, visual_feat_grd), dim=-1) # [320, 1024] - - feat = F.relu(self.fc1(feat)) # (1024, 512) - feat = F.relu(self.fc2(feat)) # (512, 256) - feat = F.relu(self.fc3(feat)) # (256, 128) - feat = self.fc4(feat) # (128, 2) - - return feat diff --git a/grounding_gen/nets_grd_gen_vis.py b/grounding_gen/nets_grd_gen_vis.py deleted file mode 100644 index 0e6461f..0000000 --- a/grounding_gen/nets_grd_gen_vis.py +++ /dev/null @@ -1,80 +0,0 @@ -import torch -import torchvision.models as models -import torch.nn as nn -import torch.nn.functional as F -import numpy as np - -from visual_net import resnet18 - - -class AVQA_AVatt_Grounding(nn.Module): - - def __init__(self): - super(AVQA_AVatt_Grounding, self).__init__() - - # for features - self.fc_a1 = nn.Linear(128, 512) - self.fc_a2=nn.Linear(512,512) - - # visual - self.visual_net = resnet18(pretrained=True) - - # combine - self.fc1 = nn.Linear(1024, 512) - self.relu1 = nn.ReLU() - self.fc2 = nn.Linear(512, 256) - self.relu2 = nn.ReLU() - self.fc3 = nn.Linear(256, 128) - self.relu3 = nn.ReLU() - self.fc4 = nn.Linear(128, 2) - self.relu4 = nn.ReLU() - self.avgpool = nn.AdaptiveAvgPool2d((1, 1)) - - self.fc_gl=nn.Linear(1024,512) - self.tanh = nn.Tanh() - - - def forward(self, video_id, audio, visual): - - ## audio features - audio_feat = F.relu(self.fc_a1(audio)) - audio_feat=self.fc_a2(audio_feat) # [16, 20, 512] - (B, T, C) = audio_feat.size() - audio_feat = audio_feat.view(B*T, C) # [320, 512] - - ## visual, input: [16, 20, 3, 224, 224] - (B, T, C, H, W) = visual.size() - visual = visual.view(B * T, C, H, W) # [320, 3, 224, 224] - - v_feat_out_res18 = self.visual_net(visual) # [320, 512, 14, 14] - v_feat=self.avgpool(v_feat_out_res18) - visual_feat_before_grounding=v_feat.squeeze() # 320 512 - - (B, C, H, W) = v_feat_out_res18.size() - v_feat = v_feat_out_res18.view(B, C, H * W) - v_feat = v_feat.permute(0, 2, 1) # B, HxW, C - visual = nn.functional.normalize(v_feat, dim=2) - - ## audio-visual grounding - audio_feat_aa = audio_feat.unsqueeze(-1) # [320, 512, 1] - audio_feat_aa = nn.functional.normalize(audio_feat_aa, dim=1) - visual_feat = visual - x2_va = torch.matmul(visual_feat, audio_feat_aa).squeeze() - - x2_p = F.softmax(x2_va, dim=-1).unsqueeze(-2) # [320, 1, 196] - visual_feat_grd = torch.matmul(x2_p, visual_feat) - visual_feat_grd = visual_feat_grd.squeeze() # [320, 512] - - visual_gl=torch.cat((visual_feat_before_grounding,visual_feat_grd),dim=-1) - visual_feat_grd=self.tanh(visual_gl) - visual_feat_grd=self.fc_gl(visual_feat_grd) - - # combine a and v - feat = torch.cat((audio_feat, visual_feat_grd), dim=-1) # [320, 1024] - - feat = F.relu(self.fc1(feat)) # (1024, 512) - feat = F.relu(self.fc2(feat)) # (512, 256) - feat = F.relu(self.fc3(feat)) # (256, 128) - feat = self.fc4(feat) # (128, 2) - - return x2_p, feat diff --git a/grounding_gen/visual_net.py b/grounding_gen/visual_net.py deleted file mode 100644 index 3446bd2..0000000 --- a/grounding_gen/visual_net.py +++ /dev/null @@ -1,232 +0,0 @@ -import torch -import torch.nn as nn - - -__all__ = ['ResNet', 'resnet18', 'resnet34', 'resnet50', 'resnet101', - 'resnet152', 'resnext50_32x4d', 'resnext101_32x8d', - 'wide_resnet50_2', 'wide_resnet101_2'] - - -model_urls = { - 'resnet18': 'https://download.pytorch.org/models/resnet18-5c106cde.pth', - 'resnet34': 'https://download.pytorch.org/models/resnet34-333f7ec4.pth', - 'resnet50': 'https://download.pytorch.org/models/resnet50-19c8e357.pth', - 'resnet101': 'https://download.pytorch.org/models/resnet101-5d3b4d8f.pth', - 'resnet152': 'https://download.pytorch.org/models/resnet152-b121ed2d.pth', - 'resnext50_32x4d': 'https://download.pytorch.org/models/resnext50_32x4d-7cdf4587.pth', - 'resnext101_32x8d': 'https://download.pytorch.org/models/resnext101_32x8d-8ba56ff5.pth', - 'wide_resnet50_2': 'https://download.pytorch.org/models/wide_resnet50_2-95faca4d.pth', - 'wide_resnet101_2': 'https://download.pytorch.org/models/wide_resnet101_2-32ee1156.pth', -} - - -def conv3x3(in_planes, out_planes, stride=1, groups=1, dilation=1): - """3x3 convolution with padding""" - return nn.Conv2d(in_planes, out_planes, kernel_size=3, stride=stride, - padding=dilation, groups=groups, bias=False, dilation=dilation) - - -def conv1x1(in_planes, out_planes, stride=1): - """1x1 convolution""" - return nn.Conv2d(in_planes, out_planes, kernel_size=1, stride=stride, bias=False) - - -class BasicBlock(nn.Module): - expansion = 1 - - def __init__(self, inplanes, planes, stride=1, downsample=None, groups=1, - base_width=64, dilation=1, norm_layer=None): - super(BasicBlock, self).__init__() - if norm_layer is None: - norm_layer = nn.BatchNorm2d - if groups != 1 or base_width != 64: - raise ValueError('BasicBlock only supports groups=1 and base_width=64') - if dilation > 1: - raise NotImplementedError("Dilation > 1 not supported in BasicBlock") - # Both self.conv1 and self.downsample layers downsample the input when stride != 1 - self.conv1 = conv3x3(inplanes, planes, stride) - self.bn1 = norm_layer(planes) - self.relu = nn.ReLU(inplace=True) - self.conv2 = conv3x3(planes, planes) - self.bn2 = norm_layer(planes) - self.downsample = downsample - self.stride = stride - - def forward(self, x): - identity = x - - out = self.conv1(x) - out = self.bn1(out) - out = self.relu(out) - - out = self.conv2(out) - out = self.bn2(out) - - if self.downsample is not None: - identity = self.downsample(x) - - out += identity - out = self.relu(out) - - return out - - -class Bottleneck(nn.Module): - expansion = 4 - - def __init__(self, inplanes, planes, stride=1, downsample=None, groups=1, - base_width=64, dilation=1, norm_layer=None): - super(Bottleneck, self).__init__() - if norm_layer is None: - norm_layer = nn.BatchNorm2d - width = int(planes * (base_width / 64.)) * groups - # Both self.conv2 and self.downsample layers downsample the input when stride != 1 - self.conv1 = conv1x1(inplanes, width) - self.bn1 = norm_layer(width) - self.conv2 = conv3x3(width, width, stride, groups, dilation) - self.bn2 = norm_layer(width) - self.conv3 = conv1x1(width, planes * self.expansion) - self.bn3 = norm_layer(planes * self.expansion) - self.relu = nn.ReLU(inplace=True) - self.downsample = downsample - self.stride = stride - - def forward(self, x): - identity = x - - out = self.conv1(x) - out = self.bn1(out) - out = self.relu(out) - - out = self.conv2(out) - out = self.bn2(out) - out = self.relu(out) - - out = self.conv3(out) - out = self.bn3(out) - - if self.downsample is not None: - identity = self.downsample(x) - - out += identity - out = self.relu(out) - - return out - - -class ResNet(nn.Module): - - def __init__(self, block, layers, modal, num_classes=1000, zero_init_residual=False, - groups=1, width_per_group=64, replace_stride_with_dilation=None, - norm_layer=None): - super(ResNet, self).__init__() - if norm_layer is None: - norm_layer = nn.BatchNorm2d - self._norm_layer = norm_layer - - self.inplanes = 64 - self.dilation = 1 - if replace_stride_with_dilation is None: - # each element in the tuple indicates if we should replace - # the 2x2 stride with a dilated convolution instead - replace_stride_with_dilation = [False, False, False] - if len(replace_stride_with_dilation) != 3: - raise ValueError("replace_stride_with_dilation should be None " - "or a 3-element tuple, got {}".format(replace_stride_with_dilation)) - self.modal = modal - self.groups = groups - self.base_width = width_per_group - self.conv1_a = nn.Conv2d(1, self.inplanes, kernel_size=7, stride=2, padding=3, - bias=False) - self.conv1 = nn.Conv2d(3, self.inplanes, kernel_size=7, stride=2, padding=3, - bias=False) - self.bn1 = norm_layer(self.inplanes) - self.relu = nn.ReLU(inplace=True) - self.maxpool = nn.MaxPool2d(kernel_size=3, stride=2, padding=1) - self.layer1 = self._make_layer(block, 64, layers[0], stride=1) - self.layer2 = self._make_layer(block, 128, layers[1], stride=2, - dilate=replace_stride_with_dilation[0]) - self.layer3 = self._make_layer(block, 256, layers[2], stride=2, - dilate=replace_stride_with_dilation[1]) - self.layer4 = self._make_layer(block, 512, layers[3], stride=1, - dilate=replace_stride_with_dilation[2]) - self.avgpool = nn.AdaptiveAvgPool2d((1, 1)) - self.fc = nn.Linear(512 * block.expansion, num_classes) - - for m in self.modules(): - if isinstance(m, nn.Conv2d): - nn.init.kaiming_normal_(m.weight, mode='fan_out', nonlinearity='relu') - elif isinstance(m, (nn.BatchNorm2d, nn.GroupNorm)): - nn.init.constant_(m.weight, 1) - nn.init.constant_(m.bias, 0) - - # Zero-initialize the last BN in each residual branch, - # so that the residual branch starts with zeros, and each residual block behaves like an identity. - # This improves the model by 0.2~0.3% according to https://arxiv.org/abs/1706.02677 - if zero_init_residual: - for m in self.modules(): - if isinstance(m, Bottleneck): - nn.init.constant_(m.bn3.weight, 0) - elif isinstance(m, BasicBlock): - nn.init.constant_(m.bn2.weight, 0) - - def _make_layer(self, block, planes, blocks, stride=1, dilate=False): - norm_layer = self._norm_layer - downsample = None - previous_dilation = self.dilation - if dilate: - self.dilation *= stride - stride = 1 - if stride != 1 or self.inplanes != planes * block.expansion: - downsample = nn.Sequential( - conv1x1(self.inplanes, planes * block.expansion, stride), - norm_layer(planes * block.expansion), - ) - - layers = [] - layers.append(block(self.inplanes, planes, stride, downsample, self.groups, - self.base_width, previous_dilation, norm_layer)) - self.inplanes = planes * block.expansion - for _ in range(1, blocks): - layers.append(block(self.inplanes, planes, groups=self.groups, - base_width=self.base_width, dilation=self.dilation, - norm_layer=norm_layer)) - - return nn.Sequential(*layers) - - def _forward_impl(self, x): - # See note [TorchScript super()] - if self.modal == 'audio': - x = self.conv1_a(x) - else: - x = self.conv1(x) - x = self.bn1(x) - x = self.relu(x) - x = self.maxpool(x) - - x = self.layer1(x) - x = self.layer2(x) - x = self.layer3(x) - x = self.layer4(x) - - return x - - def forward(self, x): - return self._forward_impl(x) - - -def _resnet(arch, block, layers, pretrained, progress, modal, **kwargs): - model = ResNet(block, layers, modal, **kwargs) - if pretrained: - print('---------- >>> load pretrained res-18 <<< ----------\n') - model.load_state_dict(torch.load('/home/guangyao_li/projects/pretrained/resnet18-5c106cde.pth'), strict=False) - return model - -def resnet18(pretrained=False, progress=True, modal='vision',**kwargs): - r"""ResNet-18 model from - `"Deep Residual Learning for Image Recognition" `_ - Args: - pretrained (bool): If True, returns a model pre-trained on ImageNet - progress (bool): If True, displays a progress bar of the download to stderr - """ - return _resnet('resnet18', BasicBlock, [2, 2, 2, 2], pretrained, progress, modal, **kwargs) \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..4e34083 --- /dev/null +++ b/index.html @@ -0,0 +1,1196 @@ +--- +title: "MUSIC-AVQA" +layout: default +--- + + + + +
+
+ + + + + + + + + + + +
+
+

Update

+
+
    +
  • 01 Jun 2022: The dataset has been uploaded to Google Drive, welcome to download and use!
  • +
  • 28 Mar 2022: Camera-ready version has been released here!
  • +
  • 22 Mar 2022: The MUSIC-AVQA dataset has been released, please see Download for details.
  • +
  • 18 Mar 2022: Code has been released here!
  • +
  • 08 Mar 2022: Watch the project's video demonstration on + YouTube or + Bilibili.
  • +
  • 02 Mar 2022: Our paper is accepted for publication at CVPR2022. Camera-ready version and code will be released soon!
  • +
+
+
+
+ +
+ + +
+
+

What is AVQA task?

+

+ We are surrounded by audio and visual messages in daily life, and both modalities jointly improve our ability in scene perception and understanding. For instance, imagining that we are in a concert, watching the performance and listening to the music at the same time contribute to better enjoyment of the show. Inspired by this, how to make machines integrate multimodal information, especially the natural modality such as the audio and visual ones, to achieve considerable scene perception and understanding ability as humans is an interesting and valuable topic. + We focus on audio-visual question answering (AVQA) task, which aims to answer questions regarding different visual objects, sounds, and their associations in videos. The problem requires comprehensive multimodal understanding and spatio-temporal reasoning over audio-visual scenes. +

+
+
+
+ +
+
+ +

+ For instance, as shown in this Figure, when answering the audio-visual question “Which clarinet makes the sound first” for this instrumental ensemble, it requires to locate sounding objects “clarinet” in the audio-visual scenario and focus on the “first” sounding “clarinet” in the timeline. To answer the question correctly, both effective audio-visual scene understanding and spatio-temporal reasoning are essentially desired. +

+

+ Audio-visual question answering requires auditory and visual modalities for multimodal scene understanding and spatiotemporal reasoning. For example, when we encounter a complex musical performance scene involving multiple sounding and nonsounding instruments above, it is difficult to analyze the sound first term in the question by VQA model that only considers visual modality. While if we only consider the AQA model with mono sound, the left or right position is also hard to be recognized. However, we can see that using both auditory and visual modalities can answer this question effortlessly. +

+ +
+
+ +
+ +
+
+

What is MUSIC-AVQA dataset?

+ + +

+ To explore scene understanding and spatio-temporal reasoning over audio and visual modalities, we build a largescale audio-visual dataset, MUSIC-AVQA, which focuses on question-answering task. As noted above, high-quality datasets are of considerable value for AVQA research. +

+

+ Why musical performance? Considering that musical performance is a typical multimodal scene consisting of abundant audio and visual components as well as their interaction, it is appropriate to be utilized for the exploration of effective audio-visual scene understanding and reasoning. +

+ + + +
+
+ + + +
+ +
+

Basic informations

+

We choose to manually collect amounts of musical performance videos from YouTube. Specifically, 22 kinds of instruments, such as guitar, cello, and xylophone, are selected and 9 audio-visual question types are accordingly designed, which cover three different scenarios, i.e., audio, visual and audio-visual. Annotations are collected using a novel by our GSAI-Labeled system.

+ +
+ +
+

Characteristics

+
    +
  • 3 typical multimodal scene
  • +
  • 22 kinds of instruments
  • +
  • 4 categories: String, Wind, Percussion and Keyboard.
  • +
  • 9,290 videos for over 150 hours
  • +
  • 7,423 real videos
  • +
  • 1,867 synthetic videos
  • +
  • 9 audio-visual question types
  • +
  • 45,867 question-answer pairs
  • +
  • Diversity, complexity and dynamic
  • +
+
+ + +
+

Personal data/Human subjects

+ +

Videos in MUSIC-AVQA are public on YouTube, and annotated via crowdsourcing. We have explained how the data would be used to crowdworkers. Our dataset does not contain personally identifiable information or offensive content.

+ +
+
+ +
+
+ +
+
+ + + + + +
+
+ + +
+
+
+
+

MUSIC-AVQA Dataset

+

Some graphical representations of our dataset and annotations

+
+
+ + + + +
+
+ +
+

Illustrations of our MUSIC-AVQA dataset statistics. (a-d) statistical analysis of the videos and QA pairs. (e) Question formulas. (f) Distribution of question templates, where the dark color indicates the number of QA pairs generated from real videos while the light-colored area on the upper part of each bar means that from synthetic videos. (g) Distribution of first n-grams in questions. Our QA-pairs need fine-grained scene understanding and spatio-temporal reasoning over audio and visual modalities to be solved. For example, existential and location questions require spatial reasoning, and temporal questions require temporal reasoning. Best viewed in color.

+
+ + + + + +
+
+ +
+

+ Comparison with other video QA datasets. Our MUSIC-AVQA dataset focuses on the interaction between visual objects and their produced sounds, offering QA pairs that covering audio questions, visual questions and audio-visual questions, which is more comprehensive than other datasets. The collected videos in MUSIC-AVQA can facilitate audio-visual understanding in terms of spatial and temporal associations. +

+
+ +
+ + +
+
+

How was MUSIC-AVQA dataset made?

+
+
+

+ We design an audio-visual question answering labeling system to collect questions, and all QA pairs are collected with this system. The flow chart of the labeling system is shown in below figure. +

+
+ +
+

+ Labeling system contains questioning and answering. In the questioning section, the annotator is required to select the performance type of the video and the included instruments, and then scene types, question types, and question templates, and finally one question is automatically generated based on the previous selection. In the answering part, the annotator to judge whether the question is reasonable, and if it is unreasonable, the question will be labeled again. Then, the annotator answering the question according to video content, and finally one QA pair is produced. +

+
+ +
+ + +
+
+

QA pairs samples

+
+
+

+ Demo. The large-scale spatial-temporal audio-visual dataset that focuses on question-answering task, as shown in below figure that different audio-visual scene types and their annotated QA pairs in the AVQA dataset. +

+ +
+ +
+ +
+

+ In the first row, a), b), and c) represent real musical performance videos, namely solo, ensemble of the same instrument, and ensemble of different instruments. In the second row, d), e), and f) represent the synthetic video, which are audio and video random matching, audio overlay, and video stitching, respectively. +

+
+ + +
+
+

More video examples

+
+
+

+ Some video examples with QA pairs in the MUSIC-AVQA dataset. + Through these examples, we can have a better understanding of the dataset, and can more intuitively feel the QA tasks in dynamic and complex audio-visual scenes +

+

+ + + + + + + + + +
+ + + Question: How many instruments are sounding in the video?
+ Answer: two
+ To answer the question, an AVQA model needs to first identify objects and sound sources in the video, and then count all sounding objects. Although there are three different sound sources in the audio modality, only two of them are visible. Rather than simply counting all audio and visual instances, exploiting audio-visual association is important for AVQA. +
+ + + + + + + + + +
+ + + Question: What is the first sounding instrument?
+ Answer: piano
+ To answer the question, an AVQA model needs to not only associate all instruments and their corresponding sounds in the video, but also identify the first instrument that makes sounds. Thus, the AVQA task is not a simple recognition problem, and it also involves audio-visual association and temporal reasoning. + +
+ + + + + + + + + +
+ + + Question: What is the left instrument of the second sounding instrument?
+ Answer: guzheng
+ To answer the question, an AVQA model needs to first identify the second sounding instrument: flute and then infer the instrument at its left. Besides recognizing objects, exploring audio-visual association, and performing temporal reasoning, spatial reasoning is also crucial for AVQA. +
+ + +

+ +
+ + + + + + + + + + + + + + + + + + + +
+ + + + + +
+ + + + +
+
+ +
+
+

Download

+

Dataset publicly available for research purposes

+
+
+ + +
+
+ +

Data and Download


+

Raw videos: +

    +
  • + Google Drive +
  • +
  • Baidu Drive (password: cvpr)
  • + - Real videos (36.67GB)
    + - Synthetic videos (11.59GB)
    + Note: Please move all downloaded videos to a folder, for example, create a new folder named MUSIC-AVQA-Videos, which contains 9,288 real videos and synthetic videos. +
+

+ +

Raw videos frames (1fps): Available at Baidu Drive (14.84GB) (pwd: cvpr) or Google Drive (coming soon!). In fact, we thought it might be more convenient to execute the code above to extract video frames.

+ +

Features (VGGish, ResNet18 and R(2+1)D): +

+

+ +

Annotations (QA pairs, etc.): Available for download at GitHub.

+ + +
+

How to read the annotation files?

+

+ The annotation files are stored in JSON format. Each annotation file contains seven different keyword: "video_id", "question_id", "type", "question_content", "templ_values", "question_deleted" and "anser". + + Below, we present a detailed explanation of each keyword. +

    +
  • "type": the question's modality information and type.
  • +
  • "question_id": the unique identifier to QA pairs. .
  • +
  • "video_id", "question_content", "templ_values" and "anser": The contents of these keywords together construct the Q-A pairs corresponding to the video with id "video_id". The form of <FL> is the template word in the question, and its specific content is the information contained in "templ_values". See the paper for a more specific question template description
  • +
  • "question_deleted": The check code during data annotation process and it will not be used in the dataloader.
  • +
+

+

+ Below, we show an example entry from the JSON file: +

+
+        
+        {
+          "video_id": "00000272",
+          "question_id": 50,
+          "type": "[\"Audio-Visual\", \"Temporal\"]",
+          "question_content": "Where is the <FL> sounding instrument?",
+          "templ_values": "[\"first\"]",
+          "question_deleted": 0,
+          "anser": "right"
+        }
+        
+

+ The example shows the information and annotations related to the QA pairs corresponding to the video with id "video_id". As noted, we assign the unique identifier "50" to that QA pairs. + From the entry, we can retrieve the video name, questions, answer and type where the QA pairs belongs. + For example, the example above needs to combine audio and visual modality information to make a correct answer to this temporal question. +

+ +
+

Publication(s)

+

If you find our work useful in your research, please cite our CVPR 2022 paper. +

+
+        
+        @ARTICLE{Li2022Learning,
+          title={Learning to Answer Questions in Dynamic Audio-Visual Scenarios},
+          author={Guangyao li, Yake Wei, Yapeng Tian, Chenliang Xu, Ji-Rong Wen, Di Hu},
+          journal   = {IEEE Conference on Computer Vision and Pattern Recognition (CVPR)},
+          year      = {2022},
+          
+        }
+        
+ + +
+

Disclaimer

+ +

The released MUSIC-AVQA dataset is curated, which perhaps owns potential correlation between instrument and geographical area. This issue warrants further research and consideration. +

+ +
+
+ + + + +
+
+
+

Copyright Creative Commons License

+

+ All datasets and benchmarks on this page are copyright by us and published under the Creative Commons Attribution-NonCommercial 4.0 International License. This means that you must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use. You may not use the material for commercial purposes. +

+
+
+
+
+ + + +
+
+ +
+
+

A Simple Baseline for MUSIC-AVQA

+ +

Audio-visual spatial-temporal MUSIC-AVQA method, experimental results and simple analysis

+
+
+ +
+
+

+ To solve the AVQA problem, we propose a spatio-temporal grounding model to achieve scene understanding and reasoning over audio and visual modalities. And to benchmark different models, we use answer prediction accuracy as the evaluation metric and evaluate performance of different models on answering different types of audio, visual, and audio-visual questions. More details in the [Paper] and [Supplementary].
+

+
+
+ + +
+
+

Spatio-temporal Grounding Model

+

An overview of the proposed framework is illustrated in below figure. We consider that the sound and the location of its visual source usually reflects the spatial association between audio and visual modality, the spatial grounding module, which performs attention-based sound source localization, is therefore introduced to decompose the complex scenarios into concrete audio-visual association. To highlight the key timestamps that are closely associated to the question, we propose a temporal grounding module, which is designed for attending critical temporal segments among the changing audio-visual scenes and capturing question-aware audio and visual embeddings.

+ +
+ +
+

The proposed audio-visual question answering model takes pre-trained CNNs to extract audio and visual features and uses a LSTM to obtain a question embedding. We associate specific visual locations with the input sounds to perform spatial grounding, based on which audio and visual features of key timestamps are further highlighted via question query for temporal grounding. Finally, multimodal fusion is exploited to integrate audio, visual, and question information for predicting the answer to the input question.

+
+
+ + +
+ +
+
+

Experiments

+

+ To study different input modalities and validate the effectiveness of the proposed model, we conduct extensive ablations of our model and compare to recent QA approaches. +

+

+ As shown in right table, we observe that leveraging audio, visual, and question information can boost AVQA task. + The below table shows that audio-visual video questiFon answering results of different methods on the test set of MUSIC-AVQA. And the top-2 results are highlighted. +

+ +
+ +
+

+ The results firstly demonstrate that all AVQA methods outperform A-, V- and VideoQA methods, which indicates that AVQA task can be boosted through multisensory perception. Secondly, our method achieves considerable improvement on most audio and visual questions. For the audio-visual question that desires spatial and temporal reasoning, our method is clearly superior over other methods on most question types, especially on answering the Counting and Location questions. Moreover, the results confirm the potential of our dataset as a testbed for audio-visual scene understanding. +

+
+
+ + +
+ +
+
+

Visualized spatio-temporal grounding results

+

We provide several visualized spatial grounding results. The heatmap indicates the location of sounding source. Through the spatial grounding results, the sounding objects are visually captured, which can facilitate the spatial reasoning.

+
+ +
+

Visualized spatio-temporal grounding results. Based on the grounding results of our method, the sounding area and key timestamps are accordingly highlighted in spatial and temporal perspectives (a-e), respectively, which indicates that our method can model the spatio-temporal association over different modalities well, facilitating the scene understanding and reasoning. Besides, the subfigure (f) shows one failure case predicted by our method, where the complex scenario with multiple sounding and silent objects makes it difficult to correlate individual objects with mixed sound, leading to a wrong answer for the given question.

+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+ +
+
+

The Team

+
+

We are a group of researchers working in computer vision + from the Renmin University of China and University of Rochester. +

+
+
+
+ +
+
+ + + +
+
+ + + +
+
+
+ + + + + + + +
+ +
+
+ + +

Guangyao Li

+
PhD Candidate
+
(Sep 2020 - )
+
Renmin University of China
+
+
+ +
+
+ + +

Yake Wei

+
PhD Candidate
+
(Sep 2021 - )
+
Renmin University of China
+
+
+ +
+
+ + +

Yapeng Tian

+
PhD Candidate
+
(Sep 2017 - )
+
University of Rochester
+
+
+ +
+
+ + +

Chenliang Xu

+
Assistant Professor
+
University of Rochester
+
+
+ +
+ + +
+
+
+
+ + + +

Ji-Rong Wen

+
Professor
+
Renmin University of China
+
+
+ +
+
+ + +

Di Hu

+
Assistant Professor
+
Renmin University of China
+
+
+ +
+
+ + +
+
+ + + +
+

Acknowledgement

+
+
    +
  • This research was supported by Public Computing Cloud, Renmin University of China.
  • +
  • This web-page design inspired by EPIC official website.
  • +
+
+
+ +
+
+
+ + + + + + diff --git a/net_grd_baseline/dataloader_qa_grd_baseline.py b/net_grd_baseline/dataloader_qa_grd_baseline.py deleted file mode 100644 index 942428f..0000000 --- a/net_grd_baseline/dataloader_qa_grd_baseline.py +++ /dev/null @@ -1,217 +0,0 @@ -import numpy as np -import torch -import os -from torch.utils.data import Dataset, DataLoader -from torchvision import transforms, utils -import pandas as pd -import ast -import json - -from PIL import Image -from munch import munchify - -import time -import random - - -def TransformImage(img): - - transform_list = [] - mean = [0.43216, 0.394666, 0.37645] - std = [0.22803, 0.22145, 0.216989] - - transform_list.append(transforms.Resize([224,224])) - transform_list.append(transforms.ToTensor()) - transform_list.append(transforms.Normalize(mean, std)) - trans = transforms.Compose(transform_list) - frame_tensor = trans(img) - - return frame_tensor - - -def load_frame_info(img_path): - - # img_info = os.path.join(img_path, img_file) - # img = Image.open(img_info).convert('RGB') - img = Image.open(img_path).convert('RGB') - frame_tensor = TransformImage(img) - - return frame_tensor - - -def image_info(video_name): - - path = "./data/frames/" - img_path = os.path.join(path, video_name) - - img_list = os.listdir(img_path) - img_list.sort() - - select_img = [] - for frame_idx in range(0,len(img_list),1): - if frame_idx < 60: - video_frames_path = os.path.join(img_path, str(frame_idx+1).zfill(6)+".jpg") - - frame_tensor_info = load_frame_info(video_frames_path) - select_img.append(frame_tensor_info.cpu().numpy()) - - select_img = np.array(select_img) - - return select_img - - - -def ids_to_multinomial(id, categories): - """ label encoding - Returns: - 1d array, multimonial representation, e.g. [1,0,1,0,0,...] - """ - id_to_idx = {id: index for index, id in enumerate(categories)} - - return id_to_idx[id] - -class AVQA_dataset(Dataset): - - def __init__(self, label, audio_dir, video_dir, st_dir, transform=None): - - samples = json.load(open('../data/json/avqa-train.json', 'r')) - - # nax = nne - ques_vocab = [''] - ans_vocab = [] - i = 0 - for sample in samples: - i += 1 - # print(sample, sample['video_id'], sample['question_content'], len(ast.literal_eval(sample['templ_values']))) - question = sample['question_content'].rstrip().split(' ') - question[-1] = question[-1][:-1] - - p = 0 - for pos in range(len(question)): - if '<' in question[pos]: - question[pos] = ast.literal_eval(sample['templ_values'])[p] - p += 1 - - for wd in question: - if wd not in ques_vocab: - ques_vocab.append(wd) - if sample['anser'] not in ans_vocab: - ans_vocab.append(sample['anser']) - - - - self.ques_vocab = ques_vocab - self.ans_vocab = ans_vocab - self.word_to_ix = {word: i for i, word in enumerate(self.ques_vocab)} - - self.samples = json.load(open(label, 'r')) - self.max_len = 14 - - self.audio_dir = audio_dir - self.video_dir = video_dir - self.st_dir = st_dir - self.transform = transform - - video_list = [] - for sample in self.samples: - video_name = sample['video_id'] - if video_name not in video_list: - video_list.append(video_name) - - self.video_list = video_list - self.video_len = 60 * len(video_list) - - def __len__(self): - return len(self.samples) - - - def __getitem__(self, idx): - sample = self.samples[idx] - - name = sample['video_id'] - audio = np.load(os.path.join(self.audio_dir, name + '.npy')) - audio=audio[::6,:] - - visual_out_res18_path='./data/feats/res18_14x14' - visual_posi=np.load(os.path.join(visual_out_res18_path, name + '.npy')) - - # visual_posi = torch.from_numpy(visual_posi) - visual_posi=visual_posi[::6,:] - # visual_posi 60 512 14 14 - - video_idx=self.video_list.index(name) - - # visual_nega=None - # print("visual_posi: ", visual_posi.shape) # (10, 512, 14, 14) - T,C,H,W = torch.from_numpy(visual_posi).size() - visual_nega=torch.zeros(T,C,H,W) - - # for i in range(visual_posi.shape[0]): - # while(1): - # neg_frame_id = random.randint(0, self.video_len - 1) - # if (int(neg_frame_id/60) != video_idx): - # # print(" Successfully! ") - # break - # neg_video_id = int(neg_frame_id / 60) - # neg_frame_flag = neg_frame_id % 60 - # neg_video_name = self.video_list[neg_video_id] - # visual_nega_out_res18=np.load(os.path.join(visual_out_res18_path, neg_video_name + '.npy')) - - # visual_nega_out_res18 = torch.from_numpy(visual_nega_out_res18) - # visual_nega_clip=visual_nega_out_res18[neg_frame_flag,:,:,:].unsqueeze(0) - - # if(i==0): - # visual_nega=visual_nega_clip - # else: - # visual_nega=torch.cat((visual_nega,visual_nega_clip),dim=0) - - - - ### visual nega 60,512,14,14 - - # question_ - question_id = sample['question_id'] - question = sample['question_content'].rstrip().split(' ') - question[-1] = question[-1][:-1] - - p = 0 - for pos in range(len(question)): - if '<' in question[pos]: - question[pos] = ast.literal_eval(sample['templ_values'])[p] - p += 1 - if len(question) < self.max_len: - n = self.max_len - len(question) - for i in range(n): - question.append('') - idxs = [self.word_to_ix[w] for w in question] - ques = torch.tensor(idxs, dtype=torch.long) - - # answer - answer = sample['anser'] - label = ids_to_multinomial(answer, self.ans_vocab) - label = torch.from_numpy(np.array(label)).long() - - sample = {'audio': audio, 'visual_posi': visual_posi, 'visual_nega': visual_nega, 'question': ques, 'label': label, 'question_id':question_id} - - if self.transform: - sample = self.transform(sample) - - return sample - -class ToTensor(object): - - def __call__(self, sample): - - audio = sample['audio'] - visual_posi = sample['visual_posi'] - visual_nega = sample['visual_nega'] - label = sample['label'] - question_id=sample['question_id'] - - return { - 'audio': torch.from_numpy(audio), - 'visual_posi': sample['visual_posi'], - 'visual_nega': sample['visual_nega'], - 'question': sample['question'], - 'label': label, - 'question_id':question_id} \ No newline at end of file diff --git a/net_grd_baseline/main_qa_grd_baseline.py b/net_grd_baseline/main_qa_grd_baseline.py deleted file mode 100644 index a57ccd3..0000000 --- a/net_grd_baseline/main_qa_grd_baseline.py +++ /dev/null @@ -1,276 +0,0 @@ -from __future__ import print_function -import sys -sys.path.append("/home/guangyao_li/projects/music_avqa/") -import argparse -import torch -import torch.nn as nn -import torch.optim as optim -from net_grd_baseline.dataloader_qa_grd_baseline import * -from net_grd_baseline.nets_qa_grd_baseline import AVQA_Fusion_Net -import ast -import json -import numpy as np -import pdb - -import warnings -from datetime import datetime -TIMESTAMP = "{0:%Y-%m-%d-%H-%M-%S/}".format(datetime.now()) -warnings.filterwarnings('ignore') -from torch.utils.tensorboard import SummaryWriter -writer = SummaryWriter('runs/MUSIC-AVQA baseline/'+TIMESTAMP) - -print("\n--------------- MUSIC-AVQA baseline --------------- \n") - -def batch_organize(audio_data, posi_img_data, nega_img_data): - - # print("audio data: ", audio_data.shape) - (B, T, C) = audio_data.size() - audio_data_batch=audio_data.view(B*T,C) - batch_audio_data = torch.zeros(audio_data_batch.shape[0] * 2, audio_data_batch.shape[1]) - - - (B, T, C, H, W) = posi_img_data.size() - posi_img_data_batch=posi_img_data.view(B*T,C,H,W) - nega_img_data_batch=nega_img_data.view(B*T,C,H,W) - - - batch_image_data = torch.zeros(posi_img_data_batch.shape[0] * 2, posi_img_data_batch.shape[1], posi_img_data_batch.shape[2],posi_img_data_batch.shape[3]) - batch_labels = torch.zeros(audio_data_batch.shape[0] * 2) - for i in range(audio_data_batch.shape[0]): - batch_audio_data[i * 2, :] = audio_data_batch[i, :] - batch_audio_data[i * 2 + 1, :] = audio_data_batch[i, :] - batch_image_data[i * 2, :] = posi_img_data_batch[i, :] - batch_image_data[i * 2 + 1, :] = nega_img_data_batch[i, :] - batch_labels[i * 2] = 1 - batch_labels[i * 2 + 1] = 0 - - return batch_audio_data, batch_image_data, batch_labels - - - - -def train(args, model, train_loader, optimizer, criterion, epoch): - model.train() - for batch_idx, sample in enumerate(train_loader): - audio,visual_posi,visual_nega, target, question, question_id = sample['audio'].to('cuda'), sample['visual_posi'].to('cuda'),sample['visual_nega'].to('cuda'), sample['label'].to('cuda'), sample['question'].to('cuda'), sample['question_id'] - - optimizer.zero_grad() - out_qa, out_match,match_label = model(audio, visual_posi,visual_nega, question) - loss_qa = criterion(out_qa, target) - loss=loss_qa - - writer.add_scalar('data/both',loss.item(), epoch * len(train_loader) + batch_idx) - - loss.backward() - optimizer.step() - if batch_idx % args.log_interval == 0: - print('Train Epoch: {} [{}/{} ({:.0f}%)]\tLoss: {:.6f}'.format( - epoch, batch_idx * len(audio), len(train_loader.dataset), - 100. * batch_idx / len(train_loader), loss.item())) - - -def eval(model, val_loader,epoch): - model.eval() - total_qa = 0 - total_match=0 - correct_qa = 0 - correct_match=0 - with torch.no_grad(): - for batch_idx, sample in enumerate(val_loader): - audio,visual_posi,visual_nega, target, question, question_id = sample['audio'].to('cuda'), sample['visual_posi'].to('cuda'),sample['visual_nega'].to('cuda'), sample['label'].to('cuda'), sample['question'].to('cuda'), sample['question_id'] - - preds_qa,preds_match,match_label = model(audio, visual_posi,visual_nega, question) - - _, predicted = torch.max(preds_qa.data, 1) - total_qa += preds_qa.size(0) - correct_qa += (predicted == target).sum().item() - - - print('Accuracy qa: %.2f %%' % (100 * correct_qa / total_qa)) - writer.add_scalar('metric/acc_qa',100 * correct_qa / total_qa, epoch) - - return 100 * correct_qa / total_qa - - -def test(model, val_loader): - model.eval() - total = 0 - correct = 0 - samples = json.load(open('../data/json/avqa-test.json', 'r')) - A_count = [] - A_cmp = [] - V_count = [] - V_loc = [] - AV_ext = [] - AV_count = [] - AV_loc = [] - AV_cmp = [] - AV_temp = [] - - que_id=[] - pred_results=[] - - with torch.no_grad(): - for batch_idx, sample in enumerate(val_loader): - audio,visual_posi,visual_nega, target, question, question_id = sample['audio'].to('cuda'), sample['visual_posi'].to('cuda'),sample['visual_nega'].to('cuda'), sample['label'].to('cuda'), sample['question'].to('cuda'), sample['question_id'] - - preds_qa,preds_match,match_label = model(audio, visual_posi,visual_nega, question) - preds=preds_qa - _, predicted = torch.max(preds.data, 1) - - total += preds.size(0) - correct += (predicted == target).sum().item() - - # save pred results - pred_bool=predicted == target - for index in range(len(pred_bool)): - pred_results.append(pred_bool[index].cpu().item()) - que_id.append(question_id[index].item()) - - x = samples[batch_idx] - type =ast.literal_eval(x['type']) - if type[0] == 'Audio': - if type[1] == 'Counting': - A_count.append((predicted == target).sum().item()) - elif type[1] == 'Comparative': - A_cmp.append((predicted == target).sum().item()) - elif type[0] == 'Visual': - if type[1] == 'Counting': - V_count.append((predicted == target).sum().item()) - elif type[1] == 'Location': - V_loc.append((predicted == target).sum().item()) - elif type[0] == 'Audio-Visual': - if type[1] == 'Existential': - AV_ext.append((predicted == target).sum().item()) - # AV_ext.append((predicted == target).sum().item()) - elif type[1] == 'Counting': - AV_count.append((predicted == target).sum().item()) - elif type[1] == 'Location': - AV_loc.append((predicted == target).sum().item()) - elif type[1] == 'Comparative': - AV_cmp.append((predicted == target).sum().item()) - elif type[1] == 'Temporal': - AV_temp.append((predicted == target).sum().item()) - - with open("pred_results/net_grd_baseline.txt", 'w') as f: - for index in range(len(que_id)): - f.write(str(que_id[index])+' '+str(pred_results[index]) + '\n') - - print('Audio Counting Accuracy: %.2f %%' % ( - 100 * sum(A_count)/len(A_count))) - print('Audio Cmp Accuracy: %.2f %%' % ( - 100 * sum(A_cmp) / len(A_cmp))) - print('Audio Accuracy: %.2f %%' % ( - 100 * (sum(A_count) + sum(A_cmp)) / (len(A_count) + len(A_cmp)))) - print('Visual Counting Accuracy: %.2f %%' % ( - 100 * sum(V_count) / len(V_count))) - print('Visual Loc Accuracy: %.2f %%' % ( - 100 * sum(V_loc) / len(V_loc))) - print('Visual Accuracy: %.2f %%' % ( - 100 * (sum(V_count) + sum(V_loc)) / (len(V_count) + len(V_loc)))) - print('AV Ext Accuracy: %.2f %%' % ( - 100 * sum(AV_ext) / len(AV_ext))) - print('AV counting Accuracy: %.2f %%' % ( - 100 * sum(AV_count) / len(AV_count))) - print('AV Loc Accuracy: %.2f %%' % ( - 100 * sum(AV_loc) / len(AV_loc))) - print('AV Cmp Accuracy: %.2f %%' % ( - 100 * sum(AV_cmp) / len(AV_cmp))) - print('AV Temporal Accuracy: %.2f %%' % ( - 100 * sum(AV_temp) / len(AV_temp))) - - print('AV Accuracy: %.2f %%' % ( - 100 * (sum(AV_count) + sum(AV_loc)+sum(AV_ext)+sum(AV_temp) - +sum(AV_cmp)) / (len(AV_count) + len(AV_loc)+len(AV_ext)+len(AV_temp)+len(AV_cmp)))) - - print('Overall Accuracy: %.2f %%' % ( - 100 * correct / total)) - - return 100 * correct / total - -def main(): - # Training settings - parser = argparse.ArgumentParser(description='PyTorch Implementation of MUSIC Audio-Visual Question Answering') - - parser.add_argument( - "--audio_dir", type=str, default='./data/feats/vggish', help="audio dir") - parser.add_argument( - "--video_dir", type=str, default='./data/frames', help="video dir") - parser.add_argument( - "--st_dir", type=str, default='./data/feats/r2plus1d_18', help="video dir") - - parser.add_argument( - "--label_train", type=str, default="./data/json/avqa-train.json", help="train csv file") - parser.add_argument( - "--label_val", type=str, default="./data/json/avqa-val.json", help="val csv file") - parser.add_argument( - "--label_test", type=str, default="./data/json/avqa-test.json", help="test csv file") - parser.add_argument( - '--batch-size', type=int, default=64, metavar='N', help='input batch size for training (default: 16)') - parser.add_argument( - '--epochs', type=int, default=20, metavar='N', help='number of epochs to train (default: 60)') - parser.add_argument( - '--lr', type=float, default=1e-4, metavar='LR', help='learning rate (default: 3e-4)') - parser.add_argument( - "--model", type=str, default='AVQA_Fusion_Net', help="with model to use") - parser.add_argument( - "--mode", type=str, default='train', help="with mode to use") - parser.add_argument( - '--seed', type=int, default=1, metavar='S', help='random seed (default: 1)') - parser.add_argument( - '--log-interval', type=int, default=50, metavar='N', help='how many batches to wait before logging training status') - parser.add_argument( - "--model_save_dir", type=str, default='net_grd_baseline/models_grd_baseline/', help="model save dir") - parser.add_argument( - "--checkpoint", type=str, default='net_grd_baseline', help="save model name") - parser.add_argument( - '--gpu', type=str, default='0, 1', help='gpu device number') - - - args = parser.parse_args() - # device = torch.device('cuda' if torch.cuda.is_available() else 'cpu') - # args.device = device - - os.environ['CUDA_VISIBLE_DEVICES'] = args.gpu - torch.manual_seed(args.seed) - - if args.model == 'AVQA_Fusion_Net': - model = AVQA_Fusion_Net() - model = nn.DataParallel(model) - model = model.to('cuda') - else: - raise ('not recognized') - - if args.mode == 'train': - train_dataset = AVQA_dataset(label=args.label_train, audio_dir=args.audio_dir, video_dir=args.video_dir, st_dir=args.st_dir, transform=transforms.Compose([ToTensor()])) - train_loader = DataLoader(train_dataset, batch_size=args.batch_size, shuffle=True, num_workers=4, pin_memory=True) - val_dataset = AVQA_dataset(label=args.label_val, audio_dir=args.audio_dir, video_dir=args.video_dir, st_dir=args.st_dir, transform=transforms.Compose([ToTensor()])) - val_loader = DataLoader(val_dataset, batch_size=1, shuffle=False, num_workers=4, pin_memory=True) - - - # ===================================== load pretrained model =============================================== - # None - # ===================================== load pretrained model =============================================== - - optimizer = optim.Adam(model.parameters(), lr=args.lr) - scheduler = optim.lr_scheduler.StepLR(optimizer, step_size=8, gamma=0.1) - criterion = nn.CrossEntropyLoss() - best_F = 0 - for epoch in range(1, args.epochs + 1): - train(args, model, train_loader, optimizer, criterion, epoch=epoch) - scheduler.step(epoch) - F = eval(model, val_loader,epoch) - if F >= best_F: - best_F = F - torch.save(model.state_dict(), args.model_save_dir + args.checkpoint + ".pt") - - else: - test_dataset = AVQA_dataset(label=args.label_test, audio_dir=args.audio_dir, video_dir=args.video_dir, st_dir=args.st_dir, transform=transforms.Compose([ToTensor()])) - print(test_dataset.__len__()) - test_loader = DataLoader(test_dataset, batch_size=1, shuffle=False, num_workers=4, pin_memory=True) - model.load_state_dict(torch.load(args.model_save_dir + args.checkpoint + ".pt")) - test(model, test_loader) - - -if __name__ == '__main__': - main() \ No newline at end of file diff --git a/net_grd_baseline/nets_qa_grd_baseline.py b/net_grd_baseline/nets_qa_grd_baseline.py deleted file mode 100644 index f78c976..0000000 --- a/net_grd_baseline/nets_qa_grd_baseline.py +++ /dev/null @@ -1,176 +0,0 @@ -import torch -import torchvision.models as models -import torch.nn as nn -import torch.nn.functional as F - -import numpy as np -from visual_net import resnet18 - - -def batch_organize(audio_data, posi_img_data, nega_img_data): - - # print("audio data: ", audio_data.shape) - (B, T, C) = audio_data.size() - audio_data_batch=audio_data.view(B*T,C) - batch_audio_data = torch.zeros(audio_data_batch.shape[0] * 2, audio_data_batch.shape[1]) - - (B, T, C, H, W) = posi_img_data.size() - posi_img_data_batch=posi_img_data.view(B*T,C,H,W) - nega_img_data_batch=nega_img_data.view(B*T,C,H,W) - - batch_image_data = torch.zeros(posi_img_data_batch.shape[0] * 2, posi_img_data_batch.shape[1], posi_img_data_batch.shape[2],posi_img_data_batch.shape[3]) - batch_labels = torch.zeros(audio_data_batch.shape[0] * 2) - for i in range(audio_data_batch.shape[0]): - batch_audio_data[i * 2, :] = audio_data_batch[i, :] - batch_audio_data[i * 2 + 1, :] = audio_data_batch[i, :] - batch_image_data[i * 2, :] = posi_img_data_batch[i, :] - batch_image_data[i * 2 + 1, :] = nega_img_data_batch[i, :] - batch_labels[i * 2] = 1 - batch_labels[i * 2 + 1] = 0 - - return batch_audio_data, batch_image_data, batch_labels - -# Question -class QstEncoder(nn.Module): - - def __init__(self, qst_vocab_size, word_embed_size, embed_size, num_layers, hidden_size): - - super(QstEncoder, self).__init__() - self.word2vec = nn.Embedding(qst_vocab_size, word_embed_size) - self.tanh = nn.Tanh() - self.lstm = nn.LSTM(word_embed_size, hidden_size, num_layers) - self.fc = nn.Linear(2*num_layers*hidden_size, embed_size) # 2 for hidden and cell states - - def forward(self, question): - - qst_vec = self.word2vec(question) # [batch_size, max_qst_length=30, word_embed_size=300] - qst_vec = self.tanh(qst_vec) - qst_vec = qst_vec.transpose(0, 1) # [max_qst_length=30, batch_size, word_embed_size=300] - self.lstm.flatten_parameters() - _, (hidden, cell) = self.lstm(qst_vec) # [num_layers=2, batch_size, hidden_size=512] - qst_feature = torch.cat((hidden, cell), 2) # [num_layers=2, batch_size, 2*hidden_size=1024] - qst_feature = qst_feature.transpose(0, 1) # [batch_size, num_layers=2, 2*hidden_size=1024] - qst_feature = qst_feature.reshape(qst_feature.size()[0], -1) # [batch_size, 2*num_layers*hidden_size=2048] - qst_feature = self.tanh(qst_feature) - qst_feature = self.fc(qst_feature) # [batch_size, embed_size] - - return qst_feature - - -class AVQA_Fusion_Net(nn.Module): - - def __init__(self): - super(AVQA_Fusion_Net, self).__init__() - - # for features - self.fc_a1 = nn.Linear(128, 512) - self.fc_a2=nn.Linear(512,512) - - self.visual_net = resnet18(pretrained=True) - - self.fc_v = nn.Linear(2048, 512) - self.fc_st = nn.Linear(512, 512) - self.fc_fusion = nn.Linear(1024, 512) - self.fc = nn.Linear(1024, 512) - self.fc_aq = nn.Linear(512, 512) - self.fc_vq = nn.Linear(512, 512) - - self.linear11 = nn.Linear(512, 512) - self.dropout1 = nn.Dropout(0.1) - self.linear12 = nn.Linear(512, 512) - - self.linear21 = nn.Linear(512, 512) - self.dropout2 = nn.Dropout(0.1) - self.linear22 = nn.Linear(512, 512) - self.norm1 = nn.LayerNorm(512) - self.norm2 = nn.LayerNorm(512) - self.dropout3 = nn.Dropout(0.1) - self.dropout4 = nn.Dropout(0.1) - self.norm3 = nn.LayerNorm(512) - - self.attn_a = nn.MultiheadAttention(512, 4, dropout=0.1) - self.attn_v = nn.MultiheadAttention(512, 4, dropout=0.1) - - # question - self.question_encoder = QstEncoder(93, 512, 512, 1, 512) - - self.tanh = nn.Tanh() - self.dropout = nn.Dropout(0.5) - self.fc_ans = nn.Linear(512, 42) - - self.avgpool = nn.AdaptiveAvgPool2d((1, 1)) - self.fc_gl=nn.Linear(1024,512) - - - # combine - self.fc1 = nn.Linear(1024, 512) - self.relu1 = nn.ReLU() - self.fc2 = nn.Linear(512, 256) - self.relu2 = nn.ReLU() - self.fc3 = nn.Linear(256, 128) - self.relu3 = nn.ReLU() - self.fc4 = nn.Linear(128, 2) - self.relu4 = nn.ReLU() - - - def forward(self, audio,visual_posi,visual_nega, question): - # print("net audio input: ", audio.shape) - # print("net question input: ", question.shape) - ## question features - qst_feature = self.question_encoder(question) - xq = qst_feature.unsqueeze(0) - - ## audio features B T,128 - audio_feat = F.relu(self.fc_a1(audio)) - audio_feat = self.fc_a2(audio_feat) - audio_feat_flag = audio_feat - - ## visua: [2*B*T, 512,14,14] - # print("v feat1: ", visual_posi.shape) # [64, 10, 512, 14, 14] - # v_feat = self.avgpool(visual_posi) - # print("v feat: ", v_feat.shape) - # posi_visual_feat=v_feat.squeeze(-1).squeeze(-1) # B T 512 - - - B,T,C,H,W=visual_posi.size() - temp_visual=visual_posi.view(B*T,C,H,W) - v_feat=self.avgpool(temp_visual) - # print("v_feat: ", v_feat.shape) # [640, 512, 1, 1] - posi_visual_feat=v_feat.squeeze(-1).squeeze(-1) # B T 512 - posi_visual_feat=posi_visual_feat.view(audio_feat.size(0),-1,C) - # print("posi_visual_feat: ", posi_visual_feat.shape) # [64, 10, 512] - - # T,C,H,W=visual_posi.size() - # visual_nega=torch.zeros(T,C,H,W) - - - out_match = None - match_label=None - - - # print("posi_visual_feat: ", posi_visual_feat.shape) - visual_feat_grd=posi_visual_feat.permute(1,0,2) - - ## attention, question as query on visual_feat_grd - visual_feat_att = self.attn_v(xq, visual_feat_grd, visual_feat_grd, attn_mask=None, key_padding_mask=None)[0].squeeze(0) - src = self.linear12(self.dropout1(F.relu(self.linear11(visual_feat_att)))) - visual_feat_att = visual_feat_att + self.dropout2(src) - visual_feat_att = self.norm1(visual_feat_att) - - # attention, question as query on audio - audio_feat = audio_feat.permute(1, 0, 2) - audio_feat_att = self.attn_a(xq, audio_feat, audio_feat, attn_mask=None,key_padding_mask=None)[0].squeeze(0) - src = self.linear22(self.dropout3(F.relu(self.linear21(audio_feat_att)))) - audio_feat_att = audio_feat_att + self.dropout4(src) - audio_feat_att = self.norm2(audio_feat_att) - - feat = torch.cat((audio_feat_att, visual_feat_att), dim=-1) - feat = self.tanh(feat) - feat = self.fc_fusion(feat) - - ## fusion with question - combined_feature = torch.mul(feat, qst_feature) - combined_feature = self.tanh(combined_feature) - out_qa = self.fc_ans(combined_feature) # [batch_size, ans_vocab_size] - - return out_qa,out_match,match_label diff --git a/net_ours_avst/.DS_Store b/net_ours_avst/.DS_Store deleted file mode 100644 index 5008ddf..0000000 Binary files a/net_ours_avst/.DS_Store and /dev/null differ diff --git a/net_ours_avst/dataloader_ours_avst.py b/net_ours_avst/dataloader_ours_avst.py deleted file mode 100644 index 0204280..0000000 --- a/net_ours_avst/dataloader_ours_avst.py +++ /dev/null @@ -1,204 +0,0 @@ -import numpy as np -import torch -import os -from torch.utils.data import Dataset, DataLoader -from torchvision import transforms, utils -import pandas as pd -import ast -import json - -from PIL import Image -from munch import munchify - -import time -import random - - -def TransformImage(img): - - transform_list = [] - mean = [0.43216, 0.394666, 0.37645] - std = [0.22803, 0.22145, 0.216989] - - transform_list.append(transforms.Resize([224,224])) - transform_list.append(transforms.ToTensor()) - transform_list.append(transforms.Normalize(mean, std)) - trans = transforms.Compose(transform_list) - frame_tensor = trans(img) - - return frame_tensor - - -def load_frame_info(img_path): - - # img_info = os.path.join(img_path, img_file) - # img = Image.open(img_info).convert('RGB') - img = Image.open(img_path).convert('RGB') - frame_tensor = TransformImage(img) - - return frame_tensor - - -def image_info(video_name): - - path = "./data/frames" - img_path = os.path.join(path, video_name) - - img_list = os.listdir(img_path) - img_list.sort() - - select_img = [] - for frame_idx in range(0,len(img_list),1): - if frame_idx < 475: - video_frames_path = os.path.join(img_path, str(frame_idx+1).zfill(6)+".jpg") - - frame_tensor_info = load_frame_info(video_frames_path) - select_img.append(frame_tensor_info.cpu().numpy()) - - select_img = np.array(select_img) - - return select_img - - - -def ids_to_multinomial(id, categories): - """ label encoding - Returns: - 1d array, multimonial representation, e.g. [1,0,1,0,0,...] - """ - id_to_idx = {id: index for index, id in enumerate(categories)} - - return id_to_idx[id] - -class AVQA_dataset(Dataset): - - def __init__(self, label, audio_dir, video_dir, st_dir, transform=None, mode_flag='train'): - - samples = json.load(open('./data/json/avqa-train.json', 'r')) - - # nax = nne - ques_vocab = [''] - ans_vocab = [] - i = 0 - for sample in samples: - i += 1 - question = sample['question_content'].rstrip().split(' ') - question[-1] = question[-1][:-1] - - p = 0 - for pos in range(len(question)): - if '<' in question[pos]: - question[pos] = ast.literal_eval(sample['templ_values'])[p] - p += 1 - - for wd in question: - if wd not in ques_vocab: - ques_vocab.append(wd) - if sample['anser'] not in ans_vocab: - ans_vocab.append(sample['anser']) - - self.ques_vocab = ques_vocab - self.ans_vocab = ans_vocab - self.word_to_ix = {word: i for i, word in enumerate(self.ques_vocab)} - - self.samples = json.load(open(label, 'r')) - self.max_len = 14 - - self.audio_dir = audio_dir - self.video_dir = video_dir - self.st_dir = st_dir - self.transform = transform - - video_list = [] - for sample in self.samples: - video_name = sample['video_id'] - if video_name not in video_list: - video_list.append(video_name) - - self.video_list = video_list - self.video_len = 60 * len(video_list) - - def __len__(self): - return len(self.samples) - - - def __getitem__(self, idx): - - sample = self.samples[idx] - - name = sample['video_id'] - audio = np.load(os.path.join(self.audio_dir, name + '.npy')) - audio = audio[::6, :] - - visual_out_res18_path='./data/feats/res18_14x14' - visual_posi=np.load(os.path.join(visual_out_res18_path, name + '.npy')) - # visual_posi 60 512 14 14 - visual_posi = visual_posi[::6, :] - - video_idx=self.video_list.index(name) - - for i in range(visual_posi.shape[0]): - while(1): - - neg_frame_id = random.randint(0, self.video_len - 1) - if (int(neg_frame_id/60) != video_idx): - break - neg_video_id = int(neg_frame_id / 60) - neg_frame_flag = neg_frame_id % 60 - neg_video_name = self.video_list[neg_video_id] - visual_nega_out_res18=np.load(os.path.join(visual_out_res18_path, neg_video_name + '.npy')) - - visual_nega_out_res18 = torch.from_numpy(visual_nega_out_res18) - visual_nega_clip=visual_nega_out_res18[neg_frame_flag,:,:,:].unsqueeze(0) - - if(i==0): - visual_nega=visual_nega_clip - else: - visual_nega=torch.cat((visual_nega,visual_nega_clip),dim=0) - - ### visual nega 60,512,14,14 - - # question_ - question_id = sample['question_id'] - question = sample['question_content'].rstrip().split(' ') - question[-1] = question[-1][:-1] - - p = 0 - for pos in range(len(question)): - if '<' in question[pos]: - question[pos] = ast.literal_eval(sample['templ_values'])[p] - p += 1 - if len(question) < self.max_len: - n = self.max_len - len(question) - for i in range(n): - question.append('') - idxs = [self.word_to_ix[w] for w in question] - ques = torch.tensor(idxs, dtype=torch.long) - - # answer - answer = sample['anser'] - label = ids_to_multinomial(answer, self.ans_vocab) - label = torch.from_numpy(np.array(label)).long() - - sample = {'audio': audio, 'visual_posi': visual_posi, 'visual_nega': visual_nega, 'question': ques, 'label': label} - - if self.transform: - sample = self.transform(sample) - - return sample - -class ToTensor(object): - - def __call__(self, sample): - - audio = sample['audio'] - visual_posi = sample['visual_posi'] - visual_nega = sample['visual_nega'] - label = sample['label'] - - return { - 'audio': torch.from_numpy(audio), - 'visual_posi': sample['visual_posi'], - 'visual_nega': sample['visual_nega'], - 'question': sample['question'], - 'label': label} \ No newline at end of file diff --git a/net_ours_avst/main_ours_avst.py b/net_ours_avst/main_ours_avst.py deleted file mode 100644 index d4c92e6..0000000 --- a/net_ours_avst/main_ours_avst.py +++ /dev/null @@ -1,282 +0,0 @@ -from __future__ import print_function -import sys -sys.path.append("/home/guangyao_li/projects/music_avqa/") -import argparse -import torch -import torch.nn as nn -import torch.optim as optim -from net_ours_avst.dataloader_ours_avst import * -from net_ours_avst.net import AVQA_Fusion_Net -import ast -import json -import numpy as np -import pdb - -import warnings -from datetime import datetime -TIMESTAMP = "{0:%Y-%m-%d-%H-%M-%S/}".format(datetime.now()) -warnings.filterwarnings('ignore') -from torch.utils.tensorboard import SummaryWriter -writer = SummaryWriter('runs/net_ours_avst/'+TIMESTAMP) - -print("\n--------------- ours audio-visual spatial-temporal model --------------- \n") - - -def batch_organize(out_match_posi, out_match_nega): - # audio [B 512] - # posi [B 512] - # nega [B 512] - - out_match = torch.zeros(out_match_posi.shape[0] * 2, out_match_posi.shape[1]) - batch_labels = torch.zeros(out_match_posi.shape[0] * 2) - for i in range(out_match_posi.shape[0]): - out_match[i * 2, :] = out_match_posi[i, :] - out_match[i * 2 + 1, :] = out_match_nega[i, :] - batch_labels[i * 2] = 1 - batch_labels[i * 2 + 1] = 0 - - return out_match, batch_labels - - -def train(args, model, train_loader, optimizer, criterion, epoch): - model.train() - total_qa = 0 - correct_qa = 0 - for batch_idx, sample in enumerate(train_loader): - audio,visual_posi,visual_nega, target, question = sample['audio'].to('cuda'), sample['visual_posi'].to('cuda'),sample['visual_nega'].to('cuda'), sample['label'].to('cuda'), sample['question'].to('cuda') - - optimizer.zero_grad() - out_qa, out_match_posi, out_match_nega = model(audio, visual_posi,visual_nega, question) - out_match, match_label = batch_organize(out_match_posi,out_match_nega) - out_match, match_label = out_match.type(torch.FloatTensor).cuda(), match_label.type(torch.LongTensor).cuda() - - # output.clamp_(min=1e-7, max=1 - 1e-7) - loss_match=criterion(out_match,match_label) - loss_qa = criterion(out_qa, target) - - # _, predicted = torch.max(out_qa.data, 1) - # total_qa += out_qa.size(0) - # correct_qa += (predicted == target).sum().item() - # print("correct qa: ", 100 * correct_qa / total_qa) - loss = loss_qa + 0.5*loss_match - - writer.add_scalar('data/match',loss_match.item(), epoch * len(train_loader) + batch_idx) - writer.add_scalar('data/qa_test',loss_qa.item(), epoch * len(train_loader) + batch_idx) - writer.add_scalar('data/both',loss.item(), epoch * len(train_loader) + batch_idx) - - loss.backward() - optimizer.step() - if batch_idx % args.log_interval == 0: - print('Train Epoch: {} [{}/{} ({:.0f}%)]\tLoss: {:.6f}'.format( - epoch, batch_idx * len(audio), len(train_loader.dataset), - 100. * batch_idx / len(train_loader), loss.item())) - - -def eval(model, val_loader,epoch): - model.eval() - total_qa = 0 - total_match=0 - correct_qa = 0 - correct_match=0 - with torch.no_grad(): - for batch_idx, sample in enumerate(val_loader): - audio,visual_posi,visual_nega, target, question = sample['audio'].to('cuda'), sample['visual_posi'].to('cuda'),sample['visual_nega'].to('cuda'), sample['label'].to('cuda'), sample['question'].to('cuda') - - preds_qa, out_match_posi, out_match_nega = model(audio, visual_posi,visual_nega, question) - - _, predicted = torch.max(preds_qa.data, 1) - total_qa += preds_qa.size(0) - correct_qa += (predicted == target).sum().item() - - # _, predicted = torch.max(preds_match.data, 1) - # total_match += preds_match.size(0) - # correct_match += (predicted == match_label).sum().item() - - print('Accuracy qa: %.2f %%' % (100 * correct_qa / total_qa)) - writer.add_scalar('metric/acc_qa',100 * correct_qa / total_qa, epoch) - # print('Accuracy match: %.2f %%' % (100 * correct_match / total_match)) - # writer.add_scalar('metric/acc_match',100 * correct_match / total_match, epoch) - - return 100 * correct_qa / total_qa - - -def test(model, val_loader): - model.eval() - total = 0 - correct = 0 - samples = json.load(open('./data/json/avqa-test.json', 'r')) - A_count = [] - A_cmp = [] - V_count = [] - V_loc = [] - AV_ext = [] - AV_count = [] - AV_loc = [] - AV_cmp = [] - AV_temp = [] - with torch.no_grad(): - for batch_idx, sample in enumerate(val_loader): - audio,visual_posi,visual_nega, target, question = sample['audio'].to('cuda'), sample['visual_posi'].to('cuda'),sample['visual_nega'].to('cuda'), sample['label'].to('cuda'), sample['question'].to('cuda') - - preds_qa, out_match_posi, out_match_nega = model(audio, visual_posi,visual_nega, question) - preds = preds_qa - _, predicted = torch.max(preds.data, 1) - - total += preds.size(0) - correct += (predicted == target).sum().item() - - x = samples[batch_idx] - type =ast.literal_eval(x['type']) - if type[0] == 'Audio': - if type[1] == 'Counting': - A_count.append((predicted == target).sum().item()) - elif type[1] == 'Comparative': - A_cmp.append((predicted == target).sum().item()) - elif type[0] == 'Visual': - if type[1] == 'Counting': - V_count.append((predicted == target).sum().item()) - elif type[1] == 'Location': - V_loc.append((predicted == target).sum().item()) - elif type[0] == 'Audio-Visual': - if type[1] == 'Existential': - AV_ext.append((predicted == target).sum().item()) - elif type[1] == 'Counting': - AV_count.append((predicted == target).sum().item()) - elif type[1] == 'Location': - AV_loc.append((predicted == target).sum().item()) - elif type[1] == 'Comparative': - AV_cmp.append((predicted == target).sum().item()) - elif type[1] == 'Temporal': - AV_temp.append((predicted == target).sum().item()) - - print('Audio Counting Accuracy: %.2f %%' % ( - 100 * sum(A_count)/len(A_count))) - print('Audio Cmp Accuracy: %.2f %%' % ( - 100 * sum(A_cmp) / len(A_cmp))) - print('Audio Accuracy: %.2f %%' % ( - 100 * (sum(A_count) + sum(A_cmp)) / (len(A_count) + len(A_cmp)))) - print('Visual Counting Accuracy: %.2f %%' % ( - 100 * sum(V_count) / len(V_count))) - print('Visual Loc Accuracy: %.2f %%' % ( - 100 * sum(V_loc) / len(V_loc))) - print('Visual Accuracy: %.2f %%' % ( - 100 * (sum(V_count) + sum(V_loc)) / (len(V_count) + len(V_loc)))) - print('AV Ext Accuracy: %.2f %%' % ( - 100 * sum(AV_ext) / len(AV_ext))) - print('AV counting Accuracy: %.2f %%' % ( - 100 * sum(AV_count) / len(AV_count))) - print('AV Loc Accuracy: %.2f %%' % ( - 100 * sum(AV_loc) / len(AV_loc))) - print('AV Cmp Accuracy: %.2f %%' % ( - 100 * sum(AV_cmp) / len(AV_cmp))) - print('AV Temporal Accuracy: %.2f %%' % ( - 100 * sum(AV_temp) / len(AV_temp))) - - print('AV Accuracy: %.2f %%' % ( - 100 * (sum(AV_count) + sum(AV_loc)+sum(AV_ext)+sum(AV_temp) - +sum(AV_cmp)) / (len(AV_count) + len(AV_loc)+len(AV_ext)+len(AV_temp)+len(AV_cmp)))) - - print('Overall Accuracy: %.2f %%' % ( - 100 * correct / total)) - - return 100 * correct / total - -def main(): - # Training settings - parser = argparse.ArgumentParser(description='PyTorch Implementation of Audio-Visual Question Answering') - - parser.add_argument( - "--audio_dir", type=str, default='./data/feats/vggish', help="audio dir") - parser.add_argument( - "--video_dir", type=str, default='./data/frames', help="video dir") - parser.add_argument( - "--st_dir", type=str, default='./data/feats/r2plus1d_18', help="video dir") - - - parser.add_argument( - "--label_train", type=str, default="./data/json/avqa-train.json", help="train csv file") - parser.add_argument( - "--label_val", type=str, default="./data/json/avqa-val.json", help="val csv file") - parser.add_argument( - "--label_test", type=str, default="./data/json/avqa-test.json", help="test csv file") - parser.add_argument( - '--batch-size', type=int, default=64, metavar='N', help='input batch size for training (default: 16)') - parser.add_argument( - '--epochs', type=int, default=20, metavar='N', help='number of epochs to train (default: 60)') - parser.add_argument( - '--lr', type=float, default=1e-4, metavar='LR', help='learning rate (default: 3e-4)') - parser.add_argument( - "--model", type=str, default='AVQA_Fusion_Net', help="with model to use") - parser.add_argument( - "--mode", type=str, default='train', help="with mode to use") - parser.add_argument( - '--seed', type=int, default=1, metavar='S', help='random seed (default: 1)') - parser.add_argument( - '--log-interval', type=int, default=50, metavar='N', help='how many batches to wait before logging training status') - parser.add_argument( - "--model_save_dir", type=str, default='./net_ours-avst/models_ours_avst/', help="model save dir") - parser.add_argument( - "--checkpoint", type=str, default='models_ours_avst', help="save model name") - parser.add_argument( - '--gpu', type=str, default='0, 1', help='gpu device number') - - - args = parser.parse_args() - os.environ['CUDA_VISIBLE_DEVICES'] = args.gpu - torch.manual_seed(args.seed) - - if args.model == 'AVQA_Fusion_Net': - model = AVQA_Fusion_Net() - model = nn.DataParallel(model) - model = model.to('cuda') - - else: - raise ('not recognized') - - if args.mode == 'train': - train_dataset = AVQA_dataset(label=args.label_train, audio_dir=args.audio_dir, video_dir=args.video_dir, st_dir=args.st_dir, transform=transforms.Compose([ToTensor()]), mode_flag='train') - train_loader = DataLoader(train_dataset, batch_size=args.batch_size, shuffle=True, num_workers=1, pin_memory=True) - val_dataset = AVQA_dataset(label=args.label_val, audio_dir=args.audio_dir, video_dir=args.video_dir, st_dir=args.st_dir, transform=transforms.Compose([ToTensor()]), mode_flag='val') - val_loader = DataLoader(val_dataset, batch_size=1, shuffle=False, num_workers=1, pin_memory=True) - - - # ===================================== load pretrained model =============================================== - pretrained_file = "./grounding_gen/models_grounding_gen/main_grounding_gen_best.pt" - checkpoint = torch.load(pretrained_file) - print("\n-------------- loading pretrained models --------------") - model_dict = model.state_dict() - tmp = ['module.fc_a1.weight', 'module.fc_a1.bias','module.fc_a2.weight','module.fc_a2.bias','module.fc_gl.weight','module.fc_gl.bias','module.fc1.weight', 'module.fc1.bias','module.fc2.weight', 'module.fc2.bias','module.fc3.weight', 'module.fc3.bias','module.fc4.weight', 'module.fc4.bias'] - tmp2 = ['module.fc_a1.weight', 'module.fc_a1.bias','module.fc_a2.weight','module.fc_a2.bias'] - pretrained_dict1 = {k: v for k, v in checkpoint.items() if k in tmp} - pretrained_dict2 = {str(k).split('.')[0]+'.'+str(k).split('.')[1]+'_pure.'+str(k).split('.')[-1]: v for k, v in checkpoint.items() if k in tmp2} - - model_dict.update(pretrained_dict1) #利用预训练模型的参数,更新模型 - model_dict.update(pretrained_dict2) #利用预训练模型的参数,更新模型 - model.load_state_dict(model_dict) - - print("\n-------------- load pretrained models finished --------------") - - # ===================================== load pretrained model =============================================== - - optimizer = optim.Adam(model.parameters(), lr=args.lr) - scheduler = optim.lr_scheduler.StepLR(optimizer, step_size=8, gamma=0.1) - criterion = nn.CrossEntropyLoss() - best_F = 0 - for epoch in range(1, args.epochs + 1): - train(args, model, train_loader, optimizer, criterion, epoch=epoch) - scheduler.step(epoch) - F = eval(model, val_loader, epoch) - if F >= best_F: - best_F = F - torch.save(model.state_dict(), args.model_save_dir + args.checkpoint + ".pt") - - else: - test_dataset = AVQA_dataset(label=args.label_test, audio_dir=args.audio_dir, video_dir=args.video_dir, st_dir=args.st_dir, transform=transforms.Compose([ToTensor()]), mode_flag='test') - print(test_dataset.__len__()) - test_loader = DataLoader(test_dataset, batch_size=1, shuffle=False, num_workers=4, pin_memory=True) - model.load_state_dict(torch.load(args.model_save_dir + args.checkpoint + ".pt")) - test(model, test_loader) - - -if __name__ == '__main__': - main() \ No newline at end of file diff --git a/net_ours_avst/net_ours_avst.py b/net_ours_avst/net_ours_avst.py deleted file mode 100644 index 31b7d78..0000000 --- a/net_ours_avst/net_ours_avst.py +++ /dev/null @@ -1,226 +0,0 @@ -import torch -import torchvision.models as models -import torch.nn as nn -import torch.nn.functional as F -import numpy as np -from visual_net import resnet18 - - -def batch_organize(out_match_posi, out_match_nega): - # audio [B 512] - # posi [B 512] - # nega [B 512] - - out_match = torch.zeros(out_match_posi.shape[0] * 2, out_match_posi.shape[1]) - batch_labels = torch.zeros(out_match_posi.shape[0] * 2) - for i in range(out_match_posi.shape[0]): - out_match[i * 2, :] = out_match_posi[i, :] - out_match[i * 2 + 1, :] = out_match_nega[i, :] - batch_labels[i * 2] = 1 - batch_labels[i * 2 + 1] = 0 - - return out_match, batch_labels - - -# Question Encoder -class QstEncoder(nn.Module): - - def __init__(self, qst_vocab_size, word_embed_size, embed_size, num_layers, hidden_size): - - super(QstEncoder, self).__init__() - self.word2vec = nn.Embedding(qst_vocab_size, word_embed_size) - self.tanh = nn.Tanh() - self.lstm = nn.LSTM(word_embed_size, hidden_size, num_layers) - self.fc = nn.Linear(2*num_layers*hidden_size, embed_size) # 2 for hidden and cell states - - def forward(self, question): - - qst_vec = self.word2vec(question) # [batch_size, max_qst_length=30, word_embed_size=300] - qst_vec = self.tanh(qst_vec) - qst_vec = qst_vec.transpose(0, 1) # [max_qst_length=30, batch_size, word_embed_size=300] - self.lstm.flatten_parameters() - _, (hidden, cell) = self.lstm(qst_vec) # [num_layers=2, batch_size, hidden_size=512] - qst_feature = torch.cat((hidden, cell), 2) # [num_layers=2, batch_size, 2*hidden_size=1024] - qst_feature = qst_feature.transpose(0, 1) # [batch_size, num_layers=2, 2*hidden_size=1024] - qst_feature = qst_feature.reshape(qst_feature.size()[0], -1) # [batch_size, 2*num_layers*hidden_size=2048] - qst_feature = self.tanh(qst_feature) - qst_feature = self.fc(qst_feature) # [batch_size, embed_size] - - return qst_feature - - -class AVQA_Fusion_Net(nn.Module): - - def __init__(self): - super(AVQA_Fusion_Net, self).__init__() - - # audio - self.fc_a1 = nn.Linear(128, 512) - self.fc_a2 = nn.Linear(512,512) - self.fc_a1_pure = nn.Linear(128, 512) - self.fc_a2_pure = nn.Linear(512,512) - - # visual - self.visual_net = resnet18(pretrained=True) - self.fc_v = nn.Linear(2048, 512) - self.fc_st = nn.Linear(512, 512) - self.fc_fusion = nn.Linear(1024, 512) - self.fc = nn.Linear(1024, 512) - - self.fc_aq = nn.Linear(512, 512) - self.fc_vq = nn.Linear(512, 512) - - self.linear11 = nn.Linear(512, 512) - self.dropout1 = nn.Dropout(0.1) - self.linear12 = nn.Linear(512, 512) - - self.linear21 = nn.Linear(512, 512) - self.dropout2 = nn.Dropout(0.1) - self.linear22 = nn.Linear(512, 512) - self.norm1 = nn.LayerNorm(512) - self.norm2 = nn.LayerNorm(512) - self.dropout3 = nn.Dropout(0.1) - self.dropout4 = nn.Dropout(0.1) - self.norm3 = nn.LayerNorm(512) - - self.attn_a = nn.MultiheadAttention(512, 4, dropout=0.1) - self.attn_v = nn.MultiheadAttention(512, 4, dropout=0.1) - - # question - self.question_encoder = QstEncoder(93, 512, 512, 1, 512) - - self.tanh = nn.Tanh() - self.dropout = nn.Dropout(0.5) - self.fc_ans = nn.Linear(512, 42) - - self.avgpool = nn.AdaptiveAvgPool2d((1, 1)) - self.fc_gl = nn.Linear(1024,512) - - # combine - self.fusion_fc1 = nn.Linear(1024, 512) - self.relu1 = nn.ReLU() - self.fusion_fc2 = nn.Linear(512, 256) - self.relu2 = nn.ReLU() - self.fusion_fc3 = nn.Linear(256, 128) - self.relu3 = nn.ReLU() - self.fusion_fc4 = nn.Linear(128, 2) - self.relu4 = nn.ReLU() - - - def forward(self, audio, visual_posi, visual_nega, question): - - ## question features - # question feat input shape: [B, T, C] - qst_feature = self.question_encoder(question) - xq = qst_feature.unsqueeze(0) - - ## audio features - # audio feat input shape: [2*B*T, 128] - audio_feat = F.relu(self.fc_a1(audio)) - audio_feat = self.fc_a2(audio_feat) - audio_feat_pure = audio_feat - B, T, C = audio_feat.size() - audio_feat = audio_feat.view(B*T, C) # [B*T, C] - - - # ============================== vsiaul posi feat start ============================== - # visual posi shape: [2*B*T, 512, 14, 14] - B, T, C, H, W = visual_posi.size() - temp_visual = visual_posi.view(B*T, C, H, W) - v_feat = self.avgpool(temp_visual) - visual_feat_before_grounding_posi = v_feat.squeeze() # [B*T, C] - - (B, C, H, W) = temp_visual.size() - v_feat = temp_visual.view(B, C, H * W) # [B*T, C, HxW] - v_feat = v_feat.permute(0, 2, 1) # [B, HxW, C] - visual_feat_posi = nn.functional.normalize(v_feat, dim=2) - - ## audio-visual grounding positive - audio_feat_aa = audio_feat.unsqueeze(-1) # [320, 512, 1] - audio_feat_aa = nn.functional.normalize(audio_feat_aa, dim=1) - x2_va = torch.matmul(visual_feat_posi, audio_feat_aa).squeeze() - - x2_p = F.softmax(x2_va, dim=-1).unsqueeze(-2) # [320, 1, 196] - visual_feat_grd = torch.matmul(x2_p, visual_feat_posi) - visual_feat_grd_after_grounding_posi = visual_feat_grd.squeeze() # [320, 512] - - visual_gl = torch.cat((visual_feat_before_grounding_posi, visual_feat_grd_after_grounding_posi),dim=-1) - visual_feat_grd = self.tanh(visual_gl) - visual_feat_grd_posi = self.fc_gl(visual_feat_grd) # [B*T, 512] - - # combine audio and visual - feat = torch.cat((audio_feat, visual_feat_grd_posi), dim=-1) # [320, 1024] - feat = F.relu(self.fusion_fc1(feat)) # (1024, 512) - feat = F.relu(self.fusion_fc2(feat)) # (512, 256) - feat = F.relu(self.fusion_fc3(feat)) # (256, 128) - out_match_posi = self.fusion_fc4(feat) # (128, 2) - - # ============================== vsiaul positive feat end ============================== - - - # ============================== vsiaul negative feat start ============================== - # visual nega shape: - B, T, C, H, W = visual_nega.size() - temp_visual = visual_nega.view(B*T,C,H,W) - v_feat = self.avgpool(temp_visual) - visual_feat_before_grounding_nega = v_feat.squeeze() # [B*T, 512] - - (B, C, H, W) = temp_visual.size() - v_feat = temp_visual.view(B, C, H * W) # [B*T, C, HxW] - v_feat = v_feat.permute(0, 2, 1) # [B, HxW, C] - visual_feat_nega = nn.functional.normalize(v_feat, dim=2) - - # audio-visual grounding negative - x2_va = torch.matmul(visual_feat_nega, audio_feat_aa).squeeze() - - x2_p = F.softmax(x2_va, dim=-1).unsqueeze(-2) # [320, 1, 196] - visual_feat_grd = torch.matmul(x2_p, visual_feat_nega) - visual_feat_grd_after_grounding_nega = visual_feat_grd.squeeze() # [320, 512] - - visual_gl = torch.cat((visual_feat_before_grounding_nega,visual_feat_grd_after_grounding_nega),dim=-1) - visual_feat_grd = self.tanh(visual_gl) - visual_feat_grd_nega = self.fc_gl(visual_feat_grd) # [B*T 512] - - #audio_all,visual_all,match_label=batch_organize(audio_feat,visual_feat_grd_posi,visual_feat_grd_nega) - - # combine audio and visual - feat = torch.cat((audio_feat, visual_feat_grd_nega), dim=-1) # [320, 1024] - feat = F.relu(self.fusion_fc1(feat)) # (1024, 512) - feat = F.relu(self.fusion_fc2(feat)) # (512, 256) - feat = F.relu(self.fusion_fc3(feat)) # (256, 128) - out_match_nega = self.fusion_fc4(feat) # (128, 2) - - # ============================== vsiaul negative feat start ============================== - - # out_match=None - # match_label=None - - B = xq.shape[1] - visual_feat_grd_be = visual_feat_grd_posi.view(B, -1, 512) # [B, T, 512] - visual_feat_grd = visual_feat_grd_be.permute(1,0,2) - - # attention, question as query on visual_feat_grd - visual_feat_att = self.attn_v(xq, visual_feat_grd, visual_feat_grd, attn_mask=None, key_padding_mask=None)[0].squeeze(0) - src = self.linear12(self.dropout1(F.relu(self.linear11(visual_feat_att)))) - visual_feat_att = visual_feat_att + self.dropout2(src) - visual_feat_att = self.norm1(visual_feat_att) - - # attention, question as query on audio - audio_feat_be=audio_feat_pure.view(B, -1, 512) - audio_feat = audio_feat_be.permute(1, 0, 2) - audio_feat_att = self.attn_a(xq, audio_feat, audio_feat, attn_mask=None,key_padding_mask=None)[0].squeeze(0) - src = self.linear22(self.dropout3(F.relu(self.linear21(audio_feat_att)))) - audio_feat_att = audio_feat_att + self.dropout4(src) - audio_feat_att = self.norm2(audio_feat_att) - - # fusion - feat = torch.cat((audio_feat_att+audio_feat_be.mean(dim=-2).squeeze(), visual_feat_att+visual_feat_grd_be.mean(dim=-2).squeeze()), dim=-1) - feat = self.tanh(feat) - feat = self.fc_fusion(feat) - - # fusion with question - combined_feature = torch.mul(feat, qst_feature) - combined_feature = self.tanh(combined_feature) - out_qa = self.fc_ans(combined_feature) # [batch_size, ans_vocab_size] - - return out_qa, out_match_posi,out_match_nega diff --git a/static/css/agency.css b/static/css/agency.css new file mode 100644 index 0000000..eb24d8d --- /dev/null +++ b/static/css/agency.css @@ -0,0 +1,757 @@ +body { + overflow-x: hidden; + font-family: 'Roboto Slab', 'Helvetica Neue', Helvetica, Arial, sans-serif; +} + +p { + line-height: 1.75; +} + +a { + color: #ed323e; +} + +a:hover { + color: #00b6d6; + text-decoration: none; +} + +.text-primary { + color: #ed323e !important; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + font-weight: 700; + font-family: 'Roboto Slab', 'Helvetica Neue', Helvetica, Arial, sans-serif; +} + +section { + padding: 50px 0; +} + +section h2.section-heading { + font-size: 40px; + margin-top: 0; + margin-bottom: 15px; +} + +section h3.section-subheading { + font-size: 16px; + font-weight: 400; + margin-bottom: 75px; + text-transform: none; + font-family: 'Roboto Slab', 'Helvetica Neue', Helvetica, Arial, sans-serif;/*'Vollkorn', sans-serif;*/ +} + + +section h3.section-subheading2 { + font-size: 16px; + font-weight: 400; + margin-left: 0px + margin-bottom: 75px; + text-transform: none; + font-family: 'Roboto Slab', 'Helvetica Neue', Helvetica, Arial, sans-serif;/*'Vollkorn', sans-serif;*/ +} + + +@media (min-width: 768px) { + section { + padding: 50px 0; + } +} + +.btn { + font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif; + font-weight: 700; +} + +.btn-xl { + font-size: 18px; + padding: 20px 40px; +} + +.btn-primary { + background-color: #ed323e; + border-color: #ed323e; +} + +.btn-primary:active, .btn-primary:focus, .btn-primary:hover { + background-color: rgb(237,50,35) !important; + border-color: rgb(237,50,35) !important; + color: white; +} + +.btn-primary:active, .btn-primary:focus { + box-shadow: 0 0 0 0.2rem rgba(254, 209, 55, 0.5) !important; +} + +::-moz-selection, ::selection { + background: #00b6d6; + text-shadow: none; +} + +.text-muted::-moz-selection, .text-muted::selection { + color: white; +} + + +img::selection { + background: transparent; +} + +img::-moz-selection { + background: transparent; +} + +#mainNav { + background-color: #373435; +} + +#mainNav .navbar-toggler { + font-size: 12px; + right: 0; + padding: 13px; + text-transform: uppercase; + color: white; + border: 0; + background-color: rgb(55,52,53); + font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif; +} + +#mainNav .navbar-brand { + color: #ed323e; + font-family: 'Kaushan Script', 'Helvetica Neue', Helvetica, Arial, cursive; +} + +#mainNav .navbar-brand.active, #mainNav .navbar-brand:active, #mainNav .navbar-brand:focus, #mainNav .navbar-brand:hover { + color: #fec503; +} + +#mainNav .navbar-nav .nav-item .nav-link { + font-size: 90%; + font-weight: 400; + padding: 0.75em 0; + letter-spacing: 1px; + color: white; + font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif; +} + +#mainNav .navbar-nav .nav-item .nav-link.active, #mainNav .navbar-nav .nav-item .nav-link:hover { + color: #ed323e; +} + +@media (min-width: 992px) { + #mainNav { + padding-top: 25px; + padding-bottom: 25px; + -webkit-transition: padding-top 0.3s, padding-bottom 0.3s; + -moz-transition: padding-top 0.3s, padding-bottom 0.3s; + transition: padding-top 0.3s, padding-bottom 0.3s; + border: none; + background-color: transparent; + } + #mainNav .navbar-brand { + font-size: 1.75em; + -webkit-transition: all 0.3s; + -moz-transition: all 0.3s; + transition: all 0.3s; + } + + #mainNav .navbar-nav .nav-item .nav-link { + padding: 1.1em 1em !important; + } + #mainNav.navbar-shrink { + padding-top: 0; + padding-bottom: 0; + background-color: #373435; + } + #mainNav.navbar-shrink .navbar-brand { + font-size: 1.25em; + padding: 12px 0; + } +} + +header.masthead { + text-align: center; + color: white; + background-image: url("../img/stavqa-top_w.png"); + background-repeat: no-repeat; + background-attachment: scroll; + background-position: center center; + -webkit-background-size: cover; + -moz-background-size: cover; + -o-background-size: cover; + background-size: cover; +} + +header.masthead .intro-text { + padding-top: 150px; + padding-bottom: 100px; +} + +header.masthead .intro-text .intro-lead-in { + font-size: 22px; + //font-style: italic; + line-height: 22px; + margin-bottom: 25px; + font-family: 'Droid Serif', 'Helvetica Neue', Helvetica, Arial, sans-serif; +} + +header.masthead .intro-text .intro-heading { + font-size: 50px; + font-weight: 700; + line-height: 50px; + margin-bottom: 25px; + font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif; +} + +@media (min-width: 768px) { + header.masthead .intro-text { + padding-top: 200px; + padding-bottom: 110px; + } + header.masthead .intro-text .intro-lead-in { + font-size: 40px; + //font-style: italic; + line-height: 40px; + margin-bottom: 25px; + font-family: 'Droid Serif', 'Helvetica Neue', Helvetica, Arial, sans-serif; + } + header.masthead .intro-text .intro-heading { + font-size: 75px; + font-weight: 700; + line-height: 75px; + margin-bottom: 50px; + font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif; + } +} + +.service-heading { + margin: 15px 0; + text-transform: none; +} + +#portfolio .portfolio-item { + right: 0; + margin: 0 0 15px; +} + +#portfolio .portfolio-item .portfolio-link { + position: relative; + display: block; + max-width: 400px; + margin: 0 auto; + cursor: pointer; +} + +#portfolio .portfolio-item .portfolio-link .portfolio-hover { + position: absolute; + width: 100%; + height: 100%; + -webkit-transition: all ease 0.5s; + -moz-transition: all ease 0.5s; + transition: all ease 0.5s; + opacity: 0; + background: rgba(254, 209, 54, 0.9); +} + +#portfolio .portfolio-item .portfolio-link .portfolio-hover:hover { + opacity: 1; +} + +#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content { + font-size: 20px; + position: absolute; + top: 50%; + width: 100%; + height: 20px; + margin-top: -12px; + text-align: center; + color: white; +} + +#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content i { + margin-top: -12px; +} + +#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content h3, +#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content h4 { + margin: 0; +} + +#portfolio .portfolio-item .portfolio-caption { + max-width: 400px; + margin: 0 auto; + padding: 25px; + text-align: center; + background-color: #fff; +} + +#portfolio .portfolio-item .portfolio-caption h4 { + margin: 0; + text-transform: none; +} + +#portfolio .portfolio-item .portfolio-caption p { + font-size: 16px; + //font-style: italic; + margin: 0; + font-family: 'Droid Serif', 'Helvetica Neue', Helvetica, Arial, sans-serif; +} + +#portfolio * { + z-index: 2; +} + +@media (min-width: 767px) { + #portfolio .portfolio-item { + margin: 0 0 30px; + } +} + +.portfolio-modal { + padding-right: 0px !important; +} + +.portfolio-modal .modal-dialog { + margin: 1rem; + max-width: 100vw; +} + +.portfolio-modal .modal-content { + padding: 100px 0; + text-align: center; +} + +.portfolio-modal .modal-content h2 { + font-size: 3em; + margin-bottom: 15px; +} + +.portfolio-modal .modal-content p { + margin-bottom: 30px; +} + +.portfolio-modal .modal-content p.item-intro { + font-size: 16px; + //font-style: italic; + margin: 20px 0 30px; + font-family: 'Droid Serif', 'Helvetica Neue', Helvetica, Arial, sans-serif; +} + +.portfolio-modal .modal-content ul.list-inline { + margin-top: 0; + margin-bottom: 30px; +} + +.portfolio-modal .modal-content img { + margin-bottom: 30px; +} + +.portfolio-modal .modal-content button { + cursor: pointer; +} + +.portfolio-modal .close-modal { + position: absolute; + top: 25px; + right: 25px; + width: 75px; + height: 75px; + cursor: pointer; + background-color: transparent; +} + +.portfolio-modal .close-modal:hover { + opacity: 0.3; +} + +.portfolio-modal .close-modal .lr { + /* Safari and Chrome */ + z-index: 1051; + width: 1px; + height: 75px; + margin-left: 35px; + /* IE 9 */ + -webkit-transform: rotate(45deg); + -ms-transform: rotate(45deg); + transform: rotate(45deg); + background-color: #212529; +} + +.portfolio-modal .close-modal .lr .rl { + /* Safari and Chrome */ + z-index: 1052; + width: 1px; + height: 75px; + /* IE 9 */ + -webkit-transform: rotate(90deg); + -ms-transform: rotate(90deg); + transform: rotate(90deg); + background-color: #212529; +} + +.timeline { + position: relative; + padding: 0; + list-style: none; +} + +.timeline:before { + position: absolute; + top: 0; + bottom: 0; + left: 40px; + width: 2px; + margin-left: -1.5px; + content: ''; + background-color: #e9ecef; +} + +.timeline > li { + position: relative; + min-height: 50px; + margin-bottom: 50px; +} + +.timeline > li:after, .timeline > li:before { + display: table; + content: ' '; +} + +.timeline > li:after { + clear: both; +} + +.timeline > li .timeline-panel { + position: relative; + float: right; + width: 100%; + padding: 0 20px 0 100px; + text-align: left; +} + +.timeline > li .timeline-panel:before { + right: auto; + left: -15px; + border-right-width: 15px; + border-left-width: 0; +} + +.timeline > li .timeline-panel:after { + right: auto; + left: -14px; + border-right-width: 14px; + border-left-width: 0; +} + +.timeline > li .timeline-image { + position: absolute; + z-index: 100; + left: 0; + width: 80px; + height: 80px; + margin-left: 0; + text-align: center; + color: white; + border: 7px solid #e9ecef; + border-radius: 100%; + background-color: #ed323e; +} + +.timeline > li .timeline-image h4 { + font-size: 10px; + line-height: 14px; + margin-top: 12px; +} + +.timeline > li.timeline-inverted > .timeline-panel { + float: right; + padding: 0 20px 0 100px; + text-align: left; +} + +.timeline > li.timeline-inverted > .timeline-panel:before { + right: auto; + left: -15px; + border-right-width: 15px; + border-left-width: 0; +} + +.timeline > li.timeline-inverted > .timeline-panel:after { + right: auto; + left: -14px; + border-right-width: 14px; + border-left-width: 0; +} + +.timeline > li:last-child { + margin-bottom: 0; +} + +.timeline .timeline-heading h4 { + margin-top: 0; + color: inherit; +} + +.timeline .timeline-heading h4.subheading { + text-transform: none; +} + +.timeline .timeline-body > ul, +.timeline .timeline-body > p { + margin-bottom: 0; +} + +@media (min-width: 768px) { + .timeline:before { + left: 50%; + } + .timeline > li { + min-height: 100px; + margin-bottom: 100px; + } + .timeline > li .timeline-panel { + float: left; + width: 41%; + padding: 0 20px 20px 30px; + text-align: right; + } + .timeline > li .timeline-image { + left: 50%; + width: 100px; + height: 100px; + margin-left: -50px; + } + .timeline > li .timeline-image h4 { + font-size: 13px; + line-height: 18px; + margin-top: 16px; + } + .timeline > li.timeline-inverted > .timeline-panel { + float: right; + padding: 0 30px 20px 20px; + text-align: left; + } +} + +@media (min-width: 992px) { + .timeline > li { + min-height: 150px; + } + .timeline > li .timeline-panel { + padding: 0 20px 20px; + } + .timeline > li .timeline-image { + width: 150px; + height: 150px; + margin-left: -75px; + } + .timeline > li .timeline-image h4 { + font-size: 18px; + line-height: 26px; + margin-top: 30px; + } + .timeline > li.timeline-inverted > .timeline-panel { + padding: 0 20px 20px; + } +} + +@media (min-width: 1200px) { + .timeline > li { + min-height: 170px; + } + .timeline > li .timeline-panel { + padding: 0 20px 20px 100px; + } + .timeline > li .timeline-image { + width: 170px; + height: 170px; + margin-left: -85px; + } + .timeline > li .timeline-image h4 { + margin-top: 40px; + } + .timeline > li.timeline-inverted > .timeline-panel { + padding: 0 100px 20px 20px; + } +} + +.team-member { + margin-bottom: 50px; + text-align: center; +} + +.team-member img { + width: 225px; + height: 225px; + border: 7px solid #fff; +} + +.team-member h4 { + margin-top: 25px; + margin-bottom: 0; + text-transform: none; +} + +.team-member p { + margin-top: 0; +} + +section#contact { + background-color: #212529; + background-image: url("../img/map-image.png"); + background-repeat: no-repeat; + background-position: center; +} + +section#contact .section-heading { + color: #fff; +} + +section#contact .form-group { + margin-bottom: 25px; +} + +section#contact .form-group input, +section#contact .form-group textarea { + padding: 20px; +} + +section#contact .form-group input.form-control { + height: auto; +} + +section#contact .form-group textarea.form-control { + height: 248px; +} + +section#contact .form-control:focus { + border-color: #ed323e; + box-shadow: none; +} + +section#contact ::-webkit-input-placeholder { + font-weight: 700; + color: #ced4da; + font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif; +} + +section#contact :-moz-placeholder { + font-weight: 700; + color: #ced4da; + /* Firefox 18- */ + font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif; +} + +section#contact ::-moz-placeholder { + font-weight: 700; + color: #ced4da; + /* Firefox 19+ */ + font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif; +} + +section#contact :-ms-input-placeholder { + font-weight: 700; + color: #ced4da; + font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif; +} + +footer { + padding: 25px 0; + text-align: center; +} + +footer span.copyright { + font-size: 90%; + line-height: 40px; + text-transform: none; + font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif; +} + +footer ul.quicklinks { + font-size: 90%; + line-height: 40px; + margin-bottom: 0; + text-transform: none; + font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif; +} + +ul.social-buttons { + margin-bottom: 0; +} + +ul.social-buttons li a { + font-size: 20px; + line-height: 40px; + display: block; + width: 40px; + height: 40px; + -webkit-transition: all 0.3s; + -moz-transition: all 0.3s; + transition: all 0.3s; + color: white; + border-radius: 100%; + outline: none; + background-color: #212529; +} + +ul.social-buttons li a:active, ul.social-buttons li a:focus, ul.social-buttons li a:hover { + background-color: #ed323e; +} + +.bibtex { + white-space: pre-wrap; + padding: 0.2em; + word-wrap: break-word; + overflow: auto; + background: solid; + background-color: #E6E7E8; + border-radius: 0.3em; +} + +.sample-annotation { + white-space: pre-wrap; + padding: 0.2em; + word-wrap: break-word; + overflow: auto; + background: solid; + background-color: #E6E7E8; + border-radius: 0.3em; +} + +.json-key { + color: #F54E4E; +} + +section.challenge { + padding: 0; + margin-top: 1em; + margin-bottom: 2em; +} + +@media (min-width: 768px) { + section.challenge img { + padding: 1em; + + } +} + +i.fas { + padding-bottom: 0.5em; +} + +.details { + padding-top: 2em; + padding-left: 1em; + padding-right: 1em; + padding-bottom: 2em; + +} + + diff --git a/static/data/bar-data.csv b/static/data/bar-data.csv new file mode 100644 index 0000000..31e5919 --- /dev/null +++ b/static/data/bar-data.csv @@ -0,0 +1,15 @@ +date,value +01-13,53 +02-13,165 +03-13,269 +04-13,344 +05-13,376 +06-13,410 +07-13,421 +08-13,405 +09-13,376 +10-13,359 +11-13,392 +12-13,433 +01-14,455 +02-14,478 \ No newline at end of file diff --git a/static/files/MUSIC-AVQA-poster.pdf b/static/files/MUSIC-AVQA-poster.pdf new file mode 100644 index 0000000..21a2c10 Binary files /dev/null and b/static/files/MUSIC-AVQA-poster.pdf differ diff --git a/static/files/MUSIC-AVQA-supp.pdf b/static/files/MUSIC-AVQA-supp.pdf new file mode 100644 index 0000000..ed5c7e8 Binary files /dev/null and b/static/files/MUSIC-AVQA-supp.pdf differ diff --git a/static/files/MUSIC-AVQA.pdf b/static/files/MUSIC-AVQA.pdf new file mode 100644 index 0000000..bab2c23 Binary files /dev/null and b/static/files/MUSIC-AVQA.pdf differ diff --git a/static/img/avqa/avqa_teaser.png b/static/img/avqa/avqa_teaser.png new file mode 100644 index 0000000..7ab29d9 Binary files /dev/null and b/static/img/avqa/avqa_teaser.png differ diff --git a/figs/exp1.png b/static/img/experiments/exp1.png similarity index 100% rename from figs/exp1.png rename to static/img/experiments/exp1.png diff --git a/figs/exp2.png b/static/img/experiments/exp2.png similarity index 100% rename from figs/exp2.png rename to static/img/experiments/exp2.png diff --git a/figs/framework.png b/static/img/experiments/framework_pipeline.png similarity index 100% rename from figs/framework.png rename to static/img/experiments/framework_pipeline.png diff --git a/static/img/experiments/framework_pipeline.svg b/static/img/experiments/framework_pipeline.svg new file mode 100644 index 0000000..974a974 --- /dev/null +++ b/static/img/experiments/framework_pipeline.svg @@ -0,0 +1,3 @@ + + + diff --git a/static/img/experiments/framework_pipeline_long.png b/static/img/experiments/framework_pipeline_long.png new file mode 100644 index 0000000..e4707b1 Binary files /dev/null and b/static/img/experiments/framework_pipeline_long.png differ diff --git a/figs/visualize.png b/static/img/experiments/visualize1.png similarity index 100% rename from figs/visualize.png rename to static/img/experiments/visualize1.png diff --git a/static/img/experiments/visualize2.png b/static/img/experiments/visualize2.png new file mode 100644 index 0000000..db1628c Binary files /dev/null and b/static/img/experiments/visualize2.png differ diff --git a/static/img/experiments/visualize3.png b/static/img/experiments/visualize3.png new file mode 100644 index 0000000..867dc47 Binary files /dev/null and b/static/img/experiments/visualize3.png differ diff --git a/static/img/logo/cn.png b/static/img/logo/cn.png new file mode 100644 index 0000000..78b87cc Binary files /dev/null and b/static/img/logo/cn.png differ diff --git a/static/img/logo/cn_ruc_logo.png b/static/img/logo/cn_ruc_logo.png new file mode 100644 index 0000000..0a24618 Binary files /dev/null and b/static/img/logo/cn_ruc_logo.png differ diff --git a/static/img/logo/music-avqa-logo-2.png b/static/img/logo/music-avqa-logo-2.png new file mode 100644 index 0000000..98036d3 Binary files /dev/null and b/static/img/logo/music-avqa-logo-2.png differ diff --git a/static/img/logo/music-avqa-logo.png b/static/img/logo/music-avqa-logo.png new file mode 100644 index 0000000..8870dd8 Binary files /dev/null and b/static/img/logo/music-avqa-logo.png differ diff --git a/static/img/logo/ruc_blank.png b/static/img/logo/ruc_blank.png new file mode 100644 index 0000000..3ff1f9f Binary files /dev/null and b/static/img/logo/ruc_blank.png differ diff --git a/static/img/map-image.png b/static/img/map-image.png new file mode 100644 index 0000000..a047a27 Binary files /dev/null and b/static/img/map-image.png differ diff --git a/static/img/profile/chengliangxu.jpg b/static/img/profile/chengliangxu.jpg new file mode 100644 index 0000000..a1499a3 Binary files /dev/null and b/static/img/profile/chengliangxu.jpg differ diff --git a/static/img/profile/dihu.png b/static/img/profile/dihu.png new file mode 100644 index 0000000..9a5e38d Binary files /dev/null and b/static/img/profile/dihu.png differ diff --git a/static/img/profile/guangyaoli.jpg b/static/img/profile/guangyaoli.jpg new file mode 100644 index 0000000..bddf91f Binary files /dev/null and b/static/img/profile/guangyaoli.jpg differ diff --git a/static/img/profile/jirongwen.jpg b/static/img/profile/jirongwen.jpg new file mode 100644 index 0000000..48bea86 Binary files /dev/null and b/static/img/profile/jirongwen.jpg differ diff --git a/static/img/profile/yakewei.jpg b/static/img/profile/yakewei.jpg new file mode 100644 index 0000000..6c26cec Binary files /dev/null and b/static/img/profile/yakewei.jpg differ diff --git a/static/img/profile/yapengtian.jpeg b/static/img/profile/yapengtian.jpeg new file mode 100644 index 0000000..d6000f7 Binary files /dev/null and b/static/img/profile/yapengtian.jpeg differ diff --git a/static/img/stats-figures/annotation_framework.png b/static/img/stats-figures/annotation_framework.png new file mode 100644 index 0000000..d504526 Binary files /dev/null and b/static/img/stats-figures/annotation_framework.png differ diff --git a/static/img/stats-figures/annotation_framework_long.png b/static/img/stats-figures/annotation_framework_long.png new file mode 100644 index 0000000..189116a Binary files /dev/null and b/static/img/stats-figures/annotation_framework_long.png differ diff --git a/static/img/stats-figures/comp_others.png b/static/img/stats-figures/comp_others.png new file mode 100644 index 0000000..bfc6131 Binary files /dev/null and b/static/img/stats-figures/comp_others.png differ diff --git a/static/img/stats-figures/matrix.png b/static/img/stats-figures/matrix.png new file mode 100644 index 0000000..49752b6 Binary files /dev/null and b/static/img/stats-figures/matrix.png differ diff --git a/figs/st_avqa_pairs.png b/static/img/stats-figures/st_avqa_pairs.png similarity index 100% rename from figs/st_avqa_pairs.png rename to static/img/stats-figures/st_avqa_pairs.png diff --git a/static/img/stats-figures/stat1.png b/static/img/stats-figures/stat1.png new file mode 100644 index 0000000..631a5d3 Binary files /dev/null and b/static/img/stats-figures/stat1.png differ diff --git a/static/img/stats-figures/stat2.png b/static/img/stats-figures/stat2.png new file mode 100644 index 0000000..d8fd31a Binary files /dev/null and b/static/img/stats-figures/stat2.png differ diff --git a/static/img/stats-figures/stat3.png b/static/img/stats-figures/stat3.png new file mode 100644 index 0000000..043e1cc Binary files /dev/null and b/static/img/stats-figures/stat3.png differ diff --git a/static/img/stavqa-top.png b/static/img/stavqa-top.png new file mode 100644 index 0000000..394cbe4 Binary files /dev/null and b/static/img/stavqa-top.png differ diff --git a/static/img/stavqa-top_w.png b/static/img/stavqa-top_w.png new file mode 100644 index 0000000..7f0b8c2 Binary files /dev/null and b/static/img/stavqa-top_w.png differ diff --git a/static/img/universities/rochester.png b/static/img/universities/rochester.png new file mode 100644 index 0000000..98aec2e Binary files /dev/null and b/static/img/universities/rochester.png differ diff --git a/static/img/universities/ruc.png b/static/img/universities/ruc.png new file mode 100644 index 0000000..8c054e3 Binary files /dev/null and b/static/img/universities/ruc.png differ diff --git a/static/img/universities/ruc_gsai.png b/static/img/universities/ruc_gsai.png new file mode 100644 index 0000000..0a24618 Binary files /dev/null and b/static/img/universities/ruc_gsai.png differ diff --git a/static/js/agency.js b/static/js/agency.js new file mode 100644 index 0000000..f2c686f --- /dev/null +++ b/static/js/agency.js @@ -0,0 +1,50 @@ +(function($) { + "use strict"; // Start of use strict + + // Smooth scrolling using jQuery easing + $('a.js-scroll-trigger[href*="#"]:not([href="#"])').click(function() { + if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') && location.hostname == this.hostname) { + var target = $(this.hash); + target = target.length ? target : $('[name=' + this.hash.slice(1) + ']'); + if (target.length) { + $('html, body').animate({ + scrollTop: (target.offset().top - 54) + }, 1000, "easeInOutExpo"); + return false; + } + } + }); + + // Closes responsive menu when a scroll trigger link is clicked + $('.js-scroll-trigger').click(function() { + $('.navbar-collapse').collapse('hide'); + }); + + // Activate scrollspy to add active class to navbar items on scroll + $('body').scrollspy({ + target: '#mainNav', + offset: 56 + }); + + // Collapse Navbar + var navbarCollapse = function() { + if ($("#mainNav").offset().top > 100) { + $("#mainNav").addClass("navbar-shrink"); + } else { + $("#mainNav").removeClass("navbar-shrink"); + } + }; + // Collapse now if page is not at top + navbarCollapse(); + // Collapse the navbar when page is scrolled + $(window).scroll(navbarCollapse); + + // Hide navbar when modals trigger + $('.portfolio-modal').on('show.bs.modal', function(e) { + $(".navbar").addClass("d-none"); + }) + $('.portfolio-modal').on('hidden.bs.modal', function(e) { + $(".navbar").removeClass("d-none"); + }) + +})(jQuery); // End of use strict diff --git a/static/js/agency.min.js b/static/js/agency.min.js new file mode 100644 index 0000000..76a4353 --- /dev/null +++ b/static/js/agency.min.js @@ -0,0 +1 @@ +!function(a){"use strict";a('a.js-scroll-trigger[href*="#"]:not([href="#"])').click(function(){if(location.pathname.replace(/^\//,"")==this.pathname.replace(/^\//,"")&&location.hostname==this.hostname){var o=a(this.hash);if((o=o.length?o:a("[name="+this.hash.slice(1)+"]")).length)return a("html, body").animate({scrollTop:o.offset().top-54},1e3,"easeInOutExpo"),!1}}),a(".js-scroll-trigger").click(function(){a(".navbar-collapse").collapse("hide")}),a("body").scrollspy({target:"#mainNav",offset:56});var o=function(){a("#mainNav").offset().top>100?a("#mainNav").addClass("navbar-shrink"):a("#mainNav").removeClass("navbar-shrink")};o(),a(window).scroll(o),a(".portfolio-modal").on("show.bs.modal",function(o){a(".navbar").addClass("d-none")}),a(".portfolio-modal").on("hidden.bs.modal",function(o){a(".navbar").removeClass("d-none")})}(jQuery); \ No newline at end of file diff --git a/static/js/contact_me.js b/static/js/contact_me.js new file mode 100644 index 0000000..6e91590 --- /dev/null +++ b/static/js/contact_me.js @@ -0,0 +1,75 @@ +$(function() { + + $("#contactForm input,#contactForm textarea").jqBootstrapValidation({ + preventSubmit: true, + submitError: function($form, event, errors) { + // additional error messages or events + }, + submitSuccess: function($form, event) { + event.preventDefault(); // prevent default submit behaviour + // get values from FORM + var name = $("input#name").val(); + var email = $("input#email").val(); + var phone = $("input#phone").val(); + var message = $("textarea#message").val(); + var firstName = name; // For Success/Failure Message + // Check for white space in name for Success/Fail message + if (firstName.indexOf(' ') >= 0) { + firstName = name.split(' ').slice(0, -1).join(' '); + } + $this = $("#sendMessageButton"); + $this.prop("disabled", true); // Disable submit button until AJAX call is complete to prevent duplicate messages + $.ajax({ + url: "././mail/contact_me.php", + type: "POST", + data: { + name: name, + phone: phone, + email: email, + message: message + }, + cache: false, + success: function() { + // Success message + $('#success').html("
"); + $('#success > .alert-success').html(""); + $('#success > .alert-success') + .append("Your message has been sent. "); + $('#success > .alert-success') + .append('
'); + //clear all fields + $('#contactForm').trigger("reset"); + }, + error: function() { + // Fail message + $('#success').html("
"); + $('#success > .alert-danger').html(""); + $('#success > .alert-danger').append($("").text("Sorry " + firstName + ", it seems that my mail server is not responding. Please try again later!")); + $('#success > .alert-danger').append('
'); + //clear all fields + $('#contactForm').trigger("reset"); + }, + complete: function() { + setTimeout(function() { + $this.prop("disabled", false); // Re-enable submit button when AJAX call is complete + }, 1000); + } + }); + }, + filter: function() { + return $(this).is(":visible"); + }, + }); + + $("a[data-toggle=\"tab\"]").click(function(e) { + e.preventDefault(); + $(this).tab("show"); + }); +}); + +/*When clicking on Full hide fail/success boxes */ +$('#name').focus(function() { + $('#success').html(''); +}); diff --git a/static/js/contact_me.min.js b/static/js/contact_me.min.js new file mode 100644 index 0000000..0268cb1 --- /dev/null +++ b/static/js/contact_me.min.js @@ -0,0 +1 @@ +$(function(){$("#contactForm input,#contactForm textarea").jqBootstrapValidation({preventSubmit:!0,submitError:function(t,e,s){},submitSuccess:function(t,e){e.preventDefault();var s=$("input#name").val(),a=$("input#email").val(),n=$("input#phone").val(),c=$("textarea#message").val(),i=s;i.indexOf(" ")>=0&&(i=s.split(" ").slice(0,-1).join(" ")),$this=$("#sendMessageButton"),$this.prop("disabled",!0),$.ajax({url:"././mail/contact_me.php",type:"POST",data:{name:s,phone:n,email:a,message:c},cache:!1,success:function(){$("#success").html("
"),$("#success > .alert-success").html(""),$("#success > .alert-success").append("Your message has been sent. "),$("#success > .alert-success").append("
"),$("#contactForm").trigger("reset")},error:function(){$("#success").html("
"),$("#success > .alert-danger").html(""),$("#success > .alert-danger").append($("").text("Sorry "+i+", it seems that my mail server is not responding. Please try again later!")),$("#success > .alert-danger").append("
"),$("#contactForm").trigger("reset")},complete:function(){setTimeout(function(){$this.prop("disabled",!1)},1e3)}})},filter:function(){return $(this).is(":visible")}}),$('a[data-toggle="tab"]').click(function(t){t.preventDefault(),$(this).tab("show")})}),$("#name").focus(function(){$("#success").html("")}); \ No newline at end of file diff --git a/static/js/jqBootstrapValidation.js b/static/js/jqBootstrapValidation.js new file mode 100644 index 0000000..6f05a2d --- /dev/null +++ b/static/js/jqBootstrapValidation.js @@ -0,0 +1,937 @@ +/* jqBootstrapValidation + * A plugin for automating validation on Twitter Bootstrap formatted forms. + * + * v1.3.6 + * + * License: MIT - see LICENSE file + * + * http://ReactiveRaven.github.com/jqBootstrapValidation/ + */ + +(function($) { + + var createdElements = []; + + var defaults = { + options: { + prependExistingHelpBlock: false, + sniffHtml: true, // sniff for 'required', 'maxlength', etc + preventSubmit: true, // stop the form submit event from firing if validation fails + submitError: false, // function called if there is an error when trying to submit + submitSuccess: false, // function called just before a successful submit event is sent to the server + semanticallyStrict: false, // set to true to tidy up generated HTML output + autoAdd: { + helpBlocks: true + }, + filter: function() { + // return $(this).is(":visible"); // only validate elements you can see + return true; // validate everything + } + }, + methods: { + init: function(options) { + + var settings = $.extend(true, {}, defaults); + + settings.options = $.extend(true, settings.options, options); + + var $siblingElements = this; + + var uniqueForms = $.unique( + $siblingElements.map(function() { + return $(this).parents("form")[0]; + }).toArray() + ); + + $(uniqueForms).bind("submit", function(e) { + var $form = $(this); + var warningsFound = 0; + var $inputs = $form.find("input,textarea,select").not("[type=submit],[type=image]").filter(settings.options.filter); + $inputs.trigger("submit.validation").trigger("validationLostFocus.validation"); + + $inputs.each(function(i, el) { + var $this = $(el), + $controlGroup = $this.parents(".form-group").first(); + if ( + $controlGroup.hasClass("warning") + ) { + $controlGroup.removeClass("warning").addClass("error"); + warningsFound++; + } + }); + + $inputs.trigger("validationLostFocus.validation"); + + if (warningsFound) { + if (settings.options.preventSubmit) { + e.preventDefault(); + } + $form.addClass("error"); + if ($.isFunction(settings.options.submitError)) { + settings.options.submitError($form, e, $inputs.jqBootstrapValidation("collectErrors", true)); + } + } else { + $form.removeClass("error"); + if ($.isFunction(settings.options.submitSuccess)) { + settings.options.submitSuccess($form, e); + } + } + }); + + return this.each(function() { + + // Get references to everything we're interested in + var $this = $(this), + $controlGroup = $this.parents(".form-group").first(), + $helpBlock = $controlGroup.find(".help-block").first(), + $form = $this.parents("form").first(), + validatorNames = []; + + // create message container if not exists + if (!$helpBlock.length && settings.options.autoAdd && settings.options.autoAdd.helpBlocks) { + $helpBlock = $('
'); + $controlGroup.find('.controls').append($helpBlock); + createdElements.push($helpBlock[0]); + } + + // ============================================================= + // SNIFF HTML FOR VALIDATORS + // ============================================================= + + // *snort sniff snuffle* + + if (settings.options.sniffHtml) { + var message = ""; + // --------------------------------------------------------- + // PATTERN + // --------------------------------------------------------- + if ($this.attr("pattern") !== undefined) { + message = "Not in the expected format"; + if ($this.data("validationPatternMessage")) { + message = $this.data("validationPatternMessage"); + } + $this.data("validationPatternMessage", message); + $this.data("validationPatternRegex", $this.attr("pattern")); + } + // --------------------------------------------------------- + // MAX + // --------------------------------------------------------- + if ($this.attr("max") !== undefined || $this.attr("aria-valuemax") !== undefined) { + var max = ($this.attr("max") !== undefined ? $this.attr("max") : $this.attr("aria-valuemax")); + message = "Too high: Maximum of '" + max + "'"; + if ($this.data("validationMaxMessage")) { + message = $this.data("validationMaxMessage"); + } + $this.data("validationMaxMessage", message); + $this.data("validationMaxMax", max); + } + // --------------------------------------------------------- + // MIN + // --------------------------------------------------------- + if ($this.attr("min") !== undefined || $this.attr("aria-valuemin") !== undefined) { + var min = ($this.attr("min") !== undefined ? $this.attr("min") : $this.attr("aria-valuemin")); + message = "Too low: Minimum of '" + min + "'"; + if ($this.data("validationMinMessage")) { + message = $this.data("validationMinMessage"); + } + $this.data("validationMinMessage", message); + $this.data("validationMinMin", min); + } + // --------------------------------------------------------- + // MAXLENGTH + // --------------------------------------------------------- + if ($this.attr("maxlength") !== undefined) { + message = "Too long: Maximum of '" + $this.attr("maxlength") + "' characters"; + if ($this.data("validationMaxlengthMessage")) { + message = $this.data("validationMaxlengthMessage"); + } + $this.data("validationMaxlengthMessage", message); + $this.data("validationMaxlengthMaxlength", $this.attr("maxlength")); + } + // --------------------------------------------------------- + // MINLENGTH + // --------------------------------------------------------- + if ($this.attr("minlength") !== undefined) { + message = "Too short: Minimum of '" + $this.attr("minlength") + "' characters"; + if ($this.data("validationMinlengthMessage")) { + message = $this.data("validationMinlengthMessage"); + } + $this.data("validationMinlengthMessage", message); + $this.data("validationMinlengthMinlength", $this.attr("minlength")); + } + // --------------------------------------------------------- + // REQUIRED + // --------------------------------------------------------- + if ($this.attr("required") !== undefined || $this.attr("aria-required") !== undefined) { + message = settings.builtInValidators.required.message; + if ($this.data("validationRequiredMessage")) { + message = $this.data("validationRequiredMessage"); + } + $this.data("validationRequiredMessage", message); + } + // --------------------------------------------------------- + // NUMBER + // --------------------------------------------------------- + if ($this.attr("type") !== undefined && $this.attr("type").toLowerCase() === "number") { + message = settings.builtInValidators.number.message; + if ($this.data("validationNumberMessage")) { + message = $this.data("validationNumberMessage"); + } + $this.data("validationNumberMessage", message); + } + // --------------------------------------------------------- + // EMAIL + // --------------------------------------------------------- + if ($this.attr("type") !== undefined && $this.attr("type").toLowerCase() === "email") { + message = "Not a valid email address"; + if ($this.data("validationValidemailMessage")) { + message = $this.data("validationValidemailMessage"); + } else if ($this.data("validationEmailMessage")) { + message = $this.data("validationEmailMessage"); + } + $this.data("validationValidemailMessage", message); + } + // --------------------------------------------------------- + // MINCHECKED + // --------------------------------------------------------- + if ($this.attr("minchecked") !== undefined) { + message = "Not enough options checked; Minimum of '" + $this.attr("minchecked") + "' required"; + if ($this.data("validationMincheckedMessage")) { + message = $this.data("validationMincheckedMessage"); + } + $this.data("validationMincheckedMessage", message); + $this.data("validationMincheckedMinchecked", $this.attr("minchecked")); + } + // --------------------------------------------------------- + // MAXCHECKED + // --------------------------------------------------------- + if ($this.attr("maxchecked") !== undefined) { + message = "Too many options checked; Maximum of '" + $this.attr("maxchecked") + "' required"; + if ($this.data("validationMaxcheckedMessage")) { + message = $this.data("validationMaxcheckedMessage"); + } + $this.data("validationMaxcheckedMessage", message); + $this.data("validationMaxcheckedMaxchecked", $this.attr("maxchecked")); + } + } + + // ============================================================= + // COLLECT VALIDATOR NAMES + // ============================================================= + + // Get named validators + if ($this.data("validation") !== undefined) { + validatorNames = $this.data("validation").split(","); + } + + // Get extra ones defined on the element's data attributes + $.each($this.data(), function(i, el) { + var parts = i.replace(/([A-Z])/g, ",$1").split(","); + if (parts[0] === "validation" && parts[1]) { + validatorNames.push(parts[1]); + } + }); + + // ============================================================= + // NORMALISE VALIDATOR NAMES + // ============================================================= + + var validatorNamesToInspect = validatorNames; + var newValidatorNamesToInspect = []; + + do // repeatedly expand 'shortcut' validators into their real validators + { + // Uppercase only the first letter of each name + $.each(validatorNames, function(i, el) { + validatorNames[i] = formatValidatorName(el); + }); + + // Remove duplicate validator names + validatorNames = $.unique(validatorNames); + + // Pull out the new validator names from each shortcut + newValidatorNamesToInspect = []; + $.each(validatorNamesToInspect, function(i, el) { + if ($this.data("validation" + el + "Shortcut") !== undefined) { + // Are these custom validators? + // Pull them out! + $.each($this.data("validation" + el + "Shortcut").split(","), function(i2, el2) { + newValidatorNamesToInspect.push(el2); + }); + } else if (settings.builtInValidators[el.toLowerCase()]) { + // Is this a recognised built-in? + // Pull it out! + var validator = settings.builtInValidators[el.toLowerCase()]; + if (validator.type.toLowerCase() === "shortcut") { + $.each(validator.shortcut.split(","), function(i, el) { + el = formatValidatorName(el); + newValidatorNamesToInspect.push(el); + validatorNames.push(el); + }); + } + } + }); + + validatorNamesToInspect = newValidatorNamesToInspect; + + } while (validatorNamesToInspect.length > 0) + + // ============================================================= + // SET UP VALIDATOR ARRAYS + // ============================================================= + + var validators = {}; + + $.each(validatorNames, function(i, el) { + // Set up the 'override' message + var message = $this.data("validation" + el + "Message"); + var hasOverrideMessage = (message !== undefined); + var foundValidator = false; + message = + ( + message ? + message : + "'" + el + "' validation failed " + ); + + $.each( + settings.validatorTypes, + function(validatorType, validatorTemplate) { + if (validators[validatorType] === undefined) { + validators[validatorType] = []; + } + if (!foundValidator && $this.data("validation" + el + formatValidatorName(validatorTemplate.name)) !== undefined) { + validators[validatorType].push( + $.extend( + true, { + name: formatValidatorName(validatorTemplate.name), + message: message + }, + validatorTemplate.init($this, el) + ) + ); + foundValidator = true; + } + } + ); + + if (!foundValidator && settings.builtInValidators[el.toLowerCase()]) { + + var validator = $.extend(true, {}, settings.builtInValidators[el.toLowerCase()]); + if (hasOverrideMessage) { + validator.message = message; + } + var validatorType = validator.type.toLowerCase(); + + if (validatorType === "shortcut") { + foundValidator = true; + } else { + $.each( + settings.validatorTypes, + function(validatorTemplateType, validatorTemplate) { + if (validators[validatorTemplateType] === undefined) { + validators[validatorTemplateType] = []; + } + if (!foundValidator && validatorType === validatorTemplateType.toLowerCase()) { + $this.data("validation" + el + formatValidatorName(validatorTemplate.name), validator[validatorTemplate.name.toLowerCase()]); + validators[validatorType].push( + $.extend( + validator, + validatorTemplate.init($this, el) + ) + ); + foundValidator = true; + } + } + ); + } + } + + if (!foundValidator) { + $.error("Cannot find validation info for '" + el + "'"); + } + }); + + // ============================================================= + // STORE FALLBACK VALUES + // ============================================================= + + $helpBlock.data( + "original-contents", + ( + $helpBlock.data("original-contents") ? + $helpBlock.data("original-contents") : + $helpBlock.html() + ) + ); + + $helpBlock.data( + "original-role", + ( + $helpBlock.data("original-role") ? + $helpBlock.data("original-role") : + $helpBlock.attr("role") + ) + ); + + $controlGroup.data( + "original-classes", + ( + $controlGroup.data("original-clases") ? + $controlGroup.data("original-classes") : + $controlGroup.attr("class") + ) + ); + + $this.data( + "original-aria-invalid", + ( + $this.data("original-aria-invalid") ? + $this.data("original-aria-invalid") : + $this.attr("aria-invalid") + ) + ); + + // ============================================================= + // VALIDATION + // ============================================================= + + $this.bind( + "validation.validation", + function(event, params) { + + var value = getValue($this); + + // Get a list of the errors to apply + var errorsFound = []; + + $.each(validators, function(validatorType, validatorTypeArray) { + if (value || value.length || (params && params.includeEmpty) || (!!settings.validatorTypes[validatorType].blockSubmit && params && !!params.submitting)) { + $.each(validatorTypeArray, function(i, validator) { + if (settings.validatorTypes[validatorType].validate($this, value, validator)) { + errorsFound.push(validator.message); + } + }); + } + }); + + return errorsFound; + } + ); + + $this.bind( + "getValidators.validation", + function() { + return validators; + } + ); + + // ============================================================= + // WATCH FOR CHANGES + // ============================================================= + $this.bind( + "submit.validation", + function() { + return $this.triggerHandler("change.validation", { + submitting: true + }); + } + ); + $this.bind( + [ + "keyup", + "focus", + "blur", + "click", + "keydown", + "keypress", + "change" + ].join(".validation ") + ".validation", + function(e, params) { + + var value = getValue($this); + + var errorsFound = []; + + $controlGroup.find("input,textarea,select").each(function(i, el) { + var oldCount = errorsFound.length; + $.each($(el).triggerHandler("validation.validation", params), function(j, message) { + errorsFound.push(message); + }); + if (errorsFound.length > oldCount) { + $(el).attr("aria-invalid", "true"); + } else { + var original = $this.data("original-aria-invalid"); + $(el).attr("aria-invalid", (original !== undefined ? original : false)); + } + }); + + $form.find("input,select,textarea").not($this).not("[name=\"" + $this.attr("name") + "\"]").trigger("validationLostFocus.validation"); + + errorsFound = $.unique(errorsFound.sort()); + + // Were there any errors? + if (errorsFound.length) { + // Better flag it up as a warning. + $controlGroup.removeClass("success error").addClass("warning"); + + // How many errors did we find? + if (settings.options.semanticallyStrict && errorsFound.length === 1) { + // Only one? Being strict? Just output it. + $helpBlock.html(errorsFound[0] + + (settings.options.prependExistingHelpBlock ? $helpBlock.data("original-contents") : "")); + } else { + // Multiple? Being sloppy? Glue them together into an UL. + $helpBlock.html("
  • " + errorsFound.join("
  • ") + "
" + + (settings.options.prependExistingHelpBlock ? $helpBlock.data("original-contents") : "")); + } + } else { + $controlGroup.removeClass("warning error success"); + if (value.length > 0) { + $controlGroup.addClass("success"); + } + $helpBlock.html($helpBlock.data("original-contents")); + } + + if (e.type === "blur") { + $controlGroup.removeClass("success"); + } + } + ); + $this.bind("validationLostFocus.validation", function() { + $controlGroup.removeClass("success"); + }); + }); + }, + destroy: function() { + + return this.each( + function() { + + var + $this = $(this), + $controlGroup = $this.parents(".form-group").first(), + $helpBlock = $controlGroup.find(".help-block").first(); + + // remove our events + $this.unbind('.validation'); // events are namespaced. + // reset help text + $helpBlock.html($helpBlock.data("original-contents")); + // reset classes + $controlGroup.attr("class", $controlGroup.data("original-classes")); + // reset aria + $this.attr("aria-invalid", $this.data("original-aria-invalid")); + // reset role + $helpBlock.attr("role", $this.data("original-role")); + // remove all elements we created + if (createdElements.indexOf($helpBlock[0]) > -1) { + $helpBlock.remove(); + } + + } + ); + + }, + collectErrors: function(includeEmpty) { + + var errorMessages = {}; + this.each(function(i, el) { + var $el = $(el); + var name = $el.attr("name"); + var errors = $el.triggerHandler("validation.validation", { + includeEmpty: true + }); + errorMessages[name] = $.extend(true, errors, errorMessages[name]); + }); + + $.each(errorMessages, function(i, el) { + if (el.length === 0) { + delete errorMessages[i]; + } + }); + + return errorMessages; + + }, + hasErrors: function() { + + var errorMessages = []; + + this.each(function(i, el) { + errorMessages = errorMessages.concat( + $(el).triggerHandler("getValidators.validation") ? $(el).triggerHandler("validation.validation", { + submitting: true + }) : [] + ); + }); + + return (errorMessages.length > 0); + }, + override: function(newDefaults) { + defaults = $.extend(true, defaults, newDefaults); + } + }, + validatorTypes: { + callback: { + name: "callback", + init: function($this, name) { + return { + validatorName: name, + callback: $this.data("validation" + name + "Callback"), + lastValue: $this.val(), + lastValid: true, + lastFinished: true + }; + }, + validate: function($this, value, validator) { + if (validator.lastValue === value && validator.lastFinished) { + return !validator.lastValid; + } + + if (validator.lastFinished === true) { + validator.lastValue = value; + validator.lastValid = true; + validator.lastFinished = false; + + var rrjqbvValidator = validator; + var rrjqbvThis = $this; + executeFunctionByName( + validator.callback, + window, + $this, + value, + function(data) { + if (rrjqbvValidator.lastValue === data.value) { + rrjqbvValidator.lastValid = data.valid; + if (data.message) { + rrjqbvValidator.message = data.message; + } + rrjqbvValidator.lastFinished = true; + rrjqbvThis.data("validation" + rrjqbvValidator.validatorName + "Message", rrjqbvValidator.message); + // Timeout is set to avoid problems with the events being considered 'already fired' + setTimeout(function() { + rrjqbvThis.trigger("change.validation"); + }, 1); // doesn't need a long timeout, just long enough for the event bubble to burst + } + } + ); + } + + return false; + + } + }, + ajax: { + name: "ajax", + init: function($this, name) { + return { + validatorName: name, + url: $this.data("validation" + name + "Ajax"), + lastValue: $this.val(), + lastValid: true, + lastFinished: true + }; + }, + validate: function($this, value, validator) { + if ("" + validator.lastValue === "" + value && validator.lastFinished === true) { + return validator.lastValid === false; + } + + if (validator.lastFinished === true) { + validator.lastValue = value; + validator.lastValid = true; + validator.lastFinished = false; + $.ajax({ + url: validator.url, + data: "value=" + value + "&field=" + $this.attr("name"), + dataType: "json", + success: function(data) { + if ("" + validator.lastValue === "" + data.value) { + validator.lastValid = !!(data.valid); + if (data.message) { + validator.message = data.message; + } + validator.lastFinished = true; + $this.data("validation" + validator.validatorName + "Message", validator.message); + // Timeout is set to avoid problems with the events being considered 'already fired' + setTimeout(function() { + $this.trigger("change.validation"); + }, 1); // doesn't need a long timeout, just long enough for the event bubble to burst + } + }, + failure: function() { + validator.lastValid = true; + validator.message = "ajax call failed"; + validator.lastFinished = true; + $this.data("validation" + validator.validatorName + "Message", validator.message); + // Timeout is set to avoid problems with the events being considered 'already fired' + setTimeout(function() { + $this.trigger("change.validation"); + }, 1); // doesn't need a long timeout, just long enough for the event bubble to burst + } + }); + } + + return false; + + } + }, + regex: { + name: "regex", + init: function($this, name) { + return { + regex: regexFromString($this.data("validation" + name + "Regex")) + }; + }, + validate: function($this, value, validator) { + return (!validator.regex.test(value) && !validator.negative) || + (validator.regex.test(value) && validator.negative); + } + }, + required: { + name: "required", + init: function($this, name) { + return {}; + }, + validate: function($this, value, validator) { + return !!(value.length === 0 && !validator.negative) || + !!(value.length > 0 && validator.negative); + }, + blockSubmit: true + }, + match: { + name: "match", + init: function($this, name) { + var element = $this.parents("form").first().find("[name=\"" + $this.data("validation" + name + "Match") + "\"]").first(); + element.bind("validation.validation", function() { + $this.trigger("change.validation", { + submitting: true + }); + }); + return { + "element": element + }; + }, + validate: function($this, value, validator) { + return (value !== validator.element.val() && !validator.negative) || + (value === validator.element.val() && validator.negative); + }, + blockSubmit: true + }, + max: { + name: "max", + init: function($this, name) { + return { + max: $this.data("validation" + name + "Max") + }; + }, + validate: function($this, value, validator) { + return (parseFloat(value, 10) > parseFloat(validator.max, 10) && !validator.negative) || + (parseFloat(value, 10) <= parseFloat(validator.max, 10) && validator.negative); + } + }, + min: { + name: "min", + init: function($this, name) { + return { + min: $this.data("validation" + name + "Min") + }; + }, + validate: function($this, value, validator) { + return (parseFloat(value) < parseFloat(validator.min) && !validator.negative) || + (parseFloat(value) >= parseFloat(validator.min) && validator.negative); + } + }, + maxlength: { + name: "maxlength", + init: function($this, name) { + return { + maxlength: $this.data("validation" + name + "Maxlength") + }; + }, + validate: function($this, value, validator) { + return ((value.length > validator.maxlength) && !validator.negative) || + ((value.length <= validator.maxlength) && validator.negative); + } + }, + minlength: { + name: "minlength", + init: function($this, name) { + return { + minlength: $this.data("validation" + name + "Minlength") + }; + }, + validate: function($this, value, validator) { + return ((value.length < validator.minlength) && !validator.negative) || + ((value.length >= validator.minlength) && validator.negative); + } + }, + maxchecked: { + name: "maxchecked", + init: function($this, name) { + var elements = $this.parents("form").first().find("[name=\"" + $this.attr("name") + "\"]"); + elements.bind("click.validation", function() { + $this.trigger("change.validation", { + includeEmpty: true + }); + }); + return { + maxchecked: $this.data("validation" + name + "Maxchecked"), + elements: elements + }; + }, + validate: function($this, value, validator) { + return (validator.elements.filter(":checked").length > validator.maxchecked && !validator.negative) || + (validator.elements.filter(":checked").length <= validator.maxchecked && validator.negative); + }, + blockSubmit: true + }, + minchecked: { + name: "minchecked", + init: function($this, name) { + var elements = $this.parents("form").first().find("[name=\"" + $this.attr("name") + "\"]"); + elements.bind("click.validation", function() { + $this.trigger("change.validation", { + includeEmpty: true + }); + }); + return { + minchecked: $this.data("validation" + name + "Minchecked"), + elements: elements + }; + }, + validate: function($this, value, validator) { + return (validator.elements.filter(":checked").length < validator.minchecked && !validator.negative) || + (validator.elements.filter(":checked").length >= validator.minchecked && validator.negative); + }, + blockSubmit: true + } + }, + builtInValidators: { + email: { + name: "Email", + type: "shortcut", + shortcut: "validemail" + }, + validemail: { + name: "Validemail", + type: "regex", + regex: "[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\\\.[A-Za-z]{2,4}", + message: "Not a valid email address" + }, + passwordagain: { + name: "Passwordagain", + type: "match", + match: "password", + message: "Does not match the given password" + }, + positive: { + name: "Positive", + type: "shortcut", + shortcut: "number,positivenumber" + }, + negative: { + name: "Negative", + type: "shortcut", + shortcut: "number,negativenumber" + }, + number: { + name: "Number", + type: "regex", + regex: "([+-]?\\\d+(\\\.\\\d*)?([eE][+-]?[0-9]+)?)?", + message: "Must be a number" + }, + integer: { + name: "Integer", + type: "regex", + regex: "[+-]?\\\d+", + message: "No decimal places allowed" + }, + positivenumber: { + name: "Positivenumber", + type: "min", + min: 0, + message: "Must be a positive number" + }, + negativenumber: { + name: "Negativenumber", + type: "max", + max: 0, + message: "Must be a negative number" + }, + required: { + name: "Required", + type: "required", + message: "This is required" + }, + checkone: { + name: "Checkone", + type: "minchecked", + minchecked: 1, + message: "Check at least one option" + } + } + }; + + var formatValidatorName = function(name) { + return name + .toLowerCase() + .replace( + /(^|\s)([a-z])/g, + function(m, p1, p2) { + return p1 + p2.toUpperCase(); + } + ); + }; + + var getValue = function($this) { + // Extract the value we're talking about + var value = $this.val(); + var type = $this.attr("type"); + if (type === "checkbox") { + value = ($this.is(":checked") ? value : ""); + } + if (type === "radio") { + value = ($('input[name="' + $this.attr("name") + '"]:checked').length > 0 ? value : ""); + } + return value; + }; + + function regexFromString(inputstring) { + return new RegExp("^" + inputstring + "$"); + } + + /** + * Thanks to Jason Bunting via StackOverflow.com + * + * http://stackoverflow.com/questions/359788/how-to-execute-a-javascript-function-when-i-have-its-name-as-a-string#answer-359910 + * Short link: http://tinyurl.com/executeFunctionByName + **/ + function executeFunctionByName(functionName, context /*, args*/ ) { + var args = Array.prototype.slice.call(arguments).splice(2); + var namespaces = functionName.split("."); + var func = namespaces.pop(); + for (var i = 0; i < namespaces.length; i++) { + context = context[namespaces[i]]; + } + return context[func].apply(this, args); + } + + $.fn.jqBootstrapValidation = function(method) { + + if (defaults.methods[method]) { + return defaults.methods[method].apply(this, Array.prototype.slice.call(arguments, 1)); + } else if (typeof method === 'object' || !method) { + return defaults.methods.init.apply(this, arguments); + } else { + $.error('Method ' + method + ' does not exist on jQuery.jqBootstrapValidation'); + return null; + } + + }; + + $.jqBootstrapValidation = function(options) { + $(":input").not("[type=image],[type=submit]").jqBootstrapValidation.apply(this, arguments); + }; + +})(jQuery); diff --git a/static/js/jqBootstrapValidation.min.js b/static/js/jqBootstrapValidation.min.js new file mode 100644 index 0000000..8989c1c --- /dev/null +++ b/static/js/jqBootstrapValidation.min.js @@ -0,0 +1 @@ +!function(a){function e(a){return new RegExp("^"+a+"$")}function t(a,e){for(var t=Array.prototype.slice.call(arguments).splice(2),i=a.split("."),n=i.pop(),o=0;o'),n.find(".controls").append(l),i.push(l[0])),t.options.sniffHtml){var c="";if(void 0!==e.attr("pattern")&&(c="Not in the expected format\x3c!-- data-validation-pattern-message to override --\x3e",e.data("validationPatternMessage")&&(c=e.data("validationPatternMessage")),e.data("validationPatternMessage",c),e.data("validationPatternRegex",e.attr("pattern"))),void 0!==e.attr("max")||void 0!==e.attr("aria-valuemax")){var v=void 0!==e.attr("max")?e.attr("max"):e.attr("aria-valuemax");c="Too high: Maximum of '"+v+"'\x3c!-- data-validation-max-message to override --\x3e",e.data("validationMaxMessage")&&(c=e.data("validationMaxMessage")),e.data("validationMaxMessage",c),e.data("validationMaxMax",v)}if(void 0!==e.attr("min")||void 0!==e.attr("aria-valuemin")){var u=void 0!==e.attr("min")?e.attr("min"):e.attr("aria-valuemin");c="Too low: Minimum of '"+u+"'\x3c!-- data-validation-min-message to override --\x3e",e.data("validationMinMessage")&&(c=e.data("validationMinMessage")),e.data("validationMinMessage",c),e.data("validationMinMin",u)}void 0!==e.attr("maxlength")&&(c="Too long: Maximum of '"+e.attr("maxlength")+"' characters\x3c!-- data-validation-maxlength-message to override --\x3e",e.data("validationMaxlengthMessage")&&(c=e.data("validationMaxlengthMessage")),e.data("validationMaxlengthMessage",c),e.data("validationMaxlengthMaxlength",e.attr("maxlength"))),void 0!==e.attr("minlength")&&(c="Too short: Minimum of '"+e.attr("minlength")+"' characters\x3c!-- data-validation-minlength-message to override --\x3e",e.data("validationMinlengthMessage")&&(c=e.data("validationMinlengthMessage")),e.data("validationMinlengthMessage",c),e.data("validationMinlengthMinlength",e.attr("minlength"))),void 0===e.attr("required")&&void 0===e.attr("aria-required")||(c=t.builtInValidators.required.message,e.data("validationRequiredMessage")&&(c=e.data("validationRequiredMessage")),e.data("validationRequiredMessage",c)),void 0!==e.attr("type")&&"number"===e.attr("type").toLowerCase()&&(c=t.builtInValidators.number.message,e.data("validationNumberMessage")&&(c=e.data("validationNumberMessage")),e.data("validationNumberMessage",c)),void 0!==e.attr("type")&&"email"===e.attr("type").toLowerCase()&&(c="Not a valid email address\x3c!-- data-validator-validemail-message to override --\x3e",e.data("validationValidemailMessage")?c=e.data("validationValidemailMessage"):e.data("validationEmailMessage")&&(c=e.data("validationEmailMessage")),e.data("validationValidemailMessage",c)),void 0!==e.attr("minchecked")&&(c="Not enough options checked; Minimum of '"+e.attr("minchecked")+"' required\x3c!-- data-validation-minchecked-message to override --\x3e",e.data("validationMincheckedMessage")&&(c=e.data("validationMincheckedMessage")),e.data("validationMincheckedMessage",c),e.data("validationMincheckedMinchecked",e.attr("minchecked"))),void 0!==e.attr("maxchecked")&&(c="Too many options checked; Maximum of '"+e.attr("maxchecked")+"' required\x3c!-- data-validation-maxchecked-message to override --\x3e",e.data("validationMaxcheckedMessage")&&(c=e.data("validationMaxcheckedMessage")),e.data("validationMaxcheckedMessage",c),e.data("validationMaxcheckedMaxchecked",e.attr("maxchecked")))}void 0!==e.data("validation")&&(d=e.data("validation").split(",")),a.each(e.data(),function(a,e){var t=a.replace(/([A-Z])/g,",$1").split(",");"validation"===t[0]&&t[1]&&d.push(t[1])});var m=d,g=[];do{a.each(d,function(a,e){d[a]=o(e)}),d=a.unique(d),g=[],a.each(m,function(i,n){if(void 0!==e.data("validation"+n+"Shortcut"))a.each(e.data("validation"+n+"Shortcut").split(","),function(a,e){g.push(e)});else if(t.builtInValidators[n.toLowerCase()]){var r=t.builtInValidators[n.toLowerCase()];"shortcut"===r.type.toLowerCase()&&a.each(r.shortcut.split(","),function(a,e){e=o(e),g.push(e),d.push(e)})}}),m=g}while(m.length>0);var h={};a.each(d,function(i,n){var r=e.data("validation"+n+"Message"),l=void 0!==r,s=!1;if(r=r||"'"+n+"' validation failed \x3c!-- Add attribute 'data-validation-"+n.toLowerCase()+"-message' to input to change this message --\x3e",a.each(t.validatorTypes,function(t,i){void 0===h[t]&&(h[t]=[]),s||void 0===e.data("validation"+n+o(i.name))||(h[t].push(a.extend(!0,{name:o(i.name),message:r},i.init(e,n))),s=!0)}),!s&&t.builtInValidators[n.toLowerCase()]){var d=a.extend(!0,{},t.builtInValidators[n.toLowerCase()]);l&&(d.message=r);var c=d.type.toLowerCase();"shortcut"===c?s=!0:a.each(t.validatorTypes,function(t,i){void 0===h[t]&&(h[t]=[]),s||c!==t.toLowerCase()||(e.data("validation"+n+o(i.name),d[i.name.toLowerCase()]),h[c].push(a.extend(d,i.init(e,n))),s=!0)})}s||a.error("Cannot find validation info for '"+n+"'")}),l.data("original-contents",l.data("original-contents")?l.data("original-contents"):l.html()),l.data("original-role",l.data("original-role")?l.data("original-role"):l.attr("role")),n.data("original-classes",n.data("original-clases")?n.data("original-classes"):n.attr("class")),e.data("original-aria-invalid",e.data("original-aria-invalid")?e.data("original-aria-invalid"):e.attr("aria-invalid")),e.bind("validation.validation",function(i,n){var o=r(e),l=[];return a.each(h,function(i,r){(o||o.length||n&&n.includeEmpty||t.validatorTypes[i].blockSubmit&&n&&n.submitting)&&a.each(r,function(a,n){t.validatorTypes[i].validate(e,o,n)&&l.push(n.message)})}),l}),e.bind("getValidators.validation",function(){return h}),e.bind("submit.validation",function(){return e.triggerHandler("change.validation",{submitting:!0})}),e.bind(["keyup","focus","blur","click","keydown","keypress","change"].join(".validation ")+".validation",function(i,o){var d=r(e),c=[];n.find("input,textarea,select").each(function(t,i){var n=c.length;if(a.each(a(i).triggerHandler("validation.validation",o),function(a,e){c.push(e)}),c.length>n)a(i).attr("aria-invalid","true");else{var r=e.data("original-aria-invalid");a(i).attr("aria-invalid",void 0!==r&&r)}}),s.find("input,select,textarea").not(e).not('[name="'+e.attr("name")+'"]').trigger("validationLostFocus.validation"),(c=a.unique(c.sort())).length?(n.removeClass("success error").addClass("warning"),t.options.semanticallyStrict&&1===c.length?l.html(c[0]+(t.options.prependExistingHelpBlock?l.data("original-contents"):"")):l.html('
  • '+c.join("
  • ")+"
"+(t.options.prependExistingHelpBlock?l.data("original-contents"):""))):(n.removeClass("warning error success"),d.length>0&&n.addClass("success"),l.html(l.data("original-contents"))),"blur"===i.type&&n.removeClass("success")}),e.bind("validationLostFocus.validation",function(){n.removeClass("success")})})},destroy:function(){return this.each(function(){var e=a(this),t=e.parents(".form-group").first(),n=t.find(".help-block").first();e.unbind(".validation"),n.html(n.data("original-contents")),t.attr("class",t.data("original-classes")),e.attr("aria-invalid",e.data("original-aria-invalid")),n.attr("role",e.data("original-role")),i.indexOf(n[0])>-1&&n.remove()})},collectErrors:function(e){var t={};return this.each(function(e,i){var n=a(i),o=n.attr("name"),r=n.triggerHandler("validation.validation",{includeEmpty:!0});t[o]=a.extend(!0,r,t[o])}),a.each(t,function(a,e){0===e.length&&delete t[a]}),t},hasErrors:function(){var e=[];return this.each(function(t,i){e=e.concat(a(i).triggerHandler("getValidators.validation")?a(i).triggerHandler("validation.validation",{submitting:!0}):[])}),e.length>0},override:function(e){n=a.extend(!0,n,e)}},validatorTypes:{callback:{name:"callback",init:function(a,e){return{validatorName:e,callback:a.data("validation"+e+"Callback"),lastValue:a.val(),lastValid:!0,lastFinished:!0}},validate:function(a,e,i){if(i.lastValue===e&&i.lastFinished)return!i.lastValid;if(!0===i.lastFinished){i.lastValue=e,i.lastValid=!0,i.lastFinished=!1;var n=i,o=a;t(i.callback,window,a,e,function(a){n.lastValue===a.value&&(n.lastValid=a.valid,a.message&&(n.message=a.message),n.lastFinished=!0,o.data("validation"+n.validatorName+"Message",n.message),setTimeout(function(){o.trigger("change.validation")},1))})}return!1}},ajax:{name:"ajax",init:function(a,e){return{validatorName:e,url:a.data("validation"+e+"Ajax"),lastValue:a.val(),lastValid:!0,lastFinished:!0}},validate:function(e,t,i){return""+i.lastValue==""+t&&!0===i.lastFinished?!1===i.lastValid:(!0===i.lastFinished&&(i.lastValue=t,i.lastValid=!0,i.lastFinished=!1,a.ajax({url:i.url,data:"value="+t+"&field="+e.attr("name"),dataType:"json",success:function(a){""+i.lastValue==""+a.value&&(i.lastValid=!!a.valid,a.message&&(i.message=a.message),i.lastFinished=!0,e.data("validation"+i.validatorName+"Message",i.message),setTimeout(function(){e.trigger("change.validation")},1))},failure:function(){i.lastValid=!0,i.message="ajax call failed",i.lastFinished=!0,e.data("validation"+i.validatorName+"Message",i.message),setTimeout(function(){e.trigger("change.validation")},1)}})),!1)}},regex:{name:"regex",init:function(a,t){return{regex:e(a.data("validation"+t+"Regex"))}},validate:function(a,e,t){return!t.regex.test(e)&&!t.negative||t.regex.test(e)&&t.negative}},required:{name:"required",init:function(a,e){return{}},validate:function(a,e,t){return!(0!==e.length||t.negative)||!!(e.length>0&&t.negative)},blockSubmit:!0},match:{name:"match",init:function(a,e){var t=a.parents("form").first().find('[name="'+a.data("validation"+e+"Match")+'"]').first();return t.bind("validation.validation",function(){a.trigger("change.validation",{submitting:!0})}),{element:t}},validate:function(a,e,t){return e!==t.element.val()&&!t.negative||e===t.element.val()&&t.negative},blockSubmit:!0},max:{name:"max",init:function(a,e){return{max:a.data("validation"+e+"Max")}},validate:function(a,e,t){return parseFloat(e,10)>parseFloat(t.max,10)&&!t.negative||parseFloat(e,10)<=parseFloat(t.max,10)&&t.negative}},min:{name:"min",init:function(a,e){return{min:a.data("validation"+e+"Min")}},validate:function(a,e,t){return parseFloat(e)=parseFloat(t.min)&&t.negative}},maxlength:{name:"maxlength",init:function(a,e){return{maxlength:a.data("validation"+e+"Maxlength")}},validate:function(a,e,t){return e.length>t.maxlength&&!t.negative||e.length<=t.maxlength&&t.negative}},minlength:{name:"minlength",init:function(a,e){return{minlength:a.data("validation"+e+"Minlength")}},validate:function(a,e,t){return e.length=t.minlength&&t.negative}},maxchecked:{name:"maxchecked",init:function(a,e){var t=a.parents("form").first().find('[name="'+a.attr("name")+'"]');return t.bind("click.validation",function(){a.trigger("change.validation",{includeEmpty:!0})}),{maxchecked:a.data("validation"+e+"Maxchecked"),elements:t}},validate:function(a,e,t){return t.elements.filter(":checked").length>t.maxchecked&&!t.negative||t.elements.filter(":checked").length<=t.maxchecked&&t.negative},blockSubmit:!0},minchecked:{name:"minchecked",init:function(a,e){var t=a.parents("form").first().find('[name="'+a.attr("name")+'"]');return t.bind("click.validation",function(){a.trigger("change.validation",{includeEmpty:!0})}),{minchecked:a.data("validation"+e+"Minchecked"),elements:t}},validate:function(a,e,t){return t.elements.filter(":checked").length=t.minchecked&&t.negative},blockSubmit:!0}},builtInValidators:{email:{name:"Email",type:"shortcut",shortcut:"validemail"},validemail:{name:"Validemail",type:"regex",regex:"[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,4}",message:"Not a valid email address\x3c!-- data-validator-validemail-message to override --\x3e"},passwordagain:{name:"Passwordagain",type:"match",match:"password",message:"Does not match the given password\x3c!-- data-validator-paswordagain-message to override --\x3e"},positive:{name:"Positive",type:"shortcut",shortcut:"number,positivenumber"},negative:{name:"Negative",type:"shortcut",shortcut:"number,negativenumber"},number:{name:"Number",type:"regex",regex:"([+-]?\\d+(\\.\\d*)?([eE][+-]?[0-9]+)?)?",message:"Must be a number\x3c!-- data-validator-number-message to override --\x3e"},integer:{name:"Integer",type:"regex",regex:"[+-]?\\d+",message:"No decimal places allowed\x3c!-- data-validator-integer-message to override --\x3e"},positivenumber:{name:"Positivenumber",type:"min",min:0,message:"Must be a positive number\x3c!-- data-validator-positivenumber-message to override --\x3e"},negativenumber:{name:"Negativenumber",type:"max",max:0,message:"Must be a negative number\x3c!-- data-validator-negativenumber-message to override --\x3e"},required:{name:"Required",type:"required",message:"This is required\x3c!-- data-validator-required-message to override --\x3e"},checkone:{name:"Checkone",type:"minchecked",minchecked:1,message:"Check at least one option\x3c!-- data-validation-checkone-message to override --\x3e"}}},o=function(a){return a.toLowerCase().replace(/(^|\s)([a-z])/g,function(a,e,t){return e+t.toUpperCase()})},r=function(e){var t=e.val(),i=e.attr("type");return"checkbox"===i&&(t=e.is(":checked")?t:""),"radio"===i&&(t=a('input[name="'+e.attr("name")+'"]:checked').length>0?t:""),t};a.fn.jqBootstrapValidation=function(e){return n.methods[e]?n.methods[e].apply(this,Array.prototype.slice.call(arguments,1)):"object"!=typeof e&&e?(a.error("Method "+e+" does not exist on jQuery.jqBootstrapValidation"),null):n.methods.init.apply(this,arguments)},a.jqBootstrapValidation=function(e){a(":input").not("[type=image],[type=submit]").jqBootstrapValidation.apply(this,arguments)}}(jQuery); \ No newline at end of file diff --git a/static/js/stats.js b/static/js/stats.js new file mode 100644 index 0000000..584c877 --- /dev/null +++ b/static/js/stats.js @@ -0,0 +1,72 @@ +var margin = {top: 0, right: 0, bottom: 60, left:50}, + width = (600 - margin.left - margin.right)/2.5, + height = (300 - margin.top - margin.bottom)/2.5; + +// Parse the date / time +var parseDate = d3.time.format("%m-%y").parse; + +var x = d3.scale.ordinal().rangeRoundBands([0, width], .05); + +var y = d3.scale.linear().range([height, 0]); + +var xAxis = d3.svg.axis() + .scale(x) + .orient("bottom") + .tickFormat(d3.time.format("%m-%y")); + +var yAxis = d3.svg.axis() + .scale(y) + .orient("left") + .ticks(10); + +var svg = d3.selectAll("#graph1, #graph2, #graph3, #graph4, #graph5, #graph6, #graph7, #graph8").append("svg") + .attr("width", width + margin.left + margin.right) + .attr("height", height + margin.top + margin.bottom) + .attr("class", "img-responsive") + .append("g") + .attr("transform", + "translate(" + margin.left + "," + margin.top + ")") + .attr("class", "img-responsive"); + +d3.csv("static/data/bar-data.csv", function(error, data) { + + data.forEach(function(d) { + d.date = parseDate(d.date); + d.value = +d.value; + }); + + x.domain(data.map(function(d) { return d.date; })); + y.domain([0, d3.max(data, function(d) { return d.value; })]); + + svg.append("g") + .attr("class", "x axis") + .attr("transform", "translate(0," + height + ")") + .call(xAxis) + .selectAll("text") + .style("text-anchor", "end") + .attr("dx", "-.8em") + .attr("dy", "-.55em") + .attr("transform", "rotate(-90)" ); + + svg.append("g") + .attr("class", "y axis") + .call(yAxis) + .append("text") + .attr("transform", "rotate(-90)") + .attr("y", 6) + .attr("dy", ".71em") + .style("text-anchor", "end") + .text("Value ($)"); + + svg.selectAll("bar") + .data(data) + .enter().append("rect") + .style("fill", "#00b6d6ff") + .attr("x", function(d) { return x(d.date); }) + .attr("width", x.rangeBand()) + .attr("y", function(d) { return y(d.value); }) + .attr("height", function(d) { return height - y(d.value); }); + + svg.selectAll('.axis line, .axis path') + .style({'stroke': 'Black', 'fill': 'none', 'stroke-width': '1px'}); +}); \ No newline at end of file diff --git a/static/vendor/bootstrap/css/bootstrap.css b/static/vendor/bootstrap/css/bootstrap.css new file mode 100644 index 0000000..aa49713 --- /dev/null +++ b/static/vendor/bootstrap/css/bootstrap.css @@ -0,0 +1,8975 @@ +/*! + * Bootstrap v4.0.0 (https://getbootstrap.com) + * Copyright 2011-2018 The Bootstrap Authors + * Copyright 2011-2018 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ +:root { + --blue: #007bff; + --indigo: #6610f2; + --purple: #6f42c1; + --pink: #e83e8c; + --red: #dc3545; + --orange: #fd7e14; + --yellow: #ffc107; + --green: #28a745; + --teal: #20c997; + --cyan: #17a2b8; + --white: #fff; + --gray: #6c757d; + --gray-dark: #343a40; + --primary: #007bff; + --secondary: #6c757d; + --success: #28a745; + --info: #17a2b8; + --warning: #ffc107; + --danger: #dc3545; + --light: #f8f9fa; + --dark: #343a40; + --breakpoint-xs: 0; + --breakpoint-sm: 576px; + --breakpoint-md: 768px; + --breakpoint-lg: 992px; + --breakpoint-xl: 1200px; + --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; + --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; +} + +*, +*::before, +*::after { + box-sizing: border-box; +} + +html { + font-family: sans-serif; + line-height: 1.15; + -webkit-text-size-adjust: 100%; + -ms-text-size-adjust: 100%; + -ms-overflow-style: scrollbar; + -webkit-tap-highlight-color: transparent; +} + +@-ms-viewport { + width: device-width; +} + +article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section { + display: block; +} + +body { + margin: 0; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #212529; + text-align: left; + background-color: #fff; +} + +[tabindex="-1"]:focus { + outline: 0 !important; +} + +hr { + box-sizing: content-box; + height: 0; + overflow: visible; +} + +h1, h2, h3, h4, h5, h6 { + margin-top: 0; + margin-bottom: 0.5rem; +} + +p { + margin-top: 0; + margin-bottom: 1rem; +} + +abbr[title], +abbr[data-original-title] { + text-decoration: underline; + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; + cursor: help; + border-bottom: 0; +} + +address { + margin-bottom: 1rem; + font-style: normal; + line-height: inherit; +} + +ol, +ul, +dl { + margin-top: 0; + margin-bottom: 1rem; +} + +ol ol, +ul ul, +ol ul, +ul ol { + margin-bottom: 0; +} + +dt { + font-weight: 700; +} + +dd { + margin-bottom: .5rem; + margin-left: 0; +} + +blockquote { + margin: 0 0 1rem; +} + +dfn { + font-style: italic; +} + +b, +strong { + font-weight: bolder; +} + +small { + font-size: 80%; +} + +sub, +sup { + position: relative; + font-size: 75%; + line-height: 0; + vertical-align: baseline; +} + +sub { + bottom: -.25em; +} + +sup { + top: -.5em; +} + +a { + color: #007bff; + text-decoration: none; + background-color: transparent; + -webkit-text-decoration-skip: objects; +} + +a:hover { + color: #0056b3; + text-decoration: underline; +} + +a:not([href]):not([tabindex]) { + color: inherit; + text-decoration: none; +} + +a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus { + color: inherit; + text-decoration: none; +} + +a:not([href]):not([tabindex]):focus { + outline: 0; +} + +pre, +code, +kbd, +samp { + font-family: monospace, monospace; + font-size: 1em; +} + +pre { + margin-top: 0; + margin-bottom: 1rem; + overflow: auto; + -ms-overflow-style: scrollbar; +} + +figure { + margin: 0 0 1rem; +} + +img { + vertical-align: middle; + border-style: none; +} + +svg:not(:root) { + overflow: hidden; +} + +table { + border-collapse: collapse; +} + +caption { + padding-top: 0.75rem; + padding-bottom: 0.75rem; + color: #6c757d; + text-align: left; + caption-side: bottom; +} + +th { + text-align: inherit; +} + +label { + display: inline-block; + margin-bottom: .5rem; +} + +button { + border-radius: 0; +} + +button:focus { + outline: 1px dotted; + outline: 5px auto -webkit-focus-ring-color; +} + +input, +button, +select, +optgroup, +textarea { + margin: 0; + font-family: inherit; + font-size: inherit; + line-height: inherit; +} + +button, +input { + overflow: visible; +} + +button, +select { + text-transform: none; +} + +button, +html [type="button"], +[type="reset"], +[type="submit"] { + -webkit-appearance: button; +} + +button::-moz-focus-inner, +[type="button"]::-moz-focus-inner, +[type="reset"]::-moz-focus-inner, +[type="submit"]::-moz-focus-inner { + padding: 0; + border-style: none; +} + +input[type="radio"], +input[type="checkbox"] { + box-sizing: border-box; + padding: 0; +} + +input[type="date"], +input[type="time"], +input[type="datetime-local"], +input[type="month"] { + -webkit-appearance: listbox; +} + +textarea { + overflow: auto; + resize: vertical; +} + +fieldset { + min-width: 0; + padding: 0; + margin: 0; + border: 0; +} + +legend { + display: block; + width: 100%; + max-width: 100%; + padding: 0; + margin-bottom: .5rem; + font-size: 1.5rem; + line-height: inherit; + color: inherit; + white-space: normal; +} + +progress { + vertical-align: baseline; +} + +[type="number"]::-webkit-inner-spin-button, +[type="number"]::-webkit-outer-spin-button { + height: auto; +} + +[type="search"] { + outline-offset: -2px; + -webkit-appearance: none; +} + +[type="search"]::-webkit-search-cancel-button, +[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} + +::-webkit-file-upload-button { + font: inherit; + -webkit-appearance: button; +} + +output { + display: inline-block; +} + +summary { + display: list-item; + cursor: pointer; +} + +template { + display: none; +} + +[hidden] { + display: none !important; +} + +h1, h2, h3, h4, h5, h6, +.h1, .h2, .h3, .h4, .h5, .h6 { + margin-bottom: 0.5rem; + font-family: inherit; + font-weight: 500; + line-height: 1.2; + color: inherit; +} + +h1, .h1 { + font-size: 2.5rem; +} + +h2, .h2 { + font-size: 2rem; +} + +h3, .h3 { + font-size: 1.75rem; +} + +h4, .h4 { + font-size: 1.5rem; +} + +h5, .h5 { + font-size: 1.25rem; +} + +h6, .h6 { + font-size: 1rem; +} + +.lead { + font-size: 1.25rem; + font-weight: 300; +} + +.display-1 { + font-size: 6rem; + font-weight: 300; + line-height: 1.2; +} + +.display-2 { + font-size: 5.5rem; + font-weight: 300; + line-height: 1.2; +} + +.display-3 { + font-size: 4.5rem; + font-weight: 300; + line-height: 1.2; +} + +.display-4 { + font-size: 3.5rem; + font-weight: 300; + line-height: 1.2; +} + +hr { + margin-top: 1rem; + margin-bottom: 1rem; + border: 0; + border-top: 1px solid rgba(0, 0, 0, 0.1); +} + +small, +.small { + font-size: 80%; + font-weight: 400; +} + +mark, +.mark { + padding: 0.2em; + background-color: #fcf8e3; +} + +.list-unstyled { + padding-left: 0; + list-style: none; +} + +.list-inline { + padding-left: 0; + list-style: none; +} + +.list-inline-item { + display: inline-block; +} + +.list-inline-item:not(:last-child) { + margin-right: 0.5rem; +} + +.initialism { + font-size: 90%; + text-transform: uppercase; +} + +.blockquote { + margin-bottom: 1rem; + font-size: 1.25rem; +} + +.blockquote-footer { + display: block; + font-size: 80%; + color: #6c757d; +} + +.blockquote-footer::before { + content: "\2014 \00A0"; +} + +.img-fluid { + max-width: 100%; + height: auto; +} + +.img-thumbnail { + padding: 0.25rem; + background-color: #fff; + border: 1px solid #dee2e6; + border-radius: 0.25rem; + max-width: 100%; + height: auto; +} + +.figure { + display: inline-block; +} + +.figure-img { + margin-bottom: 0.5rem; + line-height: 1; +} + +.figure-caption { + font-size: 90%; + color: #6c757d; +} + +code, +kbd, +pre, +samp { + font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; +} + +code { + font-size: 87.5%; + color: #e83e8c; + word-break: break-word; +} + +a > code { + color: inherit; +} + +kbd { + padding: 0.2rem 0.4rem; + font-size: 87.5%; + color: #fff; + background-color: #212529; + border-radius: 0.2rem; +} + +kbd kbd { + padding: 0; + font-size: 100%; + font-weight: 700; +} + +pre { + display: block; + font-size: 87.5%; + color: #212529; +} + +pre code { + font-size: inherit; + color: inherit; + word-break: normal; +} + +.pre-scrollable { + max-height: 340px; + overflow-y: scroll; +} + +.container { + width: 100%; + padding-right: 15px; + padding-left: 15px; + margin-right: auto; + margin-left: auto; +} + +@media (min-width: 576px) { + .container { + max-width: 540px; + } +} + +@media (min-width: 768px) { + .container { + max-width: 720px; + } +} + +@media (min-width: 992px) { + .container { + max-width: 960px; + } +} + +@media (min-width: 1200px) { + .container { + max-width: 1140px; + } +} + +.container-fluid { + width: 100%; + padding-right: 15px; + padding-left: 15px; + margin-right: auto; + margin-left: auto; +} + +.row { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + margin-right: -15px; + margin-left: -15px; +} + +.no-gutters { + margin-right: 0; + margin-left: 0; +} + +.no-gutters > .col, +.no-gutters > [class*="col-"] { + padding-right: 0; + padding-left: 0; +} + +.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, +.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, +.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, +.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, +.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, +.col-xl-auto { + position: relative; + width: 100%; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; +} + +.col { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; +} + +.col-auto { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: none; +} + +.col-1 { + -webkit-box-flex: 0; + -ms-flex: 0 0 8.333333%; + flex: 0 0 8.333333%; + max-width: 8.333333%; +} + +.col-2 { + -webkit-box-flex: 0; + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667%; +} + +.col-3 { + -webkit-box-flex: 0; + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; +} + +.col-4 { + -webkit-box-flex: 0; + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333%; +} + +.col-5 { + -webkit-box-flex: 0; + -ms-flex: 0 0 41.666667%; + flex: 0 0 41.666667%; + max-width: 41.666667%; +} + +.col-6 { + -webkit-box-flex: 0; + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; +} + +.col-7 { + -webkit-box-flex: 0; + -ms-flex: 0 0 58.333333%; + flex: 0 0 58.333333%; + max-width: 58.333333%; +} + +.col-8 { + -webkit-box-flex: 0; + -ms-flex: 0 0 66.666667%; + flex: 0 0 66.666667%; + max-width: 66.666667%; +} + +.col-9 { + -webkit-box-flex: 0; + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; +} + +.col-10 { + -webkit-box-flex: 0; + -ms-flex: 0 0 83.333333%; + flex: 0 0 83.333333%; + max-width: 83.333333%; +} + +.col-11 { + -webkit-box-flex: 0; + -ms-flex: 0 0 91.666667%; + flex: 0 0 91.666667%; + max-width: 91.666667%; +} + +.col-12 { + -webkit-box-flex: 0; + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; +} + +.order-first { + -webkit-box-ordinal-group: 0; + -ms-flex-order: -1; + order: -1; +} + +.order-last { + -webkit-box-ordinal-group: 14; + -ms-flex-order: 13; + order: 13; +} + +.order-0 { + -webkit-box-ordinal-group: 1; + -ms-flex-order: 0; + order: 0; +} + +.order-1 { + -webkit-box-ordinal-group: 2; + -ms-flex-order: 1; + order: 1; +} + +.order-2 { + -webkit-box-ordinal-group: 3; + -ms-flex-order: 2; + order: 2; +} + +.order-3 { + -webkit-box-ordinal-group: 4; + -ms-flex-order: 3; + order: 3; +} + +.order-4 { + -webkit-box-ordinal-group: 5; + -ms-flex-order: 4; + order: 4; +} + +.order-5 { + -webkit-box-ordinal-group: 6; + -ms-flex-order: 5; + order: 5; +} + +.order-6 { + -webkit-box-ordinal-group: 7; + -ms-flex-order: 6; + order: 6; +} + +.order-7 { + -webkit-box-ordinal-group: 8; + -ms-flex-order: 7; + order: 7; +} + +.order-8 { + -webkit-box-ordinal-group: 9; + -ms-flex-order: 8; + order: 8; +} + +.order-9 { + -webkit-box-ordinal-group: 10; + -ms-flex-order: 9; + order: 9; +} + +.order-10 { + -webkit-box-ordinal-group: 11; + -ms-flex-order: 10; + order: 10; +} + +.order-11 { + -webkit-box-ordinal-group: 12; + -ms-flex-order: 11; + order: 11; +} + +.order-12 { + -webkit-box-ordinal-group: 13; + -ms-flex-order: 12; + order: 12; +} + +.offset-1 { + margin-left: 8.333333%; +} + +.offset-2 { + margin-left: 16.666667%; +} + +.offset-3 { + margin-left: 25%; +} + +.offset-4 { + margin-left: 33.333333%; +} + +.offset-5 { + margin-left: 41.666667%; +} + +.offset-6 { + margin-left: 50%; +} + +.offset-7 { + margin-left: 58.333333%; +} + +.offset-8 { + margin-left: 66.666667%; +} + +.offset-9 { + margin-left: 75%; +} + +.offset-10 { + margin-left: 83.333333%; +} + +.offset-11 { + margin-left: 91.666667%; +} + +@media (min-width: 576px) { + .col-sm { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; + } + .col-sm-auto { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: none; + } + .col-sm-1 { + -webkit-box-flex: 0; + -ms-flex: 0 0 8.333333%; + flex: 0 0 8.333333%; + max-width: 8.333333%; + } + .col-sm-2 { + -webkit-box-flex: 0; + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667%; + } + .col-sm-3 { + -webkit-box-flex: 0; + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; + } + .col-sm-4 { + -webkit-box-flex: 0; + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333%; + } + .col-sm-5 { + -webkit-box-flex: 0; + -ms-flex: 0 0 41.666667%; + flex: 0 0 41.666667%; + max-width: 41.666667%; + } + .col-sm-6 { + -webkit-box-flex: 0; + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; + } + .col-sm-7 { + -webkit-box-flex: 0; + -ms-flex: 0 0 58.333333%; + flex: 0 0 58.333333%; + max-width: 58.333333%; + } + .col-sm-8 { + -webkit-box-flex: 0; + -ms-flex: 0 0 66.666667%; + flex: 0 0 66.666667%; + max-width: 66.666667%; + } + .col-sm-9 { + -webkit-box-flex: 0; + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; + } + .col-sm-10 { + -webkit-box-flex: 0; + -ms-flex: 0 0 83.333333%; + flex: 0 0 83.333333%; + max-width: 83.333333%; + } + .col-sm-11 { + -webkit-box-flex: 0; + -ms-flex: 0 0 91.666667%; + flex: 0 0 91.666667%; + max-width: 91.666667%; + } + .col-sm-12 { + -webkit-box-flex: 0; + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; + } + .order-sm-first { + -webkit-box-ordinal-group: 0; + -ms-flex-order: -1; + order: -1; + } + .order-sm-last { + -webkit-box-ordinal-group: 14; + -ms-flex-order: 13; + order: 13; + } + .order-sm-0 { + -webkit-box-ordinal-group: 1; + -ms-flex-order: 0; + order: 0; + } + .order-sm-1 { + -webkit-box-ordinal-group: 2; + -ms-flex-order: 1; + order: 1; + } + .order-sm-2 { + -webkit-box-ordinal-group: 3; + -ms-flex-order: 2; + order: 2; + } + .order-sm-3 { + -webkit-box-ordinal-group: 4; + -ms-flex-order: 3; + order: 3; + } + .order-sm-4 { + -webkit-box-ordinal-group: 5; + -ms-flex-order: 4; + order: 4; + } + .order-sm-5 { + -webkit-box-ordinal-group: 6; + -ms-flex-order: 5; + order: 5; + } + .order-sm-6 { + -webkit-box-ordinal-group: 7; + -ms-flex-order: 6; + order: 6; + } + .order-sm-7 { + -webkit-box-ordinal-group: 8; + -ms-flex-order: 7; + order: 7; + } + .order-sm-8 { + -webkit-box-ordinal-group: 9; + -ms-flex-order: 8; + order: 8; + } + .order-sm-9 { + -webkit-box-ordinal-group: 10; + -ms-flex-order: 9; + order: 9; + } + .order-sm-10 { + -webkit-box-ordinal-group: 11; + -ms-flex-order: 10; + order: 10; + } + .order-sm-11 { + -webkit-box-ordinal-group: 12; + -ms-flex-order: 11; + order: 11; + } + .order-sm-12 { + -webkit-box-ordinal-group: 13; + -ms-flex-order: 12; + order: 12; + } + .offset-sm-0 { + margin-left: 0; + } + .offset-sm-1 { + margin-left: 8.333333%; + } + .offset-sm-2 { + margin-left: 16.666667%; + } + .offset-sm-3 { + margin-left: 25%; + } + .offset-sm-4 { + margin-left: 33.333333%; + } + .offset-sm-5 { + margin-left: 41.666667%; + } + .offset-sm-6 { + margin-left: 50%; + } + .offset-sm-7 { + margin-left: 58.333333%; + } + .offset-sm-8 { + margin-left: 66.666667%; + } + .offset-sm-9 { + margin-left: 75%; + } + .offset-sm-10 { + margin-left: 83.333333%; + } + .offset-sm-11 { + margin-left: 91.666667%; + } +} + +@media (min-width: 768px) { + .col-md { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; + } + .col-md-auto { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: none; + } + .col-md-1 { + -webkit-box-flex: 0; + -ms-flex: 0 0 8.333333%; + flex: 0 0 8.333333%; + max-width: 8.333333%; + } + .col-md-2 { + -webkit-box-flex: 0; + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667%; + } + .col-md-3 { + -webkit-box-flex: 0; + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; + } + .col-md-4 { + -webkit-box-flex: 0; + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333%; + } + .col-md-5 { + -webkit-box-flex: 0; + -ms-flex: 0 0 41.666667%; + flex: 0 0 41.666667%; + max-width: 41.666667%; + } + .col-md-6 { + -webkit-box-flex: 0; + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; + } + .col-md-7 { + -webkit-box-flex: 0; + -ms-flex: 0 0 58.333333%; + flex: 0 0 58.333333%; + max-width: 58.333333%; + } + .col-md-8 { + -webkit-box-flex: 0; + -ms-flex: 0 0 66.666667%; + flex: 0 0 66.666667%; + max-width: 66.666667%; + } + .col-md-9 { + -webkit-box-flex: 0; + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; + } + .col-md-10 { + -webkit-box-flex: 0; + -ms-flex: 0 0 83.333333%; + flex: 0 0 83.333333%; + max-width: 83.333333%; + } + .col-md-11 { + -webkit-box-flex: 0; + -ms-flex: 0 0 91.666667%; + flex: 0 0 91.666667%; + max-width: 91.666667%; + } + .col-md-12 { + -webkit-box-flex: 0; + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; + } + .order-md-first { + -webkit-box-ordinal-group: 0; + -ms-flex-order: -1; + order: -1; + } + .order-md-last { + -webkit-box-ordinal-group: 14; + -ms-flex-order: 13; + order: 13; + } + .order-md-0 { + -webkit-box-ordinal-group: 1; + -ms-flex-order: 0; + order: 0; + } + .order-md-1 { + -webkit-box-ordinal-group: 2; + -ms-flex-order: 1; + order: 1; + } + .order-md-2 { + -webkit-box-ordinal-group: 3; + -ms-flex-order: 2; + order: 2; + } + .order-md-3 { + -webkit-box-ordinal-group: 4; + -ms-flex-order: 3; + order: 3; + } + .order-md-4 { + -webkit-box-ordinal-group: 5; + -ms-flex-order: 4; + order: 4; + } + .order-md-5 { + -webkit-box-ordinal-group: 6; + -ms-flex-order: 5; + order: 5; + } + .order-md-6 { + -webkit-box-ordinal-group: 7; + -ms-flex-order: 6; + order: 6; + } + .order-md-7 { + -webkit-box-ordinal-group: 8; + -ms-flex-order: 7; + order: 7; + } + .order-md-8 { + -webkit-box-ordinal-group: 9; + -ms-flex-order: 8; + order: 8; + } + .order-md-9 { + -webkit-box-ordinal-group: 10; + -ms-flex-order: 9; + order: 9; + } + .order-md-10 { + -webkit-box-ordinal-group: 11; + -ms-flex-order: 10; + order: 10; + } + .order-md-11 { + -webkit-box-ordinal-group: 12; + -ms-flex-order: 11; + order: 11; + } + .order-md-12 { + -webkit-box-ordinal-group: 13; + -ms-flex-order: 12; + order: 12; + } + .offset-md-0 { + margin-left: 0; + } + .offset-md-1 { + margin-left: 8.333333%; + } + .offset-md-2 { + margin-left: 16.666667%; + } + .offset-md-3 { + margin-left: 25%; + } + .offset-md-4 { + margin-left: 33.333333%; + } + .offset-md-5 { + margin-left: 41.666667%; + } + .offset-md-6 { + margin-left: 50%; + } + .offset-md-7 { + margin-left: 58.333333%; + } + .offset-md-8 { + margin-left: 66.666667%; + } + .offset-md-9 { + margin-left: 75%; + } + .offset-md-10 { + margin-left: 83.333333%; + } + .offset-md-11 { + margin-left: 91.666667%; + } +} + +@media (min-width: 992px) { + .col-lg { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; + } + .col-lg-auto { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: none; + } + .col-lg-1 { + -webkit-box-flex: 0; + -ms-flex: 0 0 8.333333%; + flex: 0 0 8.333333%; + max-width: 8.333333%; + } + .col-lg-2 { + -webkit-box-flex: 0; + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667%; + } + .col-lg-3 { + -webkit-box-flex: 0; + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; + } + .col-lg-4 { + -webkit-box-flex: 0; + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333%; + } + .col-lg-5 { + -webkit-box-flex: 0; + -ms-flex: 0 0 41.666667%; + flex: 0 0 41.666667%; + max-width: 41.666667%; + } + .col-lg-6 { + -webkit-box-flex: 0; + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; + } + .col-lg-7 { + -webkit-box-flex: 0; + -ms-flex: 0 0 58.333333%; + flex: 0 0 58.333333%; + max-width: 58.333333%; + } + .col-lg-8 { + -webkit-box-flex: 0; + -ms-flex: 0 0 66.666667%; + flex: 0 0 66.666667%; + max-width: 66.666667%; + } + .col-lg-9 { + -webkit-box-flex: 0; + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; + } + .col-lg-10 { + -webkit-box-flex: 0; + -ms-flex: 0 0 83.333333%; + flex: 0 0 83.333333%; + max-width: 83.333333%; + } + .col-lg-11 { + -webkit-box-flex: 0; + -ms-flex: 0 0 91.666667%; + flex: 0 0 91.666667%; + max-width: 91.666667%; + } + .col-lg-12 { + -webkit-box-flex: 0; + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; + } + .order-lg-first { + -webkit-box-ordinal-group: 0; + -ms-flex-order: -1; + order: -1; + } + .order-lg-last { + -webkit-box-ordinal-group: 14; + -ms-flex-order: 13; + order: 13; + } + .order-lg-0 { + -webkit-box-ordinal-group: 1; + -ms-flex-order: 0; + order: 0; + } + .order-lg-1 { + -webkit-box-ordinal-group: 2; + -ms-flex-order: 1; + order: 1; + } + .order-lg-2 { + -webkit-box-ordinal-group: 3; + -ms-flex-order: 2; + order: 2; + } + .order-lg-3 { + -webkit-box-ordinal-group: 4; + -ms-flex-order: 3; + order: 3; + } + .order-lg-4 { + -webkit-box-ordinal-group: 5; + -ms-flex-order: 4; + order: 4; + } + .order-lg-5 { + -webkit-box-ordinal-group: 6; + -ms-flex-order: 5; + order: 5; + } + .order-lg-6 { + -webkit-box-ordinal-group: 7; + -ms-flex-order: 6; + order: 6; + } + .order-lg-7 { + -webkit-box-ordinal-group: 8; + -ms-flex-order: 7; + order: 7; + } + .order-lg-8 { + -webkit-box-ordinal-group: 9; + -ms-flex-order: 8; + order: 8; + } + .order-lg-9 { + -webkit-box-ordinal-group: 10; + -ms-flex-order: 9; + order: 9; + } + .order-lg-10 { + -webkit-box-ordinal-group: 11; + -ms-flex-order: 10; + order: 10; + } + .order-lg-11 { + -webkit-box-ordinal-group: 12; + -ms-flex-order: 11; + order: 11; + } + .order-lg-12 { + -webkit-box-ordinal-group: 13; + -ms-flex-order: 12; + order: 12; + } + .offset-lg-0 { + margin-left: 0; + } + .offset-lg-1 { + margin-left: 8.333333%; + } + .offset-lg-2 { + margin-left: 16.666667%; + } + .offset-lg-3 { + margin-left: 25%; + } + .offset-lg-4 { + margin-left: 33.333333%; + } + .offset-lg-5 { + margin-left: 41.666667%; + } + .offset-lg-6 { + margin-left: 50%; + } + .offset-lg-7 { + margin-left: 58.333333%; + } + .offset-lg-8 { + margin-left: 66.666667%; + } + .offset-lg-9 { + margin-left: 75%; + } + .offset-lg-10 { + margin-left: 83.333333%; + } + .offset-lg-11 { + margin-left: 91.666667%; + } +} + +@media (min-width: 1200px) { + .col-xl { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; + } + .col-xl-auto { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: none; + } + .col-xl-1 { + -webkit-box-flex: 0; + -ms-flex: 0 0 8.333333%; + flex: 0 0 8.333333%; + max-width: 8.333333%; + } + .col-xl-2 { + -webkit-box-flex: 0; + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667%; + } + .col-xl-3 { + -webkit-box-flex: 0; + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; + } + .col-xl-4 { + -webkit-box-flex: 0; + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333%; + } + .col-xl-5 { + -webkit-box-flex: 0; + -ms-flex: 0 0 41.666667%; + flex: 0 0 41.666667%; + max-width: 41.666667%; + } + .col-xl-6 { + -webkit-box-flex: 0; + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; + } + .col-xl-7 { + -webkit-box-flex: 0; + -ms-flex: 0 0 58.333333%; + flex: 0 0 58.333333%; + max-width: 58.333333%; + } + .col-xl-8 { + -webkit-box-flex: 0; + -ms-flex: 0 0 66.666667%; + flex: 0 0 66.666667%; + max-width: 66.666667%; + } + .col-xl-9 { + -webkit-box-flex: 0; + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; + } + .col-xl-10 { + -webkit-box-flex: 0; + -ms-flex: 0 0 83.333333%; + flex: 0 0 83.333333%; + max-width: 83.333333%; + } + .col-xl-11 { + -webkit-box-flex: 0; + -ms-flex: 0 0 91.666667%; + flex: 0 0 91.666667%; + max-width: 91.666667%; + } + .col-xl-12 { + -webkit-box-flex: 0; + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; + } + .order-xl-first { + -webkit-box-ordinal-group: 0; + -ms-flex-order: -1; + order: -1; + } + .order-xl-last { + -webkit-box-ordinal-group: 14; + -ms-flex-order: 13; + order: 13; + } + .order-xl-0 { + -webkit-box-ordinal-group: 1; + -ms-flex-order: 0; + order: 0; + } + .order-xl-1 { + -webkit-box-ordinal-group: 2; + -ms-flex-order: 1; + order: 1; + } + .order-xl-2 { + -webkit-box-ordinal-group: 3; + -ms-flex-order: 2; + order: 2; + } + .order-xl-3 { + -webkit-box-ordinal-group: 4; + -ms-flex-order: 3; + order: 3; + } + .order-xl-4 { + -webkit-box-ordinal-group: 5; + -ms-flex-order: 4; + order: 4; + } + .order-xl-5 { + -webkit-box-ordinal-group: 6; + -ms-flex-order: 5; + order: 5; + } + .order-xl-6 { + -webkit-box-ordinal-group: 7; + -ms-flex-order: 6; + order: 6; + } + .order-xl-7 { + -webkit-box-ordinal-group: 8; + -ms-flex-order: 7; + order: 7; + } + .order-xl-8 { + -webkit-box-ordinal-group: 9; + -ms-flex-order: 8; + order: 8; + } + .order-xl-9 { + -webkit-box-ordinal-group: 10; + -ms-flex-order: 9; + order: 9; + } + .order-xl-10 { + -webkit-box-ordinal-group: 11; + -ms-flex-order: 10; + order: 10; + } + .order-xl-11 { + -webkit-box-ordinal-group: 12; + -ms-flex-order: 11; + order: 11; + } + .order-xl-12 { + -webkit-box-ordinal-group: 13; + -ms-flex-order: 12; + order: 12; + } + .offset-xl-0 { + margin-left: 0; + } + .offset-xl-1 { + margin-left: 8.333333%; + } + .offset-xl-2 { + margin-left: 16.666667%; + } + .offset-xl-3 { + margin-left: 25%; + } + .offset-xl-4 { + margin-left: 33.333333%; + } + .offset-xl-5 { + margin-left: 41.666667%; + } + .offset-xl-6 { + margin-left: 50%; + } + .offset-xl-7 { + margin-left: 58.333333%; + } + .offset-xl-8 { + margin-left: 66.666667%; + } + .offset-xl-9 { + margin-left: 75%; + } + .offset-xl-10 { + margin-left: 83.333333%; + } + .offset-xl-11 { + margin-left: 91.666667%; + } +} + +.table { + width: 100%; + max-width: 100%; + margin-bottom: 1rem; + background-color: transparent; +} + +.table th, +.table td { + padding: 0.75rem; + vertical-align: top; + border-top: 1px solid #dee2e6; +} + +.table thead th { + vertical-align: bottom; + border-bottom: 2px solid #dee2e6; +} + +.table tbody + tbody { + border-top: 2px solid #dee2e6; +} + +.table .table { + background-color: #fff; +} + +.table-sm th, +.table-sm td { + padding: 0.3rem; +} + +.table-bordered { + border: 1px solid #dee2e6; +} + +.table-bordered th, +.table-bordered td { + border: 1px solid #dee2e6; +} + +.table-bordered thead th, +.table-bordered thead td { + border-bottom-width: 2px; +} + +.table-striped tbody tr:nth-of-type(odd) { + background-color: rgba(0, 0, 0, 0.05); +} + +.table-hover tbody tr:hover { + background-color: rgba(0, 0, 0, 0.075); +} + +.table-primary, +.table-primary > th, +.table-primary > td { + background-color: #b8daff; +} + +.table-hover .table-primary:hover { + background-color: #9fcdff; +} + +.table-hover .table-primary:hover > td, +.table-hover .table-primary:hover > th { + background-color: #9fcdff; +} + +.table-secondary, +.table-secondary > th, +.table-secondary > td { + background-color: #d6d8db; +} + +.table-hover .table-secondary:hover { + background-color: #c8cbcf; +} + +.table-hover .table-secondary:hover > td, +.table-hover .table-secondary:hover > th { + background-color: #c8cbcf; +} + +.table-success, +.table-success > th, +.table-success > td { + background-color: #c3e6cb; +} + +.table-hover .table-success:hover { + background-color: #b1dfbb; +} + +.table-hover .table-success:hover > td, +.table-hover .table-success:hover > th { + background-color: #b1dfbb; +} + +.table-info, +.table-info > th, +.table-info > td { + background-color: #bee5eb; +} + +.table-hover .table-info:hover { + background-color: #abdde5; +} + +.table-hover .table-info:hover > td, +.table-hover .table-info:hover > th { + background-color: #abdde5; +} + +.table-warning, +.table-warning > th, +.table-warning > td { + background-color: #ffeeba; +} + +.table-hover .table-warning:hover { + background-color: #ffe8a1; +} + +.table-hover .table-warning:hover > td, +.table-hover .table-warning:hover > th { + background-color: #ffe8a1; +} + +.table-danger, +.table-danger > th, +.table-danger > td { + background-color: #f5c6cb; +} + +.table-hover .table-danger:hover { + background-color: #f1b0b7; +} + +.table-hover .table-danger:hover > td, +.table-hover .table-danger:hover > th { + background-color: #f1b0b7; +} + +.table-light, +.table-light > th, +.table-light > td { + background-color: #fdfdfe; +} + +.table-hover .table-light:hover { + background-color: #ececf6; +} + +.table-hover .table-light:hover > td, +.table-hover .table-light:hover > th { + background-color: #ececf6; +} + +.table-dark, +.table-dark > th, +.table-dark > td { + background-color: #c6c8ca; +} + +.table-hover .table-dark:hover { + background-color: #b9bbbe; +} + +.table-hover .table-dark:hover > td, +.table-hover .table-dark:hover > th { + background-color: #b9bbbe; +} + +.table-active, +.table-active > th, +.table-active > td { + background-color: rgba(0, 0, 0, 0.075); +} + +.table-hover .table-active:hover { + background-color: rgba(0, 0, 0, 0.075); +} + +.table-hover .table-active:hover > td, +.table-hover .table-active:hover > th { + background-color: rgba(0, 0, 0, 0.075); +} + +.table .thead-dark th { + color: #fff; + background-color: #212529; + border-color: #32383e; +} + +.table .thead-light th { + color: #495057; + background-color: #e9ecef; + border-color: #dee2e6; +} + +.table-dark { + color: #fff; + background-color: #212529; +} + +.table-dark th, +.table-dark td, +.table-dark thead th { + border-color: #32383e; +} + +.table-dark.table-bordered { + border: 0; +} + +.table-dark.table-striped tbody tr:nth-of-type(odd) { + background-color: rgba(255, 255, 255, 0.05); +} + +.table-dark.table-hover tbody tr:hover { + background-color: rgba(255, 255, 255, 0.075); +} + +@media (max-width: 575.98px) { + .table-responsive-sm { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + -ms-overflow-style: -ms-autohiding-scrollbar; + } + .table-responsive-sm > .table-bordered { + border: 0; + } +} + +@media (max-width: 767.98px) { + .table-responsive-md { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + -ms-overflow-style: -ms-autohiding-scrollbar; + } + .table-responsive-md > .table-bordered { + border: 0; + } +} + +@media (max-width: 991.98px) { + .table-responsive-lg { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + -ms-overflow-style: -ms-autohiding-scrollbar; + } + .table-responsive-lg > .table-bordered { + border: 0; + } +} + +@media (max-width: 1199.98px) { + .table-responsive-xl { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + -ms-overflow-style: -ms-autohiding-scrollbar; + } + .table-responsive-xl > .table-bordered { + border: 0; + } +} + +.table-responsive { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + -ms-overflow-style: -ms-autohiding-scrollbar; +} + +.table-responsive > .table-bordered { + border: 0; +} + +.form-control { + display: block; + width: 100%; + padding: 0.375rem 0.75rem; + font-size: 1rem; + line-height: 1.5; + color: #495057; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #ced4da; + border-radius: 0.25rem; + transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} + +.form-control::-ms-expand { + background-color: transparent; + border: 0; +} + +.form-control:focus { + color: #495057; + background-color: #fff; + border-color: #80bdff; + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +.form-control::-webkit-input-placeholder { + color: #6c757d; + opacity: 1; +} + +.form-control::-moz-placeholder { + color: #6c757d; + opacity: 1; +} + +.form-control:-ms-input-placeholder { + color: #6c757d; + opacity: 1; +} + +.form-control::-ms-input-placeholder { + color: #6c757d; + opacity: 1; +} + +.form-control::placeholder { + color: #6c757d; + opacity: 1; +} + +.form-control:disabled, .form-control[readonly] { + background-color: #e9ecef; + opacity: 1; +} + +select.form-control:not([size]):not([multiple]) { + height: calc(2.25rem + 2px); +} + +select.form-control:focus::-ms-value { + color: #495057; + background-color: #fff; +} + +.form-control-file, +.form-control-range { + display: block; + width: 100%; +} + +.col-form-label { + padding-top: calc(0.375rem + 1px); + padding-bottom: calc(0.375rem + 1px); + margin-bottom: 0; + font-size: inherit; + line-height: 1.5; +} + +.col-form-label-lg { + padding-top: calc(0.5rem + 1px); + padding-bottom: calc(0.5rem + 1px); + font-size: 1.25rem; + line-height: 1.5; +} + +.col-form-label-sm { + padding-top: calc(0.25rem + 1px); + padding-bottom: calc(0.25rem + 1px); + font-size: 0.875rem; + line-height: 1.5; +} + +.form-control-plaintext { + display: block; + width: 100%; + padding-top: 0.375rem; + padding-bottom: 0.375rem; + margin-bottom: 0; + line-height: 1.5; + background-color: transparent; + border: solid transparent; + border-width: 1px 0; +} + +.form-control-plaintext.form-control-sm, .input-group-sm > .form-control-plaintext.form-control, +.input-group-sm > .input-group-prepend > .form-control-plaintext.input-group-text, +.input-group-sm > .input-group-append > .form-control-plaintext.input-group-text, +.input-group-sm > .input-group-prepend > .form-control-plaintext.btn, +.input-group-sm > .input-group-append > .form-control-plaintext.btn, .form-control-plaintext.form-control-lg, .input-group-lg > .form-control-plaintext.form-control, +.input-group-lg > .input-group-prepend > .form-control-plaintext.input-group-text, +.input-group-lg > .input-group-append > .form-control-plaintext.input-group-text, +.input-group-lg > .input-group-prepend > .form-control-plaintext.btn, +.input-group-lg > .input-group-append > .form-control-plaintext.btn { + padding-right: 0; + padding-left: 0; +} + +.form-control-sm, .input-group-sm > .form-control, +.input-group-sm > .input-group-prepend > .input-group-text, +.input-group-sm > .input-group-append > .input-group-text, +.input-group-sm > .input-group-prepend > .btn, +.input-group-sm > .input-group-append > .btn { + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + line-height: 1.5; + border-radius: 0.2rem; +} + +select.form-control-sm:not([size]):not([multiple]), .input-group-sm > select.form-control:not([size]):not([multiple]), +.input-group-sm > .input-group-prepend > select.input-group-text:not([size]):not([multiple]), +.input-group-sm > .input-group-append > select.input-group-text:not([size]):not([multiple]), +.input-group-sm > .input-group-prepend > select.btn:not([size]):not([multiple]), +.input-group-sm > .input-group-append > select.btn:not([size]):not([multiple]) { + height: calc(1.8125rem + 2px); +} + +.form-control-lg, .input-group-lg > .form-control, +.input-group-lg > .input-group-prepend > .input-group-text, +.input-group-lg > .input-group-append > .input-group-text, +.input-group-lg > .input-group-prepend > .btn, +.input-group-lg > .input-group-append > .btn { + padding: 0.5rem 1rem; + font-size: 1.25rem; + line-height: 1.5; + border-radius: 0.3rem; +} + +select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.form-control:not([size]):not([multiple]), +.input-group-lg > .input-group-prepend > select.input-group-text:not([size]):not([multiple]), +.input-group-lg > .input-group-append > select.input-group-text:not([size]):not([multiple]), +.input-group-lg > .input-group-prepend > select.btn:not([size]):not([multiple]), +.input-group-lg > .input-group-append > select.btn:not([size]):not([multiple]) { + height: calc(2.875rem + 2px); +} + +.form-group { + margin-bottom: 1rem; +} + +.form-text { + display: block; + margin-top: 0.25rem; +} + +.form-row { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + margin-right: -5px; + margin-left: -5px; +} + +.form-row > .col, +.form-row > [class*="col-"] { + padding-right: 5px; + padding-left: 5px; +} + +.form-check { + position: relative; + display: block; + padding-left: 1.25rem; +} + +.form-check-input { + position: absolute; + margin-top: 0.3rem; + margin-left: -1.25rem; +} + +.form-check-input:disabled ~ .form-check-label { + color: #6c757d; +} + +.form-check-label { + margin-bottom: 0; +} + +.form-check-inline { + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + padding-left: 0; + margin-right: 0.75rem; +} + +.form-check-inline .form-check-input { + position: static; + margin-top: 0; + margin-right: 0.3125rem; + margin-left: 0; +} + +.valid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: 80%; + color: #28a745; +} + +.valid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + max-width: 100%; + padding: .5rem; + margin-top: .1rem; + font-size: .875rem; + line-height: 1; + color: #fff; + background-color: rgba(40, 167, 69, 0.8); + border-radius: .2rem; +} + +.was-validated .form-control:valid, .form-control.is-valid, .was-validated +.custom-select:valid, +.custom-select.is-valid { + border-color: #28a745; +} + +.was-validated .form-control:valid:focus, .form-control.is-valid:focus, .was-validated +.custom-select:valid:focus, +.custom-select.is-valid:focus { + border-color: #28a745; + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); +} + +.was-validated .form-control:valid ~ .valid-feedback, +.was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback, +.form-control.is-valid ~ .valid-tooltip, .was-validated +.custom-select:valid ~ .valid-feedback, +.was-validated +.custom-select:valid ~ .valid-tooltip, +.custom-select.is-valid ~ .valid-feedback, +.custom-select.is-valid ~ .valid-tooltip { + display: block; +} + +.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label { + color: #28a745; +} + +.was-validated .form-check-input:valid ~ .valid-feedback, +.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback, +.form-check-input.is-valid ~ .valid-tooltip { + display: block; +} + +.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label { + color: #28a745; +} + +.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before { + background-color: #71dd8a; +} + +.was-validated .custom-control-input:valid ~ .valid-feedback, +.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback, +.custom-control-input.is-valid ~ .valid-tooltip { + display: block; +} + +.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before { + background-color: #34ce57; +} + +.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(40, 167, 69, 0.25); +} + +.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label { + border-color: #28a745; +} + +.was-validated .custom-file-input:valid ~ .custom-file-label::before, .custom-file-input.is-valid ~ .custom-file-label::before { + border-color: inherit; +} + +.was-validated .custom-file-input:valid ~ .valid-feedback, +.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback, +.custom-file-input.is-valid ~ .valid-tooltip { + display: block; +} + +.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label { + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); +} + +.invalid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: 80%; + color: #dc3545; +} + +.invalid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + max-width: 100%; + padding: .5rem; + margin-top: .1rem; + font-size: .875rem; + line-height: 1; + color: #fff; + background-color: rgba(220, 53, 69, 0.8); + border-radius: .2rem; +} + +.was-validated .form-control:invalid, .form-control.is-invalid, .was-validated +.custom-select:invalid, +.custom-select.is-invalid { + border-color: #dc3545; +} + +.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus, .was-validated +.custom-select:invalid:focus, +.custom-select.is-invalid:focus { + border-color: #dc3545; + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); +} + +.was-validated .form-control:invalid ~ .invalid-feedback, +.was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback, +.form-control.is-invalid ~ .invalid-tooltip, .was-validated +.custom-select:invalid ~ .invalid-feedback, +.was-validated +.custom-select:invalid ~ .invalid-tooltip, +.custom-select.is-invalid ~ .invalid-feedback, +.custom-select.is-invalid ~ .invalid-tooltip { + display: block; +} + +.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label { + color: #dc3545; +} + +.was-validated .form-check-input:invalid ~ .invalid-feedback, +.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback, +.form-check-input.is-invalid ~ .invalid-tooltip { + display: block; +} + +.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label { + color: #dc3545; +} + +.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before { + background-color: #efa2a9; +} + +.was-validated .custom-control-input:invalid ~ .invalid-feedback, +.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback, +.custom-control-input.is-invalid ~ .invalid-tooltip { + display: block; +} + +.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before { + background-color: #e4606d; +} + +.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(220, 53, 69, 0.25); +} + +.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label { + border-color: #dc3545; +} + +.was-validated .custom-file-input:invalid ~ .custom-file-label::before, .custom-file-input.is-invalid ~ .custom-file-label::before { + border-color: inherit; +} + +.was-validated .custom-file-input:invalid ~ .invalid-feedback, +.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback, +.custom-file-input.is-invalid ~ .invalid-tooltip { + display: block; +} + +.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label { + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); +} + +.form-inline { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row wrap; + flex-flow: row wrap; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; +} + +.form-inline .form-check { + width: 100%; +} + +@media (min-width: 576px) { + .form-inline label { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + margin-bottom: 0; + } + .form-inline .form-group { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row wrap; + flex-flow: row wrap; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + margin-bottom: 0; + } + .form-inline .form-control { + display: inline-block; + width: auto; + vertical-align: middle; + } + .form-inline .form-control-plaintext { + display: inline-block; + } + .form-inline .input-group { + width: auto; + } + .form-inline .form-check { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + width: auto; + padding-left: 0; + } + .form-inline .form-check-input { + position: relative; + margin-top: 0; + margin-right: 0.25rem; + margin-left: 0; + } + .form-inline .custom-control { + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + } + .form-inline .custom-control-label { + margin-bottom: 0; + } +} + +.btn { + display: inline-block; + font-weight: 400; + text-align: center; + white-space: nowrap; + vertical-align: middle; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + border: 1px solid transparent; + padding: 0.375rem 0.75rem; + font-size: 1rem; + line-height: 1.5; + border-radius: 0.25rem; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} + +.btn:hover, .btn:focus { + text-decoration: none; +} + +.btn:focus, .btn.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +.btn.disabled, .btn:disabled { + opacity: 0.65; +} + +.btn:not(:disabled):not(.disabled) { + cursor: pointer; +} + +.btn:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled).active { + background-image: none; +} + +a.btn.disabled, +fieldset:disabled a.btn { + pointer-events: none; +} + +.btn-primary { + color: #fff; + background-color: #007bff; + border-color: #007bff; +} + +.btn-primary:hover { + color: #fff; + background-color: #0069d9; + border-color: #0062cc; +} + +.btn-primary:focus, .btn-primary.focus { + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); +} + +.btn-primary.disabled, .btn-primary:disabled { + color: #fff; + background-color: #007bff; + border-color: #007bff; +} + +.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, +.show > .btn-primary.dropdown-toggle { + color: #fff; + background-color: #0062cc; + border-color: #005cbf; +} + +.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, +.show > .btn-primary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); +} + +.btn-secondary { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; +} + +.btn-secondary:hover { + color: #fff; + background-color: #5a6268; + border-color: #545b62; +} + +.btn-secondary:focus, .btn-secondary.focus { + box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); +} + +.btn-secondary.disabled, .btn-secondary:disabled { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; +} + +.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, +.show > .btn-secondary.dropdown-toggle { + color: #fff; + background-color: #545b62; + border-color: #4e555b; +} + +.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, +.show > .btn-secondary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); +} + +.btn-success { + color: #fff; + background-color: #28a745; + border-color: #28a745; +} + +.btn-success:hover { + color: #fff; + background-color: #218838; + border-color: #1e7e34; +} + +.btn-success:focus, .btn-success.focus { + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); +} + +.btn-success.disabled, .btn-success:disabled { + color: #fff; + background-color: #28a745; + border-color: #28a745; +} + +.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, +.show > .btn-success.dropdown-toggle { + color: #fff; + background-color: #1e7e34; + border-color: #1c7430; +} + +.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, +.show > .btn-success.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); +} + +.btn-info { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8; +} + +.btn-info:hover { + color: #fff; + background-color: #138496; + border-color: #117a8b; +} + +.btn-info:focus, .btn-info.focus { + box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); +} + +.btn-info.disabled, .btn-info:disabled { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8; +} + +.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, +.show > .btn-info.dropdown-toggle { + color: #fff; + background-color: #117a8b; + border-color: #10707f; +} + +.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, +.show > .btn-info.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); +} + +.btn-warning { + color: #212529; + background-color: #ffc107; + border-color: #ffc107; +} + +.btn-warning:hover { + color: #212529; + background-color: #e0a800; + border-color: #d39e00; +} + +.btn-warning:focus, .btn-warning.focus { + box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); +} + +.btn-warning.disabled, .btn-warning:disabled { + color: #212529; + background-color: #ffc107; + border-color: #ffc107; +} + +.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, +.show > .btn-warning.dropdown-toggle { + color: #212529; + background-color: #d39e00; + border-color: #c69500; +} + +.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, +.show > .btn-warning.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); +} + +.btn-danger { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; +} + +.btn-danger:hover { + color: #fff; + background-color: #c82333; + border-color: #bd2130; +} + +.btn-danger:focus, .btn-danger.focus { + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); +} + +.btn-danger.disabled, .btn-danger:disabled { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; +} + +.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, +.show > .btn-danger.dropdown-toggle { + color: #fff; + background-color: #bd2130; + border-color: #b21f2d; +} + +.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, +.show > .btn-danger.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); +} + +.btn-light { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa; +} + +.btn-light:hover { + color: #212529; + background-color: #e2e6ea; + border-color: #dae0e5; +} + +.btn-light:focus, .btn-light.focus { + box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); +} + +.btn-light.disabled, .btn-light:disabled { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa; +} + +.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, +.show > .btn-light.dropdown-toggle { + color: #212529; + background-color: #dae0e5; + border-color: #d3d9df; +} + +.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, +.show > .btn-light.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); +} + +.btn-dark { + color: #fff; + background-color: #343a40; + border-color: #343a40; +} + +.btn-dark:hover { + color: #fff; + background-color: #23272b; + border-color: #1d2124; +} + +.btn-dark:focus, .btn-dark.focus { + box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); +} + +.btn-dark.disabled, .btn-dark:disabled { + color: #fff; + background-color: #343a40; + border-color: #343a40; +} + +.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, +.show > .btn-dark.dropdown-toggle { + color: #fff; + background-color: #1d2124; + border-color: #171a1d; +} + +.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, +.show > .btn-dark.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); +} + +.btn-outline-primary { + color: #007bff; + background-color: transparent; + background-image: none; + border-color: #007bff; +} + +.btn-outline-primary:hover { + color: #fff; + background-color: #007bff; + border-color: #007bff; +} + +.btn-outline-primary:focus, .btn-outline-primary.focus { + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); +} + +.btn-outline-primary.disabled, .btn-outline-primary:disabled { + color: #007bff; + background-color: transparent; +} + +.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, +.show > .btn-outline-primary.dropdown-toggle { + color: #fff; + background-color: #007bff; + border-color: #007bff; +} + +.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-primary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); +} + +.btn-outline-secondary { + color: #6c757d; + background-color: transparent; + background-image: none; + border-color: #6c757d; +} + +.btn-outline-secondary:hover { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; +} + +.btn-outline-secondary:focus, .btn-outline-secondary.focus { + box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); +} + +.btn-outline-secondary.disabled, .btn-outline-secondary:disabled { + color: #6c757d; + background-color: transparent; +} + +.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, +.show > .btn-outline-secondary.dropdown-toggle { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; +} + +.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-secondary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); +} + +.btn-outline-success { + color: #28a745; + background-color: transparent; + background-image: none; + border-color: #28a745; +} + +.btn-outline-success:hover { + color: #fff; + background-color: #28a745; + border-color: #28a745; +} + +.btn-outline-success:focus, .btn-outline-success.focus { + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); +} + +.btn-outline-success.disabled, .btn-outline-success:disabled { + color: #28a745; + background-color: transparent; +} + +.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, +.show > .btn-outline-success.dropdown-toggle { + color: #fff; + background-color: #28a745; + border-color: #28a745; +} + +.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-success.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); +} + +.btn-outline-info { + color: #17a2b8; + background-color: transparent; + background-image: none; + border-color: #17a2b8; +} + +.btn-outline-info:hover { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8; +} + +.btn-outline-info:focus, .btn-outline-info.focus { + box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); +} + +.btn-outline-info.disabled, .btn-outline-info:disabled { + color: #17a2b8; + background-color: transparent; +} + +.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, +.show > .btn-outline-info.dropdown-toggle { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8; +} + +.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-info.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); +} + +.btn-outline-warning { + color: #ffc107; + background-color: transparent; + background-image: none; + border-color: #ffc107; +} + +.btn-outline-warning:hover { + color: #212529; + background-color: #ffc107; + border-color: #ffc107; +} + +.btn-outline-warning:focus, .btn-outline-warning.focus { + box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); +} + +.btn-outline-warning.disabled, .btn-outline-warning:disabled { + color: #ffc107; + background-color: transparent; +} + +.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, +.show > .btn-outline-warning.dropdown-toggle { + color: #212529; + background-color: #ffc107; + border-color: #ffc107; +} + +.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-warning.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); +} + +.btn-outline-danger { + color: #dc3545; + background-color: transparent; + background-image: none; + border-color: #dc3545; +} + +.btn-outline-danger:hover { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; +} + +.btn-outline-danger:focus, .btn-outline-danger.focus { + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); +} + +.btn-outline-danger.disabled, .btn-outline-danger:disabled { + color: #dc3545; + background-color: transparent; +} + +.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, +.show > .btn-outline-danger.dropdown-toggle { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; +} + +.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-danger.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); +} + +.btn-outline-light { + color: #f8f9fa; + background-color: transparent; + background-image: none; + border-color: #f8f9fa; +} + +.btn-outline-light:hover { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa; +} + +.btn-outline-light:focus, .btn-outline-light.focus { + box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); +} + +.btn-outline-light.disabled, .btn-outline-light:disabled { + color: #f8f9fa; + background-color: transparent; +} + +.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, +.show > .btn-outline-light.dropdown-toggle { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa; +} + +.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-light.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); +} + +.btn-outline-dark { + color: #343a40; + background-color: transparent; + background-image: none; + border-color: #343a40; +} + +.btn-outline-dark:hover { + color: #fff; + background-color: #343a40; + border-color: #343a40; +} + +.btn-outline-dark:focus, .btn-outline-dark.focus { + box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); +} + +.btn-outline-dark.disabled, .btn-outline-dark:disabled { + color: #343a40; + background-color: transparent; +} + +.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, +.show > .btn-outline-dark.dropdown-toggle { + color: #fff; + background-color: #343a40; + border-color: #343a40; +} + +.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-dark.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); +} + +.btn-link { + font-weight: 400; + color: #007bff; + background-color: transparent; +} + +.btn-link:hover { + color: #0056b3; + text-decoration: underline; + background-color: transparent; + border-color: transparent; +} + +.btn-link:focus, .btn-link.focus { + text-decoration: underline; + border-color: transparent; + box-shadow: none; +} + +.btn-link:disabled, .btn-link.disabled { + color: #6c757d; +} + +.btn-lg, .btn-group-lg > .btn { + padding: 0.5rem 1rem; + font-size: 1.25rem; + line-height: 1.5; + border-radius: 0.3rem; +} + +.btn-sm, .btn-group-sm > .btn { + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + line-height: 1.5; + border-radius: 0.2rem; +} + +.btn-block { + display: block; + width: 100%; +} + +.btn-block + .btn-block { + margin-top: 0.5rem; +} + +input[type="submit"].btn-block, +input[type="reset"].btn-block, +input[type="button"].btn-block { + width: 100%; +} + +.fade { + opacity: 0; + transition: opacity 0.15s linear; +} + +.fade.show { + opacity: 1; +} + +.collapse { + display: none; +} + +.collapse.show { + display: block; +} + +tr.collapse.show { + display: table-row; +} + +tbody.collapse.show { + display: table-row-group; +} + +.collapsing { + position: relative; + height: 0; + overflow: hidden; + transition: height 0.35s ease; +} + +.dropup, +.dropdown { + position: relative; +} + +.dropdown-toggle::after { + display: inline-block; + width: 0; + height: 0; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid; + border-right: 0.3em solid transparent; + border-bottom: 0; + border-left: 0.3em solid transparent; +} + +.dropdown-toggle:empty::after { + margin-left: 0; +} + +.dropdown-menu { + position: absolute; + top: 100%; + left: 0; + z-index: 1000; + display: none; + float: left; + min-width: 10rem; + padding: 0.5rem 0; + margin: 0.125rem 0 0; + font-size: 1rem; + color: #212529; + text-align: left; + list-style: none; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.15); + border-radius: 0.25rem; +} + +.dropup .dropdown-menu { + margin-top: 0; + margin-bottom: 0.125rem; +} + +.dropup .dropdown-toggle::after { + display: inline-block; + width: 0; + height: 0; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0; + border-right: 0.3em solid transparent; + border-bottom: 0.3em solid; + border-left: 0.3em solid transparent; +} + +.dropup .dropdown-toggle:empty::after { + margin-left: 0; +} + +.dropright .dropdown-menu { + margin-top: 0; + margin-left: 0.125rem; +} + +.dropright .dropdown-toggle::after { + display: inline-block; + width: 0; + height: 0; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid transparent; + border-bottom: 0.3em solid transparent; + border-left: 0.3em solid; +} + +.dropright .dropdown-toggle:empty::after { + margin-left: 0; +} + +.dropright .dropdown-toggle::after { + vertical-align: 0; +} + +.dropleft .dropdown-menu { + margin-top: 0; + margin-right: 0.125rem; +} + +.dropleft .dropdown-toggle::after { + display: inline-block; + width: 0; + height: 0; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; +} + +.dropleft .dropdown-toggle::after { + display: none; +} + +.dropleft .dropdown-toggle::before { + display: inline-block; + width: 0; + height: 0; + margin-right: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid transparent; + border-right: 0.3em solid; + border-bottom: 0.3em solid transparent; +} + +.dropleft .dropdown-toggle:empty::after { + margin-left: 0; +} + +.dropleft .dropdown-toggle::before { + vertical-align: 0; +} + +.dropdown-divider { + height: 0; + margin: 0.5rem 0; + overflow: hidden; + border-top: 1px solid #e9ecef; +} + +.dropdown-item { + display: block; + width: 100%; + padding: 0.25rem 1.5rem; + clear: both; + font-weight: 400; + color: #212529; + text-align: inherit; + white-space: nowrap; + background-color: transparent; + border: 0; +} + +.dropdown-item:hover, .dropdown-item:focus { + color: #16181b; + text-decoration: none; + background-color: #f8f9fa; +} + +.dropdown-item.active, .dropdown-item:active { + color: #fff; + text-decoration: none; + background-color: #007bff; +} + +.dropdown-item.disabled, .dropdown-item:disabled { + color: #6c757d; + background-color: transparent; +} + +.dropdown-menu.show { + display: block; +} + +.dropdown-header { + display: block; + padding: 0.5rem 1.5rem; + margin-bottom: 0; + font-size: 0.875rem; + color: #6c757d; + white-space: nowrap; +} + +.btn-group, +.btn-group-vertical { + position: relative; + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; + vertical-align: middle; +} + +.btn-group > .btn, +.btn-group-vertical > .btn { + position: relative; + -webkit-box-flex: 0; + -ms-flex: 0 1 auto; + flex: 0 1 auto; +} + +.btn-group > .btn:hover, +.btn-group-vertical > .btn:hover { + z-index: 1; +} + +.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, +.btn-group-vertical > .btn:focus, +.btn-group-vertical > .btn:active, +.btn-group-vertical > .btn.active { + z-index: 1; +} + +.btn-group .btn + .btn, +.btn-group .btn + .btn-group, +.btn-group .btn-group + .btn, +.btn-group .btn-group + .btn-group, +.btn-group-vertical .btn + .btn, +.btn-group-vertical .btn + .btn-group, +.btn-group-vertical .btn-group + .btn, +.btn-group-vertical .btn-group + .btn-group { + margin-left: -1px; +} + +.btn-toolbar { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; +} + +.btn-toolbar .input-group { + width: auto; +} + +.btn-group > .btn:first-child { + margin-left: 0; +} + +.btn-group > .btn:not(:last-child):not(.dropdown-toggle), +.btn-group > .btn-group:not(:last-child) > .btn { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.btn-group > .btn:not(:first-child), +.btn-group > .btn-group:not(:first-child) > .btn { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.dropdown-toggle-split { + padding-right: 0.5625rem; + padding-left: 0.5625rem; +} + +.dropdown-toggle-split::after { + margin-left: 0; +} + +.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split { + padding-right: 0.375rem; + padding-left: 0.375rem; +} + +.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split { + padding-right: 0.75rem; + padding-left: 0.75rem; +} + +.btn-group-vertical { + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + -webkit-box-align: start; + -ms-flex-align: start; + align-items: flex-start; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; +} + +.btn-group-vertical .btn, +.btn-group-vertical .btn-group { + width: 100%; +} + +.btn-group-vertical > .btn + .btn, +.btn-group-vertical > .btn + .btn-group, +.btn-group-vertical > .btn-group + .btn, +.btn-group-vertical > .btn-group + .btn-group { + margin-top: -1px; + margin-left: 0; +} + +.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), +.btn-group-vertical > .btn-group:not(:last-child) > .btn { + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} + +.btn-group-vertical > .btn:not(:first-child), +.btn-group-vertical > .btn-group:not(:first-child) > .btn { + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +.btn-group-toggle > .btn, +.btn-group-toggle > .btn-group > .btn { + margin-bottom: 0; +} + +.btn-group-toggle > .btn input[type="radio"], +.btn-group-toggle > .btn input[type="checkbox"], +.btn-group-toggle > .btn-group > .btn input[type="radio"], +.btn-group-toggle > .btn-group > .btn input[type="checkbox"] { + position: absolute; + clip: rect(0, 0, 0, 0); + pointer-events: none; +} + +.input-group { + position: relative; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -webkit-box-align: stretch; + -ms-flex-align: stretch; + align-items: stretch; + width: 100%; +} + +.input-group > .form-control, +.input-group > .custom-select, +.input-group > .custom-file { + position: relative; + -webkit-box-flex: 1; + -ms-flex: 1 1 auto; + flex: 1 1 auto; + width: 1%; + margin-bottom: 0; +} + +.input-group > .form-control:focus, +.input-group > .custom-select:focus, +.input-group > .custom-file:focus { + z-index: 3; +} + +.input-group > .form-control + .form-control, +.input-group > .form-control + .custom-select, +.input-group > .form-control + .custom-file, +.input-group > .custom-select + .form-control, +.input-group > .custom-select + .custom-select, +.input-group > .custom-select + .custom-file, +.input-group > .custom-file + .form-control, +.input-group > .custom-file + .custom-select, +.input-group > .custom-file + .custom-file { + margin-left: -1px; +} + +.input-group > .form-control:not(:last-child), +.input-group > .custom-select:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.input-group > .form-control:not(:first-child), +.input-group > .custom-select:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.input-group > .custom-file { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; +} + +.input-group > .custom-file:not(:last-child) .custom-file-label, +.input-group > .custom-file:not(:last-child) .custom-file-label::before { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.input-group > .custom-file:not(:first-child) .custom-file-label, +.input-group > .custom-file:not(:first-child) .custom-file-label::before { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.input-group-prepend, +.input-group-append { + display: -webkit-box; + display: -ms-flexbox; + display: flex; +} + +.input-group-prepend .btn, +.input-group-append .btn { + position: relative; + z-index: 2; +} + +.input-group-prepend .btn + .btn, +.input-group-prepend .btn + .input-group-text, +.input-group-prepend .input-group-text + .input-group-text, +.input-group-prepend .input-group-text + .btn, +.input-group-append .btn + .btn, +.input-group-append .btn + .input-group-text, +.input-group-append .input-group-text + .input-group-text, +.input-group-append .input-group-text + .btn { + margin-left: -1px; +} + +.input-group-prepend { + margin-right: -1px; +} + +.input-group-append { + margin-left: -1px; +} + +.input-group-text { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + padding: 0.375rem 0.75rem; + margin-bottom: 0; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + text-align: center; + white-space: nowrap; + background-color: #e9ecef; + border: 1px solid #ced4da; + border-radius: 0.25rem; +} + +.input-group-text input[type="radio"], +.input-group-text input[type="checkbox"] { + margin-top: 0; +} + +.input-group > .input-group-prepend > .btn, +.input-group > .input-group-prepend > .input-group-text, +.input-group > .input-group-append:not(:last-child) > .btn, +.input-group > .input-group-append:not(:last-child) > .input-group-text, +.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle), +.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.input-group > .input-group-append > .btn, +.input-group > .input-group-append > .input-group-text, +.input-group > .input-group-prepend:not(:first-child) > .btn, +.input-group > .input-group-prepend:not(:first-child) > .input-group-text, +.input-group > .input-group-prepend:first-child > .btn:not(:first-child), +.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.custom-control { + position: relative; + display: block; + min-height: 1.5rem; + padding-left: 1.5rem; +} + +.custom-control-inline { + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; + margin-right: 1rem; +} + +.custom-control-input { + position: absolute; + z-index: -1; + opacity: 0; +} + +.custom-control-input:checked ~ .custom-control-label::before { + color: #fff; + background-color: #007bff; +} + +.custom-control-input:focus ~ .custom-control-label::before { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +.custom-control-input:active ~ .custom-control-label::before { + color: #fff; + background-color: #b3d7ff; +} + +.custom-control-input:disabled ~ .custom-control-label { + color: #6c757d; +} + +.custom-control-input:disabled ~ .custom-control-label::before { + background-color: #e9ecef; +} + +.custom-control-label { + margin-bottom: 0; +} + +.custom-control-label::before { + position: absolute; + top: 0.25rem; + left: 0; + display: block; + width: 1rem; + height: 1rem; + pointer-events: none; + content: ""; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + background-color: #dee2e6; +} + +.custom-control-label::after { + position: absolute; + top: 0.25rem; + left: 0; + display: block; + width: 1rem; + height: 1rem; + content: ""; + background-repeat: no-repeat; + background-position: center center; + background-size: 50% 50%; +} + +.custom-checkbox .custom-control-label::before { + border-radius: 0.25rem; +} + +.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before { + background-color: #007bff; +} + +.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E"); +} + +.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before { + background-color: #007bff; +} + +.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E"); +} + +.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before { + background-color: rgba(0, 123, 255, 0.5); +} + +.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before { + background-color: rgba(0, 123, 255, 0.5); +} + +.custom-radio .custom-control-label::before { + border-radius: 50%; +} + +.custom-radio .custom-control-input:checked ~ .custom-control-label::before { + background-color: #007bff; +} + +.custom-radio .custom-control-input:checked ~ .custom-control-label::after { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E"); +} + +.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before { + background-color: rgba(0, 123, 255, 0.5); +} + +.custom-select { + display: inline-block; + width: 100%; + height: calc(2.25rem + 2px); + padding: 0.375rem 1.75rem 0.375rem 0.75rem; + line-height: 1.5; + color: #495057; + vertical-align: middle; + background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center; + background-size: 8px 10px; + border: 1px solid #ced4da; + border-radius: 0.25rem; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} + +.custom-select:focus { + border-color: #80bdff; + outline: 0; + box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 5px rgba(128, 189, 255, 0.5); +} + +.custom-select:focus::-ms-value { + color: #495057; + background-color: #fff; +} + +.custom-select[multiple], .custom-select[size]:not([size="1"]) { + height: auto; + padding-right: 0.75rem; + background-image: none; +} + +.custom-select:disabled { + color: #6c757d; + background-color: #e9ecef; +} + +.custom-select::-ms-expand { + opacity: 0; +} + +.custom-select-sm { + height: calc(1.8125rem + 2px); + padding-top: 0.375rem; + padding-bottom: 0.375rem; + font-size: 75%; +} + +.custom-select-lg { + height: calc(2.875rem + 2px); + padding-top: 0.375rem; + padding-bottom: 0.375rem; + font-size: 125%; +} + +.custom-file { + position: relative; + display: inline-block; + width: 100%; + height: calc(2.25rem + 2px); + margin-bottom: 0; +} + +.custom-file-input { + position: relative; + z-index: 2; + width: 100%; + height: calc(2.25rem + 2px); + margin: 0; + opacity: 0; +} + +.custom-file-input:focus ~ .custom-file-control { + border-color: #80bdff; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +.custom-file-input:focus ~ .custom-file-control::before { + border-color: #80bdff; +} + +.custom-file-input:lang(en) ~ .custom-file-label::after { + content: "Browse"; +} + +.custom-file-label { + position: absolute; + top: 0; + right: 0; + left: 0; + z-index: 1; + height: calc(2.25rem + 2px); + padding: 0.375rem 0.75rem; + line-height: 1.5; + color: #495057; + background-color: #fff; + border: 1px solid #ced4da; + border-radius: 0.25rem; +} + +.custom-file-label::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + z-index: 3; + display: block; + height: calc(calc(2.25rem + 2px) - 1px * 2); + padding: 0.375rem 0.75rem; + line-height: 1.5; + color: #495057; + content: "Browse"; + background-color: #e9ecef; + border-left: 1px solid #ced4da; + border-radius: 0 0.25rem 0.25rem 0; +} + +.nav { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + padding-left: 0; + margin-bottom: 0; + list-style: none; +} + +.nav-link { + display: block; + padding: 0.5rem 1rem; +} + +.nav-link:hover, .nav-link:focus { + text-decoration: none; +} + +.nav-link.disabled { + color: #6c757d; +} + +.nav-tabs { + border-bottom: 1px solid #dee2e6; +} + +.nav-tabs .nav-item { + margin-bottom: -1px; +} + +.nav-tabs .nav-link { + border: 1px solid transparent; + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; +} + +.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus { + border-color: #e9ecef #e9ecef #dee2e6; +} + +.nav-tabs .nav-link.disabled { + color: #6c757d; + background-color: transparent; + border-color: transparent; +} + +.nav-tabs .nav-link.active, +.nav-tabs .nav-item.show .nav-link { + color: #495057; + background-color: #fff; + border-color: #dee2e6 #dee2e6 #fff; +} + +.nav-tabs .dropdown-menu { + margin-top: -1px; + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +.nav-pills .nav-link { + border-radius: 0.25rem; +} + +.nav-pills .nav-link.active, +.nav-pills .show > .nav-link { + color: #fff; + background-color: #007bff; +} + +.nav-fill .nav-item { + -webkit-box-flex: 1; + -ms-flex: 1 1 auto; + flex: 1 1 auto; + text-align: center; +} + +.nav-justified .nav-item { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + text-align: center; +} + +.tab-content > .tab-pane { + display: none; +} + +.tab-content > .active { + display: block; +} + +.navbar { + position: relative; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; + padding: 0.5rem 1rem; +} + +.navbar > .container, +.navbar > .container-fluid { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; +} + +.navbar-brand { + display: inline-block; + padding-top: 0.3125rem; + padding-bottom: 0.3125rem; + margin-right: 1rem; + font-size: 1.25rem; + line-height: inherit; + white-space: nowrap; +} + +.navbar-brand:hover, .navbar-brand:focus { + text-decoration: none; +} + +.navbar-nav { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + padding-left: 0; + margin-bottom: 0; + list-style: none; +} + +.navbar-nav .nav-link { + padding-right: 0; + padding-left: 0; +} + +.navbar-nav .dropdown-menu { + position: static; + float: none; +} + +.navbar-text { + display: inline-block; + padding-top: 0.5rem; + padding-bottom: 0.5rem; +} + +.navbar-collapse { + -ms-flex-preferred-size: 100%; + flex-basis: 100%; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; +} + +.navbar-toggler { + padding: 0.25rem 0.75rem; + font-size: 1.25rem; + line-height: 1; + background-color: transparent; + border: 1px solid transparent; + border-radius: 0.25rem; +} + +.navbar-toggler:hover, .navbar-toggler:focus { + text-decoration: none; +} + +.navbar-toggler:not(:disabled):not(.disabled) { + cursor: pointer; +} + +.navbar-toggler-icon { + display: inline-block; + width: 1.5em; + height: 1.5em; + vertical-align: middle; + content: ""; + background: no-repeat center center; + background-size: 100% 100%; +} + +@media (max-width: 575.98px) { + .navbar-expand-sm > .container, + .navbar-expand-sm > .container-fluid { + padding-right: 0; + padding-left: 0; + } +} + +@media (min-width: 576px) { + .navbar-expand-sm { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; + } + .navbar-expand-sm .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; + } + .navbar-expand-sm .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-sm .navbar-nav .dropdown-menu-right { + right: 0; + left: auto; + } + .navbar-expand-sm .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + .navbar-expand-sm > .container, + .navbar-expand-sm > .container-fluid { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; + } + .navbar-expand-sm .navbar-collapse { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; + } + .navbar-expand-sm .navbar-toggler { + display: none; + } + .navbar-expand-sm .dropup .dropdown-menu { + top: auto; + bottom: 100%; + } +} + +@media (max-width: 767.98px) { + .navbar-expand-md > .container, + .navbar-expand-md > .container-fluid { + padding-right: 0; + padding-left: 0; + } +} + +@media (min-width: 768px) { + .navbar-expand-md { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; + } + .navbar-expand-md .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; + } + .navbar-expand-md .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-md .navbar-nav .dropdown-menu-right { + right: 0; + left: auto; + } + .navbar-expand-md .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + .navbar-expand-md > .container, + .navbar-expand-md > .container-fluid { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; + } + .navbar-expand-md .navbar-collapse { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; + } + .navbar-expand-md .navbar-toggler { + display: none; + } + .navbar-expand-md .dropup .dropdown-menu { + top: auto; + bottom: 100%; + } +} + +@media (max-width: 991.98px) { + .navbar-expand-lg > .container, + .navbar-expand-lg > .container-fluid { + padding-right: 0; + padding-left: 0; + } +} + +@media (min-width: 992px) { + .navbar-expand-lg { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; + } + .navbar-expand-lg .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; + } + .navbar-expand-lg .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-lg .navbar-nav .dropdown-menu-right { + right: 0; + left: auto; + } + .navbar-expand-lg .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + .navbar-expand-lg > .container, + .navbar-expand-lg > .container-fluid { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; + } + .navbar-expand-lg .navbar-collapse { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; + } + .navbar-expand-lg .navbar-toggler { + display: none; + } + .navbar-expand-lg .dropup .dropdown-menu { + top: auto; + bottom: 100%; + } +} + +@media (max-width: 1199.98px) { + .navbar-expand-xl > .container, + .navbar-expand-xl > .container-fluid { + padding-right: 0; + padding-left: 0; + } +} + +@media (min-width: 1200px) { + .navbar-expand-xl { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; + } + .navbar-expand-xl .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; + } + .navbar-expand-xl .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-xl .navbar-nav .dropdown-menu-right { + right: 0; + left: auto; + } + .navbar-expand-xl .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + .navbar-expand-xl > .container, + .navbar-expand-xl > .container-fluid { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; + } + .navbar-expand-xl .navbar-collapse { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; + } + .navbar-expand-xl .navbar-toggler { + display: none; + } + .navbar-expand-xl .dropup .dropdown-menu { + top: auto; + bottom: 100%; + } +} + +.navbar-expand { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; +} + +.navbar-expand > .container, +.navbar-expand > .container-fluid { + padding-right: 0; + padding-left: 0; +} + +.navbar-expand .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; +} + +.navbar-expand .navbar-nav .dropdown-menu { + position: absolute; +} + +.navbar-expand .navbar-nav .dropdown-menu-right { + right: 0; + left: auto; +} + +.navbar-expand .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; +} + +.navbar-expand > .container, +.navbar-expand > .container-fluid { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; +} + +.navbar-expand .navbar-collapse { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; +} + +.navbar-expand .navbar-toggler { + display: none; +} + +.navbar-expand .dropup .dropdown-menu { + top: auto; + bottom: 100%; +} + +.navbar-light .navbar-brand { + color: rgba(0, 0, 0, 0.9); +} + +.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus { + color: rgba(0, 0, 0, 0.9); +} + +.navbar-light .navbar-nav .nav-link { + color: rgba(0, 0, 0, 0.5); +} + +.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus { + color: rgba(0, 0, 0, 0.7); +} + +.navbar-light .navbar-nav .nav-link.disabled { + color: rgba(0, 0, 0, 0.3); +} + +.navbar-light .navbar-nav .show > .nav-link, +.navbar-light .navbar-nav .active > .nav-link, +.navbar-light .navbar-nav .nav-link.show, +.navbar-light .navbar-nav .nav-link.active { + color: rgba(0, 0, 0, 0.9); +} + +.navbar-light .navbar-toggler { + color: rgba(0, 0, 0, 0.5); + border-color: rgba(0, 0, 0, 0.1); +} + +.navbar-light .navbar-toggler-icon { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); +} + +.navbar-light .navbar-text { + color: rgba(0, 0, 0, 0.5); +} + +.navbar-light .navbar-text a { + color: rgba(0, 0, 0, 0.9); +} + +.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus { + color: rgba(0, 0, 0, 0.9); +} + +.navbar-dark .navbar-brand { + color: #fff; +} + +.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus { + color: #fff; +} + +.navbar-dark .navbar-nav .nav-link { + color: rgba(255, 255, 255, 0.5); +} + +.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus { + color: rgba(255, 255, 255, 0.75); +} + +.navbar-dark .navbar-nav .nav-link.disabled { + color: rgba(255, 255, 255, 0.25); +} + +.navbar-dark .navbar-nav .show > .nav-link, +.navbar-dark .navbar-nav .active > .nav-link, +.navbar-dark .navbar-nav .nav-link.show, +.navbar-dark .navbar-nav .nav-link.active { + color: #fff; +} + +.navbar-dark .navbar-toggler { + color: rgba(255, 255, 255, 0.5); + border-color: rgba(255, 255, 255, 0.1); +} + +.navbar-dark .navbar-toggler-icon { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); +} + +.navbar-dark .navbar-text { + color: rgba(255, 255, 255, 0.5); +} + +.navbar-dark .navbar-text a { + color: #fff; +} + +.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus { + color: #fff; +} + +.card { + position: relative; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + min-width: 0; + word-wrap: break-word; + background-color: #fff; + background-clip: border-box; + border: 1px solid rgba(0, 0, 0, 0.125); + border-radius: 0.25rem; +} + +.card > hr { + margin-right: 0; + margin-left: 0; +} + +.card > .list-group:first-child .list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; +} + +.card > .list-group:last-child .list-group-item:last-child { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; +} + +.card-body { + -webkit-box-flex: 1; + -ms-flex: 1 1 auto; + flex: 1 1 auto; + padding: 1.25rem; +} + +.card-title { + margin-bottom: 0.75rem; +} + +.card-subtitle { + margin-top: -0.375rem; + margin-bottom: 0; +} + +.card-text:last-child { + margin-bottom: 0; +} + +.card-link:hover { + text-decoration: none; +} + +.card-link + .card-link { + margin-left: 1.25rem; +} + +.card-header { + padding: 0.75rem 1.25rem; + margin-bottom: 0; + background-color: rgba(0, 0, 0, 0.03); + border-bottom: 1px solid rgba(0, 0, 0, 0.125); +} + +.card-header:first-child { + border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; +} + +.card-header + .list-group .list-group-item:first-child { + border-top: 0; +} + +.card-footer { + padding: 0.75rem 1.25rem; + background-color: rgba(0, 0, 0, 0.03); + border-top: 1px solid rgba(0, 0, 0, 0.125); +} + +.card-footer:last-child { + border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); +} + +.card-header-tabs { + margin-right: -0.625rem; + margin-bottom: -0.75rem; + margin-left: -0.625rem; + border-bottom: 0; +} + +.card-header-pills { + margin-right: -0.625rem; + margin-left: -0.625rem; +} + +.card-img-overlay { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + padding: 1.25rem; +} + +.card-img { + width: 100%; + border-radius: calc(0.25rem - 1px); +} + +.card-img-top { + width: 100%; + border-top-left-radius: calc(0.25rem - 1px); + border-top-right-radius: calc(0.25rem - 1px); +} + +.card-img-bottom { + width: 100%; + border-bottom-right-radius: calc(0.25rem - 1px); + border-bottom-left-radius: calc(0.25rem - 1px); +} + +.card-deck { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; +} + +.card-deck .card { + margin-bottom: 15px; +} + +@media (min-width: 576px) { + .card-deck { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row wrap; + flex-flow: row wrap; + margin-right: -15px; + margin-left: -15px; + } + .card-deck .card { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-flex: 1; + -ms-flex: 1 0 0%; + flex: 1 0 0%; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + margin-right: 15px; + margin-bottom: 0; + margin-left: 15px; + } +} + +.card-group { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; +} + +.card-group > .card { + margin-bottom: 15px; +} + +@media (min-width: 576px) { + .card-group { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row wrap; + flex-flow: row wrap; + } + .card-group > .card { + -webkit-box-flex: 1; + -ms-flex: 1 0 0%; + flex: 1 0 0%; + margin-bottom: 0; + } + .card-group > .card + .card { + margin-left: 0; + border-left: 0; + } + .card-group > .card:first-child { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + } + .card-group > .card:first-child .card-img-top, + .card-group > .card:first-child .card-header { + border-top-right-radius: 0; + } + .card-group > .card:first-child .card-img-bottom, + .card-group > .card:first-child .card-footer { + border-bottom-right-radius: 0; + } + .card-group > .card:last-child { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + } + .card-group > .card:last-child .card-img-top, + .card-group > .card:last-child .card-header { + border-top-left-radius: 0; + } + .card-group > .card:last-child .card-img-bottom, + .card-group > .card:last-child .card-footer { + border-bottom-left-radius: 0; + } + .card-group > .card:only-child { + border-radius: 0.25rem; + } + .card-group > .card:only-child .card-img-top, + .card-group > .card:only-child .card-header { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; + } + .card-group > .card:only-child .card-img-bottom, + .card-group > .card:only-child .card-footer { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + } + .card-group > .card:not(:first-child):not(:last-child):not(:only-child) { + border-radius: 0; + } + .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top, + .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom, + .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header, + .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer { + border-radius: 0; + } +} + +.card-columns .card { + margin-bottom: 0.75rem; +} + +@media (min-width: 576px) { + .card-columns { + -webkit-column-count: 3; + -moz-column-count: 3; + column-count: 3; + -webkit-column-gap: 1.25rem; + -moz-column-gap: 1.25rem; + column-gap: 1.25rem; + } + .card-columns .card { + display: inline-block; + width: 100%; + } +} + +.breadcrumb { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + padding: 0.75rem 1rem; + margin-bottom: 1rem; + list-style: none; + background-color: #e9ecef; + border-radius: 0.25rem; +} + +.breadcrumb-item + .breadcrumb-item::before { + display: inline-block; + padding-right: 0.5rem; + padding-left: 0.5rem; + color: #6c757d; + content: "/"; +} + +.breadcrumb-item + .breadcrumb-item:hover::before { + text-decoration: underline; +} + +.breadcrumb-item + .breadcrumb-item:hover::before { + text-decoration: none; +} + +.breadcrumb-item.active { + color: #6c757d; +} + +.pagination { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + padding-left: 0; + list-style: none; + border-radius: 0.25rem; +} + +.page-link { + position: relative; + display: block; + padding: 0.5rem 0.75rem; + margin-left: -1px; + line-height: 1.25; + color: #007bff; + background-color: #fff; + border: 1px solid #dee2e6; +} + +.page-link:hover { + color: #0056b3; + text-decoration: none; + background-color: #e9ecef; + border-color: #dee2e6; +} + +.page-link:focus { + z-index: 2; + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +.page-link:not(:disabled):not(.disabled) { + cursor: pointer; +} + +.page-item:first-child .page-link { + margin-left: 0; + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; +} + +.page-item:last-child .page-link { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; +} + +.page-item.active .page-link { + z-index: 1; + color: #fff; + background-color: #007bff; + border-color: #007bff; +} + +.page-item.disabled .page-link { + color: #6c757d; + pointer-events: none; + cursor: auto; + background-color: #fff; + border-color: #dee2e6; +} + +.pagination-lg .page-link { + padding: 0.75rem 1.5rem; + font-size: 1.25rem; + line-height: 1.5; +} + +.pagination-lg .page-item:first-child .page-link { + border-top-left-radius: 0.3rem; + border-bottom-left-radius: 0.3rem; +} + +.pagination-lg .page-item:last-child .page-link { + border-top-right-radius: 0.3rem; + border-bottom-right-radius: 0.3rem; +} + +.pagination-sm .page-link { + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + line-height: 1.5; +} + +.pagination-sm .page-item:first-child .page-link { + border-top-left-radius: 0.2rem; + border-bottom-left-radius: 0.2rem; +} + +.pagination-sm .page-item:last-child .page-link { + border-top-right-radius: 0.2rem; + border-bottom-right-radius: 0.2rem; +} + +.badge { + display: inline-block; + padding: 0.25em 0.4em; + font-size: 75%; + font-weight: 700; + line-height: 1; + text-align: center; + white-space: nowrap; + vertical-align: baseline; + border-radius: 0.25rem; +} + +.badge:empty { + display: none; +} + +.btn .badge { + position: relative; + top: -1px; +} + +.badge-pill { + padding-right: 0.6em; + padding-left: 0.6em; + border-radius: 10rem; +} + +.badge-primary { + color: #fff; + background-color: #007bff; +} + +.badge-primary[href]:hover, .badge-primary[href]:focus { + color: #fff; + text-decoration: none; + background-color: #0062cc; +} + +.badge-secondary { + color: #fff; + background-color: #6c757d; +} + +.badge-secondary[href]:hover, .badge-secondary[href]:focus { + color: #fff; + text-decoration: none; + background-color: #545b62; +} + +.badge-success { + color: #fff; + background-color: #28a745; +} + +.badge-success[href]:hover, .badge-success[href]:focus { + color: #fff; + text-decoration: none; + background-color: #1e7e34; +} + +.badge-info { + color: #fff; + background-color: #17a2b8; +} + +.badge-info[href]:hover, .badge-info[href]:focus { + color: #fff; + text-decoration: none; + background-color: #117a8b; +} + +.badge-warning { + color: #212529; + background-color: #ffc107; +} + +.badge-warning[href]:hover, .badge-warning[href]:focus { + color: #212529; + text-decoration: none; + background-color: #d39e00; +} + +.badge-danger { + color: #fff; + background-color: #dc3545; +} + +.badge-danger[href]:hover, .badge-danger[href]:focus { + color: #fff; + text-decoration: none; + background-color: #bd2130; +} + +.badge-light { + color: #212529; + background-color: #f8f9fa; +} + +.badge-light[href]:hover, .badge-light[href]:focus { + color: #212529; + text-decoration: none; + background-color: #dae0e5; +} + +.badge-dark { + color: #fff; + background-color: #343a40; +} + +.badge-dark[href]:hover, .badge-dark[href]:focus { + color: #fff; + text-decoration: none; + background-color: #1d2124; +} + +.jumbotron { + padding: 2rem 1rem; + margin-bottom: 2rem; + background-color: #e9ecef; + border-radius: 0.3rem; +} + +@media (min-width: 576px) { + .jumbotron { + padding: 4rem 2rem; + } +} + +.jumbotron-fluid { + padding-right: 0; + padding-left: 0; + border-radius: 0; +} + +.alert { + position: relative; + padding: 0.75rem 1.25rem; + margin-bottom: 1rem; + border: 1px solid transparent; + border-radius: 0.25rem; +} + +.alert-heading { + color: inherit; +} + +.alert-link { + font-weight: 700; +} + +.alert-dismissible { + padding-right: 4rem; +} + +.alert-dismissible .close { + position: absolute; + top: 0; + right: 0; + padding: 0.75rem 1.25rem; + color: inherit; +} + +.alert-primary { + color: #004085; + background-color: #cce5ff; + border-color: #b8daff; +} + +.alert-primary hr { + border-top-color: #9fcdff; +} + +.alert-primary .alert-link { + color: #002752; +} + +.alert-secondary { + color: #383d41; + background-color: #e2e3e5; + border-color: #d6d8db; +} + +.alert-secondary hr { + border-top-color: #c8cbcf; +} + +.alert-secondary .alert-link { + color: #202326; +} + +.alert-success { + color: #155724; + background-color: #d4edda; + border-color: #c3e6cb; +} + +.alert-success hr { + border-top-color: #b1dfbb; +} + +.alert-success .alert-link { + color: #0b2e13; +} + +.alert-info { + color: #0c5460; + background-color: #d1ecf1; + border-color: #bee5eb; +} + +.alert-info hr { + border-top-color: #abdde5; +} + +.alert-info .alert-link { + color: #062c33; +} + +.alert-warning { + color: #856404; + background-color: #fff3cd; + border-color: #ffeeba; +} + +.alert-warning hr { + border-top-color: #ffe8a1; +} + +.alert-warning .alert-link { + color: #533f03; +} + +.alert-danger { + color: #721c24; + background-color: #f8d7da; + border-color: #f5c6cb; +} + +.alert-danger hr { + border-top-color: #f1b0b7; +} + +.alert-danger .alert-link { + color: #491217; +} + +.alert-light { + color: #818182; + background-color: #fefefe; + border-color: #fdfdfe; +} + +.alert-light hr { + border-top-color: #ececf6; +} + +.alert-light .alert-link { + color: #686868; +} + +.alert-dark { + color: #1b1e21; + background-color: #d6d8d9; + border-color: #c6c8ca; +} + +.alert-dark hr { + border-top-color: #b9bbbe; +} + +.alert-dark .alert-link { + color: #040505; +} + +@-webkit-keyframes progress-bar-stripes { + from { + background-position: 1rem 0; + } + to { + background-position: 0 0; + } +} + +@keyframes progress-bar-stripes { + from { + background-position: 1rem 0; + } + to { + background-position: 0 0; + } +} + +.progress { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + height: 1rem; + overflow: hidden; + font-size: 0.75rem; + background-color: #e9ecef; + border-radius: 0.25rem; +} + +.progress-bar { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + color: #fff; + text-align: center; + background-color: #007bff; + transition: width 0.6s ease; +} + +.progress-bar-striped { + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-size: 1rem 1rem; +} + +.progress-bar-animated { + -webkit-animation: progress-bar-stripes 1s linear infinite; + animation: progress-bar-stripes 1s linear infinite; +} + +.media { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: start; + -ms-flex-align: start; + align-items: flex-start; +} + +.media-body { + -webkit-box-flex: 1; + -ms-flex: 1; + flex: 1; +} + +.list-group { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + padding-left: 0; + margin-bottom: 0; +} + +.list-group-item-action { + width: 100%; + color: #495057; + text-align: inherit; +} + +.list-group-item-action:hover, .list-group-item-action:focus { + color: #495057; + text-decoration: none; + background-color: #f8f9fa; +} + +.list-group-item-action:active { + color: #212529; + background-color: #e9ecef; +} + +.list-group-item { + position: relative; + display: block; + padding: 0.75rem 1.25rem; + margin-bottom: -1px; + background-color: #fff; + border: 1px solid rgba(0, 0, 0, 0.125); +} + +.list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; +} + +.list-group-item:last-child { + margin-bottom: 0; + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; +} + +.list-group-item:hover, .list-group-item:focus { + z-index: 1; + text-decoration: none; +} + +.list-group-item.disabled, .list-group-item:disabled { + color: #6c757d; + background-color: #fff; +} + +.list-group-item.active { + z-index: 2; + color: #fff; + background-color: #007bff; + border-color: #007bff; +} + +.list-group-flush .list-group-item { + border-right: 0; + border-left: 0; + border-radius: 0; +} + +.list-group-flush:first-child .list-group-item:first-child { + border-top: 0; +} + +.list-group-flush:last-child .list-group-item:last-child { + border-bottom: 0; +} + +.list-group-item-primary { + color: #004085; + background-color: #b8daff; +} + +.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus { + color: #004085; + background-color: #9fcdff; +} + +.list-group-item-primary.list-group-item-action.active { + color: #fff; + background-color: #004085; + border-color: #004085; +} + +.list-group-item-secondary { + color: #383d41; + background-color: #d6d8db; +} + +.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus { + color: #383d41; + background-color: #c8cbcf; +} + +.list-group-item-secondary.list-group-item-action.active { + color: #fff; + background-color: #383d41; + border-color: #383d41; +} + +.list-group-item-success { + color: #155724; + background-color: #c3e6cb; +} + +.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus { + color: #155724; + background-color: #b1dfbb; +} + +.list-group-item-success.list-group-item-action.active { + color: #fff; + background-color: #155724; + border-color: #155724; +} + +.list-group-item-info { + color: #0c5460; + background-color: #bee5eb; +} + +.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus { + color: #0c5460; + background-color: #abdde5; +} + +.list-group-item-info.list-group-item-action.active { + color: #fff; + background-color: #0c5460; + border-color: #0c5460; +} + +.list-group-item-warning { + color: #856404; + background-color: #ffeeba; +} + +.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus { + color: #856404; + background-color: #ffe8a1; +} + +.list-group-item-warning.list-group-item-action.active { + color: #fff; + background-color: #856404; + border-color: #856404; +} + +.list-group-item-danger { + color: #721c24; + background-color: #f5c6cb; +} + +.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus { + color: #721c24; + background-color: #f1b0b7; +} + +.list-group-item-danger.list-group-item-action.active { + color: #fff; + background-color: #721c24; + border-color: #721c24; +} + +.list-group-item-light { + color: #818182; + background-color: #fdfdfe; +} + +.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus { + color: #818182; + background-color: #ececf6; +} + +.list-group-item-light.list-group-item-action.active { + color: #fff; + background-color: #818182; + border-color: #818182; +} + +.list-group-item-dark { + color: #1b1e21; + background-color: #c6c8ca; +} + +.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus { + color: #1b1e21; + background-color: #b9bbbe; +} + +.list-group-item-dark.list-group-item-action.active { + color: #fff; + background-color: #1b1e21; + border-color: #1b1e21; +} + +.close { + float: right; + font-size: 1.5rem; + font-weight: 700; + line-height: 1; + color: #000; + text-shadow: 0 1px 0 #fff; + opacity: .5; +} + +.close:hover, .close:focus { + color: #000; + text-decoration: none; + opacity: .75; +} + +.close:not(:disabled):not(.disabled) { + cursor: pointer; +} + +button.close { + padding: 0; + background-color: transparent; + border: 0; + -webkit-appearance: none; +} + +.modal-open { + overflow: hidden; +} + +.modal { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1050; + display: none; + overflow: hidden; + outline: 0; +} + +.modal-open .modal { + overflow-x: hidden; + overflow-y: auto; +} + +.modal-dialog { + position: relative; + width: auto; + margin: 0.5rem; + pointer-events: none; +} + +.modal.fade .modal-dialog { + transition: -webkit-transform 0.3s ease-out; + transition: transform 0.3s ease-out; + transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; + -webkit-transform: translate(0, -25%); + transform: translate(0, -25%); +} + +.modal.show .modal-dialog { + -webkit-transform: translate(0, 0); + transform: translate(0, 0); +} + +.modal-dialog-centered { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + min-height: calc(100% - (0.5rem * 2)); +} + +.modal-content { + position: relative; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + width: 100%; + pointer-events: auto; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 0.3rem; + outline: 0; +} + +.modal-backdrop { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1040; + background-color: #000; +} + +.modal-backdrop.fade { + opacity: 0; +} + +.modal-backdrop.show { + opacity: 0.5; +} + +.modal-header { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: start; + -ms-flex-align: start; + align-items: flex-start; + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; + padding: 1rem; + border-bottom: 1px solid #e9ecef; + border-top-left-radius: 0.3rem; + border-top-right-radius: 0.3rem; +} + +.modal-header .close { + padding: 1rem; + margin: -1rem -1rem -1rem auto; +} + +.modal-title { + margin-bottom: 0; + line-height: 1.5; +} + +.modal-body { + position: relative; + -webkit-box-flex: 1; + -ms-flex: 1 1 auto; + flex: 1 1 auto; + padding: 1rem; +} + +.modal-footer { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: end; + -ms-flex-pack: end; + justify-content: flex-end; + padding: 1rem; + border-top: 1px solid #e9ecef; +} + +.modal-footer > :not(:first-child) { + margin-left: .25rem; +} + +.modal-footer > :not(:last-child) { + margin-right: .25rem; +} + +.modal-scrollbar-measure { + position: absolute; + top: -9999px; + width: 50px; + height: 50px; + overflow: scroll; +} + +@media (min-width: 576px) { + .modal-dialog { + max-width: 500px; + margin: 1.75rem auto; + } + .modal-dialog-centered { + min-height: calc(100% - (1.75rem * 2)); + } + .modal-sm { + max-width: 300px; + } +} + +@media (min-width: 992px) { + .modal-lg { + max-width: 800px; + } +} + +.tooltip { + position: absolute; + z-index: 1070; + display: block; + margin: 0; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; + font-style: normal; + font-weight: 400; + line-height: 1.5; + text-align: left; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + white-space: normal; + line-break: auto; + font-size: 0.875rem; + word-wrap: break-word; + opacity: 0; +} + +.tooltip.show { + opacity: 0.9; +} + +.tooltip .arrow { + position: absolute; + display: block; + width: 0.8rem; + height: 0.4rem; +} + +.tooltip .arrow::before { + position: absolute; + content: ""; + border-color: transparent; + border-style: solid; +} + +.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] { + padding: 0.4rem 0; +} + +.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow { + bottom: 0; +} + +.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before { + top: 0; + border-width: 0.4rem 0.4rem 0; + border-top-color: #000; +} + +.bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] { + padding: 0 0.4rem; +} + +.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow { + left: 0; + width: 0.4rem; + height: 0.8rem; +} + +.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before { + right: 0; + border-width: 0.4rem 0.4rem 0.4rem 0; + border-right-color: #000; +} + +.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] { + padding: 0.4rem 0; +} + +.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow { + top: 0; +} + +.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before { + bottom: 0; + border-width: 0 0.4rem 0.4rem; + border-bottom-color: #000; +} + +.bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] { + padding: 0 0.4rem; +} + +.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow { + right: 0; + width: 0.4rem; + height: 0.8rem; +} + +.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before { + left: 0; + border-width: 0.4rem 0 0.4rem 0.4rem; + border-left-color: #000; +} + +.tooltip-inner { + max-width: 200px; + padding: 0.25rem 0.5rem; + color: #fff; + text-align: center; + background-color: #000; + border-radius: 0.25rem; +} + +.popover { + position: absolute; + top: 0; + left: 0; + z-index: 1060; + display: block; + max-width: 276px; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; + font-style: normal; + font-weight: 400; + line-height: 1.5; + text-align: left; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + white-space: normal; + line-break: auto; + font-size: 0.875rem; + word-wrap: break-word; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 0.3rem; +} + +.popover .arrow { + position: absolute; + display: block; + width: 1rem; + height: 0.5rem; + margin: 0 0.3rem; +} + +.popover .arrow::before, .popover .arrow::after { + position: absolute; + display: block; + content: ""; + border-color: transparent; + border-style: solid; +} + +.bs-popover-top, .bs-popover-auto[x-placement^="top"] { + margin-bottom: 0.5rem; +} + +.bs-popover-top .arrow, .bs-popover-auto[x-placement^="top"] .arrow { + bottom: calc((0.5rem + 1px) * -1); +} + +.bs-popover-top .arrow::before, .bs-popover-auto[x-placement^="top"] .arrow::before, +.bs-popover-top .arrow::after, .bs-popover-auto[x-placement^="top"] .arrow::after { + border-width: 0.5rem 0.5rem 0; +} + +.bs-popover-top .arrow::before, .bs-popover-auto[x-placement^="top"] .arrow::before { + bottom: 0; + border-top-color: rgba(0, 0, 0, 0.25); +} + +.bs-popover-top .arrow::after, .bs-popover-auto[x-placement^="top"] .arrow::after { + bottom: 1px; + border-top-color: #fff; +} + +.bs-popover-right, .bs-popover-auto[x-placement^="right"] { + margin-left: 0.5rem; +} + +.bs-popover-right .arrow, .bs-popover-auto[x-placement^="right"] .arrow { + left: calc((0.5rem + 1px) * -1); + width: 0.5rem; + height: 1rem; + margin: 0.3rem 0; +} + +.bs-popover-right .arrow::before, .bs-popover-auto[x-placement^="right"] .arrow::before, +.bs-popover-right .arrow::after, .bs-popover-auto[x-placement^="right"] .arrow::after { + border-width: 0.5rem 0.5rem 0.5rem 0; +} + +.bs-popover-right .arrow::before, .bs-popover-auto[x-placement^="right"] .arrow::before { + left: 0; + border-right-color: rgba(0, 0, 0, 0.25); +} + +.bs-popover-right .arrow::after, .bs-popover-auto[x-placement^="right"] .arrow::after { + left: 1px; + border-right-color: #fff; +} + +.bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] { + margin-top: 0.5rem; +} + +.bs-popover-bottom .arrow, .bs-popover-auto[x-placement^="bottom"] .arrow { + top: calc((0.5rem + 1px) * -1); +} + +.bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^="bottom"] .arrow::before, +.bs-popover-bottom .arrow::after, .bs-popover-auto[x-placement^="bottom"] .arrow::after { + border-width: 0 0.5rem 0.5rem 0.5rem; +} + +.bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^="bottom"] .arrow::before { + top: 0; + border-bottom-color: rgba(0, 0, 0, 0.25); +} + +.bs-popover-bottom .arrow::after, .bs-popover-auto[x-placement^="bottom"] .arrow::after { + top: 1px; + border-bottom-color: #fff; +} + +.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before { + position: absolute; + top: 0; + left: 50%; + display: block; + width: 1rem; + margin-left: -0.5rem; + content: ""; + border-bottom: 1px solid #f7f7f7; +} + +.bs-popover-left, .bs-popover-auto[x-placement^="left"] { + margin-right: 0.5rem; +} + +.bs-popover-left .arrow, .bs-popover-auto[x-placement^="left"] .arrow { + right: calc((0.5rem + 1px) * -1); + width: 0.5rem; + height: 1rem; + margin: 0.3rem 0; +} + +.bs-popover-left .arrow::before, .bs-popover-auto[x-placement^="left"] .arrow::before, +.bs-popover-left .arrow::after, .bs-popover-auto[x-placement^="left"] .arrow::after { + border-width: 0.5rem 0 0.5rem 0.5rem; +} + +.bs-popover-left .arrow::before, .bs-popover-auto[x-placement^="left"] .arrow::before { + right: 0; + border-left-color: rgba(0, 0, 0, 0.25); +} + +.bs-popover-left .arrow::after, .bs-popover-auto[x-placement^="left"] .arrow::after { + right: 1px; + border-left-color: #fff; +} + +.popover-header { + padding: 0.5rem 0.75rem; + margin-bottom: 0; + font-size: 1rem; + color: inherit; + background-color: #f7f7f7; + border-bottom: 1px solid #ebebeb; + border-top-left-radius: calc(0.3rem - 1px); + border-top-right-radius: calc(0.3rem - 1px); +} + +.popover-header:empty { + display: none; +} + +.popover-body { + padding: 0.5rem 0.75rem; + color: #212529; +} + +.carousel { + position: relative; +} + +.carousel-inner { + position: relative; + width: 100%; + overflow: hidden; +} + +.carousel-item { + position: relative; + display: none; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + width: 100%; + transition: -webkit-transform 0.6s ease; + transition: transform 0.6s ease; + transition: transform 0.6s ease, -webkit-transform 0.6s ease; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + -webkit-perspective: 1000px; + perspective: 1000px; +} + +.carousel-item.active, +.carousel-item-next, +.carousel-item-prev { + display: block; +} + +.carousel-item-next, +.carousel-item-prev { + position: absolute; + top: 0; +} + +.carousel-item-next.carousel-item-left, +.carousel-item-prev.carousel-item-right { + -webkit-transform: translateX(0); + transform: translateX(0); +} + +@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) { + .carousel-item-next.carousel-item-left, + .carousel-item-prev.carousel-item-right { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.carousel-item-next, +.active.carousel-item-right { + -webkit-transform: translateX(100%); + transform: translateX(100%); +} + +@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) { + .carousel-item-next, + .active.carousel-item-right { + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + } +} + +.carousel-item-prev, +.active.carousel-item-left { + -webkit-transform: translateX(-100%); + transform: translateX(-100%); +} + +@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) { + .carousel-item-prev, + .active.carousel-item-left { + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + } +} + +.carousel-control-prev, +.carousel-control-next { + position: absolute; + top: 0; + bottom: 0; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + width: 15%; + color: #fff; + text-align: center; + opacity: 0.5; +} + +.carousel-control-prev:hover, .carousel-control-prev:focus, +.carousel-control-next:hover, +.carousel-control-next:focus { + color: #fff; + text-decoration: none; + outline: 0; + opacity: .9; +} + +.carousel-control-prev { + left: 0; +} + +.carousel-control-next { + right: 0; +} + +.carousel-control-prev-icon, +.carousel-control-next-icon { + display: inline-block; + width: 20px; + height: 20px; + background: transparent no-repeat center center; + background-size: 100% 100%; +} + +.carousel-control-prev-icon { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E"); +} + +.carousel-control-next-icon { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E"); +} + +.carousel-indicators { + position: absolute; + right: 0; + bottom: 10px; + left: 0; + z-index: 15; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + padding-left: 0; + margin-right: 15%; + margin-left: 15%; + list-style: none; +} + +.carousel-indicators li { + position: relative; + -webkit-box-flex: 0; + -ms-flex: 0 1 auto; + flex: 0 1 auto; + width: 30px; + height: 3px; + margin-right: 3px; + margin-left: 3px; + text-indent: -999px; + background-color: rgba(255, 255, 255, 0.5); +} + +.carousel-indicators li::before { + position: absolute; + top: -10px; + left: 0; + display: inline-block; + width: 100%; + height: 10px; + content: ""; +} + +.carousel-indicators li::after { + position: absolute; + bottom: -10px; + left: 0; + display: inline-block; + width: 100%; + height: 10px; + content: ""; +} + +.carousel-indicators .active { + background-color: #fff; +} + +.carousel-caption { + position: absolute; + right: 15%; + bottom: 20px; + left: 15%; + z-index: 10; + padding-top: 20px; + padding-bottom: 20px; + color: #fff; + text-align: center; +} + +.align-baseline { + vertical-align: baseline !important; +} + +.align-top { + vertical-align: top !important; +} + +.align-middle { + vertical-align: middle !important; +} + +.align-bottom { + vertical-align: bottom !important; +} + +.align-text-bottom { + vertical-align: text-bottom !important; +} + +.align-text-top { + vertical-align: text-top !important; +} + +.bg-primary { + background-color: #007bff !important; +} + +a.bg-primary:hover, a.bg-primary:focus, +button.bg-primary:hover, +button.bg-primary:focus { + background-color: #0062cc !important; +} + +.bg-secondary { + background-color: #6c757d !important; +} + +a.bg-secondary:hover, a.bg-secondary:focus, +button.bg-secondary:hover, +button.bg-secondary:focus { + background-color: #545b62 !important; +} + +.bg-success { + background-color: #28a745 !important; +} + +a.bg-success:hover, a.bg-success:focus, +button.bg-success:hover, +button.bg-success:focus { + background-color: #1e7e34 !important; +} + +.bg-info { + background-color: #17a2b8 !important; +} + +a.bg-info:hover, a.bg-info:focus, +button.bg-info:hover, +button.bg-info:focus { + background-color: #117a8b !important; +} + +.bg-warning { + background-color: #ffc107 !important; +} + +a.bg-warning:hover, a.bg-warning:focus, +button.bg-warning:hover, +button.bg-warning:focus { + background-color: #d39e00 !important; +} + +.bg-danger { + background-color: #dc3545 !important; +} + +a.bg-danger:hover, a.bg-danger:focus, +button.bg-danger:hover, +button.bg-danger:focus { + background-color: #bd2130 !important; +} + +.bg-light { + background-color: #f8f9fa !important; +} + +a.bg-light:hover, a.bg-light:focus, +button.bg-light:hover, +button.bg-light:focus { + background-color: #dae0e5 !important; +} + +.bg-dark { + background-color: #343a40 !important; +} + +a.bg-dark:hover, a.bg-dark:focus, +button.bg-dark:hover, +button.bg-dark:focus { + background-color: #1d2124 !important; +} + +.bg-white { + background-color: #fff !important; +} + +.bg-transparent { + background-color: transparent !important; +} + +.border { + border: 1px solid #dee2e6 !important; +} + +.border-top { + border-top: 1px solid #dee2e6 !important; +} + +.border-right { + border-right: 1px solid #dee2e6 !important; +} + +.border-bottom { + border-bottom: 1px solid #dee2e6 !important; +} + +.border-left { + border-left: 1px solid #dee2e6 !important; +} + +.border-0 { + border: 0 !important; +} + +.border-top-0 { + border-top: 0 !important; +} + +.border-right-0 { + border-right: 0 !important; +} + +.border-bottom-0 { + border-bottom: 0 !important; +} + +.border-left-0 { + border-left: 0 !important; +} + +.border-primary { + border-color: #007bff !important; +} + +.border-secondary { + border-color: #6c757d !important; +} + +.border-success { + border-color: #28a745 !important; +} + +.border-info { + border-color: #17a2b8 !important; +} + +.border-warning { + border-color: #ffc107 !important; +} + +.border-danger { + border-color: #dc3545 !important; +} + +.border-light { + border-color: #f8f9fa !important; +} + +.border-dark { + border-color: #343a40 !important; +} + +.border-white { + border-color: #fff !important; +} + +.rounded { + border-radius: 0.25rem !important; +} + +.rounded-top { + border-top-left-radius: 0.25rem !important; + border-top-right-radius: 0.25rem !important; +} + +.rounded-right { + border-top-right-radius: 0.25rem !important; + border-bottom-right-radius: 0.25rem !important; +} + +.rounded-bottom { + border-bottom-right-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; +} + +.rounded-left { + border-top-left-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; +} + +.rounded-circle { + border-radius: 50% !important; +} + +.rounded-0 { + border-radius: 0 !important; +} + +.clearfix::after { + display: block; + clear: both; + content: ""; +} + +.d-none { + display: none !important; +} + +.d-inline { + display: inline !important; +} + +.d-inline-block { + display: inline-block !important; +} + +.d-block { + display: block !important; +} + +.d-table { + display: table !important; +} + +.d-table-row { + display: table-row !important; +} + +.d-table-cell { + display: table-cell !important; +} + +.d-flex { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; +} + +.d-inline-flex { + display: -webkit-inline-box !important; + display: -ms-inline-flexbox !important; + display: inline-flex !important; +} + +@media (min-width: 576px) { + .d-sm-none { + display: none !important; + } + .d-sm-inline { + display: inline !important; + } + .d-sm-inline-block { + display: inline-block !important; + } + .d-sm-block { + display: block !important; + } + .d-sm-table { + display: table !important; + } + .d-sm-table-row { + display: table-row !important; + } + .d-sm-table-cell { + display: table-cell !important; + } + .d-sm-flex { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + } + .d-sm-inline-flex { + display: -webkit-inline-box !important; + display: -ms-inline-flexbox !important; + display: inline-flex !important; + } +} + +@media (min-width: 768px) { + .d-md-none { + display: none !important; + } + .d-md-inline { + display: inline !important; + } + .d-md-inline-block { + display: inline-block !important; + } + .d-md-block { + display: block !important; + } + .d-md-table { + display: table !important; + } + .d-md-table-row { + display: table-row !important; + } + .d-md-table-cell { + display: table-cell !important; + } + .d-md-flex { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + } + .d-md-inline-flex { + display: -webkit-inline-box !important; + display: -ms-inline-flexbox !important; + display: inline-flex !important; + } +} + +@media (min-width: 992px) { + .d-lg-none { + display: none !important; + } + .d-lg-inline { + display: inline !important; + } + .d-lg-inline-block { + display: inline-block !important; + } + .d-lg-block { + display: block !important; + } + .d-lg-table { + display: table !important; + } + .d-lg-table-row { + display: table-row !important; + } + .d-lg-table-cell { + display: table-cell !important; + } + .d-lg-flex { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + } + .d-lg-inline-flex { + display: -webkit-inline-box !important; + display: -ms-inline-flexbox !important; + display: inline-flex !important; + } +} + +@media (min-width: 1200px) { + .d-xl-none { + display: none !important; + } + .d-xl-inline { + display: inline !important; + } + .d-xl-inline-block { + display: inline-block !important; + } + .d-xl-block { + display: block !important; + } + .d-xl-table { + display: table !important; + } + .d-xl-table-row { + display: table-row !important; + } + .d-xl-table-cell { + display: table-cell !important; + } + .d-xl-flex { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + } + .d-xl-inline-flex { + display: -webkit-inline-box !important; + display: -ms-inline-flexbox !important; + display: inline-flex !important; + } +} + +@media print { + .d-print-none { + display: none !important; + } + .d-print-inline { + display: inline !important; + } + .d-print-inline-block { + display: inline-block !important; + } + .d-print-block { + display: block !important; + } + .d-print-table { + display: table !important; + } + .d-print-table-row { + display: table-row !important; + } + .d-print-table-cell { + display: table-cell !important; + } + .d-print-flex { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + } + .d-print-inline-flex { + display: -webkit-inline-box !important; + display: -ms-inline-flexbox !important; + display: inline-flex !important; + } +} + +.embed-responsive { + position: relative; + display: block; + width: 100%; + padding: 0; + overflow: hidden; +} + +.embed-responsive::before { + display: block; + content: ""; +} + +.embed-responsive .embed-responsive-item, +.embed-responsive iframe, +.embed-responsive embed, +.embed-responsive object, +.embed-responsive video { + position: absolute; + top: 0; + bottom: 0; + left: 0; + width: 100%; + height: 100%; + border: 0; +} + +.embed-responsive-21by9::before { + padding-top: 42.857143%; +} + +.embed-responsive-16by9::before { + padding-top: 56.25%; +} + +.embed-responsive-4by3::before { + padding-top: 75%; +} + +.embed-responsive-1by1::before { + padding-top: 100%; +} + +.flex-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: row !important; + flex-direction: row !important; +} + +.flex-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: column !important; + flex-direction: column !important; +} + +.flex-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; +} + +.flex-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; +} + +.flex-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; +} + +.flex-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; +} + +.flex-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; +} + +.justify-content-start { + -webkit-box-pack: start !important; + -ms-flex-pack: start !important; + justify-content: flex-start !important; +} + +.justify-content-end { + -webkit-box-pack: end !important; + -ms-flex-pack: end !important; + justify-content: flex-end !important; +} + +.justify-content-center { + -webkit-box-pack: center !important; + -ms-flex-pack: center !important; + justify-content: center !important; +} + +.justify-content-between { + -webkit-box-pack: justify !important; + -ms-flex-pack: justify !important; + justify-content: space-between !important; +} + +.justify-content-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; +} + +.align-items-start { + -webkit-box-align: start !important; + -ms-flex-align: start !important; + align-items: flex-start !important; +} + +.align-items-end { + -webkit-box-align: end !important; + -ms-flex-align: end !important; + align-items: flex-end !important; +} + +.align-items-center { + -webkit-box-align: center !important; + -ms-flex-align: center !important; + align-items: center !important; +} + +.align-items-baseline { + -webkit-box-align: baseline !important; + -ms-flex-align: baseline !important; + align-items: baseline !important; +} + +.align-items-stretch { + -webkit-box-align: stretch !important; + -ms-flex-align: stretch !important; + align-items: stretch !important; +} + +.align-content-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; +} + +.align-content-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; +} + +.align-content-center { + -ms-flex-line-pack: center !important; + align-content: center !important; +} + +.align-content-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; +} + +.align-content-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; +} + +.align-content-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; +} + +.align-self-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important; +} + +.align-self-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; +} + +.align-self-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; +} + +.align-self-center { + -ms-flex-item-align: center !important; + align-self: center !important; +} + +.align-self-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; +} + +.align-self-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important; +} + +@media (min-width: 576px) { + .flex-sm-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: row !important; + flex-direction: row !important; + } + .flex-sm-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: column !important; + flex-direction: column !important; + } + .flex-sm-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; + } + .flex-sm-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; + } + .flex-sm-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; + } + .flex-sm-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; + } + .flex-sm-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; + } + .justify-content-sm-start { + -webkit-box-pack: start !important; + -ms-flex-pack: start !important; + justify-content: flex-start !important; + } + .justify-content-sm-end { + -webkit-box-pack: end !important; + -ms-flex-pack: end !important; + justify-content: flex-end !important; + } + .justify-content-sm-center { + -webkit-box-pack: center !important; + -ms-flex-pack: center !important; + justify-content: center !important; + } + .justify-content-sm-between { + -webkit-box-pack: justify !important; + -ms-flex-pack: justify !important; + justify-content: space-between !important; + } + .justify-content-sm-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; + } + .align-items-sm-start { + -webkit-box-align: start !important; + -ms-flex-align: start !important; + align-items: flex-start !important; + } + .align-items-sm-end { + -webkit-box-align: end !important; + -ms-flex-align: end !important; + align-items: flex-end !important; + } + .align-items-sm-center { + -webkit-box-align: center !important; + -ms-flex-align: center !important; + align-items: center !important; + } + .align-items-sm-baseline { + -webkit-box-align: baseline !important; + -ms-flex-align: baseline !important; + align-items: baseline !important; + } + .align-items-sm-stretch { + -webkit-box-align: stretch !important; + -ms-flex-align: stretch !important; + align-items: stretch !important; + } + .align-content-sm-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; + } + .align-content-sm-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; + } + .align-content-sm-center { + -ms-flex-line-pack: center !important; + align-content: center !important; + } + .align-content-sm-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; + } + .align-content-sm-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; + } + .align-content-sm-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; + } + .align-self-sm-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important; + } + .align-self-sm-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; + } + .align-self-sm-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; + } + .align-self-sm-center { + -ms-flex-item-align: center !important; + align-self: center !important; + } + .align-self-sm-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; + } + .align-self-sm-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important; + } +} + +@media (min-width: 768px) { + .flex-md-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: row !important; + flex-direction: row !important; + } + .flex-md-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: column !important; + flex-direction: column !important; + } + .flex-md-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; + } + .flex-md-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; + } + .flex-md-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; + } + .flex-md-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; + } + .flex-md-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; + } + .justify-content-md-start { + -webkit-box-pack: start !important; + -ms-flex-pack: start !important; + justify-content: flex-start !important; + } + .justify-content-md-end { + -webkit-box-pack: end !important; + -ms-flex-pack: end !important; + justify-content: flex-end !important; + } + .justify-content-md-center { + -webkit-box-pack: center !important; + -ms-flex-pack: center !important; + justify-content: center !important; + } + .justify-content-md-between { + -webkit-box-pack: justify !important; + -ms-flex-pack: justify !important; + justify-content: space-between !important; + } + .justify-content-md-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; + } + .align-items-md-start { + -webkit-box-align: start !important; + -ms-flex-align: start !important; + align-items: flex-start !important; + } + .align-items-md-end { + -webkit-box-align: end !important; + -ms-flex-align: end !important; + align-items: flex-end !important; + } + .align-items-md-center { + -webkit-box-align: center !important; + -ms-flex-align: center !important; + align-items: center !important; + } + .align-items-md-baseline { + -webkit-box-align: baseline !important; + -ms-flex-align: baseline !important; + align-items: baseline !important; + } + .align-items-md-stretch { + -webkit-box-align: stretch !important; + -ms-flex-align: stretch !important; + align-items: stretch !important; + } + .align-content-md-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; + } + .align-content-md-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; + } + .align-content-md-center { + -ms-flex-line-pack: center !important; + align-content: center !important; + } + .align-content-md-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; + } + .align-content-md-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; + } + .align-content-md-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; + } + .align-self-md-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important; + } + .align-self-md-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; + } + .align-self-md-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; + } + .align-self-md-center { + -ms-flex-item-align: center !important; + align-self: center !important; + } + .align-self-md-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; + } + .align-self-md-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important; + } +} + +@media (min-width: 992px) { + .flex-lg-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: row !important; + flex-direction: row !important; + } + .flex-lg-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: column !important; + flex-direction: column !important; + } + .flex-lg-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; + } + .flex-lg-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; + } + .flex-lg-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; + } + .flex-lg-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; + } + .flex-lg-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; + } + .justify-content-lg-start { + -webkit-box-pack: start !important; + -ms-flex-pack: start !important; + justify-content: flex-start !important; + } + .justify-content-lg-end { + -webkit-box-pack: end !important; + -ms-flex-pack: end !important; + justify-content: flex-end !important; + } + .justify-content-lg-center { + -webkit-box-pack: center !important; + -ms-flex-pack: center !important; + justify-content: center !important; + } + .justify-content-lg-between { + -webkit-box-pack: justify !important; + -ms-flex-pack: justify !important; + justify-content: space-between !important; + } + .justify-content-lg-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; + } + .align-items-lg-start { + -webkit-box-align: start !important; + -ms-flex-align: start !important; + align-items: flex-start !important; + } + .align-items-lg-end { + -webkit-box-align: end !important; + -ms-flex-align: end !important; + align-items: flex-end !important; + } + .align-items-lg-center { + -webkit-box-align: center !important; + -ms-flex-align: center !important; + align-items: center !important; + } + .align-items-lg-baseline { + -webkit-box-align: baseline !important; + -ms-flex-align: baseline !important; + align-items: baseline !important; + } + .align-items-lg-stretch { + -webkit-box-align: stretch !important; + -ms-flex-align: stretch !important; + align-items: stretch !important; + } + .align-content-lg-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; + } + .align-content-lg-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; + } + .align-content-lg-center { + -ms-flex-line-pack: center !important; + align-content: center !important; + } + .align-content-lg-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; + } + .align-content-lg-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; + } + .align-content-lg-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; + } + .align-self-lg-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important; + } + .align-self-lg-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; + } + .align-self-lg-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; + } + .align-self-lg-center { + -ms-flex-item-align: center !important; + align-self: center !important; + } + .align-self-lg-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; + } + .align-self-lg-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important; + } +} + +@media (min-width: 1200px) { + .flex-xl-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: row !important; + flex-direction: row !important; + } + .flex-xl-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: column !important; + flex-direction: column !important; + } + .flex-xl-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; + } + .flex-xl-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; + } + .flex-xl-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; + } + .flex-xl-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; + } + .flex-xl-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; + } + .justify-content-xl-start { + -webkit-box-pack: start !important; + -ms-flex-pack: start !important; + justify-content: flex-start !important; + } + .justify-content-xl-end { + -webkit-box-pack: end !important; + -ms-flex-pack: end !important; + justify-content: flex-end !important; + } + .justify-content-xl-center { + -webkit-box-pack: center !important; + -ms-flex-pack: center !important; + justify-content: center !important; + } + .justify-content-xl-between { + -webkit-box-pack: justify !important; + -ms-flex-pack: justify !important; + justify-content: space-between !important; + } + .justify-content-xl-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; + } + .align-items-xl-start { + -webkit-box-align: start !important; + -ms-flex-align: start !important; + align-items: flex-start !important; + } + .align-items-xl-end { + -webkit-box-align: end !important; + -ms-flex-align: end !important; + align-items: flex-end !important; + } + .align-items-xl-center { + -webkit-box-align: center !important; + -ms-flex-align: center !important; + align-items: center !important; + } + .align-items-xl-baseline { + -webkit-box-align: baseline !important; + -ms-flex-align: baseline !important; + align-items: baseline !important; + } + .align-items-xl-stretch { + -webkit-box-align: stretch !important; + -ms-flex-align: stretch !important; + align-items: stretch !important; + } + .align-content-xl-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; + } + .align-content-xl-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; + } + .align-content-xl-center { + -ms-flex-line-pack: center !important; + align-content: center !important; + } + .align-content-xl-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; + } + .align-content-xl-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; + } + .align-content-xl-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; + } + .align-self-xl-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important; + } + .align-self-xl-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; + } + .align-self-xl-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; + } + .align-self-xl-center { + -ms-flex-item-align: center !important; + align-self: center !important; + } + .align-self-xl-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; + } + .align-self-xl-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important; + } +} + +.float-left { + float: left !important; +} + +.float-right { + float: right !important; +} + +.float-none { + float: none !important; +} + +@media (min-width: 576px) { + .float-sm-left { + float: left !important; + } + .float-sm-right { + float: right !important; + } + .float-sm-none { + float: none !important; + } +} + +@media (min-width: 768px) { + .float-md-left { + float: left !important; + } + .float-md-right { + float: right !important; + } + .float-md-none { + float: none !important; + } +} + +@media (min-width: 992px) { + .float-lg-left { + float: left !important; + } + .float-lg-right { + float: right !important; + } + .float-lg-none { + float: none !important; + } +} + +@media (min-width: 1200px) { + .float-xl-left { + float: left !important; + } + .float-xl-right { + float: right !important; + } + .float-xl-none { + float: none !important; + } +} + +.position-static { + position: static !important; +} + +.position-relative { + position: relative !important; +} + +.position-absolute { + position: absolute !important; +} + +.position-fixed { + position: fixed !important; +} + +.position-sticky { + position: -webkit-sticky !important; + position: sticky !important; +} + +.fixed-top { + position: fixed; + top: 0; + right: 0; + left: 0; + z-index: 1030; +} + +.fixed-bottom { + position: fixed; + right: 0; + bottom: 0; + left: 0; + z-index: 1030; +} + +@supports ((position: -webkit-sticky) or (position: sticky)) { + .sticky-top { + position: -webkit-sticky; + position: sticky; + top: 0; + z-index: 1020; + } +} + +.sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + -webkit-clip-path: inset(50%); + clip-path: inset(50%); + border: 0; +} + +.sr-only-focusable:active, .sr-only-focusable:focus { + position: static; + width: auto; + height: auto; + overflow: visible; + clip: auto; + white-space: normal; + -webkit-clip-path: none; + clip-path: none; +} + +.w-25 { + width: 25% !important; +} + +.w-50 { + width: 50% !important; +} + +.w-75 { + width: 75% !important; +} + +.w-100 { + width: 100% !important; +} + +.h-25 { + height: 25% !important; +} + +.h-50 { + height: 50% !important; +} + +.h-75 { + height: 75% !important; +} + +.h-100 { + height: 100% !important; +} + +.mw-100 { + max-width: 100% !important; +} + +.mh-100 { + max-height: 100% !important; +} + +.m-0 { + margin: 0 !important; +} + +.mt-0, +.my-0 { + margin-top: 0 !important; +} + +.mr-0, +.mx-0 { + margin-right: 0 !important; +} + +.mb-0, +.my-0 { + margin-bottom: 0 !important; +} + +.ml-0, +.mx-0 { + margin-left: 0 !important; +} + +.m-1 { + margin: 0.25rem !important; +} + +.mt-1, +.my-1 { + margin-top: 0.25rem !important; +} + +.mr-1, +.mx-1 { + margin-right: 0.25rem !important; +} + +.mb-1, +.my-1 { + margin-bottom: 0.25rem !important; +} + +.ml-1, +.mx-1 { + margin-left: 0.25rem !important; +} + +.m-2 { + margin: 0.5rem !important; +} + +.mt-2, +.my-2 { + margin-top: 0.5rem !important; +} + +.mr-2, +.mx-2 { + margin-right: 0.5rem !important; +} + +.mb-2, +.my-2 { + margin-bottom: 0.5rem !important; +} + +.ml-2, +.mx-2 { + margin-left: 0.5rem !important; +} + +.m-3 { + margin: 1rem !important; +} + +.mt-3, +.my-3 { + margin-top: 1rem !important; +} + +.mr-3, +.mx-3 { + margin-right: 1rem !important; +} + +.mb-3, +.my-3 { + margin-bottom: 1rem !important; +} + +.ml-3, +.mx-3 { + margin-left: 1rem !important; +} + +.m-4 { + margin: 1.5rem !important; +} + +.mt-4, +.my-4 { + margin-top: 1.5rem !important; +} + +.mr-4, +.mx-4 { + margin-right: 1.5rem !important; +} + +.mb-4, +.my-4 { + margin-bottom: 1.5rem !important; +} + +.ml-4, +.mx-4 { + margin-left: 1.5rem !important; +} + +.m-5 { + margin: 3rem !important; +} + +.mt-5, +.my-5 { + margin-top: 3rem !important; +} + +.mr-5, +.mx-5 { + margin-right: 3rem !important; +} + +.mb-5, +.my-5 { + margin-bottom: 3rem !important; +} + +.ml-5, +.mx-5 { + margin-left: 3rem !important; +} + +.p-0 { + padding: 0 !important; +} + +.pt-0, +.py-0 { + padding-top: 0 !important; +} + +.pr-0, +.px-0 { + padding-right: 0 !important; +} + +.pb-0, +.py-0 { + padding-bottom: 0 !important; +} + +.pl-0, +.px-0 { + padding-left: 0 !important; +} + +.p-1 { + padding: 0.25rem !important; +} + +.pt-1, +.py-1 { + padding-top: 0.25rem !important; +} + +.pr-1, +.px-1 { + padding-right: 0.25rem !important; +} + +.pb-1, +.py-1 { + padding-bottom: 0.25rem !important; +} + +.pl-1, +.px-1 { + padding-left: 0.25rem !important; +} + +.p-2 { + padding: 0.5rem !important; +} + +.pt-2, +.py-2 { + padding-top: 0.5rem !important; +} + +.pr-2, +.px-2 { + padding-right: 0.5rem !important; +} + +.pb-2, +.py-2 { + padding-bottom: 0.5rem !important; +} + +.pl-2, +.px-2 { + padding-left: 0.5rem !important; +} + +.p-3 { + padding: 1rem !important; +} + +.pt-3, +.py-3 { + padding-top: 1rem !important; +} + +.pr-3, +.px-3 { + padding-right: 1rem !important; +} + +.pb-3, +.py-3 { + padding-bottom: 1rem !important; +} + +.pl-3, +.px-3 { + padding-left: 1rem !important; +} + +.p-4 { + padding: 1.5rem !important; +} + +.pt-4, +.py-4 { + padding-top: 1.5rem !important; +} + +.pr-4, +.px-4 { + padding-right: 1.5rem !important; +} + +.pb-4, +.py-4 { + padding-bottom: 1.5rem !important; +} + +.pl-4, +.px-4 { + padding-left: 1.5rem !important; +} + +.p-5 { + padding: 3rem !important; +} + +.pt-5, +.py-5 { + padding-top: 3rem !important; +} + +.pr-5, +.px-5 { + padding-right: 3rem !important; +} + +.pb-5, +.py-5 { + padding-bottom: 3rem !important; +} + +.pl-5, +.px-5 { + padding-left: 3rem !important; +} + +.m-auto { + margin: auto !important; +} + +.mt-auto, +.my-auto { + margin-top: auto !important; +} + +.mr-auto, +.mx-auto { + margin-right: auto !important; +} + +.mb-auto, +.my-auto { + margin-bottom: auto !important; +} + +.ml-auto, +.mx-auto { + margin-left: auto !important; +} + +@media (min-width: 576px) { + .m-sm-0 { + margin: 0 !important; + } + .mt-sm-0, + .my-sm-0 { + margin-top: 0 !important; + } + .mr-sm-0, + .mx-sm-0 { + margin-right: 0 !important; + } + .mb-sm-0, + .my-sm-0 { + margin-bottom: 0 !important; + } + .ml-sm-0, + .mx-sm-0 { + margin-left: 0 !important; + } + .m-sm-1 { + margin: 0.25rem !important; + } + .mt-sm-1, + .my-sm-1 { + margin-top: 0.25rem !important; + } + .mr-sm-1, + .mx-sm-1 { + margin-right: 0.25rem !important; + } + .mb-sm-1, + .my-sm-1 { + margin-bottom: 0.25rem !important; + } + .ml-sm-1, + .mx-sm-1 { + margin-left: 0.25rem !important; + } + .m-sm-2 { + margin: 0.5rem !important; + } + .mt-sm-2, + .my-sm-2 { + margin-top: 0.5rem !important; + } + .mr-sm-2, + .mx-sm-2 { + margin-right: 0.5rem !important; + } + .mb-sm-2, + .my-sm-2 { + margin-bottom: 0.5rem !important; + } + .ml-sm-2, + .mx-sm-2 { + margin-left: 0.5rem !important; + } + .m-sm-3 { + margin: 1rem !important; + } + .mt-sm-3, + .my-sm-3 { + margin-top: 1rem !important; + } + .mr-sm-3, + .mx-sm-3 { + margin-right: 1rem !important; + } + .mb-sm-3, + .my-sm-3 { + margin-bottom: 1rem !important; + } + .ml-sm-3, + .mx-sm-3 { + margin-left: 1rem !important; + } + .m-sm-4 { + margin: 1.5rem !important; + } + .mt-sm-4, + .my-sm-4 { + margin-top: 1.5rem !important; + } + .mr-sm-4, + .mx-sm-4 { + margin-right: 1.5rem !important; + } + .mb-sm-4, + .my-sm-4 { + margin-bottom: 1.5rem !important; + } + .ml-sm-4, + .mx-sm-4 { + margin-left: 1.5rem !important; + } + .m-sm-5 { + margin: 3rem !important; + } + .mt-sm-5, + .my-sm-5 { + margin-top: 3rem !important; + } + .mr-sm-5, + .mx-sm-5 { + margin-right: 3rem !important; + } + .mb-sm-5, + .my-sm-5 { + margin-bottom: 3rem !important; + } + .ml-sm-5, + .mx-sm-5 { + margin-left: 3rem !important; + } + .p-sm-0 { + padding: 0 !important; + } + .pt-sm-0, + .py-sm-0 { + padding-top: 0 !important; + } + .pr-sm-0, + .px-sm-0 { + padding-right: 0 !important; + } + .pb-sm-0, + .py-sm-0 { + padding-bottom: 0 !important; + } + .pl-sm-0, + .px-sm-0 { + padding-left: 0 !important; + } + .p-sm-1 { + padding: 0.25rem !important; + } + .pt-sm-1, + .py-sm-1 { + padding-top: 0.25rem !important; + } + .pr-sm-1, + .px-sm-1 { + padding-right: 0.25rem !important; + } + .pb-sm-1, + .py-sm-1 { + padding-bottom: 0.25rem !important; + } + .pl-sm-1, + .px-sm-1 { + padding-left: 0.25rem !important; + } + .p-sm-2 { + padding: 0.5rem !important; + } + .pt-sm-2, + .py-sm-2 { + padding-top: 0.5rem !important; + } + .pr-sm-2, + .px-sm-2 { + padding-right: 0.5rem !important; + } + .pb-sm-2, + .py-sm-2 { + padding-bottom: 0.5rem !important; + } + .pl-sm-2, + .px-sm-2 { + padding-left: 0.5rem !important; + } + .p-sm-3 { + padding: 1rem !important; + } + .pt-sm-3, + .py-sm-3 { + padding-top: 1rem !important; + } + .pr-sm-3, + .px-sm-3 { + padding-right: 1rem !important; + } + .pb-sm-3, + .py-sm-3 { + padding-bottom: 1rem !important; + } + .pl-sm-3, + .px-sm-3 { + padding-left: 1rem !important; + } + .p-sm-4 { + padding: 1.5rem !important; + } + .pt-sm-4, + .py-sm-4 { + padding-top: 1.5rem !important; + } + .pr-sm-4, + .px-sm-4 { + padding-right: 1.5rem !important; + } + .pb-sm-4, + .py-sm-4 { + padding-bottom: 1.5rem !important; + } + .pl-sm-4, + .px-sm-4 { + padding-left: 1.5rem !important; + } + .p-sm-5 { + padding: 3rem !important; + } + .pt-sm-5, + .py-sm-5 { + padding-top: 3rem !important; + } + .pr-sm-5, + .px-sm-5 { + padding-right: 3rem !important; + } + .pb-sm-5, + .py-sm-5 { + padding-bottom: 3rem !important; + } + .pl-sm-5, + .px-sm-5 { + padding-left: 3rem !important; + } + .m-sm-auto { + margin: auto !important; + } + .mt-sm-auto, + .my-sm-auto { + margin-top: auto !important; + } + .mr-sm-auto, + .mx-sm-auto { + margin-right: auto !important; + } + .mb-sm-auto, + .my-sm-auto { + margin-bottom: auto !important; + } + .ml-sm-auto, + .mx-sm-auto { + margin-left: auto !important; + } +} + +@media (min-width: 768px) { + .m-md-0 { + margin: 0 !important; + } + .mt-md-0, + .my-md-0 { + margin-top: 0 !important; + } + .mr-md-0, + .mx-md-0 { + margin-right: 0 !important; + } + .mb-md-0, + .my-md-0 { + margin-bottom: 0 !important; + } + .ml-md-0, + .mx-md-0 { + margin-left: 0 !important; + } + .m-md-1 { + margin: 0.25rem !important; + } + .mt-md-1, + .my-md-1 { + margin-top: 0.25rem !important; + } + .mr-md-1, + .mx-md-1 { + margin-right: 0.25rem !important; + } + .mb-md-1, + .my-md-1 { + margin-bottom: 0.25rem !important; + } + .ml-md-1, + .mx-md-1 { + margin-left: 0.25rem !important; + } + .m-md-2 { + margin: 0.5rem !important; + } + .mt-md-2, + .my-md-2 { + margin-top: 0.5rem !important; + } + .mr-md-2, + .mx-md-2 { + margin-right: 0.5rem !important; + } + .mb-md-2, + .my-md-2 { + margin-bottom: 0.5rem !important; + } + .ml-md-2, + .mx-md-2 { + margin-left: 0.5rem !important; + } + .m-md-3 { + margin: 1rem !important; + } + .mt-md-3, + .my-md-3 { + margin-top: 1rem !important; + } + .mr-md-3, + .mx-md-3 { + margin-right: 1rem !important; + } + .mb-md-3, + .my-md-3 { + margin-bottom: 1rem !important; + } + .ml-md-3, + .mx-md-3 { + margin-left: 1rem !important; + } + .m-md-4 { + margin: 1.5rem !important; + } + .mt-md-4, + .my-md-4 { + margin-top: 1.5rem !important; + } + .mr-md-4, + .mx-md-4 { + margin-right: 1.5rem !important; + } + .mb-md-4, + .my-md-4 { + margin-bottom: 1.5rem !important; + } + .ml-md-4, + .mx-md-4 { + margin-left: 1.5rem !important; + } + .m-md-5 { + margin: 3rem !important; + } + .mt-md-5, + .my-md-5 { + margin-top: 3rem !important; + } + .mr-md-5, + .mx-md-5 { + margin-right: 3rem !important; + } + .mb-md-5, + .my-md-5 { + margin-bottom: 3rem !important; + } + .ml-md-5, + .mx-md-5 { + margin-left: 3rem !important; + } + .p-md-0 { + padding: 0 !important; + } + .pt-md-0, + .py-md-0 { + padding-top: 0 !important; + } + .pr-md-0, + .px-md-0 { + padding-right: 0 !important; + } + .pb-md-0, + .py-md-0 { + padding-bottom: 0 !important; + } + .pl-md-0, + .px-md-0 { + padding-left: 0 !important; + } + .p-md-1 { + padding: 0.25rem !important; + } + .pt-md-1, + .py-md-1 { + padding-top: 0.25rem !important; + } + .pr-md-1, + .px-md-1 { + padding-right: 0.25rem !important; + } + .pb-md-1, + .py-md-1 { + padding-bottom: 0.25rem !important; + } + .pl-md-1, + .px-md-1 { + padding-left: 0.25rem !important; + } + .p-md-2 { + padding: 0.5rem !important; + } + .pt-md-2, + .py-md-2 { + padding-top: 0.5rem !important; + } + .pr-md-2, + .px-md-2 { + padding-right: 0.5rem !important; + } + .pb-md-2, + .py-md-2 { + padding-bottom: 0.5rem !important; + } + .pl-md-2, + .px-md-2 { + padding-left: 0.5rem !important; + } + .p-md-3 { + padding: 1rem !important; + } + .pt-md-3, + .py-md-3 { + padding-top: 1rem !important; + } + .pr-md-3, + .px-md-3 { + padding-right: 1rem !important; + } + .pb-md-3, + .py-md-3 { + padding-bottom: 1rem !important; + } + .pl-md-3, + .px-md-3 { + padding-left: 1rem !important; + } + .p-md-4 { + padding: 1.5rem !important; + } + .pt-md-4, + .py-md-4 { + padding-top: 1.5rem !important; + } + .pr-md-4, + .px-md-4 { + padding-right: 1.5rem !important; + } + .pb-md-4, + .py-md-4 { + padding-bottom: 1.5rem !important; + } + .pl-md-4, + .px-md-4 { + padding-left: 1.5rem !important; + } + .p-md-5 { + padding: 3rem !important; + } + .pt-md-5, + .py-md-5 { + padding-top: 3rem !important; + } + .pr-md-5, + .px-md-5 { + padding-right: 3rem !important; + } + .pb-md-5, + .py-md-5 { + padding-bottom: 3rem !important; + } + .pl-md-5, + .px-md-5 { + padding-left: 3rem !important; + } + .m-md-auto { + margin: auto !important; + } + .mt-md-auto, + .my-md-auto { + margin-top: auto !important; + } + .mr-md-auto, + .mx-md-auto { + margin-right: auto !important; + } + .mb-md-auto, + .my-md-auto { + margin-bottom: auto !important; + } + .ml-md-auto, + .mx-md-auto { + margin-left: auto !important; + } +} + +@media (min-width: 992px) { + .m-lg-0 { + margin: 0 !important; + } + .mt-lg-0, + .my-lg-0 { + margin-top: 0 !important; + } + .mr-lg-0, + .mx-lg-0 { + margin-right: 0 !important; + } + .mb-lg-0, + .my-lg-0 { + margin-bottom: 0 !important; + } + .ml-lg-0, + .mx-lg-0 { + margin-left: 0 !important; + } + .m-lg-1 { + margin: 0.25rem !important; + } + .mt-lg-1, + .my-lg-1 { + margin-top: 0.25rem !important; + } + .mr-lg-1, + .mx-lg-1 { + margin-right: 0.25rem !important; + } + .mb-lg-1, + .my-lg-1 { + margin-bottom: 0.25rem !important; + } + .ml-lg-1, + .mx-lg-1 { + margin-left: 0.25rem !important; + } + .m-lg-2 { + margin: 0.5rem !important; + } + .mt-lg-2, + .my-lg-2 { + margin-top: 0.5rem !important; + } + .mr-lg-2, + .mx-lg-2 { + margin-right: 0.5rem !important; + } + .mb-lg-2, + .my-lg-2 { + margin-bottom: 0.5rem !important; + } + .ml-lg-2, + .mx-lg-2 { + margin-left: 0.5rem !important; + } + .m-lg-3 { + margin: 1rem !important; + } + .mt-lg-3, + .my-lg-3 { + margin-top: 1rem !important; + } + .mr-lg-3, + .mx-lg-3 { + margin-right: 1rem !important; + } + .mb-lg-3, + .my-lg-3 { + margin-bottom: 1rem !important; + } + .ml-lg-3, + .mx-lg-3 { + margin-left: 1rem !important; + } + .m-lg-4 { + margin: 1.5rem !important; + } + .mt-lg-4, + .my-lg-4 { + margin-top: 1.5rem !important; + } + .mr-lg-4, + .mx-lg-4 { + margin-right: 1.5rem !important; + } + .mb-lg-4, + .my-lg-4 { + margin-bottom: 1.5rem !important; + } + .ml-lg-4, + .mx-lg-4 { + margin-left: 1.5rem !important; + } + .m-lg-5 { + margin: 3rem !important; + } + .mt-lg-5, + .my-lg-5 { + margin-top: 3rem !important; + } + .mr-lg-5, + .mx-lg-5 { + margin-right: 3rem !important; + } + .mb-lg-5, + .my-lg-5 { + margin-bottom: 3rem !important; + } + .ml-lg-5, + .mx-lg-5 { + margin-left: 3rem !important; + } + .p-lg-0 { + padding: 0 !important; + } + .pt-lg-0, + .py-lg-0 { + padding-top: 0 !important; + } + .pr-lg-0, + .px-lg-0 { + padding-right: 0 !important; + } + .pb-lg-0, + .py-lg-0 { + padding-bottom: 0 !important; + } + .pl-lg-0, + .px-lg-0 { + padding-left: 0 !important; + } + .p-lg-1 { + padding: 0.25rem !important; + } + .pt-lg-1, + .py-lg-1 { + padding-top: 0.25rem !important; + } + .pr-lg-1, + .px-lg-1 { + padding-right: 0.25rem !important; + } + .pb-lg-1, + .py-lg-1 { + padding-bottom: 0.25rem !important; + } + .pl-lg-1, + .px-lg-1 { + padding-left: 0.25rem !important; + } + .p-lg-2 { + padding: 0.5rem !important; + } + .pt-lg-2, + .py-lg-2 { + padding-top: 0.5rem !important; + } + .pr-lg-2, + .px-lg-2 { + padding-right: 0.5rem !important; + } + .pb-lg-2, + .py-lg-2 { + padding-bottom: 0.5rem !important; + } + .pl-lg-2, + .px-lg-2 { + padding-left: 0.5rem !important; + } + .p-lg-3 { + padding: 1rem !important; + } + .pt-lg-3, + .py-lg-3 { + padding-top: 1rem !important; + } + .pr-lg-3, + .px-lg-3 { + padding-right: 1rem !important; + } + .pb-lg-3, + .py-lg-3 { + padding-bottom: 1rem !important; + } + .pl-lg-3, + .px-lg-3 { + padding-left: 1rem !important; + } + .p-lg-4 { + padding: 1.5rem !important; + } + .pt-lg-4, + .py-lg-4 { + padding-top: 1.5rem !important; + } + .pr-lg-4, + .px-lg-4 { + padding-right: 1.5rem !important; + } + .pb-lg-4, + .py-lg-4 { + padding-bottom: 1.5rem !important; + } + .pl-lg-4, + .px-lg-4 { + padding-left: 1.5rem !important; + } + .p-lg-5 { + padding: 3rem !important; + } + .pt-lg-5, + .py-lg-5 { + padding-top: 3rem !important; + } + .pr-lg-5, + .px-lg-5 { + padding-right: 3rem !important; + } + .pb-lg-5, + .py-lg-5 { + padding-bottom: 3rem !important; + } + .pl-lg-5, + .px-lg-5 { + padding-left: 3rem !important; + } + .m-lg-auto { + margin: auto !important; + } + .mt-lg-auto, + .my-lg-auto { + margin-top: auto !important; + } + .mr-lg-auto, + .mx-lg-auto { + margin-right: auto !important; + } + .mb-lg-auto, + .my-lg-auto { + margin-bottom: auto !important; + } + .ml-lg-auto, + .mx-lg-auto { + margin-left: auto !important; + } +} + +@media (min-width: 1200px) { + .m-xl-0 { + margin: 0 !important; + } + .mt-xl-0, + .my-xl-0 { + margin-top: 0 !important; + } + .mr-xl-0, + .mx-xl-0 { + margin-right: 0 !important; + } + .mb-xl-0, + .my-xl-0 { + margin-bottom: 0 !important; + } + .ml-xl-0, + .mx-xl-0 { + margin-left: 0 !important; + } + .m-xl-1 { + margin: 0.25rem !important; + } + .mt-xl-1, + .my-xl-1 { + margin-top: 0.25rem !important; + } + .mr-xl-1, + .mx-xl-1 { + margin-right: 0.25rem !important; + } + .mb-xl-1, + .my-xl-1 { + margin-bottom: 0.25rem !important; + } + .ml-xl-1, + .mx-xl-1 { + margin-left: 0.25rem !important; + } + .m-xl-2 { + margin: 0.5rem !important; + } + .mt-xl-2, + .my-xl-2 { + margin-top: 0.5rem !important; + } + .mr-xl-2, + .mx-xl-2 { + margin-right: 0.5rem !important; + } + .mb-xl-2, + .my-xl-2 { + margin-bottom: 0.5rem !important; + } + .ml-xl-2, + .mx-xl-2 { + margin-left: 0.5rem !important; + } + .m-xl-3 { + margin: 1rem !important; + } + .mt-xl-3, + .my-xl-3 { + margin-top: 1rem !important; + } + .mr-xl-3, + .mx-xl-3 { + margin-right: 1rem !important; + } + .mb-xl-3, + .my-xl-3 { + margin-bottom: 1rem !important; + } + .ml-xl-3, + .mx-xl-3 { + margin-left: 1rem !important; + } + .m-xl-4 { + margin: 1.5rem !important; + } + .mt-xl-4, + .my-xl-4 { + margin-top: 1.5rem !important; + } + .mr-xl-4, + .mx-xl-4 { + margin-right: 1.5rem !important; + } + .mb-xl-4, + .my-xl-4 { + margin-bottom: 1.5rem !important; + } + .ml-xl-4, + .mx-xl-4 { + margin-left: 1.5rem !important; + } + .m-xl-5 { + margin: 3rem !important; + } + .mt-xl-5, + .my-xl-5 { + margin-top: 3rem !important; + } + .mr-xl-5, + .mx-xl-5 { + margin-right: 3rem !important; + } + .mb-xl-5, + .my-xl-5 { + margin-bottom: 3rem !important; + } + .ml-xl-5, + .mx-xl-5 { + margin-left: 3rem !important; + } + .p-xl-0 { + padding: 0 !important; + } + .pt-xl-0, + .py-xl-0 { + padding-top: 0 !important; + } + .pr-xl-0, + .px-xl-0 { + padding-right: 0 !important; + } + .pb-xl-0, + .py-xl-0 { + padding-bottom: 0 !important; + } + .pl-xl-0, + .px-xl-0 { + padding-left: 0 !important; + } + .p-xl-1 { + padding: 0.25rem !important; + } + .pt-xl-1, + .py-xl-1 { + padding-top: 0.25rem !important; + } + .pr-xl-1, + .px-xl-1 { + padding-right: 0.25rem !important; + } + .pb-xl-1, + .py-xl-1 { + padding-bottom: 0.25rem !important; + } + .pl-xl-1, + .px-xl-1 { + padding-left: 0.25rem !important; + } + .p-xl-2 { + padding: 0.5rem !important; + } + .pt-xl-2, + .py-xl-2 { + padding-top: 0.5rem !important; + } + .pr-xl-2, + .px-xl-2 { + padding-right: 0.5rem !important; + } + .pb-xl-2, + .py-xl-2 { + padding-bottom: 0.5rem !important; + } + .pl-xl-2, + .px-xl-2 { + padding-left: 0.5rem !important; + } + .p-xl-3 { + padding: 1rem !important; + } + .pt-xl-3, + .py-xl-3 { + padding-top: 1rem !important; + } + .pr-xl-3, + .px-xl-3 { + padding-right: 1rem !important; + } + .pb-xl-3, + .py-xl-3 { + padding-bottom: 1rem !important; + } + .pl-xl-3, + .px-xl-3 { + padding-left: 1rem !important; + } + .p-xl-4 { + padding: 1.5rem !important; + } + .pt-xl-4, + .py-xl-4 { + padding-top: 1.5rem !important; + } + .pr-xl-4, + .px-xl-4 { + padding-right: 1.5rem !important; + } + .pb-xl-4, + .py-xl-4 { + padding-bottom: 1.5rem !important; + } + .pl-xl-4, + .px-xl-4 { + padding-left: 1.5rem !important; + } + .p-xl-5 { + padding: 3rem !important; + } + .pt-xl-5, + .py-xl-5 { + padding-top: 3rem !important; + } + .pr-xl-5, + .px-xl-5 { + padding-right: 3rem !important; + } + .pb-xl-5, + .py-xl-5 { + padding-bottom: 3rem !important; + } + .pl-xl-5, + .px-xl-5 { + padding-left: 3rem !important; + } + .m-xl-auto { + margin: auto !important; + } + .mt-xl-auto, + .my-xl-auto { + margin-top: auto !important; + } + .mr-xl-auto, + .mx-xl-auto { + margin-right: auto !important; + } + .mb-xl-auto, + .my-xl-auto { + margin-bottom: auto !important; + } + .ml-xl-auto, + .mx-xl-auto { + margin-left: auto !important; + } +} + +.text-justify { + text-align: justify !important; +} + +.text-nowrap { + white-space: nowrap !important; +} + +.text-truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +.text-left { + text-align: left !important; +} + +.text-right { + text-align: right !important; +} + +.text-center { + text-align: center !important; +} + +@media (min-width: 576px) { + .text-sm-left { + text-align: left !important; + } + .text-sm-right { + text-align: right !important; + } + .text-sm-center { + text-align: center !important; + } +} + +@media (min-width: 768px) { + .text-md-left { + text-align: left !important; + } + .text-md-right { + text-align: right !important; + } + .text-md-center { + text-align: center !important; + } +} + +@media (min-width: 992px) { + .text-lg-left { + text-align: left !important; + } + .text-lg-right { + text-align: right !important; + } + .text-lg-center { + text-align: center !important; + } +} + +@media (min-width: 1200px) { + .text-xl-left { + text-align: left !important; + } + .text-xl-right { + text-align: right !important; + } + .text-xl-center { + text-align: center !important; + } +} + +.text-lowercase { + text-transform: lowercase !important; +} + +.text-uppercase { + text-transform: uppercase !important; +} + +.text-capitalize { + text-transform: capitalize !important; +} + +.font-weight-light { + font-weight: 300 !important; +} + +.font-weight-normal { + font-weight: 400 !important; +} + +.font-weight-bold { + font-weight: 700 !important; +} + +.font-italic { + font-style: italic !important; +} + +.text-white { + color: #fff !important; +} + +.text-primary { + color: #007bff !important; +} + +a.text-primary:hover, a.text-primary:focus { + color: #0062cc !important; +} + +.text-secondary { + color: #6c757d !important; +} + +a.text-secondary:hover, a.text-secondary:focus { + color: #545b62 !important; +} + +.text-success { + color: #28a745 !important; +} + +a.text-success:hover, a.text-success:focus { + color: #1e7e34 !important; +} + +.text-info { + color: #17a2b8 !important; +} + +a.text-info:hover, a.text-info:focus { + color: #117a8b !important; +} + +.text-warning { + color: #ffc107 !important; +} + +a.text-warning:hover, a.text-warning:focus { + color: #d39e00 !important; +} + +.text-danger { + color: #dc3545 !important; +} + +a.text-danger:hover, a.text-danger:focus { + color: #bd2130 !important; +} + +.text-light { + color: #f8f9fa !important; +} + +a.text-light:hover, a.text-light:focus { + color: #dae0e5 !important; +} + +.text-dark { + color: #343a40 !important; +} + +a.text-dark:hover, a.text-dark:focus { + color: #1d2124 !important; +} + +.text-muted { + color: #6c757d !important; +} + +.text-hide { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; +} + +.visible { + visibility: visible !important; +} + +.invisible { + visibility: hidden !important; +} + +@media print { + *, + *::before, + *::after { + text-shadow: none !important; + box-shadow: none !important; + } + a:not(.btn) { + text-decoration: underline; + } + abbr[title]::after { + content: " (" attr(title) ")"; + } + pre { + white-space: pre-wrap !important; + } + pre, + blockquote { + border: 1px solid #999; + page-break-inside: avoid; + } + thead { + display: table-header-group; + } + tr, + img { + page-break-inside: avoid; + } + p, + h2, + h3 { + orphans: 3; + widows: 3; + } + h2, + h3 { + page-break-after: avoid; + } + @page { + size: a3; + } + body { + min-width: 992px !important; + } + .container { + min-width: 992px !important; + } + .navbar { + display: none; + } + .badge { + border: 1px solid #000; + } + .table { + border-collapse: collapse !important; + } + .table td, + .table th { + background-color: #fff !important; + } + .table-bordered th, + .table-bordered td { + border: 1px solid #ddd !important; + } +} +/*# sourceMappingURL=bootstrap.css.map */ \ No newline at end of file diff --git a/static/vendor/bootstrap/css/bootstrap.css.map b/static/vendor/bootstrap/css/bootstrap.css.map new file mode 100644 index 0000000..a4532ec --- /dev/null +++ b/static/vendor/bootstrap/css/bootstrap.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../scss/bootstrap.scss","../../scss/_root.scss","../../scss/_reboot.scss","bootstrap.css","../../scss/_variables.scss","../../scss/mixins/_hover.scss","../../scss/_type.scss","../../scss/mixins/_lists.scss","../../scss/_images.scss","../../scss/mixins/_image.scss","../../scss/mixins/_border-radius.scss","../../scss/_code.scss","../../scss/_grid.scss","../../scss/mixins/_grid.scss","../../scss/mixins/_breakpoints.scss","../../scss/mixins/_grid-framework.scss","../../scss/_tables.scss","../../scss/mixins/_table-row.scss","../../scss/_functions.scss","../../scss/_forms.scss","../../scss/mixins/_transition.scss","../../scss/mixins/_forms.scss","../../scss/mixins/_gradients.scss","../../scss/_buttons.scss","../../scss/mixins/_buttons.scss","../../scss/_transitions.scss","../../scss/_dropdown.scss","../../scss/mixins/_caret.scss","../../scss/mixins/_nav-divider.scss","../../scss/_button-group.scss","../../scss/_input-group.scss","../../scss/_custom-forms.scss","../../scss/_nav.scss","../../scss/_navbar.scss","../../scss/_card.scss","../../scss/_breadcrumb.scss","../../scss/_pagination.scss","../../scss/mixins/_pagination.scss","../../scss/_badge.scss","../../scss/mixins/_badge.scss","../../scss/_jumbotron.scss","../../scss/_alert.scss","../../scss/mixins/_alert.scss","../../scss/_progress.scss","../../scss/_media.scss","../../scss/_list-group.scss","../../scss/mixins/_list-group.scss","../../scss/_close.scss","../../scss/_modal.scss","../../scss/_tooltip.scss","../../scss/mixins/_reset-text.scss","../../scss/_popover.scss","../../scss/_carousel.scss","../../scss/utilities/_align.scss","../../scss/mixins/_background-variant.scss","../../scss/utilities/_background.scss","../../scss/utilities/_borders.scss","../../scss/mixins/_clearfix.scss","../../scss/utilities/_display.scss","../../scss/utilities/_embed.scss","../../scss/utilities/_flex.scss","../../scss/utilities/_float.scss","../../scss/mixins/_float.scss","../../scss/utilities/_position.scss","../../scss/utilities/_screenreaders.scss","../../scss/mixins/_screen-reader.scss","../../scss/utilities/_sizing.scss","../../scss/utilities/_spacing.scss","../../scss/utilities/_text.scss","../../scss/mixins/_text-truncate.scss","../../scss/mixins/_text-emphasis.scss","../../scss/mixins/_text-hide.scss","../../scss/utilities/_visibility.scss","../../scss/mixins/_visibility.scss","../../scss/_print.scss"],"names":[],"mappings":"AAAA;;;;;GAKG;ACLH;EAGI,gBAAe;EAAf,kBAAe;EAAf,kBAAe;EAAf,gBAAe;EAAf,eAAe;EAAf,kBAAe;EAAf,kBAAe;EAAf,iBAAe;EAAf,gBAAe;EAAf,gBAAe;EAAf,cAAe;EAAf,gBAAe;EAAf,qBAAe;EAIf,mBAAe;EAAf,qBAAe;EAAf,mBAAe;EAAf,gBAAe;EAAf,mBAAe;EAAf,kBAAe;EAAf,iBAAe;EAAf,gBAAe;EAIf,mBAAkC;EAAlC,uBAAkC;EAAlC,uBAAkC;EAAlC,uBAAkC;EAAlC,wBAAkC;EAKpC,+KAA0B;EAC1B,8GAAyB;CAC1B;;ACED;;;EAGE,uBAAsB;CACvB;;AAED;EACE,wBAAuB;EACvB,kBAAiB;EACjB,+BAA8B;EAC9B,2BAA0B;EAC1B,8BAA6B;EAC7B,yCAA6C;CAC9C;;AAIC;EACE,oBAAmB;CCgBtB;;ADVD;EACE,eAAc;CACf;;AAUD;EACE,UAAS;EACT,kKE0KgL;EFzKhL,gBE8KgC;EF7KhC,iBEkL+B;EFjL/B,iBEqL+B;EFpL/B,eE1CgB;EF2ChB,iBAAgB;EAChB,uBErDa;CFsDd;;ACMD;EDEE,sBAAqB;CACtB;;AAQD;EACE,wBAAuB;EACvB,UAAS;EACT,kBAAiB;CAClB;;AAYD;EACE,cAAa;EACb,sBEuJyC;CFtJ1C;;AAOD;EACE,cAAa;EACb,oBEgD8B;CF/C/B;;AASD;;EAEE,2BAA0B;EAC1B,0CAAiC;EAAjC,kCAAiC;EACjC,aAAY;EACZ,iBAAgB;CACjB;;AAED;EACE,oBAAmB;EACnB,mBAAkB;EAClB,qBAAoB;CACrB;;AAED;;;EAGE,cAAa;EACb,oBAAmB;CACpB;;AAED;;;;EAIE,iBAAgB;CACjB;;AAED;EACE,iBE0F+B;CFzFhC;;AAED;EACE,qBAAoB;EACpB,eAAc;CACf;;AAED;EACE,iBAAgB;CACjB;;AAED;EACE,mBAAkB;CACnB;;AAGD;;EAEE,oBAAmB;CACpB;;AAGD;EACE,eAAc;CACf;;AAOD;;EAEE,mBAAkB;EAClB,eAAc;EACd,eAAc;EACd,yBAAwB;CACzB;;AAED;EAAM,eAAc;CAAK;;AACzB;EAAM,WAAU;CAAK;;AAOrB;EACE,eElKe;EFmKf,sBEjD8B;EFkD9B,8BAA6B;EAC7B,sCAAqC;CAMtC;;AGjMC;EH8LE,eErDgD;EFsDhD,2BErDiC;CC1Ib;;AHyMxB;EACE,eAAc;EACd,sBAAqB;CAUtB;;AGjNC;EH0ME,eAAc;EACd,sBAAqB;CGxMtB;;AHkMH;EAUI,WAAU;CACX;;AASH;;;;EAIE,kCAAiC;EACjC,eAAc;CACf;;AAGD;EAEE,cAAa;EAEb,oBAAmB;EAEnB,eAAc;EAGd,8BAA6B;CAC9B;;AAOD;EAEE,iBAAgB;CACjB;;AAOD;EACE,uBAAsB;EACtB,mBAAkB;CACnB;;AAED;EACE,iBAAgB;CACjB;;AAOD;EACE,0BAAyB;CAC1B;;AAED;EACE,qBESkC;EFRlC,wBEQkC;EFPlC,eEnRgB;EFoRhB,iBAAgB;EAChB,qBAAoB;CACrB;;AAED;EAGE,oBAAmB;CACpB;;AAOD;EAEE,sBAAqB;EACrB,qBAAoB;CACrB;;AAKD;EACE,iBAAgB;CACjB;;AAMD;EACE,oBAAmB;EACnB,2CAA0C;CAC3C;;AAED;;;;;EAKE,UAAS;EACT,qBAAoB;EACpB,mBAAkB;EAClB,qBAAoB;CACrB;;AAED;;EAEE,kBAAiB;CAClB;;AAED;;EAEE,qBAAoB;CACrB;;AAKD;;;;EAIE,2BAA0B;CAC3B;;AAGD;;;;EAIE,WAAU;EACV,mBAAkB;CACnB;;AAED;;EAEE,uBAAsB;EACtB,WAAU;CACX;;AAGD;;;;EASE,4BAA2B;CAC5B;;AAED;EACE,eAAc;EAEd,iBAAgB;CACjB;;AAED;EAME,aAAY;EAEZ,WAAU;EACV,UAAS;EACT,UAAS;CACV;;AAID;EACE,eAAc;EACd,YAAW;EACX,gBAAe;EACf,WAAU;EACV,qBAAoB;EACpB,kBAAiB;EACjB,qBAAoB;EACpB,eAAc;EACd,oBAAmB;CACpB;;AAED;EACE,yBAAwB;CACzB;;ACtGD;;ED2GE,aAAY;CACb;;ACvGD;ED8GE,qBAAoB;EACpB,yBAAwB;CACzB;;AC3GD;;EDmHE,yBAAwB;CACzB;;AAOD;EACE,cAAa;EACb,2BAA0B;CAC3B;;AAMD;EACE,sBAAqB;CACtB;;AAED;EACE,mBAAkB;EAClB,gBAAe;CAChB;;AAED;EACE,cAAa;CACd;;ACxHD;ED6HE,yBAAwB;CACzB;;AI3dD;;EAEE,sBFmPyC;EElPzC,qBFmPmC;EElPnC,iBFmP+B;EElP/B,iBFmP+B;EElP/B,eFmPmC;CElPpC;;AAED;EAAU,kBFqOyC;CErOb;;AACtC;EAAU,gBFqOuC;CErOX;;AACtC;EAAU,mBFqO0C;CErOd;;AACtC;EAAU,kBFqOyC;CErOb;;AACtC;EAAU,mBFqO0C;CErOd;;AACtC;EAAU,gBFqNwB;CErNI;;AAEtC;EACE,mBFqPoD;EEpPpD,iBFqP+B;CEpPhC;;AAGD;EACE,gBFoOgC;EEnOhC,iBFwO+B;EEvO/B,iBF+N+B;CE9NhC;;AACD;EACE,kBFgOkC;EE/NlC,iBFoO+B;EEnO/B,iBF0N+B;CEzNhC;;AACD;EACE,kBF4NkC;EE3NlC,iBFgO+B;EE/N/B,iBFqN+B;CEpNhC;;AACD;EACE,kBFwNkC;EEvNlC,iBF4N+B;EE3N/B,iBFgN+B;CE/MhC;;AAOD;EACE,iBF8DW;EE7DX,oBF6DW;EE5DX,UAAS;EACT,yCFrCa;CEsCd;;AAOD;;EAEE,eF2M+B;EE1M/B,iBFyK+B;CExKhC;;AAED;;EAEE,eF+MgC;EE9MhC,0BFuNmC;CEtNpC;;AAOD;EC/EE,gBAAe;EACf,iBAAgB;CDgFjB;;AAGD;ECpFE,gBAAe;EACf,iBAAgB;CDqFjB;;AACD;EACE,sBAAqB;CAKtB;;AAND;EAII,qBFiM+B;CEhMhC;;AASH;EACE,eAAc;EACd,0BAAyB;CAC1B;;AAGD;EACE,oBFKW;EEJX,mBFmKoD;CElKrD;;AAED;EACE,eAAc;EACd,eAAc;EACd,eFtGgB;CE2GjB;;AARD;EAMI,uBAAsB;CACvB;;AEpHH;ECIE,gBAAe;EAGf,aAAY;CDLb;;AAID;EACE,iBJqyBwC;EIpyBxC,uBJJa;EIKb,0BJFgB;EMVd,uBN6MgC;EKtMlC,gBAAe;EAGf,aAAY;CDQb;;AAMD;EAEE,sBAAqB;CACtB;;AAED;EACE,sBAA4B;EAC5B,eAAc;CACf;;AAED;EACE,eJsxBqC;EIrxBrC,eJvBgB;CIwBjB;;AGxCD;;;;EAIE,kGPgOgH;CO/NjH;;AAGD;EACE,iBPo2BuC;EOn2BvC,eP4Be;EO3Bf,uBAAsB;CAMvB;;AAHC;EACE,eAAc;CACf;;AAIH;EACE,uBP41BuC;EO31BvC,iBPu1BuC;EOt1BvC,YPba;EOcb,0BPLgB;EMhBd,sBN+M+B;COhLlC;;AAdD;EASI,WAAU;EACV,gBAAe;EACf,iBP+M6B;CO7M9B;;AAIH;EACE,eAAc;EACd,iBPs0BuC;EOr0BvC,ePrBgB;CO6BjB;;AAXD;EAOI,mBAAkB;EAClB,eAAc;EACd,mBAAkB;CACnB;;AAIH;EACE,kBPm0BuC;EOl0BvC,mBAAkB;CACnB;;AClDC;ECAA,YAAW;EACX,oBAAuC;EACvC,mBAAsC;EACtC,mBAAkB;EAClB,kBAAiB;CDDhB;;AEoDC;EFvDF;ICYI,iBTsKK;GQ/KR;CT8iBF;;AW1fG;EFvDF;ICYI,iBTuKK;GQhLR;CTojBF;;AWhgBG;EFvDF;ICYI,iBTwKK;GQjLR;CT0jBF;;AWtgBG;EFvDF;ICYI,kBTyKM;GQlLT;CTgkBF;;ASvjBC;ECZA,YAAW;EACX,oBAAuC;EACvC,mBAAsC;EACtC,mBAAkB;EAClB,kBAAiB;CDUhB;;AAQD;ECJA,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,oBAAe;EAAf,gBAAe;EACf,oBAAuC;EACvC,mBAAsC;CDGrC;;AAID;EACE,gBAAe;EACf,eAAc;CAOf;;AATD;;EAMI,iBAAgB;EAChB,gBAAe;CAChB;;AGlCH;;;;;;EACE,mBAAkB;EAClB,YAAW;EACX,gBAAe;EACf,oBAA4B;EAC5B,mBAA2B;CAC5B;;AAkBG;EACE,2BAAa;EAAb,cAAa;EACb,oBAAY;EAAZ,qBAAY;EAAZ,aAAY;EACZ,gBAAe;CAChB;;AACD;EACE,oBAAc;EAAd,mBAAc;EAAd,eAAc;EACd,YAAW;EACX,gBAAe;CAChB;;AAGC;EFFN,oBAAsC;EAAtC,wBAAsC;EAAtC,oBAAsC;EAItC,qBAAuC;CEAhC;;AAFD;EFFN,oBAAsC;EAAtC,yBAAsC;EAAtC,qBAAsC;EAItC,sBAAuC;CEAhC;;AAFD;EFFN,oBAAsC;EAAtC,kBAAsC;EAAtC,cAAsC;EAItC,eAAuC;CEAhC;;AAFD;EFFN,oBAAsC;EAAtC,yBAAsC;EAAtC,qBAAsC;EAItC,sBAAuC;CEAhC;;AAFD;EFFN,oBAAsC;EAAtC,yBAAsC;EAAtC,qBAAsC;EAItC,sBAAuC;CEAhC;;AAFD;EFFN,oBAAsC;EAAtC,kBAAsC;EAAtC,cAAsC;EAItC,eAAuC;CEAhC;;AAFD;EFFN,oBAAsC;EAAtC,yBAAsC;EAAtC,qBAAsC;EAItC,sBAAuC;CEAhC;;AAFD;EFFN,oBAAsC;EAAtC,yBAAsC;EAAtC,qBAAsC;EAItC,sBAAuC;CEAhC;;AAFD;EFFN,oBAAsC;EAAtC,kBAAsC;EAAtC,cAAsC;EAItC,eAAuC;CEAhC;;AAFD;EFFN,oBAAsC;EAAtC,yBAAsC;EAAtC,qBAAsC;EAItC,sBAAuC;CEAhC;;AAFD;EFFN,oBAAsC;EAAtC,yBAAsC;EAAtC,qBAAsC;EAItC,sBAAuC;CEAhC;;AAFD;EFFN,oBAAsC;EAAtC,mBAAsC;EAAtC,eAAsC;EAItC,gBAAuC;CEAhC;;AAGH;EAAwB,6BAAS;EAAT,mBAAS;EAAT,UAAS;CAAK;;AAEtC;EAAuB,8BAAmB;EAAnB,mBAAmB;EAAnB,UAAmB;CAAI;;AAG5C;EAAwB,6BADZ;EACY,kBADZ;EACY,SADZ;CACyB;;AAArC;EAAwB,6BADZ;EACY,kBADZ;EACY,SADZ;CACyB;;AAArC;EAAwB,6BADZ;EACY,kBADZ;EACY,SADZ;CACyB;;AAArC;EAAwB,6BADZ;EACY,kBADZ;EACY,SADZ;CACyB;;AAArC;EAAwB,6BADZ;EACY,kBADZ;EACY,SADZ;CACyB;;AAArC;EAAwB,6BADZ;EACY,kBADZ;EACY,SADZ;CACyB;;AAArC;EAAwB,6BADZ;EACY,kBADZ;EACY,SADZ;CACyB;;AAArC;EAAwB,6BADZ;EACY,kBADZ;EACY,SADZ;CACyB;;AAArC;EAAwB,6BADZ;EACY,kBADZ;EACY,SADZ;CACyB;;AAArC;EAAwB,8BADZ;EACY,kBADZ;EACY,SADZ;CACyB;;AAArC;EAAwB,8BADZ;EACY,mBADZ;EACY,UADZ;CACyB;;AAArC;EAAwB,8BADZ;EACY,mBADZ;EACY,UADZ;CACyB;;AAArC;EAAwB,8BADZ;EACY,mBADZ;EACY,UADZ;CACyB;;AAMnC;EFTR,uBAA8C;CEWrC;;AAFD;EFTR,wBAA8C;CEWrC;;AAFD;EFTR,iBAA8C;CEWrC;;AAFD;EFTR,wBAA8C;CEWrC;;AAFD;EFTR,wBAA8C;CEWrC;;AAFD;EFTR,iBAA8C;CEWrC;;AAFD;EFTR,wBAA8C;CEWrC;;AAFD;EFTR,wBAA8C;CEWrC;;AAFD;EFTR,iBAA8C;CEWrC;;AAFD;EFTR,wBAA8C;CEWrC;;AAFD;EFTR,wBAA8C;CEWrC;;ADDP;EC7BE;IACE,2BAAa;IAAb,cAAa;IACb,oBAAY;IAAZ,qBAAY;IAAZ,aAAY;IACZ,gBAAe;GAChB;EACD;IACE,oBAAc;IAAd,mBAAc;IAAd,eAAc;IACd,YAAW;IACX,gBAAe;GAChB;EAGC;IFFN,oBAAsC;IAAtC,wBAAsC;IAAtC,oBAAsC;IAItC,qBAAuC;GEAhC;EAFD;IFFN,oBAAsC;IAAtC,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,oBAAsC;IAAtC,kBAAsC;IAAtC,cAAsC;IAItC,eAAuC;GEAhC;EAFD;IFFN,oBAAsC;IAAtC,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,oBAAsC;IAAtC,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,oBAAsC;IAAtC,kBAAsC;IAAtC,cAAsC;IAItC,eAAuC;GEAhC;EAFD;IFFN,oBAAsC;IAAtC,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,oBAAsC;IAAtC,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,oBAAsC;IAAtC,kBAAsC;IAAtC,cAAsC;IAItC,eAAuC;GEAhC;EAFD;IFFN,oBAAsC;IAAtC,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,oBAAsC;IAAtC,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,oBAAsC;IAAtC,mBAAsC;IAAtC,eAAsC;IAItC,gBAAuC;GEAhC;EAGH;IAAwB,6BAAS;IAAT,mBAAS;IAAT,UAAS;GAAK;EAEtC;IAAuB,8BAAmB;IAAnB,mBAAmB;IAAnB,UAAmB;GAAI;EAG5C;IAAwB,6BADZ;IACY,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,6BADZ;IACY,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,6BADZ;IACY,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,6BADZ;IACY,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,6BADZ;IACY,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,6BADZ;IACY,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,6BADZ;IACY,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,6BADZ;IACY,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,6BADZ;IACY,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,8BADZ;IACY,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,8BADZ;IACY,mBADZ;IACY,UADZ;GACyB;EAArC;IAAwB,8BADZ;IACY,mBADZ;IACY,UADZ;GACyB;EAArC;IAAwB,8BADZ;IACY,mBADZ;IACY,UADZ;GACyB;EAMnC;IFTR,eAA4B;GEWnB;EAFD;IFTR,uBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,iBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,iBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,iBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;CZg3BV;;AWj3BG;EC7BE;IACE,2BAAa;IAAb,cAAa;IACb,oBAAY;IAAZ,qBAAY;IAAZ,aAAY;IACZ,gBAAe;GAChB;EACD;IACE,oBAAc;IAAd,mBAAc;IAAd,eAAc;IACd,YAAW;IACX,gBAAe;GAChB;EAGC;IFFN,oBAAsC;IAAtC,wBAAsC;IAAtC,oBAAsC;IAItC,qBAAuC;GEAhC;EAFD;IFFN,oBAAsC;IAAtC,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,oBAAsC;IAAtC,kBAAsC;IAAtC,cAAsC;IAItC,eAAuC;GEAhC;EAFD;IFFN,oBAAsC;IAAtC,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,oBAAsC;IAAtC,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,oBAAsC;IAAtC,kBAAsC;IAAtC,cAAsC;IAItC,eAAuC;GEAhC;EAFD;IFFN,oBAAsC;IAAtC,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,oBAAsC;IAAtC,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,oBAAsC;IAAtC,kBAAsC;IAAtC,cAAsC;IAItC,eAAuC;GEAhC;EAFD;IFFN,oBAAsC;IAAtC,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,oBAAsC;IAAtC,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,oBAAsC;IAAtC,mBAAsC;IAAtC,eAAsC;IAItC,gBAAuC;GEAhC;EAGH;IAAwB,6BAAS;IAAT,mBAAS;IAAT,UAAS;GAAK;EAEtC;IAAuB,8BAAmB;IAAnB,mBAAmB;IAAnB,UAAmB;GAAI;EAG5C;IAAwB,6BADZ;IACY,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,6BADZ;IACY,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,6BADZ;IACY,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,6BADZ;IACY,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,6BADZ;IACY,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,6BADZ;IACY,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,6BADZ;IACY,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,6BADZ;IACY,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,6BADZ;IACY,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,8BADZ;IACY,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,8BADZ;IACY,mBADZ;IACY,UADZ;GACyB;EAArC;IAAwB,8BADZ;IACY,mBADZ;IACY,UADZ;GACyB;EAArC;IAAwB,8BADZ;IACY,mBADZ;IACY,UADZ;GACyB;EAMnC;IFTR,eAA4B;GEWnB;EAFD;IFTR,uBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,iBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,iBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,iBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;CZ8/BV;;AW//BG;EC7BE;IACE,2BAAa;IAAb,cAAa;IACb,oBAAY;IAAZ,qBAAY;IAAZ,aAAY;IACZ,gBAAe;GAChB;EACD;IACE,oBAAc;IAAd,mBAAc;IAAd,eAAc;IACd,YAAW;IACX,gBAAe;GAChB;EAGC;IFFN,oBAAsC;IAAtC,wBAAsC;IAAtC,oBAAsC;IAItC,qBAAuC;GEAhC;EAFD;IFFN,oBAAsC;IAAtC,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,oBAAsC;IAAtC,kBAAsC;IAAtC,cAAsC;IAItC,eAAuC;GEAhC;EAFD;IFFN,oBAAsC;IAAtC,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,oBAAsC;IAAtC,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,oBAAsC;IAAtC,kBAAsC;IAAtC,cAAsC;IAItC,eAAuC;GEAhC;EAFD;IFFN,oBAAsC;IAAtC,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,oBAAsC;IAAtC,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,oBAAsC;IAAtC,kBAAsC;IAAtC,cAAsC;IAItC,eAAuC;GEAhC;EAFD;IFFN,oBAAsC;IAAtC,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,oBAAsC;IAAtC,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,oBAAsC;IAAtC,mBAAsC;IAAtC,eAAsC;IAItC,gBAAuC;GEAhC;EAGH;IAAwB,6BAAS;IAAT,mBAAS;IAAT,UAAS;GAAK;EAEtC;IAAuB,8BAAmB;IAAnB,mBAAmB;IAAnB,UAAmB;GAAI;EAG5C;IAAwB,6BADZ;IACY,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,6BADZ;IACY,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,6BADZ;IACY,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,6BADZ;IACY,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,6BADZ;IACY,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,6BADZ;IACY,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,6BADZ;IACY,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,6BADZ;IACY,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,6BADZ;IACY,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,8BADZ;IACY,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,8BADZ;IACY,mBADZ;IACY,UADZ;GACyB;EAArC;IAAwB,8BADZ;IACY,mBADZ;IACY,UADZ;GACyB;EAArC;IAAwB,8BADZ;IACY,mBADZ;IACY,UADZ;GACyB;EAMnC;IFTR,eAA4B;GEWnB;EAFD;IFTR,uBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,iBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,iBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,iBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;CZ4oCV;;AW7oCG;EC7BE;IACE,2BAAa;IAAb,cAAa;IACb,oBAAY;IAAZ,qBAAY;IAAZ,aAAY;IACZ,gBAAe;GAChB;EACD;IACE,oBAAc;IAAd,mBAAc;IAAd,eAAc;IACd,YAAW;IACX,gBAAe;GAChB;EAGC;IFFN,oBAAsC;IAAtC,wBAAsC;IAAtC,oBAAsC;IAItC,qBAAuC;GEAhC;EAFD;IFFN,oBAAsC;IAAtC,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,oBAAsC;IAAtC,kBAAsC;IAAtC,cAAsC;IAItC,eAAuC;GEAhC;EAFD;IFFN,oBAAsC;IAAtC,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,oBAAsC;IAAtC,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,oBAAsC;IAAtC,kBAAsC;IAAtC,cAAsC;IAItC,eAAuC;GEAhC;EAFD;IFFN,oBAAsC;IAAtC,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,oBAAsC;IAAtC,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,oBAAsC;IAAtC,kBAAsC;IAAtC,cAAsC;IAItC,eAAuC;GEAhC;EAFD;IFFN,oBAAsC;IAAtC,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,oBAAsC;IAAtC,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,oBAAsC;IAAtC,mBAAsC;IAAtC,eAAsC;IAItC,gBAAuC;GEAhC;EAGH;IAAwB,6BAAS;IAAT,mBAAS;IAAT,UAAS;GAAK;EAEtC;IAAuB,8BAAmB;IAAnB,mBAAmB;IAAnB,UAAmB;GAAI;EAG5C;IAAwB,6BADZ;IACY,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,6BADZ;IACY,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,6BADZ;IACY,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,6BADZ;IACY,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,6BADZ;IACY,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,6BADZ;IACY,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,6BADZ;IACY,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,6BADZ;IACY,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,6BADZ;IACY,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,8BADZ;IACY,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,8BADZ;IACY,mBADZ;IACY,UADZ;GACyB;EAArC;IAAwB,8BADZ;IACY,mBADZ;IACY,UADZ;GACyB;EAArC;IAAwB,8BADZ;IACY,mBADZ;IACY,UADZ;GACyB;EAMnC;IFTR,eAA4B;GEWnB;EAFD;IFTR,uBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,iBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,iBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,iBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;CZ0xCV;;Aan1CD;EACE,YAAW;EACX,gBAAe;EACf,oBZ8GW;EY7GX,8BZsSuC;CYjRxC;;AAzBD;;EAQI,iBZ+RgC;EY9RhC,oBAAmB;EACnB,8BZAc;CYCf;;AAXH;EAcI,uBAAsB;EACtB,iCZLc;CYMf;;AAhBH;EAmBI,8BZTc;CYUf;;AApBH;EAuBI,uBZhBW;CYiBZ;;AAQH;;EAGI,gBZqQ+B;CYpQhC;;AAQH;EACE,0BZnCgB;CYgDjB;;AAdD;;EAKI,0BZvCc;CYwCf;;AANH;;EAWM,yBAA8C;CAC/C;;AASL;EAEI,sCZlDW;CYmDZ;;AAQH;EAGM,uCZ9DS;CCPS;;AYTtB;;;EAII,0BC2E4D;CD1E7D;;AAKH;EAKM,0BAJsC;CZFtB;;AYCtB;;EASQ,0BARoC;CASrC;;AApBP;;;EAII,0BC2E4D;CD1E7D;;AAKH;EAKM,0BAJsC;CZFtB;;AYCtB;;EASQ,0BARoC;CASrC;;AApBP;;;EAII,0BC2E4D;CD1E7D;;AAKH;EAKM,0BAJsC;CZFtB;;AYCtB;;EASQ,0BARoC;CASrC;;AApBP;;;EAII,0BC2E4D;CD1E7D;;AAKH;EAKM,0BAJsC;CZFtB;;AYCtB;;EASQ,0BARoC;CASrC;;AApBP;;;EAII,0BC2E4D;CD1E7D;;AAKH;EAKM,0BAJsC;CZFtB;;AYCtB;;EASQ,0BARoC;CASrC;;AApBP;;;EAII,0BC2E4D;CD1E7D;;AAKH;EAKM,0BAJsC;CZFtB;;AYCtB;;EASQ,0BARoC;CASrC;;AApBP;;;EAII,0BC2E4D;CD1E7D;;AAKH;EAKM,0BAJsC;CZFtB;;AYCtB;;EASQ,0BARoC;CASrC;;AApBP;;;EAII,0BC2E4D;CD1E7D;;AAKH;EAKM,0BAJsC;CZFtB;;AYCtB;;EASQ,0BARoC;CASrC;;AApBP;;;EAII,uCbYS;CaXV;;AAKH;EAKM,uCAJsC;CZFtB;;AYCtB;;EASQ,uCARoC;CASrC;;ADiFT;EAGM,YZlGS;EYmGT,0BZ1FY;EY2FZ,sBZ6MgD;CY5MjD;;AANL;EAWM,eZnGY;EYoGZ,0BZzGY;EY0GZ,sBZzGY;CY0Gb;;AAIL;EACE,YZlHa;EYmHb,0BZ1GgB;CYmIjB;;AA3BD;;;EAOI,sBZyLkD;CYxLnD;;AARH;EAWI,UAAS;CACV;;AAZH;EAgBM,4CZjIS;CYkIV;;AAjBL;EAuBQ,6CZxIO;CCGS;;AS2DpB;EE2FA;IAEI,eAAc;IACd,YAAW;IACX,iBAAgB;IAChB,kCAAiC;IACjC,6CAA4C;GAO/C;EAbD;IAUM,UAAS;GACV;Cbq5CR;;AW3/CG;EE2FA;IAEI,eAAc;IACd,YAAW;IACX,iBAAgB;IAChB,kCAAiC;IACjC,6CAA4C;GAO/C;EAbD;IAUM,UAAS;GACV;Cbk6CR;;AWxgDG;EE2FA;IAEI,eAAc;IACd,YAAW;IACX,iBAAgB;IAChB,kCAAiC;IACjC,6CAA4C;GAO/C;EAbD;IAUM,UAAS;GACV;Cb+6CR;;AWrhDG;EE2FA;IAEI,eAAc;IACd,YAAW;IACX,iBAAgB;IAChB,kCAAiC;IACjC,6CAA4C;GAO/C;EAbD;IAUM,UAAS;GACV;Cb47CR;;Aa58CD;EAOQ,eAAc;EACd,YAAW;EACX,iBAAgB;EAChB,kCAAiC;EACjC,6CAA4C;CAO/C;;AAlBL;EAeU,UAAS;CACV;;AGzKT;EACE,eAAc;EACd,YAAW;EACX,0Bf4TkC;Ee3TlC,gBf+NgC;Ee9NhC,iBfuO+B;EetO/B,efMgB;EeLhB,uBfFa;EeGb,6BAA4B;EAC5B,0BfAgB;EeKd,uBf6LgC;EgB5M9B,yEhBoa4F;CejXjG;;AAlDD;EAyBI,8BAA6B;EAC7B,UAAS;CACV;;AEpBD;EACE,ejBIc;EiBHd,uBjBJW;EiBKX,sBjBuYsE;EiBtYtE,WAAU;EAKR,iDjBcW;CiBZd;;AFlBH;EAkCI,efvBc;EeyBd,WAAU;CACX;;AArCH;EAkCI,efvBc;EeyBd,WAAU;CACX;;AArCH;EAkCI,efvBc;EeyBd,WAAU;CACX;;AArCH;EAkCI,efvBc;EeyBd,WAAU;CACX;;AArCH;EAkCI,efvBc;EeyBd,WAAU;CACX;;AArCH;EA8CI,0BfvCc;EeyCd,WAAU;CACX;;AAGH;EAEI,4BfqW0F;CepW3F;;AAHH;EAWI,efnDc;EeoDd,uBf3DW;Ce4DZ;;AAIH;;EAEE,eAAc;EACd,YAAW;CACZ;;AASD;EACE,kCAA+D;EAC/D,qCAAkE;EAClE,iBAAgB;EAChB,mBAAkB;EAClB,iBfqJ+B;CepJhC;;AAED;EACE,gCAAkE;EAClE,mCAAqE;EACrE,mBfuIoD;EetIpD,iBfuG+B;CetGhC;;AAED;EACE,iCAAkE;EAClE,oCAAqE;EACrE,oBfiIoD;EehIpD,iBfiG+B;CehGhC;;AAQD;EACE,eAAc;EACd,YAAW;EACX,sBf6MmC;Ee5MnC,yBf4MmC;Ee3MnC,iBAAgB;EAChB,iBfwH+B;EevH/B,8BAA6B;EAC7B,0BAAyB;EACzB,oBAAmC;CAOpC;;AAhBD;;;;;;;;;EAaI,iBAAgB;EAChB,gBAAe;CAChB;;AAYH;;;;;EACE,wBf6LiC;Ee5LjC,oBf0FoD;EezFpD,iBf0D+B;EMxM7B,sBN+M+B;Ce/DlC;;AAED;;;;;EAEI,8Bf4Q6F;Ce3Q9F;;AAGH;;;;;EACE,qBfoLgC;EenLhC,mBf4EoD;Ee3EpD,iBf4C+B;EMvM7B,sBN8M+B;CejDlC;;AAED;;;;;EAEI,6BfkQ6F;CejQ9F;;AASH;EACE,oBfoQ0C;CenQ3C;;AAED;EACE,eAAc;EACd,oBfsP4C;CerP7C;;AAOD;EACE,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,oBAAe;EAAf,gBAAe;EACf,mBAAkB;EAClB,kBAAiB;CAOlB;;AAXD;;EAQI,mBAAkB;EAClB,kBAAiB;CAClB;;AAQH;EACE,mBAAkB;EAClB,eAAc;EACd,sBf2N6C;Ce1N9C;;AAED;EACE,mBAAkB;EAClB,mBfuN2C;EetN3C,sBfqN6C;CehN9C;;AARD;EAMI,ef1Mc;Ce2Mf;;AAGH;EACE,iBAAgB;CACjB;;AAED;EACE,4BAAoB;EAApB,4BAAoB;EAApB,qBAAoB;EACpB,0BAAmB;EAAnB,uBAAmB;EAAnB,oBAAmB;EACnB,gBAAe;EACf,sBf0M4C;CejM7C;;AAbD;EAQI,iBAAgB;EAChB,cAAa;EACb,wBfqM4C;EepM5C,eAAc;CACf;;AElND;EACE,cAAa;EACb,YAAW;EACX,oBjB2Y0C;EiB1Y1C,ejB8O6B;EiB7O7B,ejBSa;CiBRd;;AAED;EACE,mBAAkB;EAClB,UAAS;EACT,WAAU;EACV,cAAa;EACb,gBAAe;EACf,eAAc;EACd,kBAAiB;EACjB,mBAAkB;EAClB,eAAc;EACd,YAAW;EACX,yCjBLa;EiBMb,qBAAoB;CACrB;;AAIC;;;EAEE,sBjBbW;CiBwBZ;;AAbD;;;EAKI,sBjBhBS;EiBiBT,iDjBjBS;CiBkBV;;AAPH;;;;;;;;EAWI,eAAc;CACf;;AAKH;EAGI,ejB/BS;CiBgCV;;AAJH;;;EAQI,eAAc;CACf;;AAKH;EAGI,ejB7CS;CiBkDV;;AARH;EAMM,0BAAsC;CACvC;;AAPL;;;EAYI,eAAc;CACf;;AAbH;EC/EA,0BDgG+C;CAC1C;;AAlBL;EAuBM,iEjBjEO;CiBkER;;AAOL;EAGI,sBjB5ES;CiB+EV;;AANH;EAKgB,sBAAqB;CAAK;;AAL1C;;;EAUI,eAAc;CACf;;AAXH;EAeM,iDjBxFO;CiByFR;;AAvGP;EACE,cAAa;EACb,YAAW;EACX,oBjB2Y0C;EiB1Y1C,ejB8O6B;EiB7O7B,ejBMa;CiBLd;;AAED;EACE,mBAAkB;EAClB,UAAS;EACT,WAAU;EACV,cAAa;EACb,gBAAe;EACf,eAAc;EACd,kBAAiB;EACjB,mBAAkB;EAClB,eAAc;EACd,YAAW;EACX,yCjBRa;EiBSb,qBAAoB;CACrB;;AAIC;;;EAEE,sBjBhBW;CiB2BZ;;AAbD;;;EAKI,sBjBnBS;EiBoBT,iDjBpBS;CiBqBV;;AAPH;;;;;;;;EAWI,eAAc;CACf;;AAKH;EAGI,ejBlCS;CiBmCV;;AAJH;;;EAQI,eAAc;CACf;;AAKH;EAGI,ejBhDS;CiBqDV;;AARH;EAMM,0BAAsC;CACvC;;AAPL;;;EAYI,eAAc;CACf;;AAbH;EC/EA,0BDgG+C;CAC1C;;AAlBL;EAuBM,iEjBpEO;CiBqER;;AAOL;EAGI,sBjB/ES;CiBkFV;;AANH;EAKgB,sBAAqB;CAAK;;AAL1C;;;EAUI,eAAc;CACf;;AAXH;EAeM,iDjB3FO;CiB4FR;;AFkIT;EACE,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,+BAAmB;EAAnB,8BAAmB;EAAnB,wBAAmB;EAAnB,oBAAmB;EACnB,0BAAmB;EAAnB,uBAAmB;EAAnB,oBAAmB;CAmEpB;;AAtED;EASI,YAAW;CACZ;;ALpNC;EK0MJ;IAeM,qBAAa;IAAb,qBAAa;IAAb,cAAa;IACb,0BAAmB;IAAnB,uBAAmB;IAAnB,oBAAmB;IACnB,yBAAuB;IAAvB,sBAAuB;IAAvB,wBAAuB;IACvB,iBAAgB;GACjB;EAnBL;IAuBM,qBAAa;IAAb,qBAAa;IAAb,cAAa;IACb,oBAAc;IAAd,mBAAc;IAAd,eAAc;IACd,+BAAmB;IAAnB,8BAAmB;IAAnB,wBAAmB;IAAnB,oBAAmB;IACnB,0BAAmB;IAAnB,uBAAmB;IAAnB,oBAAmB;IACnB,iBAAgB;GACjB;EA5BL;IAgCM,sBAAqB;IACrB,YAAW;IACX,uBAAsB;GACvB;EAnCL;IAuCM,sBAAqB;GACtB;EAxCL;IA2CM,YAAW;GACZ;EA5CL;IAiDM,qBAAa;IAAb,qBAAa;IAAb,cAAa;IACb,0BAAmB;IAAnB,uBAAmB;IAAnB,oBAAmB;IACnB,yBAAuB;IAAvB,sBAAuB;IAAvB,wBAAuB;IACvB,YAAW;IACX,gBAAe;GAChB;EAtDL;IAwDM,mBAAkB;IAClB,cAAa;IACb,sBf+GwC;Ie9GxC,eAAc;GACf;EA5DL;IA+DM,0BAAmB;IAAnB,uBAAmB;IAAnB,oBAAmB;IACnB,yBAAuB;IAAvB,sBAAuB;IAAvB,wBAAuB;GACxB;EAjEL;IAmEM,iBAAgB;GACjB;ChByuDJ;;AoB7iED;EACE,sBAAqB;EACrB,iBnBsO+B;EmBrO/B,mBAAkB;EAClB,oBAAmB;EACnB,uBAAsB;EACtB,0BAAiB;EAAjB,uBAAiB;EAAjB,sBAAiB;EAAjB,kBAAiB;EACjB,8BAA2C;ECsF3C,0BpBkOkC;EoBjOlC,gBpBqIgC;EoBpIhC,iBpB6I+B;EoB1I7B,uBpByGgC;EgB5M9B,sIhBoX6I;CmBxUlJ;;AlB/BC;EkBCE,sBAAqB;ClBEtB;;AkBfH;EAkBI,WAAU;EACV,iDnBWa;CmBVd;;AApBH;EAyBI,cnB8U6B;CmB5U9B;;AA3BH;EA+BI,gBAAe;CAChB;;AAhCH;EAoCI,uBAAsB;CAMvB;;AAIH;;EAEE,qBAAoB;CACrB;;AAQC;ECzDA,YpBKa;EkBLX,0BlB8Ba;EoB5Bf,sBpB4Be;CmB6Bd;;AlBnDD;EmBFE,YpBDW;EkBLX,0BEDoF;EASpF,sBATyH;CnBSrG;;AmBGtB;EAMI,gDpBaW;CoBXd;;AAGD;EAEE,YpBnBW;EoBoBX,0BpBKa;EoBJb,sBpBIa;CoBHd;;AAED;;EAGE,YpB3BW;EoB4BX,0BAlCuK;EAsCvK,sBAtC+M;CAgDhN;;AARC;;EAKI,gDpBdS;CoBgBZ;;ADWH;ECzDA,YpBKa;EkBLX,0BlBWc;EoBThB,sBpBSgB;CmBgDf;;AlBnDD;EmBFE,YpBDW;EkBLX,0BEDoF;EASpF,sBATyH;CnBSrG;;AmBGtB;EAMI,kDpBNY;CoBQf;;AAGD;EAEE,YpBnBW;EoBoBX,0BpBdc;EoBed,sBpBfc;CoBgBf;;AAED;;EAGE,YpB3BW;EoB4BX,0BAlCuK;EAsCvK,sBAtC+M;CAgDhN;;AARC;;EAKI,kDpBjCU;CoBmCb;;ADWH;ECzDA,YpBKa;EkBLX,0BlBqCa;EoBnCf,sBpBmCe;CmBsBd;;AlBnDD;EmBFE,YpBDW;EkBLX,0BEDoF;EASpF,sBATyH;CnBSrG;;AmBGtB;EAMI,gDpBoBW;CoBlBd;;AAGD;EAEE,YpBnBW;EoBoBX,0BpBYa;EoBXb,sBpBWa;CoBVd;;AAED;;EAGE,YpB3BW;EoB4BX,0BAlCuK;EAsCvK,sBAtC+M;CAgDhN;;AARC;;EAKI,gDpBPS;CoBSZ;;ADWH;ECzDA,YpBKa;EkBLX,0BlBuCa;EoBrCf,sBpBqCe;CmBoBd;;AlBnDD;EmBFE,YpBDW;EkBLX,0BEDoF;EASpF,sBATyH;CnBSrG;;AmBGtB;EAMI,iDpBsBW;CoBpBd;;AAGD;EAEE,YpBnBW;EoBoBX,0BpBca;EoBbb,sBpBaa;CoBZd;;AAED;;EAGE,YpB3BW;EoB4BX,0BAlCuK;EAsCvK,sBAtC+M;CAgDhN;;AARC;;EAKI,iDpBLS;CoBOZ;;ADWH;ECzDA,epBcgB;EkBdd,0BlBoCa;EoBlCf,sBpBkCe;CmBuBd;;AlBnDD;EmBFE,epBQc;EkBdd,0BEDoF;EASpF,sBATyH;CnBSrG;;AmBGtB;EAMI,gDpBmBW;CoBjBd;;AAGD;EAEE,epBVc;EoBWd,0BpBWa;EoBVb,sBpBUa;CoBTd;;AAED;;EAGE,epBlBc;EoBmBd,0BAlCuK;EAsCvK,sBAtC+M;CAgDhN;;AARC;;EAKI,gDpBRS;CoBUZ;;ADWH;ECzDA,YpBKa;EkBLX,0BlBkCa;EoBhCf,sBpBgCe;CmByBd;;AlBnDD;EmBFE,YpBDW;EkBLX,0BEDoF;EASpF,sBATyH;CnBSrG;;AmBGtB;EAMI,gDpBiBW;CoBfd;;AAGD;EAEE,YpBnBW;EoBoBX,0BpBSa;EoBRb,sBpBQa;CoBPd;;AAED;;EAGE,YpB3BW;EoB4BX,0BAlCuK;EAsCvK,sBAtC+M;CAgDhN;;AARC;;EAKI,gDpBVS;CoBYZ;;ADWH;ECzDA,epBcgB;EkBdd,0BlBMc;EoBJhB,sBpBIgB;CmBqDf;;AlBnDD;EmBFE,epBQc;EkBdd,0BEDoF;EASpF,sBATyH;CnBSrG;;AmBGtB;EAMI,kDpBXY;CoBaf;;AAGD;EAEE,epBVc;EoBWd,0BpBnBc;EoBoBd,sBpBpBc;CoBqBf;;AAED;;EAGE,epBlBc;EoBmBd,0BAlCuK;EAsCvK,sBAtC+M;CAgDhN;;AARC;;EAKI,kDpBtCU;CoBwCb;;ADWH;ECzDA,YpBKa;EkBLX,0BlBac;EoBXhB,sBpBWgB;CmB8Cf;;AlBnDD;EmBFE,YpBDW;EkBLX,0BEDoF;EASpF,sBATyH;CnBSrG;;AmBGtB;EAMI,+CpBJY;CoBMf;;AAGD;EAEE,YpBnBW;EoBoBX,0BpBZc;EoBad,sBpBbc;CoBcf;;AAED;;EAGE,YpB3BW;EoB4BX,0BAlCuK;EAsCvK,sBAtC+M;CAgDhN;;AARC;;EAKI,+CpB/BU;CoBiCb;;ADiBH;ECZA,epBrBe;EoBsBf,8BAA6B;EAC7B,uBAAsB;EACtB,sBpBxBe;CmBmCd;;ACTD;EACE,YpBpDW;EoBqDX,0BpB5Ba;EoB6Bb,sBpB7Ba;CoB8Bd;;AAED;EAEE,gDpBlCa;CoBmCd;;AAED;EAEE,epBvCa;EoBwCb,8BAA6B;CAC9B;;AAED;;EAGE,YpBvEW;EoBwEX,0BpB/Ca;EoBgDb,sBpBhDa;CoB0Dd;;AARC;;EAKI,gDpBvDS;CoByDZ;;ADxBH;ECZA,epBxCgB;EoByChB,8BAA6B;EAC7B,uBAAsB;EACtB,sBpB3CgB;CmBsDf;;ACTD;EACE,YpBpDW;EoBqDX,0BpB/Cc;EoBgDd,sBpBhDc;CoBiDf;;AAED;EAEE,kDpBrDc;CoBsDf;;AAED;EAEE,epB1Dc;EoB2Dd,8BAA6B;CAC9B;;AAED;;EAGE,YpBvEW;EoBwEX,0BpBlEc;EoBmEd,sBpBnEc;CoB6Ef;;AARC;;EAKI,kDpB1EU;CoB4Eb;;ADxBH;ECZA,epBde;EoBef,8BAA6B;EAC7B,uBAAsB;EACtB,sBpBjBe;CmB4Bd;;ACTD;EACE,YpBpDW;EoBqDX,0BpBrBa;EoBsBb,sBpBtBa;CoBuBd;;AAED;EAEE,gDpB3Ba;CoB4Bd;;AAED;EAEE,epBhCa;EoBiCb,8BAA6B;CAC9B;;AAED;;EAGE,YpBvEW;EoBwEX,0BpBxCa;EoByCb,sBpBzCa;CoBmDd;;AARC;;EAKI,gDpBhDS;CoBkDZ;;ADxBH;ECZA,epBZe;EoBaf,8BAA6B;EAC7B,uBAAsB;EACtB,sBpBfe;CmB0Bd;;ACTD;EACE,YpBpDW;EoBqDX,0BpBnBa;EoBoBb,sBpBpBa;CoBqBd;;AAED;EAEE,iDpBzBa;CoB0Bd;;AAED;EAEE,epB9Ba;EoB+Bb,8BAA6B;CAC9B;;AAED;;EAGE,YpBvEW;EoBwEX,0BpBtCa;EoBuCb,sBpBvCa;CoBiDd;;AARC;;EAKI,iDpB9CS;CoBgDZ;;ADxBH;ECZA,epBfe;EoBgBf,8BAA6B;EAC7B,uBAAsB;EACtB,sBpBlBe;CmB6Bd;;ACTD;EACE,epB3Cc;EoB4Cd,0BpBtBa;EoBuBb,sBpBvBa;CoBwBd;;AAED;EAEE,gDpB5Ba;CoB6Bd;;AAED;EAEE,epBjCa;EoBkCb,8BAA6B;CAC9B;;AAED;;EAGE,epB9Dc;EoB+Dd,0BpBzCa;EoB0Cb,sBpB1Ca;CoBoDd;;AARC;;EAKI,gDpBjDS;CoBmDZ;;ADxBH;ECZA,epBjBe;EoBkBf,8BAA6B;EAC7B,uBAAsB;EACtB,sBpBpBe;CmB+Bd;;ACTD;EACE,YpBpDW;EoBqDX,0BpBxBa;EoByBb,sBpBzBa;CoB0Bd;;AAED;EAEE,gDpB9Ba;CoB+Bd;;AAED;EAEE,epBnCa;EoBoCb,8BAA6B;CAC9B;;AAED;;EAGE,YpBvEW;EoBwEX,0BpB3Ca;EoB4Cb,sBpB5Ca;CoBsDd;;AARC;;EAKI,gDpBnDS;CoBqDZ;;ADxBH;ECZA,epB7CgB;EoB8ChB,8BAA6B;EAC7B,uBAAsB;EACtB,sBpBhDgB;CmB2Df;;ACTD;EACE,epB3Cc;EoB4Cd,0BpBpDc;EoBqDd,sBpBrDc;CoBsDf;;AAED;EAEE,kDpB1Dc;CoB2Df;;AAED;EAEE,epB/Dc;EoBgEd,8BAA6B;CAC9B;;AAED;;EAGE,epB9Dc;EoB+Dd,0BpBvEc;EoBwEd,sBpBxEc;CoBkFf;;AARC;;EAKI,kDpB/EU;CoBiFb;;ADxBH;ECZA,epBtCgB;EoBuChB,8BAA6B;EAC7B,uBAAsB;EACtB,sBpBzCgB;CmBoDf;;ACTD;EACE,YpBpDW;EoBqDX,0BpB7Cc;EoB8Cd,sBpB9Cc;CoB+Cf;;AAED;EAEE,+CpBnDc;CoBoDf;;AAED;EAEE,epBxDc;EoByDd,8BAA6B;CAC9B;;AAED;;EAGE,YpBvEW;EoBwEX,0BpBhEc;EoBiEd,sBpBjEc;CoB2Ef;;AARC;;EAKI,+CpBxEU;CoB0Eb;;ADbL;EACE,iBnB6J+B;EmB5J/B,enB9Ce;EmB+Cf,8BAA6B;CAsB9B;;AlB3FC;EkBwEE,enBiEgD;EmBhEhD,2BnBiEiC;EmBhEjC,8BAA6B;EAC7B,0BAAyB;ClB3EL;;AkBkExB;EAcI,2BnB0DiC;EmBzDjC,0BAAyB;EACzB,iBAAgB;CACjB;;AAjBH;EAqBI,enBpFc;CmBqFf;;AAUH;ECbE,qBpB8OgC;EoB7OhC,mBpBsIoD;EoBrIpD,iBpBsG+B;EoBnG7B,sBpB0G+B;CmBhGlC;;AAED;ECjBE,wBpB0OiC;EoBzOjC,oBpBuIoD;EoBtIpD,iBpBuG+B;EoBpG7B,sBpB2G+B;CmB7FlC;;AAOD;EACE,eAAc;EACd,YAAW;CAMZ;;AARD;EAMI,mBnB+O+B;CmB9OhC;;AAIH;;;EAII,YAAW;CACZ;;AE3IH;EACE,WAAU;ELEN,iChBsN2C;CqBlNhD;;AAPD;EAKI,WAAU;CACX;;AAGH;EACE,cAAa;CAId;;AALD;EAGI,eAAc;CACf;;AAGH;EAEI,mBAAkB;CACnB;;AAGH;EAEI,yBAAwB;CACzB;;AAGH;EACE,mBAAkB;EAClB,UAAS;EACT,iBAAgB;EL5BZ,8BhBuNwC;CqBzL7C;;AClCD;;EAEE,mBAAkB;CACnB;;ACwBG;EACE,sBAAqB;EACrB,SAAQ;EACR,UAAS;EACT,qBAA+B;EAC/B,wBAAkC;EAClC,YAAW;EAjCf,wBAA8B;EAC9B,sCAA4C;EAC5C,iBAAgB;EAChB,qCAA2C;CAsCxC;;AAkBD;EACE,eAAc;CACf;;ADlDL;EACE,mBAAkB;EAClB,UAAS;EACT,QAAO;EACP,ctBiiBsC;EsBhiBtC,cAAa;EACb,YAAW;EACX,iBtBggBuC;EsB/fvC,kBAA8B;EAC9B,qBAA4B;EAC5B,gBtBmNgC;EsBlNhC,etBHgB;EsBIhB,iBAAgB;EAChB,iBAAgB;EAChB,uBtBfa;EsBgBb,6BAA4B;EAC5B,sCtBPa;EMjBX,uBN6MgC;CsBlLnC;;AAID;EAEI,cAAa;EACb,wBtB+euC;CsB9exC;;AAJH;ECNM,sBAAqB;EACrB,SAAQ;EACR,UAAS;EACT,qBAA+B;EAC/B,wBAAkC;EAClC,YAAW;EA1Bf,cAAa;EACb,sCAA4C;EAC5C,2BAAiC;EACjC,qCAA2C;CA+BxC;;ADPL;EC0BM,eAAc;CACf;;ADhBL;EAEI,cAAa;EACb,sBtBoeuC;CsBnexC;;AAJH;ECjBM,sBAAqB;EACrB,SAAQ;EACR,UAAS;EACT,qBAA+B;EAC/B,wBAAkC;EAClC,YAAW;EAnBf,oCAA0C;EAC1C,uCAA6C;EAC7C,yBAA+B;CAyB5B;;ADIL;ECeM,eAAc;CACf;;ADhBL;EASM,kBAAiB;CAClB;;AAIL;EAEI,cAAa;EACb,uBtBsduC;CsBrdxC;;AAJH;EC/BM,sBAAqB;EACrB,SAAQ;EACR,UAAS;EACT,qBAA+B;EAC/B,wBAAkC;EAClC,YAAW;CAQZ;;ADkBL;ECdQ,cAAa;CACd;;ADaP;ECVQ,sBAAqB;EACrB,SAAQ;EACR,UAAS;EACT,sBAAgC;EAChC,wBAAkC;EAClC,YAAW;EAlCjB,oCAA0C;EAC1C,0BAAgC;EAChC,uCAA6C;CAkCxC;;ADGP;ECCM,eAAc;CACf;;ADFL;EASM,kBAAiB;CAClB;;AAKL;EEtEE,UAAS;EACT,iBAAuB;EACvB,iBAAgB;EAChB,8BxBKgB;CsBgEjB;;AAKD;EACE,eAAc;EACd,YAAW;EACX,wBtBkdwC;EsBjdxC,YAAW;EACX,iBtBuJ+B;EsBtJ/B,etBpEgB;EsBqEhB,oBAAmB;EACnB,oBAAmB;EACnB,8BAA6B;EAC7B,UAAS;CAwBV;;ArBlGC;EqB6EE,etB+bqD;EsB9brD,sBAAqB;EJ1FrB,0BlBMc;CCSf;;AqB6DH;EAoBI,YtB3FW;EsB4FX,sBAAqB;EJjGrB,0BlB8Ba;CsBqEd;;AAvBH;EA2BI,etB5Fc;EsB6Fd,8BAA6B;CAK9B;;AAGH;EACE,eAAc;CACf;;AAGD;EACE,eAAc;EACd,uBtB0awC;EsBzaxC,iBAAgB;EAChB,oBtB4GoD;EsB3GpD,etB/GgB;EsBgHhB,oBAAmB;CACpB;;AG/HD;;EAEE,mBAAkB;EAClB,4BAAoB;EAApB,4BAAoB;EAApB,qBAAoB;EACpB,uBAAsB;CAyBvB;;AA7BD;;EAOI,mBAAkB;EAClB,oBAAc;EAAd,mBAAc;EAAd,eAAc;CAYf;;AApBH;;EAaM,WAAU;CxBFQ;;AwBXxB;;;;EAkBM,WAAU;CACX;;AAnBL;;;;;;;;EA2BI,kBzBgL6B;CyB/K9B;;AAIH;EACE,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,oBAAe;EAAf,gBAAe;EACf,wBAA2B;EAA3B,qBAA2B;EAA3B,4BAA2B;CAK5B;;AARD;EAMI,YAAW;CACZ;;AAGH;EAEI,eAAc;CACf;;AAHH;;EnB5BI,2BmBoC8B;EnBnC9B,8BmBmC8B;CAC/B;;AATH;;EnBdI,0BmB2B6B;EnB1B7B,6BmB0B6B;CAC9B;;AAeH;EACE,yBAAmC;EACnC,wBAAkC;CAKnC;;AAPD;EAKI,eAAc;CACf;;AAGH;EACE,wBAAsC;EACtC,uBAAqC;CACtC;;AAED;EACE,uBAAsC;EACtC,sBAAqC;CACtC;;AAmBD;EACE,6BAAsB;EAAtB,8BAAsB;EAAtB,2BAAsB;EAAtB,uBAAsB;EACtB,yBAAuB;EAAvB,sBAAuB;EAAvB,wBAAuB;EACvB,yBAAuB;EAAvB,sBAAuB;EAAvB,wBAAuB;CAyBxB;;AA5BD;;EAOI,YAAW;CACZ;;AARH;;;;EAcI,iBzBkF6B;EyBjF7B,eAAc;CACf;;AAhBH;;EnBtFI,8BmB2G+B;EnB1G/B,6BmB0G+B;CAChC;;AAtBH;;EnBpGI,0BmB8H4B;EnB7H5B,2BmB6H4B;CAC7B;;AAgBH;;EAGI,iBAAgB;CAQjB;;AAXH;;;;EAOM,mBAAkB;EAClB,uBAAsB;EACtB,qBAAoB;CACrB;;AC7JL;EACE,mBAAkB;EAClB,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,oBAAe;EAAf,gBAAe;EACf,2BAAoB;EAApB,wBAAoB;EAApB,qBAAoB;EACpB,YAAW;CAyCZ;;AA9CD;;;EAUI,mBAAkB;EAClB,oBAAc;EAAd,mBAAc;EAAd,eAAc;EAGd,UAAS;EACT,iBAAgB;CAYjB;;AA3BH;;;EAmBM,WAAU;CACX;;AApBL;;;;;;;;;EAyBM,kB1B+K2B;C0B9K5B;;AA1BL;;EpBWI,2BoBoBmD;EpBnBnD,8BoBmBmD;CAAK;;AA/B5D;;EpByBI,0BoBOmD;EpBNnD,6BoBMmD;CAAK;;AAhC5D;EAsCI,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,0BAAmB;EAAnB,uBAAmB;EAAnB,oBAAmB;CAMpB;;AA7CH;;EpBWI,2BoB+B8E;EpB9B9E,8BoB8B8E;CAAK;;AA1CvF;;EpByBI,0BoBmB8E;EpBlB9E,6BoBkB8E;CAAK;;AAWvF;;EAEE,qBAAa;EAAb,qBAAa;EAAb,cAAa;CAgBd;;AAlBD;;EAQI,mBAAkB;EAClB,WAAU;CACX;;AAVH;;;;;;;;EAgBI,kB1BiI6B;C0BhI9B;;AAGH;EAAuB,mB1B6HU;C0B7H4B;;AAC7D;EAAsB,kB1B4HW;C0B5H0B;;AAQ3D;EACE,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,0BAAmB;EAAnB,uBAAmB;EAAnB,oBAAmB;EACnB,0B1BwOkC;E0BvOlC,iBAAgB;EAChB,gB1B0IgC;E0BzIhC,iB1B8I+B;E0B7I/B,iB1BiJ+B;E0BhJ/B,e1BhFgB;E0BiFhB,mBAAkB;EAClB,oBAAmB;EACnB,0B1BxFgB;E0ByFhB,0B1BvFgB;EMXd,uBN6MgC;C0BnGnC;;AApBD;;EAkBI,cAAa;CACd;;AAiCH;;;;;;EpB7HI,2BoBmI4B;EpBlI5B,8BoBkI4B;CAC/B;;AAED;;;;;;EpBxHI,0BoB8H2B;EpB7H3B,6BoB6H2B;CAC9B;;ACrJD;EACE,mBAAkB;EAClB,eAAc;EACd,mBAAsC;EACtC,qB3B6a4C;C2B5a7C;;AAED;EACE,4BAAoB;EAApB,4BAAoB;EAApB,qBAAoB;EACpB,mB3Bya0C;C2Bxa3C;;AAED;EACE,mBAAkB;EAClB,YAAW;EACX,WAAU;CA4BX;;AA/BD;EAMI,Y3BhBW;EkBLX,0BlB8Ba;C2BNd;;AATH;EAaI,iE3BEa;C2BDd;;AAdH;EAiBI,Y3B3BW;E2B4BX,0B3Bsa8E;C2Bpa/E;;AApBH;EAwBM,e3B5BY;C2BiCb;;AA7BL;EA2BQ,0B3BnCU;C2BoCX;;AASP;EACE,iBAAgB;CA8BjB;;AA/BD;EAKI,mBAAkB;EAClB,aAA+D;EAC/D,QAAO;EACP,eAAc;EACd,Y3B0XwC;E2BzXxC,a3ByXwC;E2BxXxC,qBAAoB;EACpB,YAAW;EACX,0BAAiB;EAAjB,uBAAiB;EAAjB,sBAAiB;EAAjB,kBAAiB;EACjB,0B3B1Dc;C2B4Df;;AAhBH;EAoBI,mBAAkB;EAClB,aAA+D;EAC/D,QAAO;EACP,eAAc;EACd,Y3B2WwC;E2B1WxC,a3B0WwC;E2BzWxC,YAAW;EACX,6BAA4B;EAC5B,mCAAkC;EAClC,yB3BwW2C;C2BvW5C;;AAQH;ErB5FI,uBN6MgC;C2B9GjC;;AAHH;ET1FI,0BlB8Ba;C2BoEZ;;AARL;EAUM,2Nb9DqI;Ca+DtI;;AAXL;ET1FI,0BlB8Ba;C2B8EZ;;AAlBL;EAoBM,wKbxEqI;CayEtI;;AArBL;EA0BM,yC3BtFW;C2BuFZ;;AA3BL;EA6BM,yC3BzFW;C2B0FZ;;AAQL;EAEI,mB3BgV+C;C2B/UhD;;AAHH;EThII,0BlB8Ba;C2B0GZ;;AARL;EAUM,qKbpGqI;CaqGtI;;AAXL;EAgBM,yC3BlHW;C2BmHZ;;AAWL;EACE,sBAAqB;EACrB,YAAW;EACX,4B3B4P4F;E2B3P5F,2C3BsTuC;E2BrTvC,iB3B2E+B;E2B1E/B,e3BtJgB;E2BuJhB,uBAAsB;EACtB,uNAAsG;EACtG,0B3ByT0C;E2BxT1C,0B3B7JgB;E2B+Jd,uB3BmCgC;E2B/BlC,yBAAgB;EAAhB,sBAAgB;EAAhB,iBAAgB;CAkCjB;;AAlDD;EAmBI,sB3BkOsE;E2BjOtE,WAAU;EACV,mF3BgOsE;C2BrNvE;;AAhCH;EA6BM,e3B7KY;E2B8KZ,uB3BrLS;C2BsLV;;AA/BL;EAoCI,aAAY;EACZ,uB3BqRqC;E2BpRrC,uBAAsB;CACvB;;AAvCH;EA0CI,e3B3Lc;E2B4Ld,0B3BhMc;C2BiMf;;AA5CH;EAgDI,WAAU;CACX;;AAGH;EACE,8B3B6M+F;E2B5M/F,sB3BmQyC;E2BlQzC,yB3BkQyC;E2BjQzC,e3BoRqC;C2BnRtC;;AAED;EACE,6B3ByM+F;E2BxM/F,sB3B4PyC;E2B3PzC,yB3B2PyC;E2B1PzC,gB3BgRsC;C2B/QvC;;AAOD;EACE,mBAAkB;EAClB,sBAAqB;EACrB,YAAW;EACX,4B3BoL4F;E2BnL5F,iBAAgB;CACjB;;AAED;EACE,mBAAkB;EAClB,WAAU;EACV,YAAW;EACX,4B3B4K4F;E2B3K5F,UAAS;EACT,WAAU;CAgBX;;AAtBD;EASI,sB3B6JsE;E2B5JtE,iD3BvNa;C2B4Nd;;AAfH;EAaM,sB3ByJoE;C2BxJrE;;AAdL;EAmBM,kB3BgQQ;C2B/PT;;AAIL;EACE,mBAAkB;EAClB,OAAM;EACN,SAAQ;EACR,QAAO;EACP,WAAU;EACV,4B3BkJ4F;E2BjJ5F,0B3BqDkC;E2BpDlC,iB3B/B+B;E2BgC/B,e3BhQgB;E2BiQhB,uB3BxQa;E2ByQb,0B3BrQgB;EMXd,uBN6MgC;C2BuFnC;;AA/BD;EAgBI,mBAAkB;EAClB,OAAM;EACN,SAAQ;EACR,UAAS;EACT,WAAU;EACV,eAAc;EACd,4CAAuE;EACvE,0B3BqCgC;E2BpChC,iB3B/C6B;E2BgD7B,e3BhRc;E2BiRd,kBAAiB;ET7RjB,0BlBOc;E2BwRd,+B3BtRc;EMXd,mCqBkSgF;CACjF;;AClSH;EACE,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,oBAAe;EAAf,gBAAe;EACf,gBAAe;EACf,iBAAgB;EAChB,iBAAgB;CACjB;;AAED;EACE,eAAc;EACd,qB5B6iBsC;C4BniBvC;;A3BPC;E2BAE,sBAAqB;C3BGtB;;A2BRH;EAUI,e5BNc;C4BOf;;AAOH;EACE,iC5BlBgB;C4BoDjB;;AAnCD;EAII,oB5B2K6B;C4B1K9B;;AALH;EAQI,8BAAgD;EtB7BhD,gCNuMgC;EMtMhC,iCNsMgC;C4B9JjC;;AApBH;EAYM,sC5B7BY;CCOf;;A2BUH;EAgBM,e5B9BY;E4B+BZ,8BAA6B;EAC7B,0BAAyB;CAC1B;;AAnBL;;EAwBI,e5BrCc;E4BsCd,uB5B7CW;E4B8CX,mC5B9CW;C4B+CZ;;AA3BH;EA+BI,iB5BgJ6B;EMpM7B,0BsBsD4B;EtBrD5B,2BsBqD4B;CAC7B;;AAQH;EtBrEI,uBN6MgC;C4BrIjC;;AAHH;;EAOI,Y5BrEW;E4BsEX,0B5B7Ca;C4B8Cd;;AAQH;EAEI,oBAAc;EAAd,mBAAc;EAAd,eAAc;EACd,mBAAkB;CACnB;;AAGH;EAEI,2BAAa;EAAb,cAAa;EACb,oBAAY;EAAZ,qBAAY;EAAZ,aAAY;EACZ,mBAAkB;CACnB;;AAQH;EAEI,cAAa;CACd;;AAHH;EAKI,eAAc;CACf;;ACnGH;EACE,mBAAkB;EAClB,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,oBAAe;EAAf,gBAAe;EACf,0BAAmB;EAAnB,uBAAmB;EAAnB,oBAAmB;EACnB,0BAA8B;EAA9B,uBAA8B;EAA9B,+BAA8B;EAC9B,qB7B8FW;C6BnFZ;;AAjBD;;EAYI,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,oBAAe;EAAf,gBAAe;EACf,0BAAmB;EAAnB,uBAAmB;EAAnB,oBAAmB;EACnB,0BAA8B;EAA9B,uBAA8B;EAA9B,+BAA8B;CAC/B;;AAQH;EACE,sBAAqB;EACrB,uB7B2iB+E;E6B1iB/E,0B7B0iB+E;E6BziB/E,mB7BwEW;E6BvEX,mB7B4LoD;E6B3LpD,qBAAoB;EACpB,oBAAmB;CAKpB;;A5BnCC;E4BiCE,sBAAqB;C5B9BtB;;A4BuCH;EACE,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,6BAAsB;EAAtB,8BAAsB;EAAtB,2BAAsB;EAAtB,uBAAsB;EACtB,gBAAe;EACf,iBAAgB;EAChB,iBAAgB;CAWjB;;AAhBD;EAQI,iBAAgB;EAChB,gBAAe;CAChB;;AAVH;EAaI,iBAAgB;EAChB,YAAW;CACZ;;AAQH;EACE,sBAAqB;EACrB,oB7BseuC;E6BrevC,uB7BqeuC;C6BpexC;;AAWD;EACE,8BAAgB;EAAhB,iBAAgB;EAChB,oBAAY;EAAZ,qBAAY;EAAZ,aAAY;EAGZ,0BAAmB;EAAnB,uBAAmB;EAAnB,oBAAmB;CACpB;;AAGD;EACE,yB7B6ewC;E6B5exC,mB7B6HoD;E6B5HpD,eAAc;EACd,8BAA6B;EAC7B,8BAAuC;EvB5GrC,uBN6MgC;C6BtFnC;;A5BzGC;E4BkGE,sBAAqB;C5B/FtB;;A4BsFH;EAcI,gBAAe;CAChB;;AAKH;EACE,sBAAqB;EACrB,aAAY;EACZ,cAAa;EACb,uBAAsB;EACtB,YAAW;EACX,oCAAmC;EACnC,2BAA0B;CAC3B;;AnB9DG;EmBuEA;;IAIM,iBAAgB;IAChB,gBAAe;GAChB;C9B84GR;;AWx+GG;EmBoFA;IAUI,+BAAqB;IAArB,8BAAqB;IAArB,0BAAqB;IAArB,sBAAqB;IACrB,wBAA2B;IAA3B,qBAA2B;IAA3B,4BAA2B;GA4C9B;EAvDD;IAcM,+BAAmB;IAAnB,8BAAmB;IAAnB,wBAAmB;IAAnB,oBAAmB;GAepB;EA7BL;IAiBQ,mBAAkB;GACnB;EAlBP;IAqBQ,SAAQ;IACR,WAAU;GACX;EAvBP;IA0BQ,sB7Bsa6B;I6Bra7B,qB7Bqa6B;G6Bpa9B;EA5BP;;IAkCM,sBAAiB;IAAjB,kBAAiB;GAClB;EAnCL;IAsCM,gCAAwB;IAAxB,gCAAwB;IAAxB,yBAAwB;IAGxB,8BAAgB;IAAhB,iBAAgB;GACjB;EA1CL;IA6CM,cAAa;GACd;EA9CL;IAkDQ,UAAS;IACT,aAAY;GACb;C9Bo4GV;;AW//GG;EmBuEA;;IAIM,iBAAgB;IAChB,gBAAe;GAChB;C9B07GR;;AWphHG;EmBoFA;IAUI,+BAAqB;IAArB,8BAAqB;IAArB,0BAAqB;IAArB,sBAAqB;IACrB,wBAA2B;IAA3B,qBAA2B;IAA3B,4BAA2B;GA4C9B;EAvDD;IAcM,+BAAmB;IAAnB,8BAAmB;IAAnB,wBAAmB;IAAnB,oBAAmB;GAepB;EA7BL;IAiBQ,mBAAkB;GACnB;EAlBP;IAqBQ,SAAQ;IACR,WAAU;GACX;EAvBP;IA0BQ,sB7Bsa6B;I6Bra7B,qB7Bqa6B;G6Bpa9B;EA5BP;;IAkCM,sBAAiB;IAAjB,kBAAiB;GAClB;EAnCL;IAsCM,gCAAwB;IAAxB,gCAAwB;IAAxB,yBAAwB;IAGxB,8BAAgB;IAAhB,iBAAgB;GACjB;EA1CL;IA6CM,cAAa;GACd;EA9CL;IAkDQ,UAAS;IACT,aAAY;GACb;C9Bg7GV;;AW3iHG;EmBuEA;;IAIM,iBAAgB;IAChB,gBAAe;GAChB;C9Bs+GR;;AWhkHG;EmBoFA;IAUI,+BAAqB;IAArB,8BAAqB;IAArB,0BAAqB;IAArB,sBAAqB;IACrB,wBAA2B;IAA3B,qBAA2B;IAA3B,4BAA2B;GA4C9B;EAvDD;IAcM,+BAAmB;IAAnB,8BAAmB;IAAnB,wBAAmB;IAAnB,oBAAmB;GAepB;EA7BL;IAiBQ,mBAAkB;GACnB;EAlBP;IAqBQ,SAAQ;IACR,WAAU;GACX;EAvBP;IA0BQ,sB7Bsa6B;I6Bra7B,qB7Bqa6B;G6Bpa9B;EA5BP;;IAkCM,sBAAiB;IAAjB,kBAAiB;GAClB;EAnCL;IAsCM,gCAAwB;IAAxB,gCAAwB;IAAxB,yBAAwB;IAGxB,8BAAgB;IAAhB,iBAAgB;GACjB;EA1CL;IA6CM,cAAa;GACd;EA9CL;IAkDQ,UAAS;IACT,aAAY;GACb;C9B49GV;;AWvlHG;EmBuEA;;IAIM,iBAAgB;IAChB,gBAAe;GAChB;C9BkhHR;;AW5mHG;EmBoFA;IAUI,+BAAqB;IAArB,8BAAqB;IAArB,0BAAqB;IAArB,sBAAqB;IACrB,wBAA2B;IAA3B,qBAA2B;IAA3B,4BAA2B;GA4C9B;EAvDD;IAcM,+BAAmB;IAAnB,8BAAmB;IAAnB,wBAAmB;IAAnB,oBAAmB;GAepB;EA7BL;IAiBQ,mBAAkB;GACnB;EAlBP;IAqBQ,SAAQ;IACR,WAAU;GACX;EAvBP;IA0BQ,sB7Bsa6B;I6Bra7B,qB7Bqa6B;G6Bpa9B;EA5BP;;IAkCM,sBAAiB;IAAjB,kBAAiB;GAClB;EAnCL;IAsCM,gCAAwB;IAAxB,gCAAwB;IAAxB,yBAAwB;IAGxB,8BAAgB;IAAhB,iBAAgB;GACjB;EA1CL;IA6CM,cAAa;GACd;EA9CL;IAkDQ,UAAS;IACT,aAAY;GACb;C9BwgHV;;A8BjkHD;EAeQ,+BAAqB;EAArB,8BAAqB;EAArB,0BAAqB;EAArB,sBAAqB;EACrB,wBAA2B;EAA3B,qBAA2B;EAA3B,4BAA2B;CA4C9B;;AA5DL;;EASU,iBAAgB;EAChB,gBAAe;CAChB;;AAXT;EAmBU,+BAAmB;EAAnB,8BAAmB;EAAnB,wBAAmB;EAAnB,oBAAmB;CAepB;;AAlCT;EAsBY,mBAAkB;CACnB;;AAvBX;EA0BY,SAAQ;EACR,WAAU;CACX;;AA5BX;EA+BY,sB7Bsa6B;E6Bra7B,qB7Bqa6B;C6Bpa9B;;AAjCX;;EAuCU,sBAAiB;EAAjB,kBAAiB;CAClB;;AAxCT;EA2CU,gCAAwB;EAAxB,gCAAwB;EAAxB,yBAAwB;EAGxB,8BAAgB;EAAhB,iBAAgB;CACjB;;AA/CT;EAkDU,cAAa;CACd;;AAnDT;EAuDY,UAAS;EACT,aAAY;CACb;;AAaX;EAEI,0B7B9LW;C6BmMZ;;AAPH;EAKM,0B7BjMS;CCAZ;;A4B4LH;EAWM,0B7BvMS;C6BgNV;;AApBL;EAcQ,0B7B1MO;CCAZ;;A4B4LH;EAkBQ,0B7B9MO;C6B+MR;;AAnBP;;;;EA0BM,0B7BtNS;C6BuNV;;AA3BL;EA+BI,0B7B3NW;E6B4NX,iC7B5NW;C6B6NZ;;AAjCH;EAoCI,sQ7BmXmS;C6BlXpS;;AArCH;EAwCI,0B7BpOW;C6B4OZ;;AAhDH;EA0CM,0B7BtOS;C6B2OV;;AA/CL;EA6CQ,0B7BzOO;CCAZ;;A4BgPH;EAEI,Y7B5PW;C6BiQZ;;AAPH;EAKM,Y7B/PS;CCUZ;;A4BgPH;EAWM,gC7BrQS;C6B8QV;;AApBL;EAcQ,iC7BxQO;CCUZ;;A4BgPH;EAkBQ,iC7B5QO;C6B6QR;;AAnBP;;;;EA0BM,Y7BpRS;C6BqRV;;AA3BL;EA+BI,gC7BzRW;E6B0RX,uC7B1RW;C6B2RZ;;AAjCH;EAoCI,4Q7BwTkS;C6BvTnS;;AArCH;EAwCI,gC7BlSW;C6B0SZ;;AAhDH;EA0CM,Y7BpSS;C6BySV;;AA/CL;EA6CQ,Y7BvSO;CCUZ;;A6BjBH;EACE,mBAAkB;EAClB,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,6BAAsB;EAAtB,8BAAsB;EAAtB,2BAAsB;EAAtB,uBAAsB;EACtB,aAAY;EACZ,sBAAqB;EACrB,uB9BCa;E8BAb,4BAA2B;EAC3B,uC9BSa;EMjBX,uBN6MgC;C8BlLnC;;AA3BD;EAYI,gBAAe;EACf,eAAc;CACf;;AAdH;ExBMI,gCNuMgC;EMtMhC,iCNsMgC;C8B1L/B;;AAnBL;ExBoBI,oCNyLgC;EMxLhC,mCNwLgC;C8BpL/B;;AAIL;EAGE,oBAAc;EAAd,mBAAc;EAAd,eAAc;EACd,iB9B6mByC;C8B5mB1C;;AAED;EACE,uB9BwmBwC;C8BvmBzC;;AAED;EACE,sBAAgC;EAChC,iBAAgB;CACjB;;AAED;EACE,iBAAgB;CACjB;;A7BrCC;E6ByCE,sBAAqB;C7BzCD;;A6BuCxB;EAMI,qB9BulBuC;C8BtlBxC;;AAOH;EACE,yB9B8kByC;E8B7kBzC,iBAAgB;EAChB,sC9BjDa;E8BkDb,8C9BlDa;C8B6Dd;;AAfD;ExB/DI,2DwBsE8E;CAC/E;;AARH;EAYM,cAAa;CACd;;AAIL;EACE,yB9B6jByC;E8B5jBzC,sC9BjEa;E8BkEb,2C9BlEa;C8BuEd;;AARD;ExBhFI,2DNkpBoF;C8B3jBrF;;AAQH;EACE,wBAAkC;EAClC,wB9B4iBwC;E8B3iBxC,uBAAiC;EACjC,iBAAgB;CACjB;;AAED;EACE,wBAAkC;EAClC,uBAAiC;CAClC;;AAGD;EACE,mBAAkB;EAClB,OAAM;EACN,SAAQ;EACR,UAAS;EACT,QAAO;EACP,iB9BoiByC;C8BniB1C;;AAED;EACE,YAAW;ExBtHT,mCNkpBoF;C8B1hBvF;;AAGD;EACE,YAAW;ExBtHT,4CN4oBoF;EM3oBpF,6CN2oBoF;C8BphBvF;;AAED;EACE,YAAW;ExB7GT,gDN8nBoF;EM7nBpF,+CN6nBoF;C8B/gBvF;;AAKD;EACE,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,6BAAsB;EAAtB,8BAAsB;EAAtB,2BAAsB;EAAtB,uBAAsB;CAqBvB;;AAvBD;EAKI,oB9B2gBwD;C8B1gBzD;;ApBtFC;EoBgFJ;IASI,+BAAmB;IAAnB,8BAAmB;IAAnB,wBAAmB;IAAnB,oBAAmB;IACnB,oB9BsgBwD;I8BrgBxD,mB9BqgBwD;G8Bzf3D;EAvBD;IAcM,qBAAa;IAAb,qBAAa;IAAb,cAAa;IAEb,oBAAY;IAAZ,iBAAY;IAAZ,aAAY;IACZ,6BAAsB;IAAtB,8BAAsB;IAAtB,2BAAsB;IAAtB,uBAAsB;IACtB,mB9B8fsD;I8B7ftD,iBAAgB;IAChB,kB9B4fsD;G8B3fvD;C/Bw0HJ;;A+B/zHD;EACE,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,6BAAsB;EAAtB,8BAAsB;EAAtB,2BAAsB;EAAtB,uBAAsB;CA4EvB;;AA9ED;EAOI,oB9B2ewD;C8B1ezD;;ApBtHC;EoB8GJ;IAWI,+BAAmB;IAAnB,8BAAmB;IAAnB,wBAAmB;IAAnB,oBAAmB;GAmEtB;EA9ED;IAgBM,oBAAY;IAAZ,iBAAY;IAAZ,aAAY;IACZ,iBAAgB;GA2DjB;EA5EL;IAoBQ,eAAc;IACd,eAAc;GACf;EAtBP;IxBzJI,2BwBoLoC;IxBnLpC,8BwBmLoC;GAU/B;EArCT;;IA+BY,2BAA0B;GAC3B;EAhCX;;IAmCY,8BAA6B;GAC9B;EApCX;IxB3II,0BwBmLmC;IxBlLnC,6BwBkLmC;GAU9B;EAlDT;;IA4CY,0BAAyB;GAC1B;EA7CX;;IAgDY,6BAA4B;GAC7B;EAjDX;IxBtKI,uBN6MgC;G8BwB3B;EA/DT;;IxBhKI,gCNuMgC;IMtMhC,iCNsMgC;G8BmBzB;EA1DX;;IxBlJI,oCNyLgC;IMxLhC,mCNwLgC;G8BuBzB;EA9DX;IxBtKI,iBwBwO8B;GAQzB;EA1ET;;;;IxBtKI,iBwB8OgC;GACzB;C/B2zHV;;A+B/yHD;EAEI,uB9BgZsC;C8B/YvC;;ApBtMC;EoBmMJ;IAMI,wB9B0ZiC;I8B1ZjC,qB9B0ZiC;I8B1ZjC,gB9B0ZiC;I8BzZjC,4B9B0ZuC;I8B1ZvC,yB9B0ZuC;I8B1ZvC,oB9B0ZuC;G8BnZ1C;EAdD;IAUM,sBAAqB;IACrB,YAAW;GACZ;C/BkzHJ;;AgC7jID;EACE,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,oBAAe;EAAf,gBAAe;EACf,sB/Bi0BsC;E+Bh0BtC,oB/Bm0BsC;E+Bl0BtC,iBAAgB;EAChB,0B/BOgB;EMTd,uBN6MgC;C+BzMnC;;AAED;EAGI,sBAAqB;EACrB,sB/BuzBqC;E+BtzBrC,qB/BszBqC;E+BrzBrC,e/BCc;E+BAd,aAAiC;CAClC;;AARH;EAiBI,2BAA0B;CAC3B;;AAlBH;EAqBI,sBAAqB;CACtB;;AAtBH;EAyBI,e/BlBc;C+BmBf;;ACpCH;EACE,qBAAa;EAAb,qBAAa;EAAb,cAAa;E7BGb,gBAAe;EACf,iBAAgB;EGDd,uBN6MgC;CgC7MnC;;AAED;EACE,mBAAkB;EAClB,eAAc;EACd,wBhCqmBwC;EgCpmBxC,kBhCoM+B;EgCnM/B,kBhCwmBsC;EgCvmBtC,ehCwBe;EgCvBf,uBhCFa;EgCGb,0BhCAgB;CgCmBjB;;AA3BD;EAWI,ehCsIgD;EgCrIhD,sBAAqB;EACrB,0BhCNc;EgCOd,sBhCNc;CgCOf;;AAfH;EAkBI,WAAU;EACV,WAAU;EACV,iDhCUa;CgCTd;;AArBH;EAyBI,gBAAe;CAChB;;AAGH;EAGM,eAAc;E1BPhB,gCNkLgC;EMjLhC,mCNiLgC;CgCzK/B;;AALL;E1BlBI,iCNgMgC;EM/LhC,oCN+LgC;CgCpK/B;;AAVL;EAcI,WAAU;EACV,YhCvCW;EgCwCX,0BhCfa;EgCgBb,sBhChBa;CgCiBd;;AAlBH;EAqBI,ehCvCc;EgCwCd,qBAAoB;EAEpB,aAAY;EACZ,uBhCjDW;EgCkDX,sBhC/Cc;CgCgDf;;AC3DD;EACE,wBjC8mBsC;EiC7mBtC,mBjCqOkD;EiCpOlD,iBjCqM6B;CiCpM9B;;AAIG;E3BoBF,+BNmL+B;EMlL/B,kCNkL+B;CiCrM5B;;AAGD;E3BCF,gCNiM+B;EMhM/B,mCNgM+B;CiChM5B;;AAfL;EACE,wBjC4mBqC;EiC3mBrC,oBjCsOkD;EiCrOlD,iBjCsM6B;CiCrM9B;;AAIG;E3BoBF,+BNoL+B;EMnL/B,kCNmL+B;CiCtM5B;;AAGD;E3BCF,gCNkM+B;EMjM/B,mCNiM+B;CiCjM5B;;ACbP;EACE,sBAAqB;EACrB,sBlC6sBsC;EkC5sBtC,elCysBqC;EkCxsBrC,iBlCsO+B;EkCrO/B,eAAc;EACd,mBAAkB;EAClB,oBAAmB;EACnB,yBAAwB;E5BTtB,uBN6MgC;CkC7LnC;;AAfD;EAaI,cAAa;CACd;;AAIH;EACE,mBAAkB;EAClB,UAAS;CACV;;AAMD;EACE,qBlCsrBsC;EkCrrBtC,oBlCqrBsC;EMntBpC,qBNstBqC;CkCtrBxC;;AAOC;EC1CA,YnCUa;EmCTb,0BnCkCe;CkCSd;;AjC3BD;EkCZI,YnCKS;EmCJT,sBAAqB;EACrB,0BAAkC;ClCarC;;AiCsBD;EC1CA,YnCUa;EmCTb,0BnCegB;CkC4Bf;;AjC3BD;EkCZI,YnCKS;EmCJT,sBAAqB;EACrB,0BAAkC;ClCarC;;AiCsBD;EC1CA,YnCUa;EmCTb,0BnCyCe;CkCEd;;AjC3BD;EkCZI,YnCKS;EmCJT,sBAAqB;EACrB,0BAAkC;ClCarC;;AiCsBD;EC1CA,YnCUa;EmCTb,0BnC2Ce;CkCAd;;AjC3BD;EkCZI,YnCKS;EmCJT,sBAAqB;EACrB,0BAAkC;ClCarC;;AiCsBD;EC1CA,enCmBgB;EmClBhB,0BnCwCe;CkCGd;;AjC3BD;EkCZI,enCcY;EmCbZ,sBAAqB;EACrB,0BAAkC;ClCarC;;AiCsBD;EC1CA,YnCUa;EmCTb,0BnCsCe;CkCKd;;AjC3BD;EkCZI,YnCKS;EmCJT,sBAAqB;EACrB,0BAAkC;ClCarC;;AiCsBD;EC1CA,enCmBgB;EmClBhB,0BnCUgB;CkCiCf;;AjC3BD;EkCZI,enCcY;EmCbZ,sBAAqB;EACrB,0BAAkC;ClCarC;;AiCsBD;EC1CA,YnCUa;EmCTb,0BnCiBgB;CkC0Bf;;AjC3BD;EkCZI,YnCKS;EmCJT,sBAAqB;EACrB,0BAAkC;ClCarC;;AmCrBH;EACE,mBAAoD;EACpD,oBpCyoBsC;EoCxoBtC,0BpCUgB;EMTd,sBN8M+B;CoCzMlC;;A1BmDG;E0B5DJ;IAOI,mBpCooBoC;GoCloBvC;CrC+yIA;;AqC7yID;EACE,iBAAgB;EAChB,gBAAe;E9BTb,iB8BUsB;CACzB;;ACXD;EACE,mBAAkB;EAClB,yBrC2vByC;EqC1vBzC,oBrC2vBsC;EqC1vBtC,8BAA6C;E/BJ3C,uBN6MgC;CqCvMnC;;AAGD;EAEE,eAAc;CACf;;AAGD;EACE,iBrC2N+B;CqC1NhC;;AAOD;EACE,oBAAwD;CAUzD;;AAXD;EAKI,mBAAkB;EAClB,OAAM;EACN,SAAQ;EACR,yBrC6tBuC;EqC5tBvC,eAAc;CACf;;AASD;EC9CA,exBmFgE;EI9E9D,0BJ8E8D;EwBjFhE,sBxBiFgE;CuBnC/D;;AC5CD;EACE,0BAAqC;CACtC;;AAED;EACE,eAA0B;CAC3B;;ADoCD;EC9CA,exBmFgE;EI9E9D,0BJ8E8D;EwBjFhE,sBxBiFgE;CuBnC/D;;AC5CD;EACE,0BAAqC;CACtC;;AAED;EACE,eAA0B;CAC3B;;ADoCD;EC9CA,exBmFgE;EI9E9D,0BJ8E8D;EwBjFhE,sBxBiFgE;CuBnC/D;;AC5CD;EACE,0BAAqC;CACtC;;AAED;EACE,eAA0B;CAC3B;;ADoCD;EC9CA,exBmFgE;EI9E9D,0BJ8E8D;EwBjFhE,sBxBiFgE;CuBnC/D;;AC5CD;EACE,0BAAqC;CACtC;;AAED;EACE,eAA0B;CAC3B;;ADoCD;EC9CA,exBmFgE;EI9E9D,0BJ8E8D;EwBjFhE,sBxBiFgE;CuBnC/D;;AC5CD;EACE,0BAAqC;CACtC;;AAED;EACE,eAA0B;CAC3B;;ADoCD;EC9CA,exBmFgE;EI9E9D,0BJ8E8D;EwBjFhE,sBxBiFgE;CuBnC/D;;AC5CD;EACE,0BAAqC;CACtC;;AAED;EACE,eAA0B;CAC3B;;ADoCD;EC9CA,exBmFgE;EI9E9D,0BJ8E8D;EwBjFhE,sBxBiFgE;CuBnC/D;;AC5CD;EACE,0BAAqC;CACtC;;AAED;EACE,eAA0B;CAC3B;;ADoCD;EC9CA,exBmFgE;EI9E9D,0BJ8E8D;EwBjFhE,sBxBiFgE;CuBnC/D;;AC5CD;EACE,0BAAqC;CACtC;;AAED;EACE,eAA0B;CAC3B;;ACXH;EACE;IAAO,4BAAuC;GxC88I7C;EwC78ID;IAAK,yBAAwB;GxCg9I5B;CACF;;AwCn9ID;EACE;IAAO,4BAAuC;GxC88I7C;EwC78ID;IAAK,yBAAwB;GxCg9I5B;CACF;;AwC98ID;EACE,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,avCuwBsC;EuCtwBtC,iBAAgB;EAChB,mBvCswByD;EuCrwBzD,0BvCGgB;EMTd,uBN6MgC;CuCpMnC;;AAED;EACE,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,6BAAsB;EAAtB,8BAAsB;EAAtB,2BAAsB;EAAtB,uBAAsB;EACtB,yBAAuB;EAAvB,sBAAuB;EAAvB,wBAAuB;EACvB,YvCRa;EuCSb,mBAAkB;EAClB,0BvCee;EgB/BX,4BhBixB4C;CuC/vBjD;;AAED;ErBkBE,sMAA6I;EqBhB7I,2BvCmvBsC;CuClvBvC;;AAED;EACE,2DvCsvBoD;EuCtvBpD,mDvCsvBoD;CuCrvBrD;;AChCD;EACE,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,yBAAuB;EAAvB,sBAAuB;EAAvB,wBAAuB;CACxB;;AAED;EACE,oBAAO;EAAP,YAAO;EAAP,QAAO;CACR;;ACHD;EACE,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,6BAAsB;EAAtB,8BAAsB;EAAtB,2BAAsB;EAAtB,uBAAsB;EAGtB,gBAAe;EACf,iBAAgB;CACjB;;AAQD;EACE,YAAW;EACX,ezCHgB;EyCIhB,oBAAmB;CAapB;;AxCjBC;EwCQE,ezCRc;EyCSd,sBAAqB;EACrB,0BzChBc;CCSf;;AwCFH;EAaI,ezCZc;EyCad,0BzCpBc;CyCqBf;;AAQH;EACE,mBAAkB;EAClB,eAAc;EACd,yBzCmvByC;EyCjvBzC,oBzC+J+B;EyC9J/B,uBzCrCa;EyCsCb,uCzC5Ba;CyCyDd;;AApCD;EnChCI,gCNuMgC;EMtMhC,iCNsMgC;CyC5JjC;;AAXH;EAcI,iBAAgB;EnChChB,oCNyLgC;EMxLhC,mCNwLgC;CyCvJjC;;AxCxCD;EwC2CE,WAAU;EACV,sBAAqB;CxCzCtB;;AwCqBH;EAyBI,ezClDc;EyCmDd,uBzCzDW;CyC0DZ;;AA3BH;EA+BI,WAAU;EACV,YzC/DW;EyCgEX,0BzCvCa;EyCwCb,sBzCxCa;CyCyCd;;AASH;EAEI,gBAAe;EACf,eAAc;EnCrFd,iBmCsFwB;CACzB;;AALH;EASM,cAAa;CACd;;AAVL;EAeM,iBAAgB;CACjB;;ACnGH;EACE,e5BgF8D;E4B/E9D,0B5B+E8D;C4BjE/D;;AzCDD;EyCTM,e5B2E0D;E4B1E1D,0BAAyC;CzCW9C;;AyClBD;EAWM,YAAW;EACX,0B5BqE0D;E4BpE1D,sB5BoE0D;C4BnE3D;;AAdL;EACE,e5BgF8D;E4B/E9D,0B5B+E8D;C4BjE/D;;AzCDD;EyCTM,e5B2E0D;E4B1E1D,0BAAyC;CzCW9C;;AyClBD;EAWM,YAAW;EACX,0B5BqE0D;E4BpE1D,sB5BoE0D;C4BnE3D;;AAdL;EACE,e5BgF8D;E4B/E9D,0B5B+E8D;C4BjE/D;;AzCDD;EyCTM,e5B2E0D;E4B1E1D,0BAAyC;CzCW9C;;AyClBD;EAWM,YAAW;EACX,0B5BqE0D;E4BpE1D,sB5BoE0D;C4BnE3D;;AAdL;EACE,e5BgF8D;E4B/E9D,0B5B+E8D;C4BjE/D;;AzCDD;EyCTM,e5B2E0D;E4B1E1D,0BAAyC;CzCW9C;;AyClBD;EAWM,YAAW;EACX,0B5BqE0D;E4BpE1D,sB5BoE0D;C4BnE3D;;AAdL;EACE,e5BgF8D;E4B/E9D,0B5B+E8D;C4BjE/D;;AzCDD;EyCTM,e5B2E0D;E4B1E1D,0BAAyC;CzCW9C;;AyClBD;EAWM,YAAW;EACX,0B5BqE0D;E4BpE1D,sB5BoE0D;C4BnE3D;;AAdL;EACE,e5BgF8D;E4B/E9D,0B5B+E8D;C4BjE/D;;AzCDD;EyCTM,e5B2E0D;E4B1E1D,0BAAyC;CzCW9C;;AyClBD;EAWM,YAAW;EACX,0B5BqE0D;E4BpE1D,sB5BoE0D;C4BnE3D;;AAdL;EACE,e5BgF8D;E4B/E9D,0B5B+E8D;C4BjE/D;;AzCDD;EyCTM,e5B2E0D;E4B1E1D,0BAAyC;CzCW9C;;AyClBD;EAWM,YAAW;EACX,0B5BqE0D;E4BpE1D,sB5BoE0D;C4BnE3D;;AAdL;EACE,e5BgF8D;E4B/E9D,0B5B+E8D;C4BjE/D;;AzCDD;EyCTM,e5B2E0D;E4B1E1D,0BAAyC;CzCW9C;;AyClBD;EAWM,YAAW;EACX,0B5BqE0D;E4BpE1D,sB5BoE0D;C4BnE3D;;ACjBP;EACE,aAAY;EACZ,kB3Cq2BuD;E2Cp2BvD,iB3C4O+B;E2C3O/B,eAAc;EACd,Y3CgBa;E2Cfb,0B3CKa;E2CJb,YAAW;CAYZ;;A1CDC;E0CRE,Y3CWW;E2CVX,sBAAqB;EACrB,aAAY;C1CSb;;A0CrBH;EAiBI,gBAAe;CAChB;;AASH;EACE,WAAU;EACV,8BAA6B;EAC7B,UAAS;EACT,yBAAwB;CACzB;;ACzBD;EACE,iBAAgB;CACjB;;AAGD;EACE,gBAAe;EACf,OAAM;EACN,SAAQ;EACR,UAAS;EACT,QAAO;EACP,c5CmiBsC;E4CliBtC,cAAa;EACb,iBAAgB;EAGhB,WAAU;CASX;;AAJC;EACE,mBAAkB;EAClB,iBAAgB;CACjB;;AAIH;EACE,mBAAkB;EAClB,YAAW;EACX,e5C4rBiC;E4C1rBjC,qBAAoB;CAUrB;;AAPC;E5BtCI,4ChBovBoD;EgBpvBpD,oChBovBoD;EgBpvBpD,qEhBovBoD;E4C5sBtD,sCAA6B;EAA7B,8BAA6B;CAC9B;;AACD;EACE,mCAA0B;EAA1B,2BAA0B;CAC3B;;AAGH;EACE,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,0BAAmB;EAAnB,uBAAmB;EAAnB,oBAAmB;EACnB,sCAAsD;CACvD;;AAGD;EACE,mBAAkB;EAClB,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,6BAAsB;EAAtB,8BAAsB;EAAtB,2BAAsB;EAAtB,uBAAsB;EACtB,YAAW;EAEX,qBAAoB;EACpB,uB5CvDa;E4CwDb,6BAA4B;EAC5B,qC5C/Ca;EMjBX,sBN8M+B;E4C1IjC,WAAU;CACX;;AAGD;EACE,gBAAe;EACf,OAAM;EACN,SAAQ;EACR,UAAS;EACT,QAAO;EACP,c5CkesC;E4CjetC,uB5C9Da;C4CmEd;;AAZD;EAUW,WAAU;CAAK;;AAV1B;EAWW,a5CupBqB;C4CvpBe;;AAK/C;EACE,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,yBAAuB;EAAvB,sBAAuB;EAAvB,wBAAuB;EACvB,0BAA8B;EAA9B,uBAA8B;EAA9B,+BAA8B;EAC9B,c5CmpBgC;E4ClpBhC,iC5CpFgB;EMHd,+BNwM+B;EMvM/B,gCNuM+B;C4CzGlC;;AAbD;EASI,c5C8oB8B;E4C5oB9B,+BAAuF;CACxF;;AAIH;EACE,iBAAgB;EAChB,iB5CoI+B;C4CnIhC;;AAID;EACE,mBAAkB;EAGlB,oBAAc;EAAd,mBAAc;EAAd,eAAc;EACd,c5CwmBgC;C4CvmBjC;;AAGD;EACE,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,0BAAmB;EAAnB,uBAAmB;EAAnB,oBAAmB;EACnB,sBAAyB;EAAzB,mBAAyB;EAAzB,0BAAyB;EACzB,c5CgmBgC;E4C/lBhC,8B5CpHgB;C4CyHjB;;AAVD;EAQyB,oBAAmB;CAAK;;AARjD;EASwB,qBAAoB;CAAK;;AAIjD;EACE,mBAAkB;EAClB,aAAY;EACZ,YAAW;EACX,aAAY;EACZ,iBAAgB;CACjB;;AlCnFG;EkCwFF;IACE,iB5CimBqC;I4ChmBrC,qBAAyC;GAC1C;EAED;IACE,uCAA8D;GAC/D;EAMD;IAAY,iB5CslB2B;G4CtlBH;C7CssJrC;;AW3yJG;EkC0GF;IAAY,iB5C+kB2B;G4C/kBH;C7CusJrC;;A8C52JD;EACE,mBAAkB;EAClB,c7CojBsC;E6CnjBtC,eAAc;EACd,U7CyqB6B;E8C7qB7B,kK9CmOgL;E8CjOhL,mBAAkB;EAClB,iB9C0O+B;E8CzO/B,iB9C6O+B;E8C5O/B,iBAAgB;EAChB,kBAAiB;EACjB,sBAAqB;EACrB,kBAAiB;EACjB,qBAAoB;EACpB,uBAAsB;EACtB,mBAAkB;EAClB,qBAAoB;EACpB,oBAAmB;EACnB,iBAAgB;EDNhB,oB7CkOoD;E6ChOpD,sBAAqB;EACrB,WAAU;CAiBX;;AA5BD;EAaW,a7C6pBqB;C6C7pBQ;;AAbxC;EAgBI,mBAAkB;EAClB,eAAc;EACd,c7C6pB+B;E6C5pB/B,e7C6pB+B;C6CrpBhC;;AA3BH;EAsBM,mBAAkB;EAClB,YAAW;EACX,0BAAyB;EACzB,oBAAmB;CACpB;;AAIL;EACE,kBAAgC;CAWjC;;AAZD;EAII,UAAS;CAOV;;AAXH;EAOM,OAAM;EACN,8BAAgE;EAChE,uB7CnBS;C6CoBV;;AAIL;EACE,kB7CmoBiC;C6CtnBlC;;AAdD;EAII,QAAO;EACP,c7C+nB+B;E6C9nB/B,e7C6nB+B;C6CtnBhC;;AAbH;EASM,SAAQ;EACR,qCAA2F;EAC3F,yB7CnCS;C6CoCV;;AAIL;EACE,kBAAgC;CAWjC;;AAZD;EAII,OAAM;CAOP;;AAXH;EAOM,UAAS;EACT,8B7C4mB6B;E6C3mB7B,0B7CjDS;C6CkDV;;AAIL;EACE,kB7CqmBiC;C6CxlBlC;;AAdD;EAII,SAAQ;EACR,c7CimB+B;E6ChmB/B,e7C+lB+B;C6CxlBhC;;AAbH;EASM,QAAO;EACP,qC7C4lB6B;E6C3lB7B,wB7CjES;C6CkEV;;AAoBL;EACE,iB7C2jBiC;E6C1jBjC,wB7CgkBiC;E6C/jBjC,Y7CnGa;E6CoGb,mBAAkB;EAClB,uB7C3Fa;EMjBX,uBN6MgC;C6C/FnC;;AElHD;EACE,mBAAkB;EAClB,OAAM;EACN,QAAO;EACP,c/CkjBsC;E+CjjBtC,eAAc;EACd,iB/CmrBuC;E8CxrBvC,kK9CmOgL;E8CjOhL,mBAAkB;EAClB,iB9C0O+B;E8CzO/B,iB9C6O+B;E8C5O/B,iBAAgB;EAChB,kBAAiB;EACjB,sBAAqB;EACrB,kBAAiB;EACjB,qBAAoB;EACpB,uBAAsB;EACtB,mBAAkB;EAClB,qBAAoB;EACpB,oBAAmB;EACnB,iBAAgB;ECLhB,oB/CiOoD;E+C/NpD,sBAAqB;EACrB,uB/CFa;E+CGb,6BAA4B;EAC5B,qC/CMa;EMjBX,sBN8M+B;C+C/KlC;;AAnCD;EAoBI,mBAAkB;EAClB,eAAc;EACd,Y/CkrBoC;E+CjrBpC,e/CkrBqC;E+CjrBrC,iB/C0L+B;C+ChLhC;;AAlCH;EA4BM,mBAAkB;EAClB,eAAc;EACd,YAAW;EACX,0BAAyB;EACzB,oBAAmB;CACpB;;AAIL;EACE,sB/CmqBuC;C+C/oBxC;;AArBD;EAII,kCAAwE;CACzE;;AALH;;EASI,8BAAgE;CACjE;;AAVH;EAaI,UAAS;EACT,sC/CypBmE;C+CxpBpE;;AAfH;EAkBI,Y/CuJ6B;E+CtJ7B,uB/C7CW;C+C8CZ;;AAGH;EACE,oB/C4oBuC;C+CrnBxC;;AAxBD;EAII,gCAAsE;EACtE,c/CwoBqC;E+CvoBrC,a/CsoBoC;E+CroBpC,iBAA2B;CAC5B;;AARH;;EAYI,qCAA2F;CAC5F;;AAbH;EAgBI,QAAO;EACP,wC/C+nBmE;C+C9nBpE;;AAlBH;EAqBI,U/C6H6B;E+C5H7B,yB/CvEW;C+CwEZ;;AAGH;EACE,mB/CknBuC;C+CllBxC;;AAjCD;EAII,+BAAqE;CACtE;;AALH;;EASI,qCAA2F;CAC5F;;AAVH;EAaI,OAAM;EACN,yC/CwmBmE;C+CvmBpE;;AAfH;EAkBI,S/CsG6B;E+CrG7B,0B/C9FW;C+C+FZ;;AApBH;EAwBI,mBAAkB;EAClB,OAAM;EACN,UAAS;EACT,eAAc;EACd,Y/CslBoC;E+CrlBpC,qBAAwC;EACxC,YAAW;EACX,iC/C0kBuD;C+CzkBxD;;AAGH;EACE,qB/C+kBuC;C+CxjBxC;;AAxBD;EAII,iCAAuE;EACvE,c/C2kBqC;E+C1kBrC,a/CykBoC;E+CxkBpC,iBAA2B;CAC5B;;AARH;;EAYI,qC/CokBqC;C+CnkBtC;;AAbH;EAgBI,SAAQ;EACR,uC/CkkBmE;C+CjkBpE;;AAlBH;EAqBI,W/CgE6B;E+C/D7B,wB/CpIW;C+CqIZ;;AAoBH;EACE,wB/C6hBwC;E+C5hBxC,iBAAgB;EAChB,gB/CkEgC;E+CjEhC,e/CuFmC;E+CtFnC,0B/CshByD;E+CrhBzD,iCAAyE;EzChKvE,2CyCiKyE;EzChKzE,4CyCgKyE;CAM5E;;AAbD;EAWI,cAAa;CACd;;AAGH;EACE,wB/C8gBwC;E+C7gBxC,e/CjKgB;C+CkKjB;;ACrLD;EACE,mBAAkB;CACnB;;AAED;EACE,mBAAkB;EAClB,YAAW;EACX,iBAAgB;CACjB;;AAED;EACE,mBAAkB;EAClB,cAAa;EACb,0BAAmB;EAAnB,uBAAmB;EAAnB,oBAAmB;EACnB,YAAW;EhCVP,wChB61BgD;EgB71BhD,gChB61BgD;EgB71BhD,6DhB61BgD;EgDj1BpD,oCAA2B;EAA3B,4BAA2B;EAC3B,4BAAmB;EAAnB,oBAAmB;CACpB;;AAED;;;EAGE,eAAc;CACf;;AAED;;EAEE,mBAAkB;EAClB,OAAM;CACP;;AAGD;;EAEE,iCAAwB;EAAxB,yBAAwB;CAKzB;;AAHyC;EAJ1C;;IAKI,wCAA+B;IAA/B,gCAA+B;GAElC;CjD6oKA;;AiD3oKD;;EAEE,oCAA2B;EAA3B,4BAA2B;CAK5B;;AAHyC;EAJ1C;;IAKI,2CAAkC;IAAlC,mCAAkC;GAErC;CjDgpKA;;AiD9oKD;;EAEE,qCAA4B;EAA5B,6BAA4B;CAK7B;;AAHyC;EAJ1C;;IAKI,4CAAmC;IAAnC,oCAAmC;GAEtC;CjDmpKA;;AiD5oKD;;EAEE,mBAAkB;EAClB,OAAM;EACN,UAAS;EAET,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,0BAAmB;EAAnB,uBAAmB;EAAnB,oBAAmB;EACnB,yBAAuB;EAAvB,sBAAuB;EAAvB,wBAAuB;EACvB,WhDuwBqC;EgDtwBrC,YhDjEa;EgDkEb,mBAAkB;EAClB,ahDqwBoC;CgD1vBrC;;A/CvEC;;;E+CkEE,YhDzEW;EgD0EX,sBAAqB;EACrB,WAAU;EACV,YAAW;C/ClEZ;;A+CqEH;EACE,QAAO;CAIR;;AACD;EACE,SAAQ;CAIT;;AAGD;;EAEE,sBAAqB;EACrB,YhDkvBsC;EgDjvBtC,ahDivBsC;EgDhvBtC,gDAA+C;EAC/C,2BAA0B;CAC3B;;AACD;EACE,iNlCrEyI;CkCsE1I;;AACD;EACE,iNlCxEyI;CkCyE1I;;AAQD;EACE,mBAAkB;EAClB,SAAQ;EACR,aAAY;EACZ,QAAO;EACP,YAAW;EACX,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,yBAAuB;EAAvB,sBAAuB;EAAvB,wBAAuB;EACvB,gBAAe;EAEf,kBhD2sBqC;EgD1sBrC,iBhD0sBqC;EgDzsBrC,iBAAgB;CAoCjB;;AAhDD;EAeI,mBAAkB;EAClB,oBAAc;EAAd,mBAAc;EAAd,eAAc;EACd,YhDusBoC;EgDtsBpC,YhDusBmC;EgDtsBnC,kBhDusBmC;EgDtsBnC,iBhDssBmC;EgDrsBnC,oBAAmB;EACnB,2ChDxIW;CgD6JZ;;AA3CH;EA0BM,mBAAkB;EAClB,WAAU;EACV,QAAO;EACP,sBAAqB;EACrB,YAAW;EACX,aAAY;EACZ,YAAW;CACZ;;AAjCL;EAmCM,mBAAkB;EAClB,cAAa;EACb,QAAO;EACP,sBAAqB;EACrB,YAAW;EACX,aAAY;EACZ,YAAW;CACZ;;AA1CL;EA8CI,uBhDhKW;CgDiKZ;;AAQH;EACE,mBAAkB;EAClB,WAA6C;EAC7C,aAAY;EACZ,UAA4C;EAC5C,YAAW;EACX,kBAAiB;EACjB,qBAAoB;EACpB,YhDjLa;EgDkLb,mBAAkB;CACnB;;AC5LD;EAAqB,oCAAmC;CAAK;;AAC7D;EAAqB,+BAA8B;CAAK;;AACxD;EAAqB,kCAAiC;CAAK;;AAC3D;EAAqB,kCAAiC;CAAK;;AAC3D;EAAqB,uCAAsC;CAAK;;AAChE;EAAqB,oCAAmC;CAAK;;ACF3D;EACE,qCAAmC;CACpC;;AjDWD;;;EiDPI,qCAAgD;CjDUnD;;AiDhBD;EACE,qCAAmC;CACpC;;AjDWD;;;EiDPI,qCAAgD;CjDUnD;;AiDhBD;EACE,qCAAmC;CACpC;;AjDWD;;;EiDPI,qCAAgD;CjDUnD;;AiDhBD;EACE,qCAAmC;CACpC;;AjDWD;;;EiDPI,qCAAgD;CjDUnD;;AiDhBD;EACE,qCAAmC;CACpC;;AjDWD;;;EiDPI,qCAAgD;CjDUnD;;AiDhBD;EACE,qCAAmC;CACpC;;AjDWD;;;EiDPI,qCAAgD;CjDUnD;;AiDhBD;EACE,qCAAmC;CACpC;;AjDWD;;;EiDPI,qCAAgD;CjDUnD;;AiDhBD;EACE,qCAAmC;CACpC;;AjDWD;;;EiDPI,qCAAgD;CjDUnD;;AkDTH;EACE,kCAAmC;CACpC;;AAED;EACE,yCAAwC;CACzC;;ACZD;EAAkB,qCAAoD;CAAI;;AAC1E;EAAkB,yCAAwD;CAAI;;AAC9E;EAAkB,2CAA0D;CAAI;;AAChF;EAAkB,4CAA2D;CAAI;;AACjF;EAAkB,0CAAyD;CAAI;;AAE/E;EAAmB,qBAAoB;CAAK;;AAC5C;EAAmB,yBAAwB;CAAK;;AAChD;EAAmB,2BAA0B;CAAK;;AAClD;EAAmB,4BAA2B;CAAK;;AACnD;EAAmB,0BAAyB;CAAK;;AAG/C;EACE,iCAA+B;CAChC;;AAFD;EACE,iCAA+B;CAChC;;AAFD;EACE,iCAA+B;CAChC;;AAFD;EACE,iCAA+B;CAChC;;AAFD;EACE,iCAA+B;CAChC;;AAFD;EACE,iCAA+B;CAChC;;AAFD;EACE,iCAA+B;CAChC;;AAFD;EACE,iCAA+B;CAChC;;AAGH;EACE,8BAA+B;CAChC;;AAMD;EACE,kCAAwC;CACzC;;AACD;EACE,2CAAiD;EACjD,4CAAkD;CACnD;;AACD;EACE,4CAAkD;EAClD,+CAAqD;CACtD;;AACD;EACE,+CAAqD;EACrD,8CAAoD;CACrD;;AACD;EACE,2CAAiD;EACjD,8CAAoD;CACrD;;AAED;EACE,8BAA6B;CAC9B;;AAED;EACE,4BAA2B;CAC5B;;ACzDC;EACE,eAAc;EACd,YAAW;EACX,YAAW;CACZ;;ACKC;EAA2B,yBAAwB;CAAK;;AACxD;EAA2B,2BAA0B;CAAK;;AAC1D;EAA2B,iCAAgC;CAAK;;AAChE;EAA2B,0BAAyB;CAAK;;AACzD;EAA2B,0BAAyB;CAAK;;AACzD;EAA2B,8BAA6B;CAAK;;AAC7D;EAA2B,+BAA8B;CAAK;;AAC9D;EAA2B,gCAAwB;EAAxB,gCAAwB;EAAxB,yBAAwB;CAAK;;AACxD;EAA2B,uCAA+B;EAA/B,uCAA+B;EAA/B,gCAA+B;CAAK;;A5C0C/D;E4ClDA;IAA2B,yBAAwB;GAAK;EACxD;IAA2B,2BAA0B;GAAK;EAC1D;IAA2B,iCAAgC;GAAK;EAChE;IAA2B,0BAAyB;GAAK;EACzD;IAA2B,0BAAyB;GAAK;EACzD;IAA2B,8BAA6B;GAAK;EAC7D;IAA2B,+BAA8B;GAAK;EAC9D;IAA2B,gCAAwB;IAAxB,gCAAwB;IAAxB,yBAAwB;GAAK;EACxD;IAA2B,uCAA+B;IAA/B,uCAA+B;IAA/B,gCAA+B;GAAK;CvD6kLlE;;AWniLG;E4ClDA;IAA2B,yBAAwB;GAAK;EACxD;IAA2B,2BAA0B;GAAK;EAC1D;IAA2B,iCAAgC;GAAK;EAChE;IAA2B,0BAAyB;GAAK;EACzD;IAA2B,0BAAyB;GAAK;EACzD;IAA2B,8BAA6B;GAAK;EAC7D;IAA2B,+BAA8B;GAAK;EAC9D;IAA2B,gCAAwB;IAAxB,gCAAwB;IAAxB,yBAAwB;GAAK;EACxD;IAA2B,uCAA+B;IAA/B,uCAA+B;IAA/B,gCAA+B;GAAK;CvD2mLlE;;AWjkLG;E4ClDA;IAA2B,yBAAwB;GAAK;EACxD;IAA2B,2BAA0B;GAAK;EAC1D;IAA2B,iCAAgC;GAAK;EAChE;IAA2B,0BAAyB;GAAK;EACzD;IAA2B,0BAAyB;GAAK;EACzD;IAA2B,8BAA6B;GAAK;EAC7D;IAA2B,+BAA8B;GAAK;EAC9D;IAA2B,gCAAwB;IAAxB,gCAAwB;IAAxB,yBAAwB;GAAK;EACxD;IAA2B,uCAA+B;IAA/B,uCAA+B;IAA/B,gCAA+B;GAAK;CvDyoLlE;;AW/lLG;E4ClDA;IAA2B,yBAAwB;GAAK;EACxD;IAA2B,2BAA0B;GAAK;EAC1D;IAA2B,iCAAgC;GAAK;EAChE;IAA2B,0BAAyB;GAAK;EACzD;IAA2B,0BAAyB;GAAK;EACzD;IAA2B,8BAA6B;GAAK;EAC7D;IAA2B,+BAA8B;GAAK;EAC9D;IAA2B,gCAAwB;IAAxB,gCAAwB;IAAxB,yBAAwB;GAAK;EACxD;IAA2B,uCAA+B;IAA/B,uCAA+B;IAA/B,gCAA+B;GAAK;CvDuqLlE;;AuD9pLD;EACE;IAAwB,yBAAwB;GAAK;EACrD;IAAwB,2BAA0B;GAAK;EACvD;IAAwB,iCAAgC;GAAK;EAC7D;IAAwB,0BAAyB;GAAK;EACtD;IAAwB,0BAAyB;GAAK;EACtD;IAAwB,8BAA6B;GAAK;EAC1D;IAAwB,+BAA8B;GAAK;EAC3D;IAAwB,gCAAwB;IAAxB,gCAAwB;IAAxB,yBAAwB;GAAK;EACrD;IAAwB,uCAA+B;IAA/B,uCAA+B;IAA/B,gCAA+B;GAAK;CvDmrL7D;;AwDrtLD;EACE,mBAAkB;EAClB,eAAc;EACd,YAAW;EACX,WAAU;EACV,iBAAgB;CAoBjB;;AAzBD;EAQI,eAAc;EACd,YAAW;CACZ;;AAVH;;;;;EAiBI,mBAAkB;EAClB,OAAM;EACN,UAAS;EACT,QAAO;EACP,YAAW;EACX,aAAY;EACZ,UAAS;CACV;;AAGH;EAEI,wBAA+B;CAChC;;AAGH;EAEI,oBAA+B;CAChC;;AAGH;EAEI,iBAA8B;CAC/B;;AAGH;EAEI,kBAA8B;CAC/B;;ACxCC;EAAgC,0CAA8B;EAA9B,yCAA8B;EAA9B,mCAA8B;EAA9B,+BAA8B;CAAK;;AACnE;EAAgC,wCAAiC;EAAjC,yCAAiC;EAAjC,sCAAiC;EAAjC,kCAAiC;CAAK;;AACtE;EAAgC,0CAAsC;EAAtC,0CAAsC;EAAtC,2CAAsC;EAAtC,uCAAsC;CAAK;;AAC3E;EAAgC,wCAAyC;EAAzC,0CAAyC;EAAzC,8CAAyC;EAAzC,0CAAyC;CAAK;;AAE9E;EAA8B,+BAA0B;EAA1B,2BAA0B;CAAK;;AAC7D;EAA8B,iCAA4B;EAA5B,6BAA4B;CAAK;;AAC/D;EAA8B,uCAAkC;EAAlC,mCAAkC;CAAK;;AAErE;EAAoC,mCAAsC;EAAtC,gCAAsC;EAAtC,uCAAsC;CAAK;;AAC/E;EAAoC,iCAAoC;EAApC,8BAAoC;EAApC,qCAAoC;CAAK;;AAC7E;EAAoC,oCAAkC;EAAlC,iCAAkC;EAAlC,mCAAkC;CAAK;;AAC3E;EAAoC,qCAAyC;EAAzC,kCAAyC;EAAzC,0CAAyC;CAAK;;AAClF;EAAoC,qCAAwC;EAAxC,yCAAwC;CAAK;;AAEjF;EAAiC,oCAAkC;EAAlC,iCAAkC;EAAlC,mCAAkC;CAAK;;AACxE;EAAiC,kCAAgC;EAAhC,+BAAgC;EAAhC,iCAAgC;CAAK;;AACtE;EAAiC,qCAA8B;EAA9B,kCAA8B;EAA9B,+BAA8B;CAAK;;AACpE;EAAiC,uCAAgC;EAAhC,oCAAgC;EAAhC,iCAAgC;CAAK;;AACtE;EAAiC,sCAA+B;EAA/B,mCAA+B;EAA/B,gCAA+B;CAAK;;AAErE;EAAkC,qCAAoC;EAApC,qCAAoC;CAAK;;AAC3E;EAAkC,mCAAkC;EAAlC,mCAAkC;CAAK;;AACzE;EAAkC,sCAAgC;EAAhC,iCAAgC;CAAK;;AACvE;EAAkC,uCAAuC;EAAvC,wCAAuC;CAAK;;AAC9E;EAAkC,0CAAsC;EAAtC,uCAAsC;CAAK;;AAC7E;EAAkC,uCAAiC;EAAjC,kCAAiC;CAAK;;AAExE;EAAgC,qCAA2B;EAA3B,4BAA2B;CAAK;;AAChE;EAAgC,sCAAiC;EAAjC,kCAAiC;CAAK;;AACtE;EAAgC,oCAA+B;EAA/B,gCAA+B;CAAK;;AACpE;EAAgC,uCAA6B;EAA7B,8BAA6B;CAAK;;AAClE;EAAgC,yCAA+B;EAA/B,gCAA+B;CAAK;;AACpE;EAAgC,wCAA8B;EAA9B,+BAA8B;CAAK;;A9CiBnE;E8ClDA;IAAgC,0CAA8B;IAA9B,yCAA8B;IAA9B,mCAA8B;IAA9B,+BAA8B;GAAK;EACnE;IAAgC,wCAAiC;IAAjC,yCAAiC;IAAjC,sCAAiC;IAAjC,kCAAiC;GAAK;EACtE;IAAgC,0CAAsC;IAAtC,0CAAsC;IAAtC,2CAAsC;IAAtC,uCAAsC;GAAK;EAC3E;IAAgC,wCAAyC;IAAzC,0CAAyC;IAAzC,8CAAyC;IAAzC,0CAAyC;GAAK;EAE9E;IAA8B,+BAA0B;IAA1B,2BAA0B;GAAK;EAC7D;IAA8B,iCAA4B;IAA5B,6BAA4B;GAAK;EAC/D;IAA8B,uCAAkC;IAAlC,mCAAkC;GAAK;EAErE;IAAoC,mCAAsC;IAAtC,gCAAsC;IAAtC,uCAAsC;GAAK;EAC/E;IAAoC,iCAAoC;IAApC,8BAAoC;IAApC,qCAAoC;GAAK;EAC7E;IAAoC,oCAAkC;IAAlC,iCAAkC;IAAlC,mCAAkC;GAAK;EAC3E;IAAoC,qCAAyC;IAAzC,kCAAyC;IAAzC,0CAAyC;GAAK;EAClF;IAAoC,qCAAwC;IAAxC,yCAAwC;GAAK;EAEjF;IAAiC,oCAAkC;IAAlC,iCAAkC;IAAlC,mCAAkC;GAAK;EACxE;IAAiC,kCAAgC;IAAhC,+BAAgC;IAAhC,iCAAgC;GAAK;EACtE;IAAiC,qCAA8B;IAA9B,kCAA8B;IAA9B,+BAA8B;GAAK;EACpE;IAAiC,uCAAgC;IAAhC,oCAAgC;IAAhC,iCAAgC;GAAK;EACtE;IAAiC,sCAA+B;IAA/B,mCAA+B;IAA/B,gCAA+B;GAAK;EAErE;IAAkC,qCAAoC;IAApC,qCAAoC;GAAK;EAC3E;IAAkC,mCAAkC;IAAlC,mCAAkC;GAAK;EACzE;IAAkC,sCAAgC;IAAhC,iCAAgC;GAAK;EACvE;IAAkC,uCAAuC;IAAvC,wCAAuC;GAAK;EAC9E;IAAkC,0CAAsC;IAAtC,uCAAsC;GAAK;EAC7E;IAAkC,uCAAiC;IAAjC,kCAAiC;GAAK;EAExE;IAAgC,qCAA2B;IAA3B,4BAA2B;GAAK;EAChE;IAAgC,sCAAiC;IAAjC,kCAAiC;GAAK;EACtE;IAAgC,oCAA+B;IAA/B,gCAA+B;GAAK;EACpE;IAAgC,uCAA6B;IAA7B,8BAA6B;GAAK;EAClE;IAAgC,yCAA+B;IAA/B,gCAA+B;GAAK;EACpE;IAAgC,wCAA8B;IAA9B,+BAA8B;GAAK;CzDq6LtE;;AWp5LG;E8ClDA;IAAgC,0CAA8B;IAA9B,yCAA8B;IAA9B,mCAA8B;IAA9B,+BAA8B;GAAK;EACnE;IAAgC,wCAAiC;IAAjC,yCAAiC;IAAjC,sCAAiC;IAAjC,kCAAiC;GAAK;EACtE;IAAgC,0CAAsC;IAAtC,0CAAsC;IAAtC,2CAAsC;IAAtC,uCAAsC;GAAK;EAC3E;IAAgC,wCAAyC;IAAzC,0CAAyC;IAAzC,8CAAyC;IAAzC,0CAAyC;GAAK;EAE9E;IAA8B,+BAA0B;IAA1B,2BAA0B;GAAK;EAC7D;IAA8B,iCAA4B;IAA5B,6BAA4B;GAAK;EAC/D;IAA8B,uCAAkC;IAAlC,mCAAkC;GAAK;EAErE;IAAoC,mCAAsC;IAAtC,gCAAsC;IAAtC,uCAAsC;GAAK;EAC/E;IAAoC,iCAAoC;IAApC,8BAAoC;IAApC,qCAAoC;GAAK;EAC7E;IAAoC,oCAAkC;IAAlC,iCAAkC;IAAlC,mCAAkC;GAAK;EAC3E;IAAoC,qCAAyC;IAAzC,kCAAyC;IAAzC,0CAAyC;GAAK;EAClF;IAAoC,qCAAwC;IAAxC,yCAAwC;GAAK;EAEjF;IAAiC,oCAAkC;IAAlC,iCAAkC;IAAlC,mCAAkC;GAAK;EACxE;IAAiC,kCAAgC;IAAhC,+BAAgC;IAAhC,iCAAgC;GAAK;EACtE;IAAiC,qCAA8B;IAA9B,kCAA8B;IAA9B,+BAA8B;GAAK;EACpE;IAAiC,uCAAgC;IAAhC,oCAAgC;IAAhC,iCAAgC;GAAK;EACtE;IAAiC,sCAA+B;IAA/B,mCAA+B;IAA/B,gCAA+B;GAAK;EAErE;IAAkC,qCAAoC;IAApC,qCAAoC;GAAK;EAC3E;IAAkC,mCAAkC;IAAlC,mCAAkC;GAAK;EACzE;IAAkC,sCAAgC;IAAhC,iCAAgC;GAAK;EACvE;IAAkC,uCAAuC;IAAvC,wCAAuC;GAAK;EAC9E;IAAkC,0CAAsC;IAAtC,uCAAsC;GAAK;EAC7E;IAAkC,uCAAiC;IAAjC,kCAAiC;GAAK;EAExE;IAAgC,qCAA2B;IAA3B,4BAA2B;GAAK;EAChE;IAAgC,sCAAiC;IAAjC,kCAAiC;GAAK;EACtE;IAAgC,oCAA+B;IAA/B,gCAA+B;GAAK;EACpE;IAAgC,uCAA6B;IAA7B,8BAA6B;GAAK;EAClE;IAAgC,yCAA+B;IAA/B,gCAA+B;GAAK;EACpE;IAAgC,wCAA8B;IAA9B,+BAA8B;GAAK;CzD+/LtE;;AW9+LG;E8ClDA;IAAgC,0CAA8B;IAA9B,yCAA8B;IAA9B,mCAA8B;IAA9B,+BAA8B;GAAK;EACnE;IAAgC,wCAAiC;IAAjC,yCAAiC;IAAjC,sCAAiC;IAAjC,kCAAiC;GAAK;EACtE;IAAgC,0CAAsC;IAAtC,0CAAsC;IAAtC,2CAAsC;IAAtC,uCAAsC;GAAK;EAC3E;IAAgC,wCAAyC;IAAzC,0CAAyC;IAAzC,8CAAyC;IAAzC,0CAAyC;GAAK;EAE9E;IAA8B,+BAA0B;IAA1B,2BAA0B;GAAK;EAC7D;IAA8B,iCAA4B;IAA5B,6BAA4B;GAAK;EAC/D;IAA8B,uCAAkC;IAAlC,mCAAkC;GAAK;EAErE;IAAoC,mCAAsC;IAAtC,gCAAsC;IAAtC,uCAAsC;GAAK;EAC/E;IAAoC,iCAAoC;IAApC,8BAAoC;IAApC,qCAAoC;GAAK;EAC7E;IAAoC,oCAAkC;IAAlC,iCAAkC;IAAlC,mCAAkC;GAAK;EAC3E;IAAoC,qCAAyC;IAAzC,kCAAyC;IAAzC,0CAAyC;GAAK;EAClF;IAAoC,qCAAwC;IAAxC,yCAAwC;GAAK;EAEjF;IAAiC,oCAAkC;IAAlC,iCAAkC;IAAlC,mCAAkC;GAAK;EACxE;IAAiC,kCAAgC;IAAhC,+BAAgC;IAAhC,iCAAgC;GAAK;EACtE;IAAiC,qCAA8B;IAA9B,kCAA8B;IAA9B,+BAA8B;GAAK;EACpE;IAAiC,uCAAgC;IAAhC,oCAAgC;IAAhC,iCAAgC;GAAK;EACtE;IAAiC,sCAA+B;IAA/B,mCAA+B;IAA/B,gCAA+B;GAAK;EAErE;IAAkC,qCAAoC;IAApC,qCAAoC;GAAK;EAC3E;IAAkC,mCAAkC;IAAlC,mCAAkC;GAAK;EACzE;IAAkC,sCAAgC;IAAhC,iCAAgC;GAAK;EACvE;IAAkC,uCAAuC;IAAvC,wCAAuC;GAAK;EAC9E;IAAkC,0CAAsC;IAAtC,uCAAsC;GAAK;EAC7E;IAAkC,uCAAiC;IAAjC,kCAAiC;GAAK;EAExE;IAAgC,qCAA2B;IAA3B,4BAA2B;GAAK;EAChE;IAAgC,sCAAiC;IAAjC,kCAAiC;GAAK;EACtE;IAAgC,oCAA+B;IAA/B,gCAA+B;GAAK;EACpE;IAAgC,uCAA6B;IAA7B,8BAA6B;GAAK;EAClE;IAAgC,yCAA+B;IAA/B,gCAA+B;GAAK;EACpE;IAAgC,wCAA8B;IAA9B,+BAA8B;GAAK;CzDylMtE;;AWxkMG;E8ClDA;IAAgC,0CAA8B;IAA9B,yCAA8B;IAA9B,mCAA8B;IAA9B,+BAA8B;GAAK;EACnE;IAAgC,wCAAiC;IAAjC,yCAAiC;IAAjC,sCAAiC;IAAjC,kCAAiC;GAAK;EACtE;IAAgC,0CAAsC;IAAtC,0CAAsC;IAAtC,2CAAsC;IAAtC,uCAAsC;GAAK;EAC3E;IAAgC,wCAAyC;IAAzC,0CAAyC;IAAzC,8CAAyC;IAAzC,0CAAyC;GAAK;EAE9E;IAA8B,+BAA0B;IAA1B,2BAA0B;GAAK;EAC7D;IAA8B,iCAA4B;IAA5B,6BAA4B;GAAK;EAC/D;IAA8B,uCAAkC;IAAlC,mCAAkC;GAAK;EAErE;IAAoC,mCAAsC;IAAtC,gCAAsC;IAAtC,uCAAsC;GAAK;EAC/E;IAAoC,iCAAoC;IAApC,8BAAoC;IAApC,qCAAoC;GAAK;EAC7E;IAAoC,oCAAkC;IAAlC,iCAAkC;IAAlC,mCAAkC;GAAK;EAC3E;IAAoC,qCAAyC;IAAzC,kCAAyC;IAAzC,0CAAyC;GAAK;EAClF;IAAoC,qCAAwC;IAAxC,yCAAwC;GAAK;EAEjF;IAAiC,oCAAkC;IAAlC,iCAAkC;IAAlC,mCAAkC;GAAK;EACxE;IAAiC,kCAAgC;IAAhC,+BAAgC;IAAhC,iCAAgC;GAAK;EACtE;IAAiC,qCAA8B;IAA9B,kCAA8B;IAA9B,+BAA8B;GAAK;EACpE;IAAiC,uCAAgC;IAAhC,oCAAgC;IAAhC,iCAAgC;GAAK;EACtE;IAAiC,sCAA+B;IAA/B,mCAA+B;IAA/B,gCAA+B;GAAK;EAErE;IAAkC,qCAAoC;IAApC,qCAAoC;GAAK;EAC3E;IAAkC,mCAAkC;IAAlC,mCAAkC;GAAK;EACzE;IAAkC,sCAAgC;IAAhC,iCAAgC;GAAK;EACvE;IAAkC,uCAAuC;IAAvC,wCAAuC;GAAK;EAC9E;IAAkC,0CAAsC;IAAtC,uCAAsC;GAAK;EAC7E;IAAkC,uCAAiC;IAAjC,kCAAiC;GAAK;EAExE;IAAgC,qCAA2B;IAA3B,4BAA2B;GAAK;EAChE;IAAgC,sCAAiC;IAAjC,kCAAiC;GAAK;EACtE;IAAgC,oCAA+B;IAA/B,gCAA+B;GAAK;EACpE;IAAgC,uCAA6B;IAA7B,8BAA6B;GAAK;EAClE;IAAgC,yCAA+B;IAA/B,gCAA+B;GAAK;EACpE;IAAgC,wCAA8B;IAA9B,+BAA8B;GAAK;CzDmrMtE;;A0D1tMG;ECDF,uBAAsB;CDC2B;;AAC/C;ECCF,wBAAuB;CDD2B;;AAChD;ECGF,uBAAsB;CDH2B;;A/CsD/C;E+CxDA;ICDF,uBAAsB;GDC2B;EAC/C;ICCF,wBAAuB;GDD2B;EAChD;ICGF,uBAAsB;GDH2B;C1DgvMlD;;AW1rMG;E+CxDA;ICDF,uBAAsB;GDC2B;EAC/C;ICCF,wBAAuB;GDD2B;EAChD;ICGF,uBAAsB;GDH2B;C1D4vMlD;;AWtsMG;E+CxDA;ICDF,uBAAsB;GDC2B;EAC/C;ICCF,wBAAuB;GDD2B;EAChD;ICGF,uBAAsB;GDH2B;C1DwwMlD;;AWltMG;E+CxDA;ICDF,uBAAsB;GDC2B;EAC/C;ICCF,wBAAuB;GDD2B;EAChD;ICGF,uBAAsB;GDH2B;C1DoxMlD;;A4DlxMC;EAAyB,4BAA8B;CAAI;;AAA3D;EAAyB,8BAA8B;CAAI;;AAA3D;EAAyB,8BAA8B;CAAI;;AAA3D;EAAyB,2BAA8B;CAAI;;AAA3D;EAAyB,oCAA8B;EAA9B,4BAA8B;CAAI;;AAK7D;EACE,gBAAe;EACf,OAAM;EACN,SAAQ;EACR,QAAO;EACP,c3DiiBsC;C2DhiBvC;;AAED;EACE,gBAAe;EACf,SAAQ;EACR,UAAS;EACT,QAAO;EACP,c3DyhBsC;C2DxhBvC;;AAG6B;EAD9B;IAEI,yBAAgB;IAAhB,iBAAgB;IAChB,OAAM;IACN,c3DihBoC;G2D/gBvC;C5DmyMA;;A6Dl0MD;ECEE,mBAAkB;EAClB,WAAU;EACV,YAAW;EACX,WAAU;EACV,iBAAgB;EAChB,uBAAsB;EACtB,oBAAmB;EACnB,8BAAqB;EAArB,sBAAqB;EACrB,UAAS;CDRV;;ACkBC;EAEE,iBAAgB;EAChB,YAAW;EACX,aAAY;EACZ,kBAAiB;EACjB,WAAU;EACV,oBAAmB;EACnB,wBAAe;EAAf,gBAAe;CAChB;;AC3BC;EAAuB,sBAA4B;CAAI;;AAAvD;EAAuB,sBAA4B;CAAI;;AAAvD;EAAuB,sBAA4B;CAAI;;AAAvD;EAAuB,uBAA4B;CAAI;;AAAvD;EAAuB,uBAA4B;CAAI;;AAAvD;EAAuB,uBAA4B;CAAI;;AAAvD;EAAuB,uBAA4B;CAAI;;AAAvD;EAAuB,wBAA4B;CAAI;;AAI3D;EAAU,2BAA0B;CAAK;;AACzC;EAAU,4BAA2B;CAAK;;ACAlC;EAAgC,qBAA4B;CAAI;;AAChE;;EAEE,yBAAoC;CACrC;;AACD;;EAEE,2BAAwC;CACzC;;AACD;;EAEE,4BAA0C;CAC3C;;AACD;;EAEE,0BAAsC;CACvC;;AAhBD;EAAgC,2BAA4B;CAAI;;AAChE;;EAEE,+BAAoC;CACrC;;AACD;;EAEE,iCAAwC;CACzC;;AACD;;EAEE,kCAA0C;CAC3C;;AACD;;EAEE,gCAAsC;CACvC;;AAhBD;EAAgC,0BAA4B;CAAI;;AAChE;;EAEE,8BAAoC;CACrC;;AACD;;EAEE,gCAAwC;CACzC;;AACD;;EAEE,iCAA0C;CAC3C;;AACD;;EAEE,+BAAsC;CACvC;;AAhBD;EAAgC,wBAA4B;CAAI;;AAChE;;EAEE,4BAAoC;CACrC;;AACD;;EAEE,8BAAwC;CACzC;;AACD;;EAEE,+BAA0C;CAC3C;;AACD;;EAEE,6BAAsC;CACvC;;AAhBD;EAAgC,0BAA4B;CAAI;;AAChE;;EAEE,8BAAoC;CACrC;;AACD;;EAEE,gCAAwC;CACzC;;AACD;;EAEE,iCAA0C;CAC3C;;AACD;;EAEE,+BAAsC;CACvC;;AAhBD;EAAgC,wBAA4B;CAAI;;AAChE;;EAEE,4BAAoC;CACrC;;AACD;;EAEE,8BAAwC;CACzC;;AACD;;EAEE,+BAA0C;CAC3C;;AACD;;EAEE,6BAAsC;CACvC;;AAhBD;EAAgC,sBAA4B;CAAI;;AAChE;;EAEE,0BAAoC;CACrC;;AACD;;EAEE,4BAAwC;CACzC;;AACD;;EAEE,6BAA0C;CAC3C;;AACD;;EAEE,2BAAsC;CACvC;;AAhBD;EAAgC,4BAA4B;CAAI;;AAChE;;EAEE,gCAAoC;CACrC;;AACD;;EAEE,kCAAwC;CACzC;;AACD;;EAEE,mCAA0C;CAC3C;;AACD;;EAEE,iCAAsC;CACvC;;AAhBD;EAAgC,2BAA4B;CAAI;;AAChE;;EAEE,+BAAoC;CACrC;;AACD;;EAEE,iCAAwC;CACzC;;AACD;;EAEE,kCAA0C;CAC3C;;AACD;;EAEE,gCAAsC;CACvC;;AAhBD;EAAgC,yBAA4B;CAAI;;AAChE;;EAEE,6BAAoC;CACrC;;AACD;;EAEE,+BAAwC;CACzC;;AACD;;EAEE,gCAA0C;CAC3C;;AACD;;EAEE,8BAAsC;CACvC;;AAhBD;EAAgC,2BAA4B;CAAI;;AAChE;;EAEE,+BAAoC;CACrC;;AACD;;EAEE,iCAAwC;CACzC;;AACD;;EAEE,kCAA0C;CAC3C;;AACD;;EAEE,gCAAsC;CACvC;;AAhBD;EAAgC,yBAA4B;CAAI;;AAChE;;EAEE,6BAAoC;CACrC;;AACD;;EAEE,+BAAwC;CACzC;;AACD;;EAEE,gCAA0C;CAC3C;;AACD;;EAEE,8BAAsC;CACvC;;AAKL;EAAmB,wBAAuB;CAAK;;AAC/C;;EAEE,4BAA2B;CAC5B;;AACD;;EAEE,8BAA6B;CAC9B;;AACD;;EAEE,+BAA8B;CAC/B;;AACD;;EAEE,6BAA4B;CAC7B;;ArDYD;EqDjDI;IAAgC,qBAA4B;GAAI;EAChE;;IAEE,yBAAoC;GACrC;EACD;;IAEE,2BAAwC;GACzC;EACD;;IAEE,4BAA0C;GAC3C;EACD;;IAEE,0BAAsC;GACvC;EAhBD;IAAgC,2BAA4B;GAAI;EAChE;;IAEE,+BAAoC;GACrC;EACD;;IAEE,iCAAwC;GACzC;EACD;;IAEE,kCAA0C;GAC3C;EACD;;IAEE,gCAAsC;GACvC;EAhBD;IAAgC,0BAA4B;GAAI;EAChE;;IAEE,8BAAoC;GACrC;EACD;;IAEE,gCAAwC;GACzC;EACD;;IAEE,iCAA0C;GAC3C;EACD;;IAEE,+BAAsC;GACvC;EAhBD;IAAgC,wBAA4B;GAAI;EAChE;;IAEE,4BAAoC;GACrC;EACD;;IAEE,8BAAwC;GACzC;EACD;;IAEE,+BAA0C;GAC3C;EACD;;IAEE,6BAAsC;GACvC;EAhBD;IAAgC,0BAA4B;GAAI;EAChE;;IAEE,8BAAoC;GACrC;EACD;;IAEE,gCAAwC;GACzC;EACD;;IAEE,iCAA0C;GAC3C;EACD;;IAEE,+BAAsC;GACvC;EAhBD;IAAgC,wBAA4B;GAAI;EAChE;;IAEE,4BAAoC;GACrC;EACD;;IAEE,8BAAwC;GACzC;EACD;;IAEE,+BAA0C;GAC3C;EACD;;IAEE,6BAAsC;GACvC;EAhBD;IAAgC,sBAA4B;GAAI;EAChE;;IAEE,0BAAoC;GACrC;EACD;;IAEE,4BAAwC;GACzC;EACD;;IAEE,6BAA0C;GAC3C;EACD;;IAEE,2BAAsC;GACvC;EAhBD;IAAgC,4BAA4B;GAAI;EAChE;;IAEE,gCAAoC;GACrC;EACD;;IAEE,kCAAwC;GACzC;EACD;;IAEE,mCAA0C;GAC3C;EACD;;IAEE,iCAAsC;GACvC;EAhBD;IAAgC,2BAA4B;GAAI;EAChE;;IAEE,+BAAoC;GACrC;EACD;;IAEE,iCAAwC;GACzC;EACD;;IAEE,kCAA0C;GAC3C;EACD;;IAEE,gCAAsC;GACvC;EAhBD;IAAgC,yBAA4B;GAAI;EAChE;;IAEE,6BAAoC;GACrC;EACD;;IAEE,+BAAwC;GACzC;EACD;;IAEE,gCAA0C;GAC3C;EACD;;IAEE,8BAAsC;GACvC;EAhBD;IAAgC,2BAA4B;GAAI;EAChE;;IAEE,+BAAoC;GACrC;EACD;;IAEE,iCAAwC;GACzC;EACD;;IAEE,kCAA0C;GAC3C;EACD;;IAEE,gCAAsC;GACvC;EAhBD;IAAgC,yBAA4B;GAAI;EAChE;;IAEE,6BAAoC;GACrC;EACD;;IAEE,+BAAwC;GACzC;EACD;;IAEE,gCAA0C;GAC3C;EACD;;IAEE,8BAAsC;GACvC;EAKL;IAAmB,wBAAuB;GAAK;EAC/C;;IAEE,4BAA2B;GAC5B;EACD;;IAEE,8BAA6B;GAC9B;EACD;;IAEE,+BAA8B;GAC/B;EACD;;IAEE,6BAA4B;GAC7B;ChEs4NJ;;AW13NG;EqDjDI;IAAgC,qBAA4B;GAAI;EAChE;;IAEE,yBAAoC;GACrC;EACD;;IAEE,2BAAwC;GACzC;EACD;;IAEE,4BAA0C;GAC3C;EACD;;IAEE,0BAAsC;GACvC;EAhBD;IAAgC,2BAA4B;GAAI;EAChE;;IAEE,+BAAoC;GACrC;EACD;;IAEE,iCAAwC;GACzC;EACD;;IAEE,kCAA0C;GAC3C;EACD;;IAEE,gCAAsC;GACvC;EAhBD;IAAgC,0BAA4B;GAAI;EAChE;;IAEE,8BAAoC;GACrC;EACD;;IAEE,gCAAwC;GACzC;EACD;;IAEE,iCAA0C;GAC3C;EACD;;IAEE,+BAAsC;GACvC;EAhBD;IAAgC,wBAA4B;GAAI;EAChE;;IAEE,4BAAoC;GACrC;EACD;;IAEE,8BAAwC;GACzC;EACD;;IAEE,+BAA0C;GAC3C;EACD;;IAEE,6BAAsC;GACvC;EAhBD;IAAgC,0BAA4B;GAAI;EAChE;;IAEE,8BAAoC;GACrC;EACD;;IAEE,gCAAwC;GACzC;EACD;;IAEE,iCAA0C;GAC3C;EACD;;IAEE,+BAAsC;GACvC;EAhBD;IAAgC,wBAA4B;GAAI;EAChE;;IAEE,4BAAoC;GACrC;EACD;;IAEE,8BAAwC;GACzC;EACD;;IAEE,+BAA0C;GAC3C;EACD;;IAEE,6BAAsC;GACvC;EAhBD;IAAgC,sBAA4B;GAAI;EAChE;;IAEE,0BAAoC;GACrC;EACD;;IAEE,4BAAwC;GACzC;EACD;;IAEE,6BAA0C;GAC3C;EACD;;IAEE,2BAAsC;GACvC;EAhBD;IAAgC,4BAA4B;GAAI;EAChE;;IAEE,gCAAoC;GACrC;EACD;;IAEE,kCAAwC;GACzC;EACD;;IAEE,mCAA0C;GAC3C;EACD;;IAEE,iCAAsC;GACvC;EAhBD;IAAgC,2BAA4B;GAAI;EAChE;;IAEE,+BAAoC;GACrC;EACD;;IAEE,iCAAwC;GACzC;EACD;;IAEE,kCAA0C;GAC3C;EACD;;IAEE,gCAAsC;GACvC;EAhBD;IAAgC,yBAA4B;GAAI;EAChE;;IAEE,6BAAoC;GACrC;EACD;;IAEE,+BAAwC;GACzC;EACD;;IAEE,gCAA0C;GAC3C;EACD;;IAEE,8BAAsC;GACvC;EAhBD;IAAgC,2BAA4B;GAAI;EAChE;;IAEE,+BAAoC;GACrC;EACD;;IAEE,iCAAwC;GACzC;EACD;;IAEE,kCAA0C;GAC3C;EACD;;IAEE,gCAAsC;GACvC;EAhBD;IAAgC,yBAA4B;GAAI;EAChE;;IAEE,6BAAoC;GACrC;EACD;;IAEE,+BAAwC;GACzC;EACD;;IAEE,gCAA0C;GAC3C;EACD;;IAEE,8BAAsC;GACvC;EAKL;IAAmB,wBAAuB;GAAK;EAC/C;;IAEE,4BAA2B;GAC5B;EACD;;IAEE,8BAA6B;GAC9B;EACD;;IAEE,+BAA8B;GAC/B;EACD;;IAEE,6BAA4B;GAC7B;ChEgoOJ;;AWpnOG;EqDjDI;IAAgC,qBAA4B;GAAI;EAChE;;IAEE,yBAAoC;GACrC;EACD;;IAEE,2BAAwC;GACzC;EACD;;IAEE,4BAA0C;GAC3C;EACD;;IAEE,0BAAsC;GACvC;EAhBD;IAAgC,2BAA4B;GAAI;EAChE;;IAEE,+BAAoC;GACrC;EACD;;IAEE,iCAAwC;GACzC;EACD;;IAEE,kCAA0C;GAC3C;EACD;;IAEE,gCAAsC;GACvC;EAhBD;IAAgC,0BAA4B;GAAI;EAChE;;IAEE,8BAAoC;GACrC;EACD;;IAEE,gCAAwC;GACzC;EACD;;IAEE,iCAA0C;GAC3C;EACD;;IAEE,+BAAsC;GACvC;EAhBD;IAAgC,wBAA4B;GAAI;EAChE;;IAEE,4BAAoC;GACrC;EACD;;IAEE,8BAAwC;GACzC;EACD;;IAEE,+BAA0C;GAC3C;EACD;;IAEE,6BAAsC;GACvC;EAhBD;IAAgC,0BAA4B;GAAI;EAChE;;IAEE,8BAAoC;GACrC;EACD;;IAEE,gCAAwC;GACzC;EACD;;IAEE,iCAA0C;GAC3C;EACD;;IAEE,+BAAsC;GACvC;EAhBD;IAAgC,wBAA4B;GAAI;EAChE;;IAEE,4BAAoC;GACrC;EACD;;IAEE,8BAAwC;GACzC;EACD;;IAEE,+BAA0C;GAC3C;EACD;;IAEE,6BAAsC;GACvC;EAhBD;IAAgC,sBAA4B;GAAI;EAChE;;IAEE,0BAAoC;GACrC;EACD;;IAEE,4BAAwC;GACzC;EACD;;IAEE,6BAA0C;GAC3C;EACD;;IAEE,2BAAsC;GACvC;EAhBD;IAAgC,4BAA4B;GAAI;EAChE;;IAEE,gCAAoC;GACrC;EACD;;IAEE,kCAAwC;GACzC;EACD;;IAEE,mCAA0C;GAC3C;EACD;;IAEE,iCAAsC;GACvC;EAhBD;IAAgC,2BAA4B;GAAI;EAChE;;IAEE,+BAAoC;GACrC;EACD;;IAEE,iCAAwC;GACzC;EACD;;IAEE,kCAA0C;GAC3C;EACD;;IAEE,gCAAsC;GACvC;EAhBD;IAAgC,yBAA4B;GAAI;EAChE;;IAEE,6BAAoC;GACrC;EACD;;IAEE,+BAAwC;GACzC;EACD;;IAEE,gCAA0C;GAC3C;EACD;;IAEE,8BAAsC;GACvC;EAhBD;IAAgC,2BAA4B;GAAI;EAChE;;IAEE,+BAAoC;GACrC;EACD;;IAEE,iCAAwC;GACzC;EACD;;IAEE,kCAA0C;GAC3C;EACD;;IAEE,gCAAsC;GACvC;EAhBD;IAAgC,yBAA4B;GAAI;EAChE;;IAEE,6BAAoC;GACrC;EACD;;IAEE,+BAAwC;GACzC;EACD;;IAEE,gCAA0C;GAC3C;EACD;;IAEE,8BAAsC;GACvC;EAKL;IAAmB,wBAAuB;GAAK;EAC/C;;IAEE,4BAA2B;GAC5B;EACD;;IAEE,8BAA6B;GAC9B;EACD;;IAEE,+BAA8B;GAC/B;EACD;;IAEE,6BAA4B;GAC7B;ChE03OJ;;AW92OG;EqDjDI;IAAgC,qBAA4B;GAAI;EAChE;;IAEE,yBAAoC;GACrC;EACD;;IAEE,2BAAwC;GACzC;EACD;;IAEE,4BAA0C;GAC3C;EACD;;IAEE,0BAAsC;GACvC;EAhBD;IAAgC,2BAA4B;GAAI;EAChE;;IAEE,+BAAoC;GACrC;EACD;;IAEE,iCAAwC;GACzC;EACD;;IAEE,kCAA0C;GAC3C;EACD;;IAEE,gCAAsC;GACvC;EAhBD;IAAgC,0BAA4B;GAAI;EAChE;;IAEE,8BAAoC;GACrC;EACD;;IAEE,gCAAwC;GACzC;EACD;;IAEE,iCAA0C;GAC3C;EACD;;IAEE,+BAAsC;GACvC;EAhBD;IAAgC,wBAA4B;GAAI;EAChE;;IAEE,4BAAoC;GACrC;EACD;;IAEE,8BAAwC;GACzC;EACD;;IAEE,+BAA0C;GAC3C;EACD;;IAEE,6BAAsC;GACvC;EAhBD;IAAgC,0BAA4B;GAAI;EAChE;;IAEE,8BAAoC;GACrC;EACD;;IAEE,gCAAwC;GACzC;EACD;;IAEE,iCAA0C;GAC3C;EACD;;IAEE,+BAAsC;GACvC;EAhBD;IAAgC,wBAA4B;GAAI;EAChE;;IAEE,4BAAoC;GACrC;EACD;;IAEE,8BAAwC;GACzC;EACD;;IAEE,+BAA0C;GAC3C;EACD;;IAEE,6BAAsC;GACvC;EAhBD;IAAgC,sBAA4B;GAAI;EAChE;;IAEE,0BAAoC;GACrC;EACD;;IAEE,4BAAwC;GACzC;EACD;;IAEE,6BAA0C;GAC3C;EACD;;IAEE,2BAAsC;GACvC;EAhBD;IAAgC,4BAA4B;GAAI;EAChE;;IAEE,gCAAoC;GACrC;EACD;;IAEE,kCAAwC;GACzC;EACD;;IAEE,mCAA0C;GAC3C;EACD;;IAEE,iCAAsC;GACvC;EAhBD;IAAgC,2BAA4B;GAAI;EAChE;;IAEE,+BAAoC;GACrC;EACD;;IAEE,iCAAwC;GACzC;EACD;;IAEE,kCAA0C;GAC3C;EACD;;IAEE,gCAAsC;GACvC;EAhBD;IAAgC,yBAA4B;GAAI;EAChE;;IAEE,6BAAoC;GACrC;EACD;;IAEE,+BAAwC;GACzC;EACD;;IAEE,gCAA0C;GAC3C;EACD;;IAEE,8BAAsC;GACvC;EAhBD;IAAgC,2BAA4B;GAAI;EAChE;;IAEE,+BAAoC;GACrC;EACD;;IAEE,iCAAwC;GACzC;EACD;;IAEE,kCAA0C;GAC3C;EACD;;IAEE,gCAAsC;GACvC;EAhBD;IAAgC,yBAA4B;GAAI;EAChE;;IAEE,6BAAoC;GACrC;EACD;;IAEE,+BAAwC;GACzC;EACD;;IAEE,gCAA0C;GAC3C;EACD;;IAEE,8BAAsC;GACvC;EAKL;IAAmB,wBAAuB;GAAK;EAC/C;;IAEE,4BAA2B;GAC5B;EACD;;IAEE,8BAA6B;GAC9B;EACD;;IAEE,+BAA8B;GAC/B;EACD;;IAEE,6BAA4B;GAC7B;ChEonPJ;;AiE5pPD;EAAiB,+BAA8B;CAAK;;AACpD;EAAiB,+BAA8B;CAAK;;AACpD;ECNE,iBAAgB;EAChB,wBAAuB;EACvB,oBAAmB;CDIsB;;AAQvC;EAAwB,4BAA2B;CAAK;;AACxD;EAAwB,6BAA4B;CAAK;;AACzD;EAAwB,8BAA6B;CAAK;;AtDwC1D;EsD1CA;IAAwB,4BAA2B;GAAK;EACxD;IAAwB,6BAA4B;GAAK;EACzD;IAAwB,8BAA6B;GAAK;CjEsrP7D;;AW9oPG;EsD1CA;IAAwB,4BAA2B;GAAK;EACxD;IAAwB,6BAA4B;GAAK;EACzD;IAAwB,8BAA6B;GAAK;CjEksP7D;;AW1pPG;EsD1CA;IAAwB,4BAA2B;GAAK;EACxD;IAAwB,6BAA4B;GAAK;EACzD;IAAwB,8BAA6B;GAAK;CjE8sP7D;;AWtqPG;EsD1CA;IAAwB,4BAA2B;GAAK;EACxD;IAAwB,6BAA4B;GAAK;EACzD;IAAwB,8BAA6B;GAAK;CjE0tP7D;;AiEptPD;EAAmB,qCAAoC;CAAK;;AAC5D;EAAmB,qCAAoC;CAAK;;AAC5D;EAAmB,sCAAqC;CAAK;;AAI7D;EAAsB,4BAA0C;CAAI;;AACpE;EAAsB,4BAA2C;CAAI;;AACrE;EAAsB,4BAAyC;CAAI;;AACnE;EAAsB,8BAA6B;CAAK;;AAIxD;EAAc,uBAAsB;CAAK;;AElCvC;EACE,0BAAwB;CACzB;;AjEWD;EiERI,0BAAqC;CjEWxC;;AiEhBD;EACE,0BAAwB;CACzB;;AjEWD;EiERI,0BAAqC;CjEWxC;;AiEhBD;EACE,0BAAwB;CACzB;;AjEWD;EiERI,0BAAqC;CjEWxC;;AiEhBD;EACE,0BAAwB;CACzB;;AjEWD;EiERI,0BAAqC;CjEWxC;;AiEhBD;EACE,0BAAwB;CACzB;;AjEWD;EiERI,0BAAqC;CjEWxC;;AiEhBD;EACE,0BAAwB;CACzB;;AjEWD;EiERI,0BAAqC;CjEWxC;;AiEhBD;EACE,0BAAwB;CACzB;;AjEWD;EiERI,0BAAqC;CjEWxC;;AiEhBD;EACE,0BAAwB;CACzB;;AjEWD;EiERI,0BAAqC;CjEWxC;;A+DwBH;EAAc,0BAA6B;CAAI;;AAI/C;EG9CE,YAAW;EACX,mBAAkB;EAClB,kBAAiB;EACjB,8BAA6B;EAC7B,UAAS;CH4CV;;AI/CD;ECCE,+BAAkC;CDCnC;;AAED;ECHE,8BAAkC;CDKnC;;AECC;EACE;;;IAKE,6BAA4B;IAE5B,4BAA2B;GAC5B;EAED;IAEI,2BAA0B;GAC3B;EAQH;IACE,8BAA6B;GAC9B;EAaD;IACE,iCAAgC;GACjC;EACD;;IAEE,uBAAgC;IAChC,yBAAwB;GACzB;EAOD;IACE,4BAA2B;GAC5B;EAED;;IAEE,yBAAwB;GACzB;EAED;;;IAGE,WAAU;IACV,UAAS;GACV;EAED;;IAEE,wBAAuB;GACxB;EAOD;IACE,StEmyBgC;GDghOnC;EuEjzPC;IACE,4BAA2C;GAC5C;EACD;IACE,4BAA2C;GAC5C;EAGD;IACE,cAAa;GACd;EACD;IACE,uBAAgC;GACjC;EAED;IACE,qCAAoC;GAMrC;EAPD;;IAKI,kCAAiC;GAClC;EAEH;;IAGI,kCAAiC;GAClC;CvE8yPN","file":"bootstrap.css","sourcesContent":["/*!\n * Bootstrap v4.0.0 (https://getbootstrap.com)\n * Copyright 2011-2018 The Bootstrap Authors\n * Copyright 2011-2018 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n\n@import \"functions\";\n@import \"variables\";\n@import \"mixins\";\n@import \"root\";\n@import \"reboot\";\n@import \"type\";\n@import \"images\";\n@import \"code\";\n@import \"grid\";\n@import \"tables\";\n@import \"forms\";\n@import \"buttons\";\n@import \"transitions\";\n@import \"dropdown\";\n@import \"button-group\";\n@import \"input-group\";\n@import \"custom-forms\";\n@import \"nav\";\n@import \"navbar\";\n@import \"card\";\n@import \"breadcrumb\";\n@import \"pagination\";\n@import \"badge\";\n@import \"jumbotron\";\n@import \"alert\";\n@import \"progress\";\n@import \"media\";\n@import \"list-group\";\n@import \"close\";\n@import \"modal\";\n@import \"tooltip\";\n@import \"popover\";\n@import \"carousel\";\n@import \"utilities\";\n@import \"print\";\n",":root {\n // Custom variable values only support SassScript inside `#{}`.\n @each $color, $value in $colors {\n --#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors {\n --#{$color}: #{$value};\n }\n\n @each $bp, $value in $grid-breakpoints {\n --breakpoint-#{$bp}: #{$value};\n }\n\n // Use `inspect` for lists so that quoted items keep the quotes.\n // See https://github.com/sass/sass/issues/2383#issuecomment-336349172\n --font-family-sans-serif: #{inspect($font-family-sans-serif)};\n --font-family-monospace: #{inspect($font-family-monospace)};\n}\n","// stylelint-disable at-rule-no-vendor-prefix, declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix\n\n// Reboot\n//\n// Normalization of HTML elements, manually forked from Normalize.css to remove\n// styles targeting irrelevant browsers while applying new styles.\n//\n// Normalize is licensed MIT. https://github.com/necolas/normalize.css\n\n\n// Document\n//\n// 1. Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.\n// 2. Change the default font family in all browsers.\n// 3. Correct the line height in all browsers.\n// 4. Prevent adjustments of font size after orientation changes in IE on Windows Phone and in iOS.\n// 5. Setting @viewport causes scrollbars to overlap content in IE11 and Edge, so\n// we force a non-overlapping, non-auto-hiding scrollbar to counteract.\n// 6. Change the default tap highlight to be completely transparent in iOS.\n\n*,\n*::before,\n*::after {\n box-sizing: border-box; // 1\n}\n\nhtml {\n font-family: sans-serif; // 2\n line-height: 1.15; // 3\n -webkit-text-size-adjust: 100%; // 4\n -ms-text-size-adjust: 100%; // 4\n -ms-overflow-style: scrollbar; // 5\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0); // 6\n}\n\n// IE10+ doesn't honor `` in some cases.\n@at-root {\n @-ms-viewport {\n width: device-width;\n }\n}\n\n// stylelint-disable selector-list-comma-newline-after\n// Shim for \"new\" HTML5 structural elements to display correctly (IE10, older browsers)\narticle, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {\n display: block;\n}\n// stylelint-enable selector-list-comma-newline-after\n\n// Body\n//\n// 1. Remove the margin in all browsers.\n// 2. As a best practice, apply a default `background-color`.\n// 3. Set an explicit initial text-align value so that we can later use the\n// the `inherit` value on things like `` elements.\n\nbody {\n margin: 0; // 1\n font-family: $font-family-base;\n font-size: $font-size-base;\n font-weight: $font-weight-base;\n line-height: $line-height-base;\n color: $body-color;\n text-align: left; // 3\n background-color: $body-bg; // 2\n}\n\n// Suppress the focus outline on elements that cannot be accessed via keyboard.\n// This prevents an unwanted focus outline from appearing around elements that\n// might still respond to pointer events.\n//\n// Credit: https://github.com/suitcss/base\n[tabindex=\"-1\"]:focus {\n outline: 0 !important;\n}\n\n\n// Content grouping\n//\n// 1. Add the correct box sizing in Firefox.\n// 2. Show the overflow in Edge and IE.\n\nhr {\n box-sizing: content-box; // 1\n height: 0; // 1\n overflow: visible; // 2\n}\n\n\n//\n// Typography\n//\n\n// Remove top margins from headings\n//\n// By default, `

`-`

` all receive top and bottom margins. We nuke the top\n// margin for easier control within type scales as it avoids margin collapsing.\n// stylelint-disable selector-list-comma-newline-after\nh1, h2, h3, h4, h5, h6 {\n margin-top: 0;\n margin-bottom: $headings-margin-bottom;\n}\n// stylelint-enable selector-list-comma-newline-after\n\n// Reset margins on paragraphs\n//\n// Similarly, the top margin on `

`s get reset. However, we also reset the\n// bottom margin to use `rem` units instead of `em`.\np {\n margin-top: 0;\n margin-bottom: $paragraph-margin-bottom;\n}\n\n// Abbreviations\n//\n// 1. Remove the bottom border in Firefox 39-.\n// 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.\n// 3. Add explicit cursor to indicate changed behavior.\n// 4. Duplicate behavior to the data-* attribute for our tooltip plugin\n\nabbr[title],\nabbr[data-original-title] { // 4\n text-decoration: underline; // 2\n text-decoration: underline dotted; // 2\n cursor: help; // 3\n border-bottom: 0; // 1\n}\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: $dt-font-weight;\n}\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0; // Undo browser default\n}\n\nblockquote {\n margin: 0 0 1rem;\n}\n\ndfn {\n font-style: italic; // Add the correct font style in Android 4.3-\n}\n\n// stylelint-disable font-weight-notation\nb,\nstrong {\n font-weight: bolder; // Add the correct font weight in Chrome, Edge, and Safari\n}\n// stylelint-enable font-weight-notation\n\nsmall {\n font-size: 80%; // Add the correct font size in all browsers\n}\n\n//\n// Prevent `sub` and `sup` elements from affecting the line height in\n// all browsers.\n//\n\nsub,\nsup {\n position: relative;\n font-size: 75%;\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub { bottom: -.25em; }\nsup { top: -.5em; }\n\n\n//\n// Links\n//\n\na {\n color: $link-color;\n text-decoration: $link-decoration;\n background-color: transparent; // Remove the gray background on active links in IE 10.\n -webkit-text-decoration-skip: objects; // Remove gaps in links underline in iOS 8+ and Safari 8+.\n\n @include hover {\n color: $link-hover-color;\n text-decoration: $link-hover-decoration;\n }\n}\n\n// And undo these styles for placeholder links/named anchors (without href)\n// which have not been made explicitly keyboard-focusable (without tabindex).\n// It would be more straightforward to just use a[href] in previous block, but that\n// causes specificity issues in many other styles that are too complex to fix.\n// See https://github.com/twbs/bootstrap/issues/19402\n\na:not([href]):not([tabindex]) {\n color: inherit;\n text-decoration: none;\n\n @include hover-focus {\n color: inherit;\n text-decoration: none;\n }\n\n &:focus {\n outline: 0;\n }\n}\n\n\n//\n// Code\n//\n\n// stylelint-disable font-family-no-duplicate-names\npre,\ncode,\nkbd,\nsamp {\n font-family: monospace, monospace; // Correct the inheritance and scaling of font size in all browsers.\n font-size: 1em; // Correct the odd `em` font sizing in all browsers.\n}\n// stylelint-enable font-family-no-duplicate-names\n\npre {\n // Remove browser default top margin\n margin-top: 0;\n // Reset browser default of `1em` to use `rem`s\n margin-bottom: 1rem;\n // Don't allow content to break outside\n overflow: auto;\n // We have @viewport set which causes scrollbars to overlap content in IE11 and Edge, so\n // we force a non-overlapping, non-auto-hiding scrollbar to counteract.\n -ms-overflow-style: scrollbar;\n}\n\n\n//\n// Figures\n//\n\nfigure {\n // Apply a consistent margin strategy (matches our type styles).\n margin: 0 0 1rem;\n}\n\n\n//\n// Images and content\n//\n\nimg {\n vertical-align: middle;\n border-style: none; // Remove the border on images inside links in IE 10-.\n}\n\nsvg:not(:root) {\n overflow: hidden; // Hide the overflow in IE\n}\n\n\n//\n// Tables\n//\n\ntable {\n border-collapse: collapse; // Prevent double borders\n}\n\ncaption {\n padding-top: $table-cell-padding;\n padding-bottom: $table-cell-padding;\n color: $text-muted;\n text-align: left;\n caption-side: bottom;\n}\n\nth {\n // Matches default `` alignment by inheriting from the ``, or the\n // closest parent with a set `text-align`.\n text-align: inherit;\n}\n\n\n//\n// Forms\n//\n\nlabel {\n // Allow labels to use `margin` for spacing.\n display: inline-block;\n margin-bottom: .5rem;\n}\n\n// Remove the default `border-radius` that macOS Chrome adds.\n//\n// Details at https://github.com/twbs/bootstrap/issues/24093\nbutton {\n border-radius: 0;\n}\n\n// Work around a Firefox/IE bug where the transparent `button` background\n// results in a loss of the default `button` focus styles.\n//\n// Credit: https://github.com/suitcss/base/\nbutton:focus {\n outline: 1px dotted;\n outline: 5px auto -webkit-focus-ring-color;\n}\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0; // Remove the margin in Firefox and Safari\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\nbutton,\ninput {\n overflow: visible; // Show the overflow in Edge\n}\n\nbutton,\nselect {\n text-transform: none; // Remove the inheritance of text transform in Firefox\n}\n\n// 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`\n// controls in Android 4.\n// 2. Correct the inability to style clickable types in iOS and Safari.\nbutton,\nhtml [type=\"button\"], // 1\n[type=\"reset\"],\n[type=\"submit\"] {\n -webkit-appearance: button; // 2\n}\n\n// Remove inner border and padding from Firefox, but don't restore the outline like Normalize.\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n padding: 0;\n border-style: none;\n}\n\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n box-sizing: border-box; // 1. Add the correct box sizing in IE 10-\n padding: 0; // 2. Remove the padding in IE 10-\n}\n\n\ninput[type=\"date\"],\ninput[type=\"time\"],\ninput[type=\"datetime-local\"],\ninput[type=\"month\"] {\n // Remove the default appearance of temporal inputs to avoid a Mobile Safari\n // bug where setting a custom line-height prevents text from being vertically\n // centered within the input.\n // See https://bugs.webkit.org/show_bug.cgi?id=139848\n // and https://github.com/twbs/bootstrap/issues/11266\n -webkit-appearance: listbox;\n}\n\ntextarea {\n overflow: auto; // Remove the default vertical scrollbar in IE.\n // Textareas should really only resize vertically so they don't break their (horizontal) containers.\n resize: vertical;\n}\n\nfieldset {\n // Browsers set a default `min-width: min-content;` on fieldsets,\n // unlike e.g. `

`s, which have `min-width: 0;` by default.\n // So we reset that to ensure fieldsets behave more like a standard block element.\n // See https://github.com/twbs/bootstrap/issues/12359\n // and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements\n min-width: 0;\n // Reset the default outline behavior of fieldsets so they don't affect page layout.\n padding: 0;\n margin: 0;\n border: 0;\n}\n\n// 1. Correct the text wrapping in Edge and IE.\n// 2. Correct the color inheritance from `fieldset` elements in IE.\nlegend {\n display: block;\n width: 100%;\n max-width: 100%; // 1\n padding: 0;\n margin-bottom: .5rem;\n font-size: 1.5rem;\n line-height: inherit;\n color: inherit; // 2\n white-space: normal; // 1\n}\n\nprogress {\n vertical-align: baseline; // Add the correct vertical alignment in Chrome, Firefox, and Opera.\n}\n\n// Correct the cursor style of increment and decrement buttons in Chrome.\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n[type=\"search\"] {\n // This overrides the extra rounded corners on search inputs in iOS so that our\n // `.form-control` class can properly style them. Note that this cannot simply\n // be added to `.form-control` as it's not specific enough. For details, see\n // https://github.com/twbs/bootstrap/issues/11586.\n outline-offset: -2px; // 2. Correct the outline style in Safari.\n -webkit-appearance: none;\n}\n\n//\n// Remove the inner padding and cancel buttons in Chrome and Safari on macOS.\n//\n\n[type=\"search\"]::-webkit-search-cancel-button,\n[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n//\n// 1. Correct the inability to style clickable types in iOS and Safari.\n// 2. Change font properties to `inherit` in Safari.\n//\n\n::-webkit-file-upload-button {\n font: inherit; // 2\n -webkit-appearance: button; // 1\n}\n\n//\n// Correct element displays\n//\n\noutput {\n display: inline-block;\n}\n\nsummary {\n display: list-item; // Add the correct display in all browsers\n cursor: pointer;\n}\n\ntemplate {\n display: none; // Add the correct display in IE\n}\n\n// Always hide an element with the `hidden` HTML attribute (from PureCSS).\n// Needed for proper display in IE 10-.\n[hidden] {\n display: none !important;\n}\n","/*!\n * Bootstrap v4.0.0 (https://getbootstrap.com)\n * Copyright 2011-2018 The Bootstrap Authors\n * Copyright 2011-2018 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n:root {\n --blue: #007bff;\n --indigo: #6610f2;\n --purple: #6f42c1;\n --pink: #e83e8c;\n --red: #dc3545;\n --orange: #fd7e14;\n --yellow: #ffc107;\n --green: #28a745;\n --teal: #20c997;\n --cyan: #17a2b8;\n --white: #fff;\n --gray: #6c757d;\n --gray-dark: #343a40;\n --primary: #007bff;\n --secondary: #6c757d;\n --success: #28a745;\n --info: #17a2b8;\n --warning: #ffc107;\n --danger: #dc3545;\n --light: #f8f9fa;\n --dark: #343a40;\n --breakpoint-xs: 0;\n --breakpoint-sm: 576px;\n --breakpoint-md: 768px;\n --breakpoint-lg: 992px;\n --breakpoint-xl: 1200px;\n --font-family-sans-serif: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\";\n --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n}\n\n*,\n*::before,\n*::after {\n box-sizing: border-box;\n}\n\nhtml {\n font-family: sans-serif;\n line-height: 1.15;\n -webkit-text-size-adjust: 100%;\n -ms-text-size-adjust: 100%;\n -ms-overflow-style: scrollbar;\n -webkit-tap-highlight-color: transparent;\n}\n\n@-ms-viewport {\n width: device-width;\n}\n\narticle, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {\n display: block;\n}\n\nbody {\n margin: 0;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\";\n font-size: 1rem;\n font-weight: 400;\n line-height: 1.5;\n color: #212529;\n text-align: left;\n background-color: #fff;\n}\n\n[tabindex=\"-1\"]:focus {\n outline: 0 !important;\n}\n\nhr {\n box-sizing: content-box;\n height: 0;\n overflow: visible;\n}\n\nh1, h2, h3, h4, h5, h6 {\n margin-top: 0;\n margin-bottom: 0.5rem;\n}\n\np {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nabbr[title],\nabbr[data-original-title] {\n text-decoration: underline;\n text-decoration: underline dotted;\n cursor: help;\n border-bottom: 0;\n}\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: 700;\n}\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0;\n}\n\nblockquote {\n margin: 0 0 1rem;\n}\n\ndfn {\n font-style: italic;\n}\n\nb,\nstrong {\n font-weight: bolder;\n}\n\nsmall {\n font-size: 80%;\n}\n\nsub,\nsup {\n position: relative;\n font-size: 75%;\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub {\n bottom: -.25em;\n}\n\nsup {\n top: -.5em;\n}\n\na {\n color: #007bff;\n text-decoration: none;\n background-color: transparent;\n -webkit-text-decoration-skip: objects;\n}\n\na:hover {\n color: #0056b3;\n text-decoration: underline;\n}\n\na:not([href]):not([tabindex]) {\n color: inherit;\n text-decoration: none;\n}\n\na:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {\n color: inherit;\n text-decoration: none;\n}\n\na:not([href]):not([tabindex]):focus {\n outline: 0;\n}\n\npre,\ncode,\nkbd,\nsamp {\n font-family: monospace, monospace;\n font-size: 1em;\n}\n\npre {\n margin-top: 0;\n margin-bottom: 1rem;\n overflow: auto;\n -ms-overflow-style: scrollbar;\n}\n\nfigure {\n margin: 0 0 1rem;\n}\n\nimg {\n vertical-align: middle;\n border-style: none;\n}\n\nsvg:not(:root) {\n overflow: hidden;\n}\n\ntable {\n border-collapse: collapse;\n}\n\ncaption {\n padding-top: 0.75rem;\n padding-bottom: 0.75rem;\n color: #6c757d;\n text-align: left;\n caption-side: bottom;\n}\n\nth {\n text-align: inherit;\n}\n\nlabel {\n display: inline-block;\n margin-bottom: .5rem;\n}\n\nbutton {\n border-radius: 0;\n}\n\nbutton:focus {\n outline: 1px dotted;\n outline: 5px auto -webkit-focus-ring-color;\n}\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0;\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\nbutton,\ninput {\n overflow: visible;\n}\n\nbutton,\nselect {\n text-transform: none;\n}\n\nbutton,\nhtml [type=\"button\"],\n[type=\"reset\"],\n[type=\"submit\"] {\n -webkit-appearance: button;\n}\n\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n padding: 0;\n border-style: none;\n}\n\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n box-sizing: border-box;\n padding: 0;\n}\n\ninput[type=\"date\"],\ninput[type=\"time\"],\ninput[type=\"datetime-local\"],\ninput[type=\"month\"] {\n -webkit-appearance: listbox;\n}\n\ntextarea {\n overflow: auto;\n resize: vertical;\n}\n\nfieldset {\n min-width: 0;\n padding: 0;\n margin: 0;\n border: 0;\n}\n\nlegend {\n display: block;\n width: 100%;\n max-width: 100%;\n padding: 0;\n margin-bottom: .5rem;\n font-size: 1.5rem;\n line-height: inherit;\n color: inherit;\n white-space: normal;\n}\n\nprogress {\n vertical-align: baseline;\n}\n\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n[type=\"search\"] {\n outline-offset: -2px;\n -webkit-appearance: none;\n}\n\n[type=\"search\"]::-webkit-search-cancel-button,\n[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n::-webkit-file-upload-button {\n font: inherit;\n -webkit-appearance: button;\n}\n\noutput {\n display: inline-block;\n}\n\nsummary {\n display: list-item;\n cursor: pointer;\n}\n\ntemplate {\n display: none;\n}\n\n[hidden] {\n display: none !important;\n}\n\nh1, h2, h3, h4, h5, h6,\n.h1, .h2, .h3, .h4, .h5, .h6 {\n margin-bottom: 0.5rem;\n font-family: inherit;\n font-weight: 500;\n line-height: 1.2;\n color: inherit;\n}\n\nh1, .h1 {\n font-size: 2.5rem;\n}\n\nh2, .h2 {\n font-size: 2rem;\n}\n\nh3, .h3 {\n font-size: 1.75rem;\n}\n\nh4, .h4 {\n font-size: 1.5rem;\n}\n\nh5, .h5 {\n font-size: 1.25rem;\n}\n\nh6, .h6 {\n font-size: 1rem;\n}\n\n.lead {\n font-size: 1.25rem;\n font-weight: 300;\n}\n\n.display-1 {\n font-size: 6rem;\n font-weight: 300;\n line-height: 1.2;\n}\n\n.display-2 {\n font-size: 5.5rem;\n font-weight: 300;\n line-height: 1.2;\n}\n\n.display-3 {\n font-size: 4.5rem;\n font-weight: 300;\n line-height: 1.2;\n}\n\n.display-4 {\n font-size: 3.5rem;\n font-weight: 300;\n line-height: 1.2;\n}\n\nhr {\n margin-top: 1rem;\n margin-bottom: 1rem;\n border: 0;\n border-top: 1px solid rgba(0, 0, 0, 0.1);\n}\n\nsmall,\n.small {\n font-size: 80%;\n font-weight: 400;\n}\n\nmark,\n.mark {\n padding: 0.2em;\n background-color: #fcf8e3;\n}\n\n.list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n\n.list-inline {\n padding-left: 0;\n list-style: none;\n}\n\n.list-inline-item {\n display: inline-block;\n}\n\n.list-inline-item:not(:last-child) {\n margin-right: 0.5rem;\n}\n\n.initialism {\n font-size: 90%;\n text-transform: uppercase;\n}\n\n.blockquote {\n margin-bottom: 1rem;\n font-size: 1.25rem;\n}\n\n.blockquote-footer {\n display: block;\n font-size: 80%;\n color: #6c757d;\n}\n\n.blockquote-footer::before {\n content: \"\\2014 \\00A0\";\n}\n\n.img-fluid {\n max-width: 100%;\n height: auto;\n}\n\n.img-thumbnail {\n padding: 0.25rem;\n background-color: #fff;\n border: 1px solid #dee2e6;\n border-radius: 0.25rem;\n max-width: 100%;\n height: auto;\n}\n\n.figure {\n display: inline-block;\n}\n\n.figure-img {\n margin-bottom: 0.5rem;\n line-height: 1;\n}\n\n.figure-caption {\n font-size: 90%;\n color: #6c757d;\n}\n\ncode,\nkbd,\npre,\nsamp {\n font-family: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n}\n\ncode {\n font-size: 87.5%;\n color: #e83e8c;\n word-break: break-word;\n}\n\na > code {\n color: inherit;\n}\n\nkbd {\n padding: 0.2rem 0.4rem;\n font-size: 87.5%;\n color: #fff;\n background-color: #212529;\n border-radius: 0.2rem;\n}\n\nkbd kbd {\n padding: 0;\n font-size: 100%;\n font-weight: 700;\n}\n\npre {\n display: block;\n font-size: 87.5%;\n color: #212529;\n}\n\npre code {\n font-size: inherit;\n color: inherit;\n word-break: normal;\n}\n\n.pre-scrollable {\n max-height: 340px;\n overflow-y: scroll;\n}\n\n.container {\n width: 100%;\n padding-right: 15px;\n padding-left: 15px;\n margin-right: auto;\n margin-left: auto;\n}\n\n@media (min-width: 576px) {\n .container {\n max-width: 540px;\n }\n}\n\n@media (min-width: 768px) {\n .container {\n max-width: 720px;\n }\n}\n\n@media (min-width: 992px) {\n .container {\n max-width: 960px;\n }\n}\n\n@media (min-width: 1200px) {\n .container {\n max-width: 1140px;\n }\n}\n\n.container-fluid {\n width: 100%;\n padding-right: 15px;\n padding-left: 15px;\n margin-right: auto;\n margin-left: auto;\n}\n\n.row {\n display: flex;\n flex-wrap: wrap;\n margin-right: -15px;\n margin-left: -15px;\n}\n\n.no-gutters {\n margin-right: 0;\n margin-left: 0;\n}\n\n.no-gutters > .col,\n.no-gutters > [class*=\"col-\"] {\n padding-right: 0;\n padding-left: 0;\n}\n\n.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,\n.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,\n.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,\n.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,\n.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,\n.col-xl-auto {\n position: relative;\n width: 100%;\n min-height: 1px;\n padding-right: 15px;\n padding-left: 15px;\n}\n\n.col {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%;\n}\n\n.col-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: none;\n}\n\n.col-1 {\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n}\n\n.col-2 {\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n}\n\n.col-3 {\n flex: 0 0 25%;\n max-width: 25%;\n}\n\n.col-4 {\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n}\n\n.col-5 {\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n}\n\n.col-6 {\n flex: 0 0 50%;\n max-width: 50%;\n}\n\n.col-7 {\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n}\n\n.col-8 {\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n}\n\n.col-9 {\n flex: 0 0 75%;\n max-width: 75%;\n}\n\n.col-10 {\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n}\n\n.col-11 {\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n}\n\n.col-12 {\n flex: 0 0 100%;\n max-width: 100%;\n}\n\n.order-first {\n order: -1;\n}\n\n.order-last {\n order: 13;\n}\n\n.order-0 {\n order: 0;\n}\n\n.order-1 {\n order: 1;\n}\n\n.order-2 {\n order: 2;\n}\n\n.order-3 {\n order: 3;\n}\n\n.order-4 {\n order: 4;\n}\n\n.order-5 {\n order: 5;\n}\n\n.order-6 {\n order: 6;\n}\n\n.order-7 {\n order: 7;\n}\n\n.order-8 {\n order: 8;\n}\n\n.order-9 {\n order: 9;\n}\n\n.order-10 {\n order: 10;\n}\n\n.order-11 {\n order: 11;\n}\n\n.order-12 {\n order: 12;\n}\n\n.offset-1 {\n margin-left: 8.333333%;\n}\n\n.offset-2 {\n margin-left: 16.666667%;\n}\n\n.offset-3 {\n margin-left: 25%;\n}\n\n.offset-4 {\n margin-left: 33.333333%;\n}\n\n.offset-5 {\n margin-left: 41.666667%;\n}\n\n.offset-6 {\n margin-left: 50%;\n}\n\n.offset-7 {\n margin-left: 58.333333%;\n}\n\n.offset-8 {\n margin-left: 66.666667%;\n}\n\n.offset-9 {\n margin-left: 75%;\n}\n\n.offset-10 {\n margin-left: 83.333333%;\n}\n\n.offset-11 {\n margin-left: 91.666667%;\n}\n\n@media (min-width: 576px) {\n .col-sm {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%;\n }\n .col-sm-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: none;\n }\n .col-sm-1 {\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n }\n .col-sm-2 {\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n }\n .col-sm-3 {\n flex: 0 0 25%;\n max-width: 25%;\n }\n .col-sm-4 {\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n }\n .col-sm-5 {\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n }\n .col-sm-6 {\n flex: 0 0 50%;\n max-width: 50%;\n }\n .col-sm-7 {\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n }\n .col-sm-8 {\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n }\n .col-sm-9 {\n flex: 0 0 75%;\n max-width: 75%;\n }\n .col-sm-10 {\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n }\n .col-sm-11 {\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n }\n .col-sm-12 {\n flex: 0 0 100%;\n max-width: 100%;\n }\n .order-sm-first {\n order: -1;\n }\n .order-sm-last {\n order: 13;\n }\n .order-sm-0 {\n order: 0;\n }\n .order-sm-1 {\n order: 1;\n }\n .order-sm-2 {\n order: 2;\n }\n .order-sm-3 {\n order: 3;\n }\n .order-sm-4 {\n order: 4;\n }\n .order-sm-5 {\n order: 5;\n }\n .order-sm-6 {\n order: 6;\n }\n .order-sm-7 {\n order: 7;\n }\n .order-sm-8 {\n order: 8;\n }\n .order-sm-9 {\n order: 9;\n }\n .order-sm-10 {\n order: 10;\n }\n .order-sm-11 {\n order: 11;\n }\n .order-sm-12 {\n order: 12;\n }\n .offset-sm-0 {\n margin-left: 0;\n }\n .offset-sm-1 {\n margin-left: 8.333333%;\n }\n .offset-sm-2 {\n margin-left: 16.666667%;\n }\n .offset-sm-3 {\n margin-left: 25%;\n }\n .offset-sm-4 {\n margin-left: 33.333333%;\n }\n .offset-sm-5 {\n margin-left: 41.666667%;\n }\n .offset-sm-6 {\n margin-left: 50%;\n }\n .offset-sm-7 {\n margin-left: 58.333333%;\n }\n .offset-sm-8 {\n margin-left: 66.666667%;\n }\n .offset-sm-9 {\n margin-left: 75%;\n }\n .offset-sm-10 {\n margin-left: 83.333333%;\n }\n .offset-sm-11 {\n margin-left: 91.666667%;\n }\n}\n\n@media (min-width: 768px) {\n .col-md {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%;\n }\n .col-md-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: none;\n }\n .col-md-1 {\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n }\n .col-md-2 {\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n }\n .col-md-3 {\n flex: 0 0 25%;\n max-width: 25%;\n }\n .col-md-4 {\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n }\n .col-md-5 {\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n }\n .col-md-6 {\n flex: 0 0 50%;\n max-width: 50%;\n }\n .col-md-7 {\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n }\n .col-md-8 {\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n }\n .col-md-9 {\n flex: 0 0 75%;\n max-width: 75%;\n }\n .col-md-10 {\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n }\n .col-md-11 {\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n }\n .col-md-12 {\n flex: 0 0 100%;\n max-width: 100%;\n }\n .order-md-first {\n order: -1;\n }\n .order-md-last {\n order: 13;\n }\n .order-md-0 {\n order: 0;\n }\n .order-md-1 {\n order: 1;\n }\n .order-md-2 {\n order: 2;\n }\n .order-md-3 {\n order: 3;\n }\n .order-md-4 {\n order: 4;\n }\n .order-md-5 {\n order: 5;\n }\n .order-md-6 {\n order: 6;\n }\n .order-md-7 {\n order: 7;\n }\n .order-md-8 {\n order: 8;\n }\n .order-md-9 {\n order: 9;\n }\n .order-md-10 {\n order: 10;\n }\n .order-md-11 {\n order: 11;\n }\n .order-md-12 {\n order: 12;\n }\n .offset-md-0 {\n margin-left: 0;\n }\n .offset-md-1 {\n margin-left: 8.333333%;\n }\n .offset-md-2 {\n margin-left: 16.666667%;\n }\n .offset-md-3 {\n margin-left: 25%;\n }\n .offset-md-4 {\n margin-left: 33.333333%;\n }\n .offset-md-5 {\n margin-left: 41.666667%;\n }\n .offset-md-6 {\n margin-left: 50%;\n }\n .offset-md-7 {\n margin-left: 58.333333%;\n }\n .offset-md-8 {\n margin-left: 66.666667%;\n }\n .offset-md-9 {\n margin-left: 75%;\n }\n .offset-md-10 {\n margin-left: 83.333333%;\n }\n .offset-md-11 {\n margin-left: 91.666667%;\n }\n}\n\n@media (min-width: 992px) {\n .col-lg {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%;\n }\n .col-lg-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: none;\n }\n .col-lg-1 {\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n }\n .col-lg-2 {\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n }\n .col-lg-3 {\n flex: 0 0 25%;\n max-width: 25%;\n }\n .col-lg-4 {\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n }\n .col-lg-5 {\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n }\n .col-lg-6 {\n flex: 0 0 50%;\n max-width: 50%;\n }\n .col-lg-7 {\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n }\n .col-lg-8 {\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n }\n .col-lg-9 {\n flex: 0 0 75%;\n max-width: 75%;\n }\n .col-lg-10 {\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n }\n .col-lg-11 {\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n }\n .col-lg-12 {\n flex: 0 0 100%;\n max-width: 100%;\n }\n .order-lg-first {\n order: -1;\n }\n .order-lg-last {\n order: 13;\n }\n .order-lg-0 {\n order: 0;\n }\n .order-lg-1 {\n order: 1;\n }\n .order-lg-2 {\n order: 2;\n }\n .order-lg-3 {\n order: 3;\n }\n .order-lg-4 {\n order: 4;\n }\n .order-lg-5 {\n order: 5;\n }\n .order-lg-6 {\n order: 6;\n }\n .order-lg-7 {\n order: 7;\n }\n .order-lg-8 {\n order: 8;\n }\n .order-lg-9 {\n order: 9;\n }\n .order-lg-10 {\n order: 10;\n }\n .order-lg-11 {\n order: 11;\n }\n .order-lg-12 {\n order: 12;\n }\n .offset-lg-0 {\n margin-left: 0;\n }\n .offset-lg-1 {\n margin-left: 8.333333%;\n }\n .offset-lg-2 {\n margin-left: 16.666667%;\n }\n .offset-lg-3 {\n margin-left: 25%;\n }\n .offset-lg-4 {\n margin-left: 33.333333%;\n }\n .offset-lg-5 {\n margin-left: 41.666667%;\n }\n .offset-lg-6 {\n margin-left: 50%;\n }\n .offset-lg-7 {\n margin-left: 58.333333%;\n }\n .offset-lg-8 {\n margin-left: 66.666667%;\n }\n .offset-lg-9 {\n margin-left: 75%;\n }\n .offset-lg-10 {\n margin-left: 83.333333%;\n }\n .offset-lg-11 {\n margin-left: 91.666667%;\n }\n}\n\n@media (min-width: 1200px) {\n .col-xl {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%;\n }\n .col-xl-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: none;\n }\n .col-xl-1 {\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n }\n .col-xl-2 {\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n }\n .col-xl-3 {\n flex: 0 0 25%;\n max-width: 25%;\n }\n .col-xl-4 {\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n }\n .col-xl-5 {\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n }\n .col-xl-6 {\n flex: 0 0 50%;\n max-width: 50%;\n }\n .col-xl-7 {\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n }\n .col-xl-8 {\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n }\n .col-xl-9 {\n flex: 0 0 75%;\n max-width: 75%;\n }\n .col-xl-10 {\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n }\n .col-xl-11 {\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n }\n .col-xl-12 {\n flex: 0 0 100%;\n max-width: 100%;\n }\n .order-xl-first {\n order: -1;\n }\n .order-xl-last {\n order: 13;\n }\n .order-xl-0 {\n order: 0;\n }\n .order-xl-1 {\n order: 1;\n }\n .order-xl-2 {\n order: 2;\n }\n .order-xl-3 {\n order: 3;\n }\n .order-xl-4 {\n order: 4;\n }\n .order-xl-5 {\n order: 5;\n }\n .order-xl-6 {\n order: 6;\n }\n .order-xl-7 {\n order: 7;\n }\n .order-xl-8 {\n order: 8;\n }\n .order-xl-9 {\n order: 9;\n }\n .order-xl-10 {\n order: 10;\n }\n .order-xl-11 {\n order: 11;\n }\n .order-xl-12 {\n order: 12;\n }\n .offset-xl-0 {\n margin-left: 0;\n }\n .offset-xl-1 {\n margin-left: 8.333333%;\n }\n .offset-xl-2 {\n margin-left: 16.666667%;\n }\n .offset-xl-3 {\n margin-left: 25%;\n }\n .offset-xl-4 {\n margin-left: 33.333333%;\n }\n .offset-xl-5 {\n margin-left: 41.666667%;\n }\n .offset-xl-6 {\n margin-left: 50%;\n }\n .offset-xl-7 {\n margin-left: 58.333333%;\n }\n .offset-xl-8 {\n margin-left: 66.666667%;\n }\n .offset-xl-9 {\n margin-left: 75%;\n }\n .offset-xl-10 {\n margin-left: 83.333333%;\n }\n .offset-xl-11 {\n margin-left: 91.666667%;\n }\n}\n\n.table {\n width: 100%;\n max-width: 100%;\n margin-bottom: 1rem;\n background-color: transparent;\n}\n\n.table th,\n.table td {\n padding: 0.75rem;\n vertical-align: top;\n border-top: 1px solid #dee2e6;\n}\n\n.table thead th {\n vertical-align: bottom;\n border-bottom: 2px solid #dee2e6;\n}\n\n.table tbody + tbody {\n border-top: 2px solid #dee2e6;\n}\n\n.table .table {\n background-color: #fff;\n}\n\n.table-sm th,\n.table-sm td {\n padding: 0.3rem;\n}\n\n.table-bordered {\n border: 1px solid #dee2e6;\n}\n\n.table-bordered th,\n.table-bordered td {\n border: 1px solid #dee2e6;\n}\n\n.table-bordered thead th,\n.table-bordered thead td {\n border-bottom-width: 2px;\n}\n\n.table-striped tbody tr:nth-of-type(odd) {\n background-color: rgba(0, 0, 0, 0.05);\n}\n\n.table-hover tbody tr:hover {\n background-color: rgba(0, 0, 0, 0.075);\n}\n\n.table-primary,\n.table-primary > th,\n.table-primary > td {\n background-color: #b8daff;\n}\n\n.table-hover .table-primary:hover {\n background-color: #9fcdff;\n}\n\n.table-hover .table-primary:hover > td,\n.table-hover .table-primary:hover > th {\n background-color: #9fcdff;\n}\n\n.table-secondary,\n.table-secondary > th,\n.table-secondary > td {\n background-color: #d6d8db;\n}\n\n.table-hover .table-secondary:hover {\n background-color: #c8cbcf;\n}\n\n.table-hover .table-secondary:hover > td,\n.table-hover .table-secondary:hover > th {\n background-color: #c8cbcf;\n}\n\n.table-success,\n.table-success > th,\n.table-success > td {\n background-color: #c3e6cb;\n}\n\n.table-hover .table-success:hover {\n background-color: #b1dfbb;\n}\n\n.table-hover .table-success:hover > td,\n.table-hover .table-success:hover > th {\n background-color: #b1dfbb;\n}\n\n.table-info,\n.table-info > th,\n.table-info > td {\n background-color: #bee5eb;\n}\n\n.table-hover .table-info:hover {\n background-color: #abdde5;\n}\n\n.table-hover .table-info:hover > td,\n.table-hover .table-info:hover > th {\n background-color: #abdde5;\n}\n\n.table-warning,\n.table-warning > th,\n.table-warning > td {\n background-color: #ffeeba;\n}\n\n.table-hover .table-warning:hover {\n background-color: #ffe8a1;\n}\n\n.table-hover .table-warning:hover > td,\n.table-hover .table-warning:hover > th {\n background-color: #ffe8a1;\n}\n\n.table-danger,\n.table-danger > th,\n.table-danger > td {\n background-color: #f5c6cb;\n}\n\n.table-hover .table-danger:hover {\n background-color: #f1b0b7;\n}\n\n.table-hover .table-danger:hover > td,\n.table-hover .table-danger:hover > th {\n background-color: #f1b0b7;\n}\n\n.table-light,\n.table-light > th,\n.table-light > td {\n background-color: #fdfdfe;\n}\n\n.table-hover .table-light:hover {\n background-color: #ececf6;\n}\n\n.table-hover .table-light:hover > td,\n.table-hover .table-light:hover > th {\n background-color: #ececf6;\n}\n\n.table-dark,\n.table-dark > th,\n.table-dark > td {\n background-color: #c6c8ca;\n}\n\n.table-hover .table-dark:hover {\n background-color: #b9bbbe;\n}\n\n.table-hover .table-dark:hover > td,\n.table-hover .table-dark:hover > th {\n background-color: #b9bbbe;\n}\n\n.table-active,\n.table-active > th,\n.table-active > td {\n background-color: rgba(0, 0, 0, 0.075);\n}\n\n.table-hover .table-active:hover {\n background-color: rgba(0, 0, 0, 0.075);\n}\n\n.table-hover .table-active:hover > td,\n.table-hover .table-active:hover > th {\n background-color: rgba(0, 0, 0, 0.075);\n}\n\n.table .thead-dark th {\n color: #fff;\n background-color: #212529;\n border-color: #32383e;\n}\n\n.table .thead-light th {\n color: #495057;\n background-color: #e9ecef;\n border-color: #dee2e6;\n}\n\n.table-dark {\n color: #fff;\n background-color: #212529;\n}\n\n.table-dark th,\n.table-dark td,\n.table-dark thead th {\n border-color: #32383e;\n}\n\n.table-dark.table-bordered {\n border: 0;\n}\n\n.table-dark.table-striped tbody tr:nth-of-type(odd) {\n background-color: rgba(255, 255, 255, 0.05);\n}\n\n.table-dark.table-hover tbody tr:hover {\n background-color: rgba(255, 255, 255, 0.075);\n}\n\n@media (max-width: 575.98px) {\n .table-responsive-sm {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n }\n .table-responsive-sm > .table-bordered {\n border: 0;\n }\n}\n\n@media (max-width: 767.98px) {\n .table-responsive-md {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n }\n .table-responsive-md > .table-bordered {\n border: 0;\n }\n}\n\n@media (max-width: 991.98px) {\n .table-responsive-lg {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n }\n .table-responsive-lg > .table-bordered {\n border: 0;\n }\n}\n\n@media (max-width: 1199.98px) {\n .table-responsive-xl {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n }\n .table-responsive-xl > .table-bordered {\n border: 0;\n }\n}\n\n.table-responsive {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n}\n\n.table-responsive > .table-bordered {\n border: 0;\n}\n\n.form-control {\n display: block;\n width: 100%;\n padding: 0.375rem 0.75rem;\n font-size: 1rem;\n line-height: 1.5;\n color: #495057;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid #ced4da;\n border-radius: 0.25rem;\n transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n}\n\n.form-control::-ms-expand {\n background-color: transparent;\n border: 0;\n}\n\n.form-control:focus {\n color: #495057;\n background-color: #fff;\n border-color: #80bdff;\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.form-control::placeholder {\n color: #6c757d;\n opacity: 1;\n}\n\n.form-control:disabled, .form-control[readonly] {\n background-color: #e9ecef;\n opacity: 1;\n}\n\nselect.form-control:not([size]):not([multiple]) {\n height: calc(2.25rem + 2px);\n}\n\nselect.form-control:focus::-ms-value {\n color: #495057;\n background-color: #fff;\n}\n\n.form-control-file,\n.form-control-range {\n display: block;\n width: 100%;\n}\n\n.col-form-label {\n padding-top: calc(0.375rem + 1px);\n padding-bottom: calc(0.375rem + 1px);\n margin-bottom: 0;\n font-size: inherit;\n line-height: 1.5;\n}\n\n.col-form-label-lg {\n padding-top: calc(0.5rem + 1px);\n padding-bottom: calc(0.5rem + 1px);\n font-size: 1.25rem;\n line-height: 1.5;\n}\n\n.col-form-label-sm {\n padding-top: calc(0.25rem + 1px);\n padding-bottom: calc(0.25rem + 1px);\n font-size: 0.875rem;\n line-height: 1.5;\n}\n\n.form-control-plaintext {\n display: block;\n width: 100%;\n padding-top: 0.375rem;\n padding-bottom: 0.375rem;\n margin-bottom: 0;\n line-height: 1.5;\n background-color: transparent;\n border: solid transparent;\n border-width: 1px 0;\n}\n\n.form-control-plaintext.form-control-sm, .input-group-sm > .form-control-plaintext.form-control,\n.input-group-sm > .input-group-prepend > .form-control-plaintext.input-group-text,\n.input-group-sm > .input-group-append > .form-control-plaintext.input-group-text,\n.input-group-sm > .input-group-prepend > .form-control-plaintext.btn,\n.input-group-sm > .input-group-append > .form-control-plaintext.btn, .form-control-plaintext.form-control-lg, .input-group-lg > .form-control-plaintext.form-control,\n.input-group-lg > .input-group-prepend > .form-control-plaintext.input-group-text,\n.input-group-lg > .input-group-append > .form-control-plaintext.input-group-text,\n.input-group-lg > .input-group-prepend > .form-control-plaintext.btn,\n.input-group-lg > .input-group-append > .form-control-plaintext.btn {\n padding-right: 0;\n padding-left: 0;\n}\n\n.form-control-sm, .input-group-sm > .form-control,\n.input-group-sm > .input-group-prepend > .input-group-text,\n.input-group-sm > .input-group-append > .input-group-text,\n.input-group-sm > .input-group-prepend > .btn,\n.input-group-sm > .input-group-append > .btn {\n padding: 0.25rem 0.5rem;\n font-size: 0.875rem;\n line-height: 1.5;\n border-radius: 0.2rem;\n}\n\nselect.form-control-sm:not([size]):not([multiple]), .input-group-sm > select.form-control:not([size]):not([multiple]),\n.input-group-sm > .input-group-prepend > select.input-group-text:not([size]):not([multiple]),\n.input-group-sm > .input-group-append > select.input-group-text:not([size]):not([multiple]),\n.input-group-sm > .input-group-prepend > select.btn:not([size]):not([multiple]),\n.input-group-sm > .input-group-append > select.btn:not([size]):not([multiple]) {\n height: calc(1.8125rem + 2px);\n}\n\n.form-control-lg, .input-group-lg > .form-control,\n.input-group-lg > .input-group-prepend > .input-group-text,\n.input-group-lg > .input-group-append > .input-group-text,\n.input-group-lg > .input-group-prepend > .btn,\n.input-group-lg > .input-group-append > .btn {\n padding: 0.5rem 1rem;\n font-size: 1.25rem;\n line-height: 1.5;\n border-radius: 0.3rem;\n}\n\nselect.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.form-control:not([size]):not([multiple]),\n.input-group-lg > .input-group-prepend > select.input-group-text:not([size]):not([multiple]),\n.input-group-lg > .input-group-append > select.input-group-text:not([size]):not([multiple]),\n.input-group-lg > .input-group-prepend > select.btn:not([size]):not([multiple]),\n.input-group-lg > .input-group-append > select.btn:not([size]):not([multiple]) {\n height: calc(2.875rem + 2px);\n}\n\n.form-group {\n margin-bottom: 1rem;\n}\n\n.form-text {\n display: block;\n margin-top: 0.25rem;\n}\n\n.form-row {\n display: flex;\n flex-wrap: wrap;\n margin-right: -5px;\n margin-left: -5px;\n}\n\n.form-row > .col,\n.form-row > [class*=\"col-\"] {\n padding-right: 5px;\n padding-left: 5px;\n}\n\n.form-check {\n position: relative;\n display: block;\n padding-left: 1.25rem;\n}\n\n.form-check-input {\n position: absolute;\n margin-top: 0.3rem;\n margin-left: -1.25rem;\n}\n\n.form-check-input:disabled ~ .form-check-label {\n color: #6c757d;\n}\n\n.form-check-label {\n margin-bottom: 0;\n}\n\n.form-check-inline {\n display: inline-flex;\n align-items: center;\n padding-left: 0;\n margin-right: 0.75rem;\n}\n\n.form-check-inline .form-check-input {\n position: static;\n margin-top: 0;\n margin-right: 0.3125rem;\n margin-left: 0;\n}\n\n.valid-feedback {\n display: none;\n width: 100%;\n margin-top: 0.25rem;\n font-size: 80%;\n color: #28a745;\n}\n\n.valid-tooltip {\n position: absolute;\n top: 100%;\n z-index: 5;\n display: none;\n max-width: 100%;\n padding: .5rem;\n margin-top: .1rem;\n font-size: .875rem;\n line-height: 1;\n color: #fff;\n background-color: rgba(40, 167, 69, 0.8);\n border-radius: .2rem;\n}\n\n.was-validated .form-control:valid, .form-control.is-valid, .was-validated\n.custom-select:valid,\n.custom-select.is-valid {\n border-color: #28a745;\n}\n\n.was-validated .form-control:valid:focus, .form-control.is-valid:focus, .was-validated\n.custom-select:valid:focus,\n.custom-select.is-valid:focus {\n border-color: #28a745;\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);\n}\n\n.was-validated .form-control:valid ~ .valid-feedback,\n.was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback,\n.form-control.is-valid ~ .valid-tooltip, .was-validated\n.custom-select:valid ~ .valid-feedback,\n.was-validated\n.custom-select:valid ~ .valid-tooltip,\n.custom-select.is-valid ~ .valid-feedback,\n.custom-select.is-valid ~ .valid-tooltip {\n display: block;\n}\n\n.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {\n color: #28a745;\n}\n\n.was-validated .form-check-input:valid ~ .valid-feedback,\n.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,\n.form-check-input.is-valid ~ .valid-tooltip {\n display: block;\n}\n\n.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {\n color: #28a745;\n}\n\n.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {\n background-color: #71dd8a;\n}\n\n.was-validated .custom-control-input:valid ~ .valid-feedback,\n.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback,\n.custom-control-input.is-valid ~ .valid-tooltip {\n display: block;\n}\n\n.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {\n background-color: #34ce57;\n}\n\n.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {\n box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(40, 167, 69, 0.25);\n}\n\n.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {\n border-color: #28a745;\n}\n\n.was-validated .custom-file-input:valid ~ .custom-file-label::before, .custom-file-input.is-valid ~ .custom-file-label::before {\n border-color: inherit;\n}\n\n.was-validated .custom-file-input:valid ~ .valid-feedback,\n.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback,\n.custom-file-input.is-valid ~ .valid-tooltip {\n display: block;\n}\n\n.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);\n}\n\n.invalid-feedback {\n display: none;\n width: 100%;\n margin-top: 0.25rem;\n font-size: 80%;\n color: #dc3545;\n}\n\n.invalid-tooltip {\n position: absolute;\n top: 100%;\n z-index: 5;\n display: none;\n max-width: 100%;\n padding: .5rem;\n margin-top: .1rem;\n font-size: .875rem;\n line-height: 1;\n color: #fff;\n background-color: rgba(220, 53, 69, 0.8);\n border-radius: .2rem;\n}\n\n.was-validated .form-control:invalid, .form-control.is-invalid, .was-validated\n.custom-select:invalid,\n.custom-select.is-invalid {\n border-color: #dc3545;\n}\n\n.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus, .was-validated\n.custom-select:invalid:focus,\n.custom-select.is-invalid:focus {\n border-color: #dc3545;\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);\n}\n\n.was-validated .form-control:invalid ~ .invalid-feedback,\n.was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback,\n.form-control.is-invalid ~ .invalid-tooltip, .was-validated\n.custom-select:invalid ~ .invalid-feedback,\n.was-validated\n.custom-select:invalid ~ .invalid-tooltip,\n.custom-select.is-invalid ~ .invalid-feedback,\n.custom-select.is-invalid ~ .invalid-tooltip {\n display: block;\n}\n\n.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {\n color: #dc3545;\n}\n\n.was-validated .form-check-input:invalid ~ .invalid-feedback,\n.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,\n.form-check-input.is-invalid ~ .invalid-tooltip {\n display: block;\n}\n\n.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {\n color: #dc3545;\n}\n\n.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {\n background-color: #efa2a9;\n}\n\n.was-validated .custom-control-input:invalid ~ .invalid-feedback,\n.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback,\n.custom-control-input.is-invalid ~ .invalid-tooltip {\n display: block;\n}\n\n.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {\n background-color: #e4606d;\n}\n\n.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {\n box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(220, 53, 69, 0.25);\n}\n\n.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {\n border-color: #dc3545;\n}\n\n.was-validated .custom-file-input:invalid ~ .custom-file-label::before, .custom-file-input.is-invalid ~ .custom-file-label::before {\n border-color: inherit;\n}\n\n.was-validated .custom-file-input:invalid ~ .invalid-feedback,\n.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback,\n.custom-file-input.is-invalid ~ .invalid-tooltip {\n display: block;\n}\n\n.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);\n}\n\n.form-inline {\n display: flex;\n flex-flow: row wrap;\n align-items: center;\n}\n\n.form-inline .form-check {\n width: 100%;\n}\n\n@media (min-width: 576px) {\n .form-inline label {\n display: flex;\n align-items: center;\n justify-content: center;\n margin-bottom: 0;\n }\n .form-inline .form-group {\n display: flex;\n flex: 0 0 auto;\n flex-flow: row wrap;\n align-items: center;\n margin-bottom: 0;\n }\n .form-inline .form-control {\n display: inline-block;\n width: auto;\n vertical-align: middle;\n }\n .form-inline .form-control-plaintext {\n display: inline-block;\n }\n .form-inline .input-group {\n width: auto;\n }\n .form-inline .form-check {\n display: flex;\n align-items: center;\n justify-content: center;\n width: auto;\n padding-left: 0;\n }\n .form-inline .form-check-input {\n position: relative;\n margin-top: 0;\n margin-right: 0.25rem;\n margin-left: 0;\n }\n .form-inline .custom-control {\n align-items: center;\n justify-content: center;\n }\n .form-inline .custom-control-label {\n margin-bottom: 0;\n }\n}\n\n.btn {\n display: inline-block;\n font-weight: 400;\n text-align: center;\n white-space: nowrap;\n vertical-align: middle;\n user-select: none;\n border: 1px solid transparent;\n padding: 0.375rem 0.75rem;\n font-size: 1rem;\n line-height: 1.5;\n border-radius: 0.25rem;\n transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n}\n\n.btn:hover, .btn:focus {\n text-decoration: none;\n}\n\n.btn:focus, .btn.focus {\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.btn.disabled, .btn:disabled {\n opacity: 0.65;\n}\n\n.btn:not(:disabled):not(.disabled) {\n cursor: pointer;\n}\n\n.btn:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled).active {\n background-image: none;\n}\n\na.btn.disabled,\nfieldset:disabled a.btn {\n pointer-events: none;\n}\n\n.btn-primary {\n color: #fff;\n background-color: #007bff;\n border-color: #007bff;\n}\n\n.btn-primary:hover {\n color: #fff;\n background-color: #0069d9;\n border-color: #0062cc;\n}\n\n.btn-primary:focus, .btn-primary.focus {\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);\n}\n\n.btn-primary.disabled, .btn-primary:disabled {\n color: #fff;\n background-color: #007bff;\n border-color: #007bff;\n}\n\n.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,\n.show > .btn-primary.dropdown-toggle {\n color: #fff;\n background-color: #0062cc;\n border-color: #005cbf;\n}\n\n.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,\n.show > .btn-primary.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);\n}\n\n.btn-secondary {\n color: #fff;\n background-color: #6c757d;\n border-color: #6c757d;\n}\n\n.btn-secondary:hover {\n color: #fff;\n background-color: #5a6268;\n border-color: #545b62;\n}\n\n.btn-secondary:focus, .btn-secondary.focus {\n box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);\n}\n\n.btn-secondary.disabled, .btn-secondary:disabled {\n color: #fff;\n background-color: #6c757d;\n border-color: #6c757d;\n}\n\n.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,\n.show > .btn-secondary.dropdown-toggle {\n color: #fff;\n background-color: #545b62;\n border-color: #4e555b;\n}\n\n.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus,\n.show > .btn-secondary.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);\n}\n\n.btn-success {\n color: #fff;\n background-color: #28a745;\n border-color: #28a745;\n}\n\n.btn-success:hover {\n color: #fff;\n background-color: #218838;\n border-color: #1e7e34;\n}\n\n.btn-success:focus, .btn-success.focus {\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);\n}\n\n.btn-success.disabled, .btn-success:disabled {\n color: #fff;\n background-color: #28a745;\n border-color: #28a745;\n}\n\n.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active,\n.show > .btn-success.dropdown-toggle {\n color: #fff;\n background-color: #1e7e34;\n border-color: #1c7430;\n}\n\n.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus,\n.show > .btn-success.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);\n}\n\n.btn-info {\n color: #fff;\n background-color: #17a2b8;\n border-color: #17a2b8;\n}\n\n.btn-info:hover {\n color: #fff;\n background-color: #138496;\n border-color: #117a8b;\n}\n\n.btn-info:focus, .btn-info.focus {\n box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);\n}\n\n.btn-info.disabled, .btn-info:disabled {\n color: #fff;\n background-color: #17a2b8;\n border-color: #17a2b8;\n}\n\n.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active,\n.show > .btn-info.dropdown-toggle {\n color: #fff;\n background-color: #117a8b;\n border-color: #10707f;\n}\n\n.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus,\n.show > .btn-info.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);\n}\n\n.btn-warning {\n color: #212529;\n background-color: #ffc107;\n border-color: #ffc107;\n}\n\n.btn-warning:hover {\n color: #212529;\n background-color: #e0a800;\n border-color: #d39e00;\n}\n\n.btn-warning:focus, .btn-warning.focus {\n box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);\n}\n\n.btn-warning.disabled, .btn-warning:disabled {\n color: #212529;\n background-color: #ffc107;\n border-color: #ffc107;\n}\n\n.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active,\n.show > .btn-warning.dropdown-toggle {\n color: #212529;\n background-color: #d39e00;\n border-color: #c69500;\n}\n\n.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus,\n.show > .btn-warning.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);\n}\n\n.btn-danger {\n color: #fff;\n background-color: #dc3545;\n border-color: #dc3545;\n}\n\n.btn-danger:hover {\n color: #fff;\n background-color: #c82333;\n border-color: #bd2130;\n}\n\n.btn-danger:focus, .btn-danger.focus {\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);\n}\n\n.btn-danger.disabled, .btn-danger:disabled {\n color: #fff;\n background-color: #dc3545;\n border-color: #dc3545;\n}\n\n.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active,\n.show > .btn-danger.dropdown-toggle {\n color: #fff;\n background-color: #bd2130;\n border-color: #b21f2d;\n}\n\n.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus,\n.show > .btn-danger.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);\n}\n\n.btn-light {\n color: #212529;\n background-color: #f8f9fa;\n border-color: #f8f9fa;\n}\n\n.btn-light:hover {\n color: #212529;\n background-color: #e2e6ea;\n border-color: #dae0e5;\n}\n\n.btn-light:focus, .btn-light.focus {\n box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);\n}\n\n.btn-light.disabled, .btn-light:disabled {\n color: #212529;\n background-color: #f8f9fa;\n border-color: #f8f9fa;\n}\n\n.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active,\n.show > .btn-light.dropdown-toggle {\n color: #212529;\n background-color: #dae0e5;\n border-color: #d3d9df;\n}\n\n.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus,\n.show > .btn-light.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);\n}\n\n.btn-dark {\n color: #fff;\n background-color: #343a40;\n border-color: #343a40;\n}\n\n.btn-dark:hover {\n color: #fff;\n background-color: #23272b;\n border-color: #1d2124;\n}\n\n.btn-dark:focus, .btn-dark.focus {\n box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);\n}\n\n.btn-dark.disabled, .btn-dark:disabled {\n color: #fff;\n background-color: #343a40;\n border-color: #343a40;\n}\n\n.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active,\n.show > .btn-dark.dropdown-toggle {\n color: #fff;\n background-color: #1d2124;\n border-color: #171a1d;\n}\n\n.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus,\n.show > .btn-dark.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);\n}\n\n.btn-outline-primary {\n color: #007bff;\n background-color: transparent;\n background-image: none;\n border-color: #007bff;\n}\n\n.btn-outline-primary:hover {\n color: #fff;\n background-color: #007bff;\n border-color: #007bff;\n}\n\n.btn-outline-primary:focus, .btn-outline-primary.focus {\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);\n}\n\n.btn-outline-primary.disabled, .btn-outline-primary:disabled {\n color: #007bff;\n background-color: transparent;\n}\n\n.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,\n.show > .btn-outline-primary.dropdown-toggle {\n color: #fff;\n background-color: #007bff;\n border-color: #007bff;\n}\n\n.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-primary.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);\n}\n\n.btn-outline-secondary {\n color: #6c757d;\n background-color: transparent;\n background-image: none;\n border-color: #6c757d;\n}\n\n.btn-outline-secondary:hover {\n color: #fff;\n background-color: #6c757d;\n border-color: #6c757d;\n}\n\n.btn-outline-secondary:focus, .btn-outline-secondary.focus {\n box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);\n}\n\n.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {\n color: #6c757d;\n background-color: transparent;\n}\n\n.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active,\n.show > .btn-outline-secondary.dropdown-toggle {\n color: #fff;\n background-color: #6c757d;\n border-color: #6c757d;\n}\n\n.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-secondary.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);\n}\n\n.btn-outline-success {\n color: #28a745;\n background-color: transparent;\n background-image: none;\n border-color: #28a745;\n}\n\n.btn-outline-success:hover {\n color: #fff;\n background-color: #28a745;\n border-color: #28a745;\n}\n\n.btn-outline-success:focus, .btn-outline-success.focus {\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);\n}\n\n.btn-outline-success.disabled, .btn-outline-success:disabled {\n color: #28a745;\n background-color: transparent;\n}\n\n.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active,\n.show > .btn-outline-success.dropdown-toggle {\n color: #fff;\n background-color: #28a745;\n border-color: #28a745;\n}\n\n.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-success.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);\n}\n\n.btn-outline-info {\n color: #17a2b8;\n background-color: transparent;\n background-image: none;\n border-color: #17a2b8;\n}\n\n.btn-outline-info:hover {\n color: #fff;\n background-color: #17a2b8;\n border-color: #17a2b8;\n}\n\n.btn-outline-info:focus, .btn-outline-info.focus {\n box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);\n}\n\n.btn-outline-info.disabled, .btn-outline-info:disabled {\n color: #17a2b8;\n background-color: transparent;\n}\n\n.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active,\n.show > .btn-outline-info.dropdown-toggle {\n color: #fff;\n background-color: #17a2b8;\n border-color: #17a2b8;\n}\n\n.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-info.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);\n}\n\n.btn-outline-warning {\n color: #ffc107;\n background-color: transparent;\n background-image: none;\n border-color: #ffc107;\n}\n\n.btn-outline-warning:hover {\n color: #212529;\n background-color: #ffc107;\n border-color: #ffc107;\n}\n\n.btn-outline-warning:focus, .btn-outline-warning.focus {\n box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);\n}\n\n.btn-outline-warning.disabled, .btn-outline-warning:disabled {\n color: #ffc107;\n background-color: transparent;\n}\n\n.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active,\n.show > .btn-outline-warning.dropdown-toggle {\n color: #212529;\n background-color: #ffc107;\n border-color: #ffc107;\n}\n\n.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-warning.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);\n}\n\n.btn-outline-danger {\n color: #dc3545;\n background-color: transparent;\n background-image: none;\n border-color: #dc3545;\n}\n\n.btn-outline-danger:hover {\n color: #fff;\n background-color: #dc3545;\n border-color: #dc3545;\n}\n\n.btn-outline-danger:focus, .btn-outline-danger.focus {\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);\n}\n\n.btn-outline-danger.disabled, .btn-outline-danger:disabled {\n color: #dc3545;\n background-color: transparent;\n}\n\n.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active,\n.show > .btn-outline-danger.dropdown-toggle {\n color: #fff;\n background-color: #dc3545;\n border-color: #dc3545;\n}\n\n.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-danger.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);\n}\n\n.btn-outline-light {\n color: #f8f9fa;\n background-color: transparent;\n background-image: none;\n border-color: #f8f9fa;\n}\n\n.btn-outline-light:hover {\n color: #212529;\n background-color: #f8f9fa;\n border-color: #f8f9fa;\n}\n\n.btn-outline-light:focus, .btn-outline-light.focus {\n box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);\n}\n\n.btn-outline-light.disabled, .btn-outline-light:disabled {\n color: #f8f9fa;\n background-color: transparent;\n}\n\n.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active,\n.show > .btn-outline-light.dropdown-toggle {\n color: #212529;\n background-color: #f8f9fa;\n border-color: #f8f9fa;\n}\n\n.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-light.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);\n}\n\n.btn-outline-dark {\n color: #343a40;\n background-color: transparent;\n background-image: none;\n border-color: #343a40;\n}\n\n.btn-outline-dark:hover {\n color: #fff;\n background-color: #343a40;\n border-color: #343a40;\n}\n\n.btn-outline-dark:focus, .btn-outline-dark.focus {\n box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);\n}\n\n.btn-outline-dark.disabled, .btn-outline-dark:disabled {\n color: #343a40;\n background-color: transparent;\n}\n\n.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active,\n.show > .btn-outline-dark.dropdown-toggle {\n color: #fff;\n background-color: #343a40;\n border-color: #343a40;\n}\n\n.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-dark.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);\n}\n\n.btn-link {\n font-weight: 400;\n color: #007bff;\n background-color: transparent;\n}\n\n.btn-link:hover {\n color: #0056b3;\n text-decoration: underline;\n background-color: transparent;\n border-color: transparent;\n}\n\n.btn-link:focus, .btn-link.focus {\n text-decoration: underline;\n border-color: transparent;\n box-shadow: none;\n}\n\n.btn-link:disabled, .btn-link.disabled {\n color: #6c757d;\n}\n\n.btn-lg, .btn-group-lg > .btn {\n padding: 0.5rem 1rem;\n font-size: 1.25rem;\n line-height: 1.5;\n border-radius: 0.3rem;\n}\n\n.btn-sm, .btn-group-sm > .btn {\n padding: 0.25rem 0.5rem;\n font-size: 0.875rem;\n line-height: 1.5;\n border-radius: 0.2rem;\n}\n\n.btn-block {\n display: block;\n width: 100%;\n}\n\n.btn-block + .btn-block {\n margin-top: 0.5rem;\n}\n\ninput[type=\"submit\"].btn-block,\ninput[type=\"reset\"].btn-block,\ninput[type=\"button\"].btn-block {\n width: 100%;\n}\n\n.fade {\n opacity: 0;\n transition: opacity 0.15s linear;\n}\n\n.fade.show {\n opacity: 1;\n}\n\n.collapse {\n display: none;\n}\n\n.collapse.show {\n display: block;\n}\n\ntr.collapse.show {\n display: table-row;\n}\n\ntbody.collapse.show {\n display: table-row-group;\n}\n\n.collapsing {\n position: relative;\n height: 0;\n overflow: hidden;\n transition: height 0.35s ease;\n}\n\n.dropup,\n.dropdown {\n position: relative;\n}\n\n.dropdown-toggle::after {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0.3em solid;\n border-right: 0.3em solid transparent;\n border-bottom: 0;\n border-left: 0.3em solid transparent;\n}\n\n.dropdown-toggle:empty::after {\n margin-left: 0;\n}\n\n.dropdown-menu {\n position: absolute;\n top: 100%;\n left: 0;\n z-index: 1000;\n display: none;\n float: left;\n min-width: 10rem;\n padding: 0.5rem 0;\n margin: 0.125rem 0 0;\n font-size: 1rem;\n color: #212529;\n text-align: left;\n list-style: none;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid rgba(0, 0, 0, 0.15);\n border-radius: 0.25rem;\n}\n\n.dropup .dropdown-menu {\n margin-top: 0;\n margin-bottom: 0.125rem;\n}\n\n.dropup .dropdown-toggle::after {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0;\n border-right: 0.3em solid transparent;\n border-bottom: 0.3em solid;\n border-left: 0.3em solid transparent;\n}\n\n.dropup .dropdown-toggle:empty::after {\n margin-left: 0;\n}\n\n.dropright .dropdown-menu {\n margin-top: 0;\n margin-left: 0.125rem;\n}\n\n.dropright .dropdown-toggle::after {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0.3em solid transparent;\n border-bottom: 0.3em solid transparent;\n border-left: 0.3em solid;\n}\n\n.dropright .dropdown-toggle:empty::after {\n margin-left: 0;\n}\n\n.dropright .dropdown-toggle::after {\n vertical-align: 0;\n}\n\n.dropleft .dropdown-menu {\n margin-top: 0;\n margin-right: 0.125rem;\n}\n\n.dropleft .dropdown-toggle::after {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n}\n\n.dropleft .dropdown-toggle::after {\n display: none;\n}\n\n.dropleft .dropdown-toggle::before {\n display: inline-block;\n width: 0;\n height: 0;\n margin-right: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0.3em solid transparent;\n border-right: 0.3em solid;\n border-bottom: 0.3em solid transparent;\n}\n\n.dropleft .dropdown-toggle:empty::after {\n margin-left: 0;\n}\n\n.dropleft .dropdown-toggle::before {\n vertical-align: 0;\n}\n\n.dropdown-divider {\n height: 0;\n margin: 0.5rem 0;\n overflow: hidden;\n border-top: 1px solid #e9ecef;\n}\n\n.dropdown-item {\n display: block;\n width: 100%;\n padding: 0.25rem 1.5rem;\n clear: both;\n font-weight: 400;\n color: #212529;\n text-align: inherit;\n white-space: nowrap;\n background-color: transparent;\n border: 0;\n}\n\n.dropdown-item:hover, .dropdown-item:focus {\n color: #16181b;\n text-decoration: none;\n background-color: #f8f9fa;\n}\n\n.dropdown-item.active, .dropdown-item:active {\n color: #fff;\n text-decoration: none;\n background-color: #007bff;\n}\n\n.dropdown-item.disabled, .dropdown-item:disabled {\n color: #6c757d;\n background-color: transparent;\n}\n\n.dropdown-menu.show {\n display: block;\n}\n\n.dropdown-header {\n display: block;\n padding: 0.5rem 1.5rem;\n margin-bottom: 0;\n font-size: 0.875rem;\n color: #6c757d;\n white-space: nowrap;\n}\n\n.btn-group,\n.btn-group-vertical {\n position: relative;\n display: inline-flex;\n vertical-align: middle;\n}\n\n.btn-group > .btn,\n.btn-group-vertical > .btn {\n position: relative;\n flex: 0 1 auto;\n}\n\n.btn-group > .btn:hover,\n.btn-group-vertical > .btn:hover {\n z-index: 1;\n}\n\n.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,\n.btn-group-vertical > .btn:focus,\n.btn-group-vertical > .btn:active,\n.btn-group-vertical > .btn.active {\n z-index: 1;\n}\n\n.btn-group .btn + .btn,\n.btn-group .btn + .btn-group,\n.btn-group .btn-group + .btn,\n.btn-group .btn-group + .btn-group,\n.btn-group-vertical .btn + .btn,\n.btn-group-vertical .btn + .btn-group,\n.btn-group-vertical .btn-group + .btn,\n.btn-group-vertical .btn-group + .btn-group {\n margin-left: -1px;\n}\n\n.btn-toolbar {\n display: flex;\n flex-wrap: wrap;\n justify-content: flex-start;\n}\n\n.btn-toolbar .input-group {\n width: auto;\n}\n\n.btn-group > .btn:first-child {\n margin-left: 0;\n}\n\n.btn-group > .btn:not(:last-child):not(.dropdown-toggle),\n.btn-group > .btn-group:not(:last-child) > .btn {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n\n.btn-group > .btn:not(:first-child),\n.btn-group > .btn-group:not(:first-child) > .btn {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.dropdown-toggle-split {\n padding-right: 0.5625rem;\n padding-left: 0.5625rem;\n}\n\n.dropdown-toggle-split::after {\n margin-left: 0;\n}\n\n.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {\n padding-right: 0.375rem;\n padding-left: 0.375rem;\n}\n\n.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {\n padding-right: 0.75rem;\n padding-left: 0.75rem;\n}\n\n.btn-group-vertical {\n flex-direction: column;\n align-items: flex-start;\n justify-content: center;\n}\n\n.btn-group-vertical .btn,\n.btn-group-vertical .btn-group {\n width: 100%;\n}\n\n.btn-group-vertical > .btn + .btn,\n.btn-group-vertical > .btn + .btn-group,\n.btn-group-vertical > .btn-group + .btn,\n.btn-group-vertical > .btn-group + .btn-group {\n margin-top: -1px;\n margin-left: 0;\n}\n\n.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),\n.btn-group-vertical > .btn-group:not(:last-child) > .btn {\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.btn-group-vertical > .btn:not(:first-child),\n.btn-group-vertical > .btn-group:not(:first-child) > .btn {\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n}\n\n.btn-group-toggle > .btn,\n.btn-group-toggle > .btn-group > .btn {\n margin-bottom: 0;\n}\n\n.btn-group-toggle > .btn input[type=\"radio\"],\n.btn-group-toggle > .btn input[type=\"checkbox\"],\n.btn-group-toggle > .btn-group > .btn input[type=\"radio\"],\n.btn-group-toggle > .btn-group > .btn input[type=\"checkbox\"] {\n position: absolute;\n clip: rect(0, 0, 0, 0);\n pointer-events: none;\n}\n\n.input-group {\n position: relative;\n display: flex;\n flex-wrap: wrap;\n align-items: stretch;\n width: 100%;\n}\n\n.input-group > .form-control,\n.input-group > .custom-select,\n.input-group > .custom-file {\n position: relative;\n flex: 1 1 auto;\n width: 1%;\n margin-bottom: 0;\n}\n\n.input-group > .form-control:focus,\n.input-group > .custom-select:focus,\n.input-group > .custom-file:focus {\n z-index: 3;\n}\n\n.input-group > .form-control + .form-control,\n.input-group > .form-control + .custom-select,\n.input-group > .form-control + .custom-file,\n.input-group > .custom-select + .form-control,\n.input-group > .custom-select + .custom-select,\n.input-group > .custom-select + .custom-file,\n.input-group > .custom-file + .form-control,\n.input-group > .custom-file + .custom-select,\n.input-group > .custom-file + .custom-file {\n margin-left: -1px;\n}\n\n.input-group > .form-control:not(:last-child),\n.input-group > .custom-select:not(:last-child) {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n\n.input-group > .form-control:not(:first-child),\n.input-group > .custom-select:not(:first-child) {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.input-group > .custom-file {\n display: flex;\n align-items: center;\n}\n\n.input-group > .custom-file:not(:last-child) .custom-file-label,\n.input-group > .custom-file:not(:last-child) .custom-file-label::before {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n\n.input-group > .custom-file:not(:first-child) .custom-file-label,\n.input-group > .custom-file:not(:first-child) .custom-file-label::before {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.input-group-prepend,\n.input-group-append {\n display: flex;\n}\n\n.input-group-prepend .btn,\n.input-group-append .btn {\n position: relative;\n z-index: 2;\n}\n\n.input-group-prepend .btn + .btn,\n.input-group-prepend .btn + .input-group-text,\n.input-group-prepend .input-group-text + .input-group-text,\n.input-group-prepend .input-group-text + .btn,\n.input-group-append .btn + .btn,\n.input-group-append .btn + .input-group-text,\n.input-group-append .input-group-text + .input-group-text,\n.input-group-append .input-group-text + .btn {\n margin-left: -1px;\n}\n\n.input-group-prepend {\n margin-right: -1px;\n}\n\n.input-group-append {\n margin-left: -1px;\n}\n\n.input-group-text {\n display: flex;\n align-items: center;\n padding: 0.375rem 0.75rem;\n margin-bottom: 0;\n font-size: 1rem;\n font-weight: 400;\n line-height: 1.5;\n color: #495057;\n text-align: center;\n white-space: nowrap;\n background-color: #e9ecef;\n border: 1px solid #ced4da;\n border-radius: 0.25rem;\n}\n\n.input-group-text input[type=\"radio\"],\n.input-group-text input[type=\"checkbox\"] {\n margin-top: 0;\n}\n\n.input-group > .input-group-prepend > .btn,\n.input-group > .input-group-prepend > .input-group-text,\n.input-group > .input-group-append:not(:last-child) > .btn,\n.input-group > .input-group-append:not(:last-child) > .input-group-text,\n.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n\n.input-group > .input-group-append > .btn,\n.input-group > .input-group-append > .input-group-text,\n.input-group > .input-group-prepend:not(:first-child) > .btn,\n.input-group > .input-group-prepend:not(:first-child) > .input-group-text,\n.input-group > .input-group-prepend:first-child > .btn:not(:first-child),\n.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.custom-control {\n position: relative;\n display: block;\n min-height: 1.5rem;\n padding-left: 1.5rem;\n}\n\n.custom-control-inline {\n display: inline-flex;\n margin-right: 1rem;\n}\n\n.custom-control-input {\n position: absolute;\n z-index: -1;\n opacity: 0;\n}\n\n.custom-control-input:checked ~ .custom-control-label::before {\n color: #fff;\n background-color: #007bff;\n}\n\n.custom-control-input:focus ~ .custom-control-label::before {\n box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.custom-control-input:active ~ .custom-control-label::before {\n color: #fff;\n background-color: #b3d7ff;\n}\n\n.custom-control-input:disabled ~ .custom-control-label {\n color: #6c757d;\n}\n\n.custom-control-input:disabled ~ .custom-control-label::before {\n background-color: #e9ecef;\n}\n\n.custom-control-label {\n margin-bottom: 0;\n}\n\n.custom-control-label::before {\n position: absolute;\n top: 0.25rem;\n left: 0;\n display: block;\n width: 1rem;\n height: 1rem;\n pointer-events: none;\n content: \"\";\n user-select: none;\n background-color: #dee2e6;\n}\n\n.custom-control-label::after {\n position: absolute;\n top: 0.25rem;\n left: 0;\n display: block;\n width: 1rem;\n height: 1rem;\n content: \"\";\n background-repeat: no-repeat;\n background-position: center center;\n background-size: 50% 50%;\n}\n\n.custom-checkbox .custom-control-label::before {\n border-radius: 0.25rem;\n}\n\n.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {\n background-color: #007bff;\n}\n\n.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {\n background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E\");\n}\n\n.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {\n background-color: #007bff;\n}\n\n.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {\n background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E\");\n}\n\n.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {\n background-color: rgba(0, 123, 255, 0.5);\n}\n\n.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {\n background-color: rgba(0, 123, 255, 0.5);\n}\n\n.custom-radio .custom-control-label::before {\n border-radius: 50%;\n}\n\n.custom-radio .custom-control-input:checked ~ .custom-control-label::before {\n background-color: #007bff;\n}\n\n.custom-radio .custom-control-input:checked ~ .custom-control-label::after {\n background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E\");\n}\n\n.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {\n background-color: rgba(0, 123, 255, 0.5);\n}\n\n.custom-select {\n display: inline-block;\n width: 100%;\n height: calc(2.25rem + 2px);\n padding: 0.375rem 1.75rem 0.375rem 0.75rem;\n line-height: 1.5;\n color: #495057;\n vertical-align: middle;\n background: #fff url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E\") no-repeat right 0.75rem center;\n background-size: 8px 10px;\n border: 1px solid #ced4da;\n border-radius: 0.25rem;\n appearance: none;\n}\n\n.custom-select:focus {\n border-color: #80bdff;\n outline: 0;\n box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 5px rgba(128, 189, 255, 0.5);\n}\n\n.custom-select:focus::-ms-value {\n color: #495057;\n background-color: #fff;\n}\n\n.custom-select[multiple], .custom-select[size]:not([size=\"1\"]) {\n height: auto;\n padding-right: 0.75rem;\n background-image: none;\n}\n\n.custom-select:disabled {\n color: #6c757d;\n background-color: #e9ecef;\n}\n\n.custom-select::-ms-expand {\n opacity: 0;\n}\n\n.custom-select-sm {\n height: calc(1.8125rem + 2px);\n padding-top: 0.375rem;\n padding-bottom: 0.375rem;\n font-size: 75%;\n}\n\n.custom-select-lg {\n height: calc(2.875rem + 2px);\n padding-top: 0.375rem;\n padding-bottom: 0.375rem;\n font-size: 125%;\n}\n\n.custom-file {\n position: relative;\n display: inline-block;\n width: 100%;\n height: calc(2.25rem + 2px);\n margin-bottom: 0;\n}\n\n.custom-file-input {\n position: relative;\n z-index: 2;\n width: 100%;\n height: calc(2.25rem + 2px);\n margin: 0;\n opacity: 0;\n}\n\n.custom-file-input:focus ~ .custom-file-control {\n border-color: #80bdff;\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.custom-file-input:focus ~ .custom-file-control::before {\n border-color: #80bdff;\n}\n\n.custom-file-input:lang(en) ~ .custom-file-label::after {\n content: \"Browse\";\n}\n\n.custom-file-label {\n position: absolute;\n top: 0;\n right: 0;\n left: 0;\n z-index: 1;\n height: calc(2.25rem + 2px);\n padding: 0.375rem 0.75rem;\n line-height: 1.5;\n color: #495057;\n background-color: #fff;\n border: 1px solid #ced4da;\n border-radius: 0.25rem;\n}\n\n.custom-file-label::after {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n z-index: 3;\n display: block;\n height: calc(calc(2.25rem + 2px) - 1px * 2);\n padding: 0.375rem 0.75rem;\n line-height: 1.5;\n color: #495057;\n content: \"Browse\";\n background-color: #e9ecef;\n border-left: 1px solid #ced4da;\n border-radius: 0 0.25rem 0.25rem 0;\n}\n\n.nav {\n display: flex;\n flex-wrap: wrap;\n padding-left: 0;\n margin-bottom: 0;\n list-style: none;\n}\n\n.nav-link {\n display: block;\n padding: 0.5rem 1rem;\n}\n\n.nav-link:hover, .nav-link:focus {\n text-decoration: none;\n}\n\n.nav-link.disabled {\n color: #6c757d;\n}\n\n.nav-tabs {\n border-bottom: 1px solid #dee2e6;\n}\n\n.nav-tabs .nav-item {\n margin-bottom: -1px;\n}\n\n.nav-tabs .nav-link {\n border: 1px solid transparent;\n border-top-left-radius: 0.25rem;\n border-top-right-radius: 0.25rem;\n}\n\n.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {\n border-color: #e9ecef #e9ecef #dee2e6;\n}\n\n.nav-tabs .nav-link.disabled {\n color: #6c757d;\n background-color: transparent;\n border-color: transparent;\n}\n\n.nav-tabs .nav-link.active,\n.nav-tabs .nav-item.show .nav-link {\n color: #495057;\n background-color: #fff;\n border-color: #dee2e6 #dee2e6 #fff;\n}\n\n.nav-tabs .dropdown-menu {\n margin-top: -1px;\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n}\n\n.nav-pills .nav-link {\n border-radius: 0.25rem;\n}\n\n.nav-pills .nav-link.active,\n.nav-pills .show > .nav-link {\n color: #fff;\n background-color: #007bff;\n}\n\n.nav-fill .nav-item {\n flex: 1 1 auto;\n text-align: center;\n}\n\n.nav-justified .nav-item {\n flex-basis: 0;\n flex-grow: 1;\n text-align: center;\n}\n\n.tab-content > .tab-pane {\n display: none;\n}\n\n.tab-content > .active {\n display: block;\n}\n\n.navbar {\n position: relative;\n display: flex;\n flex-wrap: wrap;\n align-items: center;\n justify-content: space-between;\n padding: 0.5rem 1rem;\n}\n\n.navbar > .container,\n.navbar > .container-fluid {\n display: flex;\n flex-wrap: wrap;\n align-items: center;\n justify-content: space-between;\n}\n\n.navbar-brand {\n display: inline-block;\n padding-top: 0.3125rem;\n padding-bottom: 0.3125rem;\n margin-right: 1rem;\n font-size: 1.25rem;\n line-height: inherit;\n white-space: nowrap;\n}\n\n.navbar-brand:hover, .navbar-brand:focus {\n text-decoration: none;\n}\n\n.navbar-nav {\n display: flex;\n flex-direction: column;\n padding-left: 0;\n margin-bottom: 0;\n list-style: none;\n}\n\n.navbar-nav .nav-link {\n padding-right: 0;\n padding-left: 0;\n}\n\n.navbar-nav .dropdown-menu {\n position: static;\n float: none;\n}\n\n.navbar-text {\n display: inline-block;\n padding-top: 0.5rem;\n padding-bottom: 0.5rem;\n}\n\n.navbar-collapse {\n flex-basis: 100%;\n flex-grow: 1;\n align-items: center;\n}\n\n.navbar-toggler {\n padding: 0.25rem 0.75rem;\n font-size: 1.25rem;\n line-height: 1;\n background-color: transparent;\n border: 1px solid transparent;\n border-radius: 0.25rem;\n}\n\n.navbar-toggler:hover, .navbar-toggler:focus {\n text-decoration: none;\n}\n\n.navbar-toggler:not(:disabled):not(.disabled) {\n cursor: pointer;\n}\n\n.navbar-toggler-icon {\n display: inline-block;\n width: 1.5em;\n height: 1.5em;\n vertical-align: middle;\n content: \"\";\n background: no-repeat center center;\n background-size: 100% 100%;\n}\n\n@media (max-width: 575.98px) {\n .navbar-expand-sm > .container,\n .navbar-expand-sm > .container-fluid {\n padding-right: 0;\n padding-left: 0;\n }\n}\n\n@media (min-width: 576px) {\n .navbar-expand-sm {\n flex-flow: row nowrap;\n justify-content: flex-start;\n }\n .navbar-expand-sm .navbar-nav {\n flex-direction: row;\n }\n .navbar-expand-sm .navbar-nav .dropdown-menu {\n position: absolute;\n }\n .navbar-expand-sm .navbar-nav .dropdown-menu-right {\n right: 0;\n left: auto;\n }\n .navbar-expand-sm .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n }\n .navbar-expand-sm > .container,\n .navbar-expand-sm > .container-fluid {\n flex-wrap: nowrap;\n }\n .navbar-expand-sm .navbar-collapse {\n display: flex !important;\n flex-basis: auto;\n }\n .navbar-expand-sm .navbar-toggler {\n display: none;\n }\n .navbar-expand-sm .dropup .dropdown-menu {\n top: auto;\n bottom: 100%;\n }\n}\n\n@media (max-width: 767.98px) {\n .navbar-expand-md > .container,\n .navbar-expand-md > .container-fluid {\n padding-right: 0;\n padding-left: 0;\n }\n}\n\n@media (min-width: 768px) {\n .navbar-expand-md {\n flex-flow: row nowrap;\n justify-content: flex-start;\n }\n .navbar-expand-md .navbar-nav {\n flex-direction: row;\n }\n .navbar-expand-md .navbar-nav .dropdown-menu {\n position: absolute;\n }\n .navbar-expand-md .navbar-nav .dropdown-menu-right {\n right: 0;\n left: auto;\n }\n .navbar-expand-md .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n }\n .navbar-expand-md > .container,\n .navbar-expand-md > .container-fluid {\n flex-wrap: nowrap;\n }\n .navbar-expand-md .navbar-collapse {\n display: flex !important;\n flex-basis: auto;\n }\n .navbar-expand-md .navbar-toggler {\n display: none;\n }\n .navbar-expand-md .dropup .dropdown-menu {\n top: auto;\n bottom: 100%;\n }\n}\n\n@media (max-width: 991.98px) {\n .navbar-expand-lg > .container,\n .navbar-expand-lg > .container-fluid {\n padding-right: 0;\n padding-left: 0;\n }\n}\n\n@media (min-width: 992px) {\n .navbar-expand-lg {\n flex-flow: row nowrap;\n justify-content: flex-start;\n }\n .navbar-expand-lg .navbar-nav {\n flex-direction: row;\n }\n .navbar-expand-lg .navbar-nav .dropdown-menu {\n position: absolute;\n }\n .navbar-expand-lg .navbar-nav .dropdown-menu-right {\n right: 0;\n left: auto;\n }\n .navbar-expand-lg .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n }\n .navbar-expand-lg > .container,\n .navbar-expand-lg > .container-fluid {\n flex-wrap: nowrap;\n }\n .navbar-expand-lg .navbar-collapse {\n display: flex !important;\n flex-basis: auto;\n }\n .navbar-expand-lg .navbar-toggler {\n display: none;\n }\n .navbar-expand-lg .dropup .dropdown-menu {\n top: auto;\n bottom: 100%;\n }\n}\n\n@media (max-width: 1199.98px) {\n .navbar-expand-xl > .container,\n .navbar-expand-xl > .container-fluid {\n padding-right: 0;\n padding-left: 0;\n }\n}\n\n@media (min-width: 1200px) {\n .navbar-expand-xl {\n flex-flow: row nowrap;\n justify-content: flex-start;\n }\n .navbar-expand-xl .navbar-nav {\n flex-direction: row;\n }\n .navbar-expand-xl .navbar-nav .dropdown-menu {\n position: absolute;\n }\n .navbar-expand-xl .navbar-nav .dropdown-menu-right {\n right: 0;\n left: auto;\n }\n .navbar-expand-xl .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n }\n .navbar-expand-xl > .container,\n .navbar-expand-xl > .container-fluid {\n flex-wrap: nowrap;\n }\n .navbar-expand-xl .navbar-collapse {\n display: flex !important;\n flex-basis: auto;\n }\n .navbar-expand-xl .navbar-toggler {\n display: none;\n }\n .navbar-expand-xl .dropup .dropdown-menu {\n top: auto;\n bottom: 100%;\n }\n}\n\n.navbar-expand {\n flex-flow: row nowrap;\n justify-content: flex-start;\n}\n\n.navbar-expand > .container,\n.navbar-expand > .container-fluid {\n padding-right: 0;\n padding-left: 0;\n}\n\n.navbar-expand .navbar-nav {\n flex-direction: row;\n}\n\n.navbar-expand .navbar-nav .dropdown-menu {\n position: absolute;\n}\n\n.navbar-expand .navbar-nav .dropdown-menu-right {\n right: 0;\n left: auto;\n}\n\n.navbar-expand .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n}\n\n.navbar-expand > .container,\n.navbar-expand > .container-fluid {\n flex-wrap: nowrap;\n}\n\n.navbar-expand .navbar-collapse {\n display: flex !important;\n flex-basis: auto;\n}\n\n.navbar-expand .navbar-toggler {\n display: none;\n}\n\n.navbar-expand .dropup .dropdown-menu {\n top: auto;\n bottom: 100%;\n}\n\n.navbar-light .navbar-brand {\n color: rgba(0, 0, 0, 0.9);\n}\n\n.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {\n color: rgba(0, 0, 0, 0.9);\n}\n\n.navbar-light .navbar-nav .nav-link {\n color: rgba(0, 0, 0, 0.5);\n}\n\n.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {\n color: rgba(0, 0, 0, 0.7);\n}\n\n.navbar-light .navbar-nav .nav-link.disabled {\n color: rgba(0, 0, 0, 0.3);\n}\n\n.navbar-light .navbar-nav .show > .nav-link,\n.navbar-light .navbar-nav .active > .nav-link,\n.navbar-light .navbar-nav .nav-link.show,\n.navbar-light .navbar-nav .nav-link.active {\n color: rgba(0, 0, 0, 0.9);\n}\n\n.navbar-light .navbar-toggler {\n color: rgba(0, 0, 0, 0.5);\n border-color: rgba(0, 0, 0, 0.1);\n}\n\n.navbar-light .navbar-toggler-icon {\n background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E\");\n}\n\n.navbar-light .navbar-text {\n color: rgba(0, 0, 0, 0.5);\n}\n\n.navbar-light .navbar-text a {\n color: rgba(0, 0, 0, 0.9);\n}\n\n.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {\n color: rgba(0, 0, 0, 0.9);\n}\n\n.navbar-dark .navbar-brand {\n color: #fff;\n}\n\n.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {\n color: #fff;\n}\n\n.navbar-dark .navbar-nav .nav-link {\n color: rgba(255, 255, 255, 0.5);\n}\n\n.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {\n color: rgba(255, 255, 255, 0.75);\n}\n\n.navbar-dark .navbar-nav .nav-link.disabled {\n color: rgba(255, 255, 255, 0.25);\n}\n\n.navbar-dark .navbar-nav .show > .nav-link,\n.navbar-dark .navbar-nav .active > .nav-link,\n.navbar-dark .navbar-nav .nav-link.show,\n.navbar-dark .navbar-nav .nav-link.active {\n color: #fff;\n}\n\n.navbar-dark .navbar-toggler {\n color: rgba(255, 255, 255, 0.5);\n border-color: rgba(255, 255, 255, 0.1);\n}\n\n.navbar-dark .navbar-toggler-icon {\n background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E\");\n}\n\n.navbar-dark .navbar-text {\n color: rgba(255, 255, 255, 0.5);\n}\n\n.navbar-dark .navbar-text a {\n color: #fff;\n}\n\n.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {\n color: #fff;\n}\n\n.card {\n position: relative;\n display: flex;\n flex-direction: column;\n min-width: 0;\n word-wrap: break-word;\n background-color: #fff;\n background-clip: border-box;\n border: 1px solid rgba(0, 0, 0, 0.125);\n border-radius: 0.25rem;\n}\n\n.card > hr {\n margin-right: 0;\n margin-left: 0;\n}\n\n.card > .list-group:first-child .list-group-item:first-child {\n border-top-left-radius: 0.25rem;\n border-top-right-radius: 0.25rem;\n}\n\n.card > .list-group:last-child .list-group-item:last-child {\n border-bottom-right-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem;\n}\n\n.card-body {\n flex: 1 1 auto;\n padding: 1.25rem;\n}\n\n.card-title {\n margin-bottom: 0.75rem;\n}\n\n.card-subtitle {\n margin-top: -0.375rem;\n margin-bottom: 0;\n}\n\n.card-text:last-child {\n margin-bottom: 0;\n}\n\n.card-link:hover {\n text-decoration: none;\n}\n\n.card-link + .card-link {\n margin-left: 1.25rem;\n}\n\n.card-header {\n padding: 0.75rem 1.25rem;\n margin-bottom: 0;\n background-color: rgba(0, 0, 0, 0.03);\n border-bottom: 1px solid rgba(0, 0, 0, 0.125);\n}\n\n.card-header:first-child {\n border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;\n}\n\n.card-header + .list-group .list-group-item:first-child {\n border-top: 0;\n}\n\n.card-footer {\n padding: 0.75rem 1.25rem;\n background-color: rgba(0, 0, 0, 0.03);\n border-top: 1px solid rgba(0, 0, 0, 0.125);\n}\n\n.card-footer:last-child {\n border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);\n}\n\n.card-header-tabs {\n margin-right: -0.625rem;\n margin-bottom: -0.75rem;\n margin-left: -0.625rem;\n border-bottom: 0;\n}\n\n.card-header-pills {\n margin-right: -0.625rem;\n margin-left: -0.625rem;\n}\n\n.card-img-overlay {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n padding: 1.25rem;\n}\n\n.card-img {\n width: 100%;\n border-radius: calc(0.25rem - 1px);\n}\n\n.card-img-top {\n width: 100%;\n border-top-left-radius: calc(0.25rem - 1px);\n border-top-right-radius: calc(0.25rem - 1px);\n}\n\n.card-img-bottom {\n width: 100%;\n border-bottom-right-radius: calc(0.25rem - 1px);\n border-bottom-left-radius: calc(0.25rem - 1px);\n}\n\n.card-deck {\n display: flex;\n flex-direction: column;\n}\n\n.card-deck .card {\n margin-bottom: 15px;\n}\n\n@media (min-width: 576px) {\n .card-deck {\n flex-flow: row wrap;\n margin-right: -15px;\n margin-left: -15px;\n }\n .card-deck .card {\n display: flex;\n flex: 1 0 0%;\n flex-direction: column;\n margin-right: 15px;\n margin-bottom: 0;\n margin-left: 15px;\n }\n}\n\n.card-group {\n display: flex;\n flex-direction: column;\n}\n\n.card-group > .card {\n margin-bottom: 15px;\n}\n\n@media (min-width: 576px) {\n .card-group {\n flex-flow: row wrap;\n }\n .card-group > .card {\n flex: 1 0 0%;\n margin-bottom: 0;\n }\n .card-group > .card + .card {\n margin-left: 0;\n border-left: 0;\n }\n .card-group > .card:first-child {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n }\n .card-group > .card:first-child .card-img-top,\n .card-group > .card:first-child .card-header {\n border-top-right-radius: 0;\n }\n .card-group > .card:first-child .card-img-bottom,\n .card-group > .card:first-child .card-footer {\n border-bottom-right-radius: 0;\n }\n .card-group > .card:last-child {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n }\n .card-group > .card:last-child .card-img-top,\n .card-group > .card:last-child .card-header {\n border-top-left-radius: 0;\n }\n .card-group > .card:last-child .card-img-bottom,\n .card-group > .card:last-child .card-footer {\n border-bottom-left-radius: 0;\n }\n .card-group > .card:only-child {\n border-radius: 0.25rem;\n }\n .card-group > .card:only-child .card-img-top,\n .card-group > .card:only-child .card-header {\n border-top-left-radius: 0.25rem;\n border-top-right-radius: 0.25rem;\n }\n .card-group > .card:only-child .card-img-bottom,\n .card-group > .card:only-child .card-footer {\n border-bottom-right-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem;\n }\n .card-group > .card:not(:first-child):not(:last-child):not(:only-child) {\n border-radius: 0;\n }\n .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top,\n .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,\n .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header,\n .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer {\n border-radius: 0;\n }\n}\n\n.card-columns .card {\n margin-bottom: 0.75rem;\n}\n\n@media (min-width: 576px) {\n .card-columns {\n column-count: 3;\n column-gap: 1.25rem;\n }\n .card-columns .card {\n display: inline-block;\n width: 100%;\n }\n}\n\n.breadcrumb {\n display: flex;\n flex-wrap: wrap;\n padding: 0.75rem 1rem;\n margin-bottom: 1rem;\n list-style: none;\n background-color: #e9ecef;\n border-radius: 0.25rem;\n}\n\n.breadcrumb-item + .breadcrumb-item::before {\n display: inline-block;\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n color: #6c757d;\n content: \"/\";\n}\n\n.breadcrumb-item + .breadcrumb-item:hover::before {\n text-decoration: underline;\n}\n\n.breadcrumb-item + .breadcrumb-item:hover::before {\n text-decoration: none;\n}\n\n.breadcrumb-item.active {\n color: #6c757d;\n}\n\n.pagination {\n display: flex;\n padding-left: 0;\n list-style: none;\n border-radius: 0.25rem;\n}\n\n.page-link {\n position: relative;\n display: block;\n padding: 0.5rem 0.75rem;\n margin-left: -1px;\n line-height: 1.25;\n color: #007bff;\n background-color: #fff;\n border: 1px solid #dee2e6;\n}\n\n.page-link:hover {\n color: #0056b3;\n text-decoration: none;\n background-color: #e9ecef;\n border-color: #dee2e6;\n}\n\n.page-link:focus {\n z-index: 2;\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.page-link:not(:disabled):not(.disabled) {\n cursor: pointer;\n}\n\n.page-item:first-child .page-link {\n margin-left: 0;\n border-top-left-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem;\n}\n\n.page-item:last-child .page-link {\n border-top-right-radius: 0.25rem;\n border-bottom-right-radius: 0.25rem;\n}\n\n.page-item.active .page-link {\n z-index: 1;\n color: #fff;\n background-color: #007bff;\n border-color: #007bff;\n}\n\n.page-item.disabled .page-link {\n color: #6c757d;\n pointer-events: none;\n cursor: auto;\n background-color: #fff;\n border-color: #dee2e6;\n}\n\n.pagination-lg .page-link {\n padding: 0.75rem 1.5rem;\n font-size: 1.25rem;\n line-height: 1.5;\n}\n\n.pagination-lg .page-item:first-child .page-link {\n border-top-left-radius: 0.3rem;\n border-bottom-left-radius: 0.3rem;\n}\n\n.pagination-lg .page-item:last-child .page-link {\n border-top-right-radius: 0.3rem;\n border-bottom-right-radius: 0.3rem;\n}\n\n.pagination-sm .page-link {\n padding: 0.25rem 0.5rem;\n font-size: 0.875rem;\n line-height: 1.5;\n}\n\n.pagination-sm .page-item:first-child .page-link {\n border-top-left-radius: 0.2rem;\n border-bottom-left-radius: 0.2rem;\n}\n\n.pagination-sm .page-item:last-child .page-link {\n border-top-right-radius: 0.2rem;\n border-bottom-right-radius: 0.2rem;\n}\n\n.badge {\n display: inline-block;\n padding: 0.25em 0.4em;\n font-size: 75%;\n font-weight: 700;\n line-height: 1;\n text-align: center;\n white-space: nowrap;\n vertical-align: baseline;\n border-radius: 0.25rem;\n}\n\n.badge:empty {\n display: none;\n}\n\n.btn .badge {\n position: relative;\n top: -1px;\n}\n\n.badge-pill {\n padding-right: 0.6em;\n padding-left: 0.6em;\n border-radius: 10rem;\n}\n\n.badge-primary {\n color: #fff;\n background-color: #007bff;\n}\n\n.badge-primary[href]:hover, .badge-primary[href]:focus {\n color: #fff;\n text-decoration: none;\n background-color: #0062cc;\n}\n\n.badge-secondary {\n color: #fff;\n background-color: #6c757d;\n}\n\n.badge-secondary[href]:hover, .badge-secondary[href]:focus {\n color: #fff;\n text-decoration: none;\n background-color: #545b62;\n}\n\n.badge-success {\n color: #fff;\n background-color: #28a745;\n}\n\n.badge-success[href]:hover, .badge-success[href]:focus {\n color: #fff;\n text-decoration: none;\n background-color: #1e7e34;\n}\n\n.badge-info {\n color: #fff;\n background-color: #17a2b8;\n}\n\n.badge-info[href]:hover, .badge-info[href]:focus {\n color: #fff;\n text-decoration: none;\n background-color: #117a8b;\n}\n\n.badge-warning {\n color: #212529;\n background-color: #ffc107;\n}\n\n.badge-warning[href]:hover, .badge-warning[href]:focus {\n color: #212529;\n text-decoration: none;\n background-color: #d39e00;\n}\n\n.badge-danger {\n color: #fff;\n background-color: #dc3545;\n}\n\n.badge-danger[href]:hover, .badge-danger[href]:focus {\n color: #fff;\n text-decoration: none;\n background-color: #bd2130;\n}\n\n.badge-light {\n color: #212529;\n background-color: #f8f9fa;\n}\n\n.badge-light[href]:hover, .badge-light[href]:focus {\n color: #212529;\n text-decoration: none;\n background-color: #dae0e5;\n}\n\n.badge-dark {\n color: #fff;\n background-color: #343a40;\n}\n\n.badge-dark[href]:hover, .badge-dark[href]:focus {\n color: #fff;\n text-decoration: none;\n background-color: #1d2124;\n}\n\n.jumbotron {\n padding: 2rem 1rem;\n margin-bottom: 2rem;\n background-color: #e9ecef;\n border-radius: 0.3rem;\n}\n\n@media (min-width: 576px) {\n .jumbotron {\n padding: 4rem 2rem;\n }\n}\n\n.jumbotron-fluid {\n padding-right: 0;\n padding-left: 0;\n border-radius: 0;\n}\n\n.alert {\n position: relative;\n padding: 0.75rem 1.25rem;\n margin-bottom: 1rem;\n border: 1px solid transparent;\n border-radius: 0.25rem;\n}\n\n.alert-heading {\n color: inherit;\n}\n\n.alert-link {\n font-weight: 700;\n}\n\n.alert-dismissible {\n padding-right: 4rem;\n}\n\n.alert-dismissible .close {\n position: absolute;\n top: 0;\n right: 0;\n padding: 0.75rem 1.25rem;\n color: inherit;\n}\n\n.alert-primary {\n color: #004085;\n background-color: #cce5ff;\n border-color: #b8daff;\n}\n\n.alert-primary hr {\n border-top-color: #9fcdff;\n}\n\n.alert-primary .alert-link {\n color: #002752;\n}\n\n.alert-secondary {\n color: #383d41;\n background-color: #e2e3e5;\n border-color: #d6d8db;\n}\n\n.alert-secondary hr {\n border-top-color: #c8cbcf;\n}\n\n.alert-secondary .alert-link {\n color: #202326;\n}\n\n.alert-success {\n color: #155724;\n background-color: #d4edda;\n border-color: #c3e6cb;\n}\n\n.alert-success hr {\n border-top-color: #b1dfbb;\n}\n\n.alert-success .alert-link {\n color: #0b2e13;\n}\n\n.alert-info {\n color: #0c5460;\n background-color: #d1ecf1;\n border-color: #bee5eb;\n}\n\n.alert-info hr {\n border-top-color: #abdde5;\n}\n\n.alert-info .alert-link {\n color: #062c33;\n}\n\n.alert-warning {\n color: #856404;\n background-color: #fff3cd;\n border-color: #ffeeba;\n}\n\n.alert-warning hr {\n border-top-color: #ffe8a1;\n}\n\n.alert-warning .alert-link {\n color: #533f03;\n}\n\n.alert-danger {\n color: #721c24;\n background-color: #f8d7da;\n border-color: #f5c6cb;\n}\n\n.alert-danger hr {\n border-top-color: #f1b0b7;\n}\n\n.alert-danger .alert-link {\n color: #491217;\n}\n\n.alert-light {\n color: #818182;\n background-color: #fefefe;\n border-color: #fdfdfe;\n}\n\n.alert-light hr {\n border-top-color: #ececf6;\n}\n\n.alert-light .alert-link {\n color: #686868;\n}\n\n.alert-dark {\n color: #1b1e21;\n background-color: #d6d8d9;\n border-color: #c6c8ca;\n}\n\n.alert-dark hr {\n border-top-color: #b9bbbe;\n}\n\n.alert-dark .alert-link {\n color: #040505;\n}\n\n@keyframes progress-bar-stripes {\n from {\n background-position: 1rem 0;\n }\n to {\n background-position: 0 0;\n }\n}\n\n.progress {\n display: flex;\n height: 1rem;\n overflow: hidden;\n font-size: 0.75rem;\n background-color: #e9ecef;\n border-radius: 0.25rem;\n}\n\n.progress-bar {\n display: flex;\n flex-direction: column;\n justify-content: center;\n color: #fff;\n text-align: center;\n background-color: #007bff;\n transition: width 0.6s ease;\n}\n\n.progress-bar-striped {\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-size: 1rem 1rem;\n}\n\n.progress-bar-animated {\n animation: progress-bar-stripes 1s linear infinite;\n}\n\n.media {\n display: flex;\n align-items: flex-start;\n}\n\n.media-body {\n flex: 1;\n}\n\n.list-group {\n display: flex;\n flex-direction: column;\n padding-left: 0;\n margin-bottom: 0;\n}\n\n.list-group-item-action {\n width: 100%;\n color: #495057;\n text-align: inherit;\n}\n\n.list-group-item-action:hover, .list-group-item-action:focus {\n color: #495057;\n text-decoration: none;\n background-color: #f8f9fa;\n}\n\n.list-group-item-action:active {\n color: #212529;\n background-color: #e9ecef;\n}\n\n.list-group-item {\n position: relative;\n display: block;\n padding: 0.75rem 1.25rem;\n margin-bottom: -1px;\n background-color: #fff;\n border: 1px solid rgba(0, 0, 0, 0.125);\n}\n\n.list-group-item:first-child {\n border-top-left-radius: 0.25rem;\n border-top-right-radius: 0.25rem;\n}\n\n.list-group-item:last-child {\n margin-bottom: 0;\n border-bottom-right-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem;\n}\n\n.list-group-item:hover, .list-group-item:focus {\n z-index: 1;\n text-decoration: none;\n}\n\n.list-group-item.disabled, .list-group-item:disabled {\n color: #6c757d;\n background-color: #fff;\n}\n\n.list-group-item.active {\n z-index: 2;\n color: #fff;\n background-color: #007bff;\n border-color: #007bff;\n}\n\n.list-group-flush .list-group-item {\n border-right: 0;\n border-left: 0;\n border-radius: 0;\n}\n\n.list-group-flush:first-child .list-group-item:first-child {\n border-top: 0;\n}\n\n.list-group-flush:last-child .list-group-item:last-child {\n border-bottom: 0;\n}\n\n.list-group-item-primary {\n color: #004085;\n background-color: #b8daff;\n}\n\n.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {\n color: #004085;\n background-color: #9fcdff;\n}\n\n.list-group-item-primary.list-group-item-action.active {\n color: #fff;\n background-color: #004085;\n border-color: #004085;\n}\n\n.list-group-item-secondary {\n color: #383d41;\n background-color: #d6d8db;\n}\n\n.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {\n color: #383d41;\n background-color: #c8cbcf;\n}\n\n.list-group-item-secondary.list-group-item-action.active {\n color: #fff;\n background-color: #383d41;\n border-color: #383d41;\n}\n\n.list-group-item-success {\n color: #155724;\n background-color: #c3e6cb;\n}\n\n.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {\n color: #155724;\n background-color: #b1dfbb;\n}\n\n.list-group-item-success.list-group-item-action.active {\n color: #fff;\n background-color: #155724;\n border-color: #155724;\n}\n\n.list-group-item-info {\n color: #0c5460;\n background-color: #bee5eb;\n}\n\n.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {\n color: #0c5460;\n background-color: #abdde5;\n}\n\n.list-group-item-info.list-group-item-action.active {\n color: #fff;\n background-color: #0c5460;\n border-color: #0c5460;\n}\n\n.list-group-item-warning {\n color: #856404;\n background-color: #ffeeba;\n}\n\n.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {\n color: #856404;\n background-color: #ffe8a1;\n}\n\n.list-group-item-warning.list-group-item-action.active {\n color: #fff;\n background-color: #856404;\n border-color: #856404;\n}\n\n.list-group-item-danger {\n color: #721c24;\n background-color: #f5c6cb;\n}\n\n.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {\n color: #721c24;\n background-color: #f1b0b7;\n}\n\n.list-group-item-danger.list-group-item-action.active {\n color: #fff;\n background-color: #721c24;\n border-color: #721c24;\n}\n\n.list-group-item-light {\n color: #818182;\n background-color: #fdfdfe;\n}\n\n.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {\n color: #818182;\n background-color: #ececf6;\n}\n\n.list-group-item-light.list-group-item-action.active {\n color: #fff;\n background-color: #818182;\n border-color: #818182;\n}\n\n.list-group-item-dark {\n color: #1b1e21;\n background-color: #c6c8ca;\n}\n\n.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {\n color: #1b1e21;\n background-color: #b9bbbe;\n}\n\n.list-group-item-dark.list-group-item-action.active {\n color: #fff;\n background-color: #1b1e21;\n border-color: #1b1e21;\n}\n\n.close {\n float: right;\n font-size: 1.5rem;\n font-weight: 700;\n line-height: 1;\n color: #000;\n text-shadow: 0 1px 0 #fff;\n opacity: .5;\n}\n\n.close:hover, .close:focus {\n color: #000;\n text-decoration: none;\n opacity: .75;\n}\n\n.close:not(:disabled):not(.disabled) {\n cursor: pointer;\n}\n\nbutton.close {\n padding: 0;\n background-color: transparent;\n border: 0;\n -webkit-appearance: none;\n}\n\n.modal-open {\n overflow: hidden;\n}\n\n.modal {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1050;\n display: none;\n overflow: hidden;\n outline: 0;\n}\n\n.modal-open .modal {\n overflow-x: hidden;\n overflow-y: auto;\n}\n\n.modal-dialog {\n position: relative;\n width: auto;\n margin: 0.5rem;\n pointer-events: none;\n}\n\n.modal.fade .modal-dialog {\n transition: transform 0.3s ease-out;\n transform: translate(0, -25%);\n}\n\n.modal.show .modal-dialog {\n transform: translate(0, 0);\n}\n\n.modal-dialog-centered {\n display: flex;\n align-items: center;\n min-height: calc(100% - (0.5rem * 2));\n}\n\n.modal-content {\n position: relative;\n display: flex;\n flex-direction: column;\n width: 100%;\n pointer-events: auto;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid rgba(0, 0, 0, 0.2);\n border-radius: 0.3rem;\n outline: 0;\n}\n\n.modal-backdrop {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1040;\n background-color: #000;\n}\n\n.modal-backdrop.fade {\n opacity: 0;\n}\n\n.modal-backdrop.show {\n opacity: 0.5;\n}\n\n.modal-header {\n display: flex;\n align-items: flex-start;\n justify-content: space-between;\n padding: 1rem;\n border-bottom: 1px solid #e9ecef;\n border-top-left-radius: 0.3rem;\n border-top-right-radius: 0.3rem;\n}\n\n.modal-header .close {\n padding: 1rem;\n margin: -1rem -1rem -1rem auto;\n}\n\n.modal-title {\n margin-bottom: 0;\n line-height: 1.5;\n}\n\n.modal-body {\n position: relative;\n flex: 1 1 auto;\n padding: 1rem;\n}\n\n.modal-footer {\n display: flex;\n align-items: center;\n justify-content: flex-end;\n padding: 1rem;\n border-top: 1px solid #e9ecef;\n}\n\n.modal-footer > :not(:first-child) {\n margin-left: .25rem;\n}\n\n.modal-footer > :not(:last-child) {\n margin-right: .25rem;\n}\n\n.modal-scrollbar-measure {\n position: absolute;\n top: -9999px;\n width: 50px;\n height: 50px;\n overflow: scroll;\n}\n\n@media (min-width: 576px) {\n .modal-dialog {\n max-width: 500px;\n margin: 1.75rem auto;\n }\n .modal-dialog-centered {\n min-height: calc(100% - (1.75rem * 2));\n }\n .modal-sm {\n max-width: 300px;\n }\n}\n\n@media (min-width: 992px) {\n .modal-lg {\n max-width: 800px;\n }\n}\n\n.tooltip {\n position: absolute;\n z-index: 1070;\n display: block;\n margin: 0;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\";\n font-style: normal;\n font-weight: 400;\n line-height: 1.5;\n text-align: left;\n text-align: start;\n text-decoration: none;\n text-shadow: none;\n text-transform: none;\n letter-spacing: normal;\n word-break: normal;\n word-spacing: normal;\n white-space: normal;\n line-break: auto;\n font-size: 0.875rem;\n word-wrap: break-word;\n opacity: 0;\n}\n\n.tooltip.show {\n opacity: 0.9;\n}\n\n.tooltip .arrow {\n position: absolute;\n display: block;\n width: 0.8rem;\n height: 0.4rem;\n}\n\n.tooltip .arrow::before {\n position: absolute;\n content: \"\";\n border-color: transparent;\n border-style: solid;\n}\n\n.bs-tooltip-top, .bs-tooltip-auto[x-placement^=\"top\"] {\n padding: 0.4rem 0;\n}\n\n.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^=\"top\"] .arrow {\n bottom: 0;\n}\n\n.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^=\"top\"] .arrow::before {\n top: 0;\n border-width: 0.4rem 0.4rem 0;\n border-top-color: #000;\n}\n\n.bs-tooltip-right, .bs-tooltip-auto[x-placement^=\"right\"] {\n padding: 0 0.4rem;\n}\n\n.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^=\"right\"] .arrow {\n left: 0;\n width: 0.4rem;\n height: 0.8rem;\n}\n\n.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^=\"right\"] .arrow::before {\n right: 0;\n border-width: 0.4rem 0.4rem 0.4rem 0;\n border-right-color: #000;\n}\n\n.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^=\"bottom\"] {\n padding: 0.4rem 0;\n}\n\n.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^=\"bottom\"] .arrow {\n top: 0;\n}\n\n.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^=\"bottom\"] .arrow::before {\n bottom: 0;\n border-width: 0 0.4rem 0.4rem;\n border-bottom-color: #000;\n}\n\n.bs-tooltip-left, .bs-tooltip-auto[x-placement^=\"left\"] {\n padding: 0 0.4rem;\n}\n\n.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^=\"left\"] .arrow {\n right: 0;\n width: 0.4rem;\n height: 0.8rem;\n}\n\n.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^=\"left\"] .arrow::before {\n left: 0;\n border-width: 0.4rem 0 0.4rem 0.4rem;\n border-left-color: #000;\n}\n\n.tooltip-inner {\n max-width: 200px;\n padding: 0.25rem 0.5rem;\n color: #fff;\n text-align: center;\n background-color: #000;\n border-radius: 0.25rem;\n}\n\n.popover {\n position: absolute;\n top: 0;\n left: 0;\n z-index: 1060;\n display: block;\n max-width: 276px;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\";\n font-style: normal;\n font-weight: 400;\n line-height: 1.5;\n text-align: left;\n text-align: start;\n text-decoration: none;\n text-shadow: none;\n text-transform: none;\n letter-spacing: normal;\n word-break: normal;\n word-spacing: normal;\n white-space: normal;\n line-break: auto;\n font-size: 0.875rem;\n word-wrap: break-word;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid rgba(0, 0, 0, 0.2);\n border-radius: 0.3rem;\n}\n\n.popover .arrow {\n position: absolute;\n display: block;\n width: 1rem;\n height: 0.5rem;\n margin: 0 0.3rem;\n}\n\n.popover .arrow::before, .popover .arrow::after {\n position: absolute;\n display: block;\n content: \"\";\n border-color: transparent;\n border-style: solid;\n}\n\n.bs-popover-top, .bs-popover-auto[x-placement^=\"top\"] {\n margin-bottom: 0.5rem;\n}\n\n.bs-popover-top .arrow, .bs-popover-auto[x-placement^=\"top\"] .arrow {\n bottom: calc((0.5rem + 1px) * -1);\n}\n\n.bs-popover-top .arrow::before, .bs-popover-auto[x-placement^=\"top\"] .arrow::before,\n.bs-popover-top .arrow::after, .bs-popover-auto[x-placement^=\"top\"] .arrow::after {\n border-width: 0.5rem 0.5rem 0;\n}\n\n.bs-popover-top .arrow::before, .bs-popover-auto[x-placement^=\"top\"] .arrow::before {\n bottom: 0;\n border-top-color: rgba(0, 0, 0, 0.25);\n}\n\n.bs-popover-top .arrow::after, .bs-popover-auto[x-placement^=\"top\"] .arrow::after {\n bottom: 1px;\n border-top-color: #fff;\n}\n\n.bs-popover-right, .bs-popover-auto[x-placement^=\"right\"] {\n margin-left: 0.5rem;\n}\n\n.bs-popover-right .arrow, .bs-popover-auto[x-placement^=\"right\"] .arrow {\n left: calc((0.5rem + 1px) * -1);\n width: 0.5rem;\n height: 1rem;\n margin: 0.3rem 0;\n}\n\n.bs-popover-right .arrow::before, .bs-popover-auto[x-placement^=\"right\"] .arrow::before,\n.bs-popover-right .arrow::after, .bs-popover-auto[x-placement^=\"right\"] .arrow::after {\n border-width: 0.5rem 0.5rem 0.5rem 0;\n}\n\n.bs-popover-right .arrow::before, .bs-popover-auto[x-placement^=\"right\"] .arrow::before {\n left: 0;\n border-right-color: rgba(0, 0, 0, 0.25);\n}\n\n.bs-popover-right .arrow::after, .bs-popover-auto[x-placement^=\"right\"] .arrow::after {\n left: 1px;\n border-right-color: #fff;\n}\n\n.bs-popover-bottom, .bs-popover-auto[x-placement^=\"bottom\"] {\n margin-top: 0.5rem;\n}\n\n.bs-popover-bottom .arrow, .bs-popover-auto[x-placement^=\"bottom\"] .arrow {\n top: calc((0.5rem + 1px) * -1);\n}\n\n.bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^=\"bottom\"] .arrow::before,\n.bs-popover-bottom .arrow::after, .bs-popover-auto[x-placement^=\"bottom\"] .arrow::after {\n border-width: 0 0.5rem 0.5rem 0.5rem;\n}\n\n.bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^=\"bottom\"] .arrow::before {\n top: 0;\n border-bottom-color: rgba(0, 0, 0, 0.25);\n}\n\n.bs-popover-bottom .arrow::after, .bs-popover-auto[x-placement^=\"bottom\"] .arrow::after {\n top: 1px;\n border-bottom-color: #fff;\n}\n\n.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^=\"bottom\"] .popover-header::before {\n position: absolute;\n top: 0;\n left: 50%;\n display: block;\n width: 1rem;\n margin-left: -0.5rem;\n content: \"\";\n border-bottom: 1px solid #f7f7f7;\n}\n\n.bs-popover-left, .bs-popover-auto[x-placement^=\"left\"] {\n margin-right: 0.5rem;\n}\n\n.bs-popover-left .arrow, .bs-popover-auto[x-placement^=\"left\"] .arrow {\n right: calc((0.5rem + 1px) * -1);\n width: 0.5rem;\n height: 1rem;\n margin: 0.3rem 0;\n}\n\n.bs-popover-left .arrow::before, .bs-popover-auto[x-placement^=\"left\"] .arrow::before,\n.bs-popover-left .arrow::after, .bs-popover-auto[x-placement^=\"left\"] .arrow::after {\n border-width: 0.5rem 0 0.5rem 0.5rem;\n}\n\n.bs-popover-left .arrow::before, .bs-popover-auto[x-placement^=\"left\"] .arrow::before {\n right: 0;\n border-left-color: rgba(0, 0, 0, 0.25);\n}\n\n.bs-popover-left .arrow::after, .bs-popover-auto[x-placement^=\"left\"] .arrow::after {\n right: 1px;\n border-left-color: #fff;\n}\n\n.popover-header {\n padding: 0.5rem 0.75rem;\n margin-bottom: 0;\n font-size: 1rem;\n color: inherit;\n background-color: #f7f7f7;\n border-bottom: 1px solid #ebebeb;\n border-top-left-radius: calc(0.3rem - 1px);\n border-top-right-radius: calc(0.3rem - 1px);\n}\n\n.popover-header:empty {\n display: none;\n}\n\n.popover-body {\n padding: 0.5rem 0.75rem;\n color: #212529;\n}\n\n.carousel {\n position: relative;\n}\n\n.carousel-inner {\n position: relative;\n width: 100%;\n overflow: hidden;\n}\n\n.carousel-item {\n position: relative;\n display: none;\n align-items: center;\n width: 100%;\n transition: transform 0.6s ease;\n backface-visibility: hidden;\n perspective: 1000px;\n}\n\n.carousel-item.active,\n.carousel-item-next,\n.carousel-item-prev {\n display: block;\n}\n\n.carousel-item-next,\n.carousel-item-prev {\n position: absolute;\n top: 0;\n}\n\n.carousel-item-next.carousel-item-left,\n.carousel-item-prev.carousel-item-right {\n transform: translateX(0);\n}\n\n@supports (transform-style: preserve-3d) {\n .carousel-item-next.carousel-item-left,\n .carousel-item-prev.carousel-item-right {\n transform: translate3d(0, 0, 0);\n }\n}\n\n.carousel-item-next,\n.active.carousel-item-right {\n transform: translateX(100%);\n}\n\n@supports (transform-style: preserve-3d) {\n .carousel-item-next,\n .active.carousel-item-right {\n transform: translate3d(100%, 0, 0);\n }\n}\n\n.carousel-item-prev,\n.active.carousel-item-left {\n transform: translateX(-100%);\n}\n\n@supports (transform-style: preserve-3d) {\n .carousel-item-prev,\n .active.carousel-item-left {\n transform: translate3d(-100%, 0, 0);\n }\n}\n\n.carousel-control-prev,\n.carousel-control-next {\n position: absolute;\n top: 0;\n bottom: 0;\n display: flex;\n align-items: center;\n justify-content: center;\n width: 15%;\n color: #fff;\n text-align: center;\n opacity: 0.5;\n}\n\n.carousel-control-prev:hover, .carousel-control-prev:focus,\n.carousel-control-next:hover,\n.carousel-control-next:focus {\n color: #fff;\n text-decoration: none;\n outline: 0;\n opacity: .9;\n}\n\n.carousel-control-prev {\n left: 0;\n}\n\n.carousel-control-next {\n right: 0;\n}\n\n.carousel-control-prev-icon,\n.carousel-control-next-icon {\n display: inline-block;\n width: 20px;\n height: 20px;\n background: transparent no-repeat center center;\n background-size: 100% 100%;\n}\n\n.carousel-control-prev-icon {\n background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E\");\n}\n\n.carousel-control-next-icon {\n background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E\");\n}\n\n.carousel-indicators {\n position: absolute;\n right: 0;\n bottom: 10px;\n left: 0;\n z-index: 15;\n display: flex;\n justify-content: center;\n padding-left: 0;\n margin-right: 15%;\n margin-left: 15%;\n list-style: none;\n}\n\n.carousel-indicators li {\n position: relative;\n flex: 0 1 auto;\n width: 30px;\n height: 3px;\n margin-right: 3px;\n margin-left: 3px;\n text-indent: -999px;\n background-color: rgba(255, 255, 255, 0.5);\n}\n\n.carousel-indicators li::before {\n position: absolute;\n top: -10px;\n left: 0;\n display: inline-block;\n width: 100%;\n height: 10px;\n content: \"\";\n}\n\n.carousel-indicators li::after {\n position: absolute;\n bottom: -10px;\n left: 0;\n display: inline-block;\n width: 100%;\n height: 10px;\n content: \"\";\n}\n\n.carousel-indicators .active {\n background-color: #fff;\n}\n\n.carousel-caption {\n position: absolute;\n right: 15%;\n bottom: 20px;\n left: 15%;\n z-index: 10;\n padding-top: 20px;\n padding-bottom: 20px;\n color: #fff;\n text-align: center;\n}\n\n.align-baseline {\n vertical-align: baseline !important;\n}\n\n.align-top {\n vertical-align: top !important;\n}\n\n.align-middle {\n vertical-align: middle !important;\n}\n\n.align-bottom {\n vertical-align: bottom !important;\n}\n\n.align-text-bottom {\n vertical-align: text-bottom !important;\n}\n\n.align-text-top {\n vertical-align: text-top !important;\n}\n\n.bg-primary {\n background-color: #007bff !important;\n}\n\na.bg-primary:hover, a.bg-primary:focus,\nbutton.bg-primary:hover,\nbutton.bg-primary:focus {\n background-color: #0062cc !important;\n}\n\n.bg-secondary {\n background-color: #6c757d !important;\n}\n\na.bg-secondary:hover, a.bg-secondary:focus,\nbutton.bg-secondary:hover,\nbutton.bg-secondary:focus {\n background-color: #545b62 !important;\n}\n\n.bg-success {\n background-color: #28a745 !important;\n}\n\na.bg-success:hover, a.bg-success:focus,\nbutton.bg-success:hover,\nbutton.bg-success:focus {\n background-color: #1e7e34 !important;\n}\n\n.bg-info {\n background-color: #17a2b8 !important;\n}\n\na.bg-info:hover, a.bg-info:focus,\nbutton.bg-info:hover,\nbutton.bg-info:focus {\n background-color: #117a8b !important;\n}\n\n.bg-warning {\n background-color: #ffc107 !important;\n}\n\na.bg-warning:hover, a.bg-warning:focus,\nbutton.bg-warning:hover,\nbutton.bg-warning:focus {\n background-color: #d39e00 !important;\n}\n\n.bg-danger {\n background-color: #dc3545 !important;\n}\n\na.bg-danger:hover, a.bg-danger:focus,\nbutton.bg-danger:hover,\nbutton.bg-danger:focus {\n background-color: #bd2130 !important;\n}\n\n.bg-light {\n background-color: #f8f9fa !important;\n}\n\na.bg-light:hover, a.bg-light:focus,\nbutton.bg-light:hover,\nbutton.bg-light:focus {\n background-color: #dae0e5 !important;\n}\n\n.bg-dark {\n background-color: #343a40 !important;\n}\n\na.bg-dark:hover, a.bg-dark:focus,\nbutton.bg-dark:hover,\nbutton.bg-dark:focus {\n background-color: #1d2124 !important;\n}\n\n.bg-white {\n background-color: #fff !important;\n}\n\n.bg-transparent {\n background-color: transparent !important;\n}\n\n.border {\n border: 1px solid #dee2e6 !important;\n}\n\n.border-top {\n border-top: 1px solid #dee2e6 !important;\n}\n\n.border-right {\n border-right: 1px solid #dee2e6 !important;\n}\n\n.border-bottom {\n border-bottom: 1px solid #dee2e6 !important;\n}\n\n.border-left {\n border-left: 1px solid #dee2e6 !important;\n}\n\n.border-0 {\n border: 0 !important;\n}\n\n.border-top-0 {\n border-top: 0 !important;\n}\n\n.border-right-0 {\n border-right: 0 !important;\n}\n\n.border-bottom-0 {\n border-bottom: 0 !important;\n}\n\n.border-left-0 {\n border-left: 0 !important;\n}\n\n.border-primary {\n border-color: #007bff !important;\n}\n\n.border-secondary {\n border-color: #6c757d !important;\n}\n\n.border-success {\n border-color: #28a745 !important;\n}\n\n.border-info {\n border-color: #17a2b8 !important;\n}\n\n.border-warning {\n border-color: #ffc107 !important;\n}\n\n.border-danger {\n border-color: #dc3545 !important;\n}\n\n.border-light {\n border-color: #f8f9fa !important;\n}\n\n.border-dark {\n border-color: #343a40 !important;\n}\n\n.border-white {\n border-color: #fff !important;\n}\n\n.rounded {\n border-radius: 0.25rem !important;\n}\n\n.rounded-top {\n border-top-left-radius: 0.25rem !important;\n border-top-right-radius: 0.25rem !important;\n}\n\n.rounded-right {\n border-top-right-radius: 0.25rem !important;\n border-bottom-right-radius: 0.25rem !important;\n}\n\n.rounded-bottom {\n border-bottom-right-radius: 0.25rem !important;\n border-bottom-left-radius: 0.25rem !important;\n}\n\n.rounded-left {\n border-top-left-radius: 0.25rem !important;\n border-bottom-left-radius: 0.25rem !important;\n}\n\n.rounded-circle {\n border-radius: 50% !important;\n}\n\n.rounded-0 {\n border-radius: 0 !important;\n}\n\n.clearfix::after {\n display: block;\n clear: both;\n content: \"\";\n}\n\n.d-none {\n display: none !important;\n}\n\n.d-inline {\n display: inline !important;\n}\n\n.d-inline-block {\n display: inline-block !important;\n}\n\n.d-block {\n display: block !important;\n}\n\n.d-table {\n display: table !important;\n}\n\n.d-table-row {\n display: table-row !important;\n}\n\n.d-table-cell {\n display: table-cell !important;\n}\n\n.d-flex {\n display: flex !important;\n}\n\n.d-inline-flex {\n display: inline-flex !important;\n}\n\n@media (min-width: 576px) {\n .d-sm-none {\n display: none !important;\n }\n .d-sm-inline {\n display: inline !important;\n }\n .d-sm-inline-block {\n display: inline-block !important;\n }\n .d-sm-block {\n display: block !important;\n }\n .d-sm-table {\n display: table !important;\n }\n .d-sm-table-row {\n display: table-row !important;\n }\n .d-sm-table-cell {\n display: table-cell !important;\n }\n .d-sm-flex {\n display: flex !important;\n }\n .d-sm-inline-flex {\n display: inline-flex !important;\n }\n}\n\n@media (min-width: 768px) {\n .d-md-none {\n display: none !important;\n }\n .d-md-inline {\n display: inline !important;\n }\n .d-md-inline-block {\n display: inline-block !important;\n }\n .d-md-block {\n display: block !important;\n }\n .d-md-table {\n display: table !important;\n }\n .d-md-table-row {\n display: table-row !important;\n }\n .d-md-table-cell {\n display: table-cell !important;\n }\n .d-md-flex {\n display: flex !important;\n }\n .d-md-inline-flex {\n display: inline-flex !important;\n }\n}\n\n@media (min-width: 992px) {\n .d-lg-none {\n display: none !important;\n }\n .d-lg-inline {\n display: inline !important;\n }\n .d-lg-inline-block {\n display: inline-block !important;\n }\n .d-lg-block {\n display: block !important;\n }\n .d-lg-table {\n display: table !important;\n }\n .d-lg-table-row {\n display: table-row !important;\n }\n .d-lg-table-cell {\n display: table-cell !important;\n }\n .d-lg-flex {\n display: flex !important;\n }\n .d-lg-inline-flex {\n display: inline-flex !important;\n }\n}\n\n@media (min-width: 1200px) {\n .d-xl-none {\n display: none !important;\n }\n .d-xl-inline {\n display: inline !important;\n }\n .d-xl-inline-block {\n display: inline-block !important;\n }\n .d-xl-block {\n display: block !important;\n }\n .d-xl-table {\n display: table !important;\n }\n .d-xl-table-row {\n display: table-row !important;\n }\n .d-xl-table-cell {\n display: table-cell !important;\n }\n .d-xl-flex {\n display: flex !important;\n }\n .d-xl-inline-flex {\n display: inline-flex !important;\n }\n}\n\n@media print {\n .d-print-none {\n display: none !important;\n }\n .d-print-inline {\n display: inline !important;\n }\n .d-print-inline-block {\n display: inline-block !important;\n }\n .d-print-block {\n display: block !important;\n }\n .d-print-table {\n display: table !important;\n }\n .d-print-table-row {\n display: table-row !important;\n }\n .d-print-table-cell {\n display: table-cell !important;\n }\n .d-print-flex {\n display: flex !important;\n }\n .d-print-inline-flex {\n display: inline-flex !important;\n }\n}\n\n.embed-responsive {\n position: relative;\n display: block;\n width: 100%;\n padding: 0;\n overflow: hidden;\n}\n\n.embed-responsive::before {\n display: block;\n content: \"\";\n}\n\n.embed-responsive .embed-responsive-item,\n.embed-responsive iframe,\n.embed-responsive embed,\n.embed-responsive object,\n.embed-responsive video {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n width: 100%;\n height: 100%;\n border: 0;\n}\n\n.embed-responsive-21by9::before {\n padding-top: 42.857143%;\n}\n\n.embed-responsive-16by9::before {\n padding-top: 56.25%;\n}\n\n.embed-responsive-4by3::before {\n padding-top: 75%;\n}\n\n.embed-responsive-1by1::before {\n padding-top: 100%;\n}\n\n.flex-row {\n flex-direction: row !important;\n}\n\n.flex-column {\n flex-direction: column !important;\n}\n\n.flex-row-reverse {\n flex-direction: row-reverse !important;\n}\n\n.flex-column-reverse {\n flex-direction: column-reverse !important;\n}\n\n.flex-wrap {\n flex-wrap: wrap !important;\n}\n\n.flex-nowrap {\n flex-wrap: nowrap !important;\n}\n\n.flex-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n}\n\n.justify-content-start {\n justify-content: flex-start !important;\n}\n\n.justify-content-end {\n justify-content: flex-end !important;\n}\n\n.justify-content-center {\n justify-content: center !important;\n}\n\n.justify-content-between {\n justify-content: space-between !important;\n}\n\n.justify-content-around {\n justify-content: space-around !important;\n}\n\n.align-items-start {\n align-items: flex-start !important;\n}\n\n.align-items-end {\n align-items: flex-end !important;\n}\n\n.align-items-center {\n align-items: center !important;\n}\n\n.align-items-baseline {\n align-items: baseline !important;\n}\n\n.align-items-stretch {\n align-items: stretch !important;\n}\n\n.align-content-start {\n align-content: flex-start !important;\n}\n\n.align-content-end {\n align-content: flex-end !important;\n}\n\n.align-content-center {\n align-content: center !important;\n}\n\n.align-content-between {\n align-content: space-between !important;\n}\n\n.align-content-around {\n align-content: space-around !important;\n}\n\n.align-content-stretch {\n align-content: stretch !important;\n}\n\n.align-self-auto {\n align-self: auto !important;\n}\n\n.align-self-start {\n align-self: flex-start !important;\n}\n\n.align-self-end {\n align-self: flex-end !important;\n}\n\n.align-self-center {\n align-self: center !important;\n}\n\n.align-self-baseline {\n align-self: baseline !important;\n}\n\n.align-self-stretch {\n align-self: stretch !important;\n}\n\n@media (min-width: 576px) {\n .flex-sm-row {\n flex-direction: row !important;\n }\n .flex-sm-column {\n flex-direction: column !important;\n }\n .flex-sm-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-sm-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-sm-wrap {\n flex-wrap: wrap !important;\n }\n .flex-sm-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-sm-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-sm-start {\n justify-content: flex-start !important;\n }\n .justify-content-sm-end {\n justify-content: flex-end !important;\n }\n .justify-content-sm-center {\n justify-content: center !important;\n }\n .justify-content-sm-between {\n justify-content: space-between !important;\n }\n .justify-content-sm-around {\n justify-content: space-around !important;\n }\n .align-items-sm-start {\n align-items: flex-start !important;\n }\n .align-items-sm-end {\n align-items: flex-end !important;\n }\n .align-items-sm-center {\n align-items: center !important;\n }\n .align-items-sm-baseline {\n align-items: baseline !important;\n }\n .align-items-sm-stretch {\n align-items: stretch !important;\n }\n .align-content-sm-start {\n align-content: flex-start !important;\n }\n .align-content-sm-end {\n align-content: flex-end !important;\n }\n .align-content-sm-center {\n align-content: center !important;\n }\n .align-content-sm-between {\n align-content: space-between !important;\n }\n .align-content-sm-around {\n align-content: space-around !important;\n }\n .align-content-sm-stretch {\n align-content: stretch !important;\n }\n .align-self-sm-auto {\n align-self: auto !important;\n }\n .align-self-sm-start {\n align-self: flex-start !important;\n }\n .align-self-sm-end {\n align-self: flex-end !important;\n }\n .align-self-sm-center {\n align-self: center !important;\n }\n .align-self-sm-baseline {\n align-self: baseline !important;\n }\n .align-self-sm-stretch {\n align-self: stretch !important;\n }\n}\n\n@media (min-width: 768px) {\n .flex-md-row {\n flex-direction: row !important;\n }\n .flex-md-column {\n flex-direction: column !important;\n }\n .flex-md-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-md-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-md-wrap {\n flex-wrap: wrap !important;\n }\n .flex-md-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-md-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-md-start {\n justify-content: flex-start !important;\n }\n .justify-content-md-end {\n justify-content: flex-end !important;\n }\n .justify-content-md-center {\n justify-content: center !important;\n }\n .justify-content-md-between {\n justify-content: space-between !important;\n }\n .justify-content-md-around {\n justify-content: space-around !important;\n }\n .align-items-md-start {\n align-items: flex-start !important;\n }\n .align-items-md-end {\n align-items: flex-end !important;\n }\n .align-items-md-center {\n align-items: center !important;\n }\n .align-items-md-baseline {\n align-items: baseline !important;\n }\n .align-items-md-stretch {\n align-items: stretch !important;\n }\n .align-content-md-start {\n align-content: flex-start !important;\n }\n .align-content-md-end {\n align-content: flex-end !important;\n }\n .align-content-md-center {\n align-content: center !important;\n }\n .align-content-md-between {\n align-content: space-between !important;\n }\n .align-content-md-around {\n align-content: space-around !important;\n }\n .align-content-md-stretch {\n align-content: stretch !important;\n }\n .align-self-md-auto {\n align-self: auto !important;\n }\n .align-self-md-start {\n align-self: flex-start !important;\n }\n .align-self-md-end {\n align-self: flex-end !important;\n }\n .align-self-md-center {\n align-self: center !important;\n }\n .align-self-md-baseline {\n align-self: baseline !important;\n }\n .align-self-md-stretch {\n align-self: stretch !important;\n }\n}\n\n@media (min-width: 992px) {\n .flex-lg-row {\n flex-direction: row !important;\n }\n .flex-lg-column {\n flex-direction: column !important;\n }\n .flex-lg-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-lg-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-lg-wrap {\n flex-wrap: wrap !important;\n }\n .flex-lg-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-lg-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-lg-start {\n justify-content: flex-start !important;\n }\n .justify-content-lg-end {\n justify-content: flex-end !important;\n }\n .justify-content-lg-center {\n justify-content: center !important;\n }\n .justify-content-lg-between {\n justify-content: space-between !important;\n }\n .justify-content-lg-around {\n justify-content: space-around !important;\n }\n .align-items-lg-start {\n align-items: flex-start !important;\n }\n .align-items-lg-end {\n align-items: flex-end !important;\n }\n .align-items-lg-center {\n align-items: center !important;\n }\n .align-items-lg-baseline {\n align-items: baseline !important;\n }\n .align-items-lg-stretch {\n align-items: stretch !important;\n }\n .align-content-lg-start {\n align-content: flex-start !important;\n }\n .align-content-lg-end {\n align-content: flex-end !important;\n }\n .align-content-lg-center {\n align-content: center !important;\n }\n .align-content-lg-between {\n align-content: space-between !important;\n }\n .align-content-lg-around {\n align-content: space-around !important;\n }\n .align-content-lg-stretch {\n align-content: stretch !important;\n }\n .align-self-lg-auto {\n align-self: auto !important;\n }\n .align-self-lg-start {\n align-self: flex-start !important;\n }\n .align-self-lg-end {\n align-self: flex-end !important;\n }\n .align-self-lg-center {\n align-self: center !important;\n }\n .align-self-lg-baseline {\n align-self: baseline !important;\n }\n .align-self-lg-stretch {\n align-self: stretch !important;\n }\n}\n\n@media (min-width: 1200px) {\n .flex-xl-row {\n flex-direction: row !important;\n }\n .flex-xl-column {\n flex-direction: column !important;\n }\n .flex-xl-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-xl-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-xl-wrap {\n flex-wrap: wrap !important;\n }\n .flex-xl-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-xl-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-xl-start {\n justify-content: flex-start !important;\n }\n .justify-content-xl-end {\n justify-content: flex-end !important;\n }\n .justify-content-xl-center {\n justify-content: center !important;\n }\n .justify-content-xl-between {\n justify-content: space-between !important;\n }\n .justify-content-xl-around {\n justify-content: space-around !important;\n }\n .align-items-xl-start {\n align-items: flex-start !important;\n }\n .align-items-xl-end {\n align-items: flex-end !important;\n }\n .align-items-xl-center {\n align-items: center !important;\n }\n .align-items-xl-baseline {\n align-items: baseline !important;\n }\n .align-items-xl-stretch {\n align-items: stretch !important;\n }\n .align-content-xl-start {\n align-content: flex-start !important;\n }\n .align-content-xl-end {\n align-content: flex-end !important;\n }\n .align-content-xl-center {\n align-content: center !important;\n }\n .align-content-xl-between {\n align-content: space-between !important;\n }\n .align-content-xl-around {\n align-content: space-around !important;\n }\n .align-content-xl-stretch {\n align-content: stretch !important;\n }\n .align-self-xl-auto {\n align-self: auto !important;\n }\n .align-self-xl-start {\n align-self: flex-start !important;\n }\n .align-self-xl-end {\n align-self: flex-end !important;\n }\n .align-self-xl-center {\n align-self: center !important;\n }\n .align-self-xl-baseline {\n align-self: baseline !important;\n }\n .align-self-xl-stretch {\n align-self: stretch !important;\n }\n}\n\n.float-left {\n float: left !important;\n}\n\n.float-right {\n float: right !important;\n}\n\n.float-none {\n float: none !important;\n}\n\n@media (min-width: 576px) {\n .float-sm-left {\n float: left !important;\n }\n .float-sm-right {\n float: right !important;\n }\n .float-sm-none {\n float: none !important;\n }\n}\n\n@media (min-width: 768px) {\n .float-md-left {\n float: left !important;\n }\n .float-md-right {\n float: right !important;\n }\n .float-md-none {\n float: none !important;\n }\n}\n\n@media (min-width: 992px) {\n .float-lg-left {\n float: left !important;\n }\n .float-lg-right {\n float: right !important;\n }\n .float-lg-none {\n float: none !important;\n }\n}\n\n@media (min-width: 1200px) {\n .float-xl-left {\n float: left !important;\n }\n .float-xl-right {\n float: right !important;\n }\n .float-xl-none {\n float: none !important;\n }\n}\n\n.position-static {\n position: static !important;\n}\n\n.position-relative {\n position: relative !important;\n}\n\n.position-absolute {\n position: absolute !important;\n}\n\n.position-fixed {\n position: fixed !important;\n}\n\n.position-sticky {\n position: sticky !important;\n}\n\n.fixed-top {\n position: fixed;\n top: 0;\n right: 0;\n left: 0;\n z-index: 1030;\n}\n\n.fixed-bottom {\n position: fixed;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1030;\n}\n\n@supports (position: sticky) {\n .sticky-top {\n position: sticky;\n top: 0;\n z-index: 1020;\n }\n}\n\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n clip-path: inset(50%);\n border: 0;\n}\n\n.sr-only-focusable:active, .sr-only-focusable:focus {\n position: static;\n width: auto;\n height: auto;\n overflow: visible;\n clip: auto;\n white-space: normal;\n clip-path: none;\n}\n\n.w-25 {\n width: 25% !important;\n}\n\n.w-50 {\n width: 50% !important;\n}\n\n.w-75 {\n width: 75% !important;\n}\n\n.w-100 {\n width: 100% !important;\n}\n\n.h-25 {\n height: 25% !important;\n}\n\n.h-50 {\n height: 50% !important;\n}\n\n.h-75 {\n height: 75% !important;\n}\n\n.h-100 {\n height: 100% !important;\n}\n\n.mw-100 {\n max-width: 100% !important;\n}\n\n.mh-100 {\n max-height: 100% !important;\n}\n\n.m-0 {\n margin: 0 !important;\n}\n\n.mt-0,\n.my-0 {\n margin-top: 0 !important;\n}\n\n.mr-0,\n.mx-0 {\n margin-right: 0 !important;\n}\n\n.mb-0,\n.my-0 {\n margin-bottom: 0 !important;\n}\n\n.ml-0,\n.mx-0 {\n margin-left: 0 !important;\n}\n\n.m-1 {\n margin: 0.25rem !important;\n}\n\n.mt-1,\n.my-1 {\n margin-top: 0.25rem !important;\n}\n\n.mr-1,\n.mx-1 {\n margin-right: 0.25rem !important;\n}\n\n.mb-1,\n.my-1 {\n margin-bottom: 0.25rem !important;\n}\n\n.ml-1,\n.mx-1 {\n margin-left: 0.25rem !important;\n}\n\n.m-2 {\n margin: 0.5rem !important;\n}\n\n.mt-2,\n.my-2 {\n margin-top: 0.5rem !important;\n}\n\n.mr-2,\n.mx-2 {\n margin-right: 0.5rem !important;\n}\n\n.mb-2,\n.my-2 {\n margin-bottom: 0.5rem !important;\n}\n\n.ml-2,\n.mx-2 {\n margin-left: 0.5rem !important;\n}\n\n.m-3 {\n margin: 1rem !important;\n}\n\n.mt-3,\n.my-3 {\n margin-top: 1rem !important;\n}\n\n.mr-3,\n.mx-3 {\n margin-right: 1rem !important;\n}\n\n.mb-3,\n.my-3 {\n margin-bottom: 1rem !important;\n}\n\n.ml-3,\n.mx-3 {\n margin-left: 1rem !important;\n}\n\n.m-4 {\n margin: 1.5rem !important;\n}\n\n.mt-4,\n.my-4 {\n margin-top: 1.5rem !important;\n}\n\n.mr-4,\n.mx-4 {\n margin-right: 1.5rem !important;\n}\n\n.mb-4,\n.my-4 {\n margin-bottom: 1.5rem !important;\n}\n\n.ml-4,\n.mx-4 {\n margin-left: 1.5rem !important;\n}\n\n.m-5 {\n margin: 3rem !important;\n}\n\n.mt-5,\n.my-5 {\n margin-top: 3rem !important;\n}\n\n.mr-5,\n.mx-5 {\n margin-right: 3rem !important;\n}\n\n.mb-5,\n.my-5 {\n margin-bottom: 3rem !important;\n}\n\n.ml-5,\n.mx-5 {\n margin-left: 3rem !important;\n}\n\n.p-0 {\n padding: 0 !important;\n}\n\n.pt-0,\n.py-0 {\n padding-top: 0 !important;\n}\n\n.pr-0,\n.px-0 {\n padding-right: 0 !important;\n}\n\n.pb-0,\n.py-0 {\n padding-bottom: 0 !important;\n}\n\n.pl-0,\n.px-0 {\n padding-left: 0 !important;\n}\n\n.p-1 {\n padding: 0.25rem !important;\n}\n\n.pt-1,\n.py-1 {\n padding-top: 0.25rem !important;\n}\n\n.pr-1,\n.px-1 {\n padding-right: 0.25rem !important;\n}\n\n.pb-1,\n.py-1 {\n padding-bottom: 0.25rem !important;\n}\n\n.pl-1,\n.px-1 {\n padding-left: 0.25rem !important;\n}\n\n.p-2 {\n padding: 0.5rem !important;\n}\n\n.pt-2,\n.py-2 {\n padding-top: 0.5rem !important;\n}\n\n.pr-2,\n.px-2 {\n padding-right: 0.5rem !important;\n}\n\n.pb-2,\n.py-2 {\n padding-bottom: 0.5rem !important;\n}\n\n.pl-2,\n.px-2 {\n padding-left: 0.5rem !important;\n}\n\n.p-3 {\n padding: 1rem !important;\n}\n\n.pt-3,\n.py-3 {\n padding-top: 1rem !important;\n}\n\n.pr-3,\n.px-3 {\n padding-right: 1rem !important;\n}\n\n.pb-3,\n.py-3 {\n padding-bottom: 1rem !important;\n}\n\n.pl-3,\n.px-3 {\n padding-left: 1rem !important;\n}\n\n.p-4 {\n padding: 1.5rem !important;\n}\n\n.pt-4,\n.py-4 {\n padding-top: 1.5rem !important;\n}\n\n.pr-4,\n.px-4 {\n padding-right: 1.5rem !important;\n}\n\n.pb-4,\n.py-4 {\n padding-bottom: 1.5rem !important;\n}\n\n.pl-4,\n.px-4 {\n padding-left: 1.5rem !important;\n}\n\n.p-5 {\n padding: 3rem !important;\n}\n\n.pt-5,\n.py-5 {\n padding-top: 3rem !important;\n}\n\n.pr-5,\n.px-5 {\n padding-right: 3rem !important;\n}\n\n.pb-5,\n.py-5 {\n padding-bottom: 3rem !important;\n}\n\n.pl-5,\n.px-5 {\n padding-left: 3rem !important;\n}\n\n.m-auto {\n margin: auto !important;\n}\n\n.mt-auto,\n.my-auto {\n margin-top: auto !important;\n}\n\n.mr-auto,\n.mx-auto {\n margin-right: auto !important;\n}\n\n.mb-auto,\n.my-auto {\n margin-bottom: auto !important;\n}\n\n.ml-auto,\n.mx-auto {\n margin-left: auto !important;\n}\n\n@media (min-width: 576px) {\n .m-sm-0 {\n margin: 0 !important;\n }\n .mt-sm-0,\n .my-sm-0 {\n margin-top: 0 !important;\n }\n .mr-sm-0,\n .mx-sm-0 {\n margin-right: 0 !important;\n }\n .mb-sm-0,\n .my-sm-0 {\n margin-bottom: 0 !important;\n }\n .ml-sm-0,\n .mx-sm-0 {\n margin-left: 0 !important;\n }\n .m-sm-1 {\n margin: 0.25rem !important;\n }\n .mt-sm-1,\n .my-sm-1 {\n margin-top: 0.25rem !important;\n }\n .mr-sm-1,\n .mx-sm-1 {\n margin-right: 0.25rem !important;\n }\n .mb-sm-1,\n .my-sm-1 {\n margin-bottom: 0.25rem !important;\n }\n .ml-sm-1,\n .mx-sm-1 {\n margin-left: 0.25rem !important;\n }\n .m-sm-2 {\n margin: 0.5rem !important;\n }\n .mt-sm-2,\n .my-sm-2 {\n margin-top: 0.5rem !important;\n }\n .mr-sm-2,\n .mx-sm-2 {\n margin-right: 0.5rem !important;\n }\n .mb-sm-2,\n .my-sm-2 {\n margin-bottom: 0.5rem !important;\n }\n .ml-sm-2,\n .mx-sm-2 {\n margin-left: 0.5rem !important;\n }\n .m-sm-3 {\n margin: 1rem !important;\n }\n .mt-sm-3,\n .my-sm-3 {\n margin-top: 1rem !important;\n }\n .mr-sm-3,\n .mx-sm-3 {\n margin-right: 1rem !important;\n }\n .mb-sm-3,\n .my-sm-3 {\n margin-bottom: 1rem !important;\n }\n .ml-sm-3,\n .mx-sm-3 {\n margin-left: 1rem !important;\n }\n .m-sm-4 {\n margin: 1.5rem !important;\n }\n .mt-sm-4,\n .my-sm-4 {\n margin-top: 1.5rem !important;\n }\n .mr-sm-4,\n .mx-sm-4 {\n margin-right: 1.5rem !important;\n }\n .mb-sm-4,\n .my-sm-4 {\n margin-bottom: 1.5rem !important;\n }\n .ml-sm-4,\n .mx-sm-4 {\n margin-left: 1.5rem !important;\n }\n .m-sm-5 {\n margin: 3rem !important;\n }\n .mt-sm-5,\n .my-sm-5 {\n margin-top: 3rem !important;\n }\n .mr-sm-5,\n .mx-sm-5 {\n margin-right: 3rem !important;\n }\n .mb-sm-5,\n .my-sm-5 {\n margin-bottom: 3rem !important;\n }\n .ml-sm-5,\n .mx-sm-5 {\n margin-left: 3rem !important;\n }\n .p-sm-0 {\n padding: 0 !important;\n }\n .pt-sm-0,\n .py-sm-0 {\n padding-top: 0 !important;\n }\n .pr-sm-0,\n .px-sm-0 {\n padding-right: 0 !important;\n }\n .pb-sm-0,\n .py-sm-0 {\n padding-bottom: 0 !important;\n }\n .pl-sm-0,\n .px-sm-0 {\n padding-left: 0 !important;\n }\n .p-sm-1 {\n padding: 0.25rem !important;\n }\n .pt-sm-1,\n .py-sm-1 {\n padding-top: 0.25rem !important;\n }\n .pr-sm-1,\n .px-sm-1 {\n padding-right: 0.25rem !important;\n }\n .pb-sm-1,\n .py-sm-1 {\n padding-bottom: 0.25rem !important;\n }\n .pl-sm-1,\n .px-sm-1 {\n padding-left: 0.25rem !important;\n }\n .p-sm-2 {\n padding: 0.5rem !important;\n }\n .pt-sm-2,\n .py-sm-2 {\n padding-top: 0.5rem !important;\n }\n .pr-sm-2,\n .px-sm-2 {\n padding-right: 0.5rem !important;\n }\n .pb-sm-2,\n .py-sm-2 {\n padding-bottom: 0.5rem !important;\n }\n .pl-sm-2,\n .px-sm-2 {\n padding-left: 0.5rem !important;\n }\n .p-sm-3 {\n padding: 1rem !important;\n }\n .pt-sm-3,\n .py-sm-3 {\n padding-top: 1rem !important;\n }\n .pr-sm-3,\n .px-sm-3 {\n padding-right: 1rem !important;\n }\n .pb-sm-3,\n .py-sm-3 {\n padding-bottom: 1rem !important;\n }\n .pl-sm-3,\n .px-sm-3 {\n padding-left: 1rem !important;\n }\n .p-sm-4 {\n padding: 1.5rem !important;\n }\n .pt-sm-4,\n .py-sm-4 {\n padding-top: 1.5rem !important;\n }\n .pr-sm-4,\n .px-sm-4 {\n padding-right: 1.5rem !important;\n }\n .pb-sm-4,\n .py-sm-4 {\n padding-bottom: 1.5rem !important;\n }\n .pl-sm-4,\n .px-sm-4 {\n padding-left: 1.5rem !important;\n }\n .p-sm-5 {\n padding: 3rem !important;\n }\n .pt-sm-5,\n .py-sm-5 {\n padding-top: 3rem !important;\n }\n .pr-sm-5,\n .px-sm-5 {\n padding-right: 3rem !important;\n }\n .pb-sm-5,\n .py-sm-5 {\n padding-bottom: 3rem !important;\n }\n .pl-sm-5,\n .px-sm-5 {\n padding-left: 3rem !important;\n }\n .m-sm-auto {\n margin: auto !important;\n }\n .mt-sm-auto,\n .my-sm-auto {\n margin-top: auto !important;\n }\n .mr-sm-auto,\n .mx-sm-auto {\n margin-right: auto !important;\n }\n .mb-sm-auto,\n .my-sm-auto {\n margin-bottom: auto !important;\n }\n .ml-sm-auto,\n .mx-sm-auto {\n margin-left: auto !important;\n }\n}\n\n@media (min-width: 768px) {\n .m-md-0 {\n margin: 0 !important;\n }\n .mt-md-0,\n .my-md-0 {\n margin-top: 0 !important;\n }\n .mr-md-0,\n .mx-md-0 {\n margin-right: 0 !important;\n }\n .mb-md-0,\n .my-md-0 {\n margin-bottom: 0 !important;\n }\n .ml-md-0,\n .mx-md-0 {\n margin-left: 0 !important;\n }\n .m-md-1 {\n margin: 0.25rem !important;\n }\n .mt-md-1,\n .my-md-1 {\n margin-top: 0.25rem !important;\n }\n .mr-md-1,\n .mx-md-1 {\n margin-right: 0.25rem !important;\n }\n .mb-md-1,\n .my-md-1 {\n margin-bottom: 0.25rem !important;\n }\n .ml-md-1,\n .mx-md-1 {\n margin-left: 0.25rem !important;\n }\n .m-md-2 {\n margin: 0.5rem !important;\n }\n .mt-md-2,\n .my-md-2 {\n margin-top: 0.5rem !important;\n }\n .mr-md-2,\n .mx-md-2 {\n margin-right: 0.5rem !important;\n }\n .mb-md-2,\n .my-md-2 {\n margin-bottom: 0.5rem !important;\n }\n .ml-md-2,\n .mx-md-2 {\n margin-left: 0.5rem !important;\n }\n .m-md-3 {\n margin: 1rem !important;\n }\n .mt-md-3,\n .my-md-3 {\n margin-top: 1rem !important;\n }\n .mr-md-3,\n .mx-md-3 {\n margin-right: 1rem !important;\n }\n .mb-md-3,\n .my-md-3 {\n margin-bottom: 1rem !important;\n }\n .ml-md-3,\n .mx-md-3 {\n margin-left: 1rem !important;\n }\n .m-md-4 {\n margin: 1.5rem !important;\n }\n .mt-md-4,\n .my-md-4 {\n margin-top: 1.5rem !important;\n }\n .mr-md-4,\n .mx-md-4 {\n margin-right: 1.5rem !important;\n }\n .mb-md-4,\n .my-md-4 {\n margin-bottom: 1.5rem !important;\n }\n .ml-md-4,\n .mx-md-4 {\n margin-left: 1.5rem !important;\n }\n .m-md-5 {\n margin: 3rem !important;\n }\n .mt-md-5,\n .my-md-5 {\n margin-top: 3rem !important;\n }\n .mr-md-5,\n .mx-md-5 {\n margin-right: 3rem !important;\n }\n .mb-md-5,\n .my-md-5 {\n margin-bottom: 3rem !important;\n }\n .ml-md-5,\n .mx-md-5 {\n margin-left: 3rem !important;\n }\n .p-md-0 {\n padding: 0 !important;\n }\n .pt-md-0,\n .py-md-0 {\n padding-top: 0 !important;\n }\n .pr-md-0,\n .px-md-0 {\n padding-right: 0 !important;\n }\n .pb-md-0,\n .py-md-0 {\n padding-bottom: 0 !important;\n }\n .pl-md-0,\n .px-md-0 {\n padding-left: 0 !important;\n }\n .p-md-1 {\n padding: 0.25rem !important;\n }\n .pt-md-1,\n .py-md-1 {\n padding-top: 0.25rem !important;\n }\n .pr-md-1,\n .px-md-1 {\n padding-right: 0.25rem !important;\n }\n .pb-md-1,\n .py-md-1 {\n padding-bottom: 0.25rem !important;\n }\n .pl-md-1,\n .px-md-1 {\n padding-left: 0.25rem !important;\n }\n .p-md-2 {\n padding: 0.5rem !important;\n }\n .pt-md-2,\n .py-md-2 {\n padding-top: 0.5rem !important;\n }\n .pr-md-2,\n .px-md-2 {\n padding-right: 0.5rem !important;\n }\n .pb-md-2,\n .py-md-2 {\n padding-bottom: 0.5rem !important;\n }\n .pl-md-2,\n .px-md-2 {\n padding-left: 0.5rem !important;\n }\n .p-md-3 {\n padding: 1rem !important;\n }\n .pt-md-3,\n .py-md-3 {\n padding-top: 1rem !important;\n }\n .pr-md-3,\n .px-md-3 {\n padding-right: 1rem !important;\n }\n .pb-md-3,\n .py-md-3 {\n padding-bottom: 1rem !important;\n }\n .pl-md-3,\n .px-md-3 {\n padding-left: 1rem !important;\n }\n .p-md-4 {\n padding: 1.5rem !important;\n }\n .pt-md-4,\n .py-md-4 {\n padding-top: 1.5rem !important;\n }\n .pr-md-4,\n .px-md-4 {\n padding-right: 1.5rem !important;\n }\n .pb-md-4,\n .py-md-4 {\n padding-bottom: 1.5rem !important;\n }\n .pl-md-4,\n .px-md-4 {\n padding-left: 1.5rem !important;\n }\n .p-md-5 {\n padding: 3rem !important;\n }\n .pt-md-5,\n .py-md-5 {\n padding-top: 3rem !important;\n }\n .pr-md-5,\n .px-md-5 {\n padding-right: 3rem !important;\n }\n .pb-md-5,\n .py-md-5 {\n padding-bottom: 3rem !important;\n }\n .pl-md-5,\n .px-md-5 {\n padding-left: 3rem !important;\n }\n .m-md-auto {\n margin: auto !important;\n }\n .mt-md-auto,\n .my-md-auto {\n margin-top: auto !important;\n }\n .mr-md-auto,\n .mx-md-auto {\n margin-right: auto !important;\n }\n .mb-md-auto,\n .my-md-auto {\n margin-bottom: auto !important;\n }\n .ml-md-auto,\n .mx-md-auto {\n margin-left: auto !important;\n }\n}\n\n@media (min-width: 992px) {\n .m-lg-0 {\n margin: 0 !important;\n }\n .mt-lg-0,\n .my-lg-0 {\n margin-top: 0 !important;\n }\n .mr-lg-0,\n .mx-lg-0 {\n margin-right: 0 !important;\n }\n .mb-lg-0,\n .my-lg-0 {\n margin-bottom: 0 !important;\n }\n .ml-lg-0,\n .mx-lg-0 {\n margin-left: 0 !important;\n }\n .m-lg-1 {\n margin: 0.25rem !important;\n }\n .mt-lg-1,\n .my-lg-1 {\n margin-top: 0.25rem !important;\n }\n .mr-lg-1,\n .mx-lg-1 {\n margin-right: 0.25rem !important;\n }\n .mb-lg-1,\n .my-lg-1 {\n margin-bottom: 0.25rem !important;\n }\n .ml-lg-1,\n .mx-lg-1 {\n margin-left: 0.25rem !important;\n }\n .m-lg-2 {\n margin: 0.5rem !important;\n }\n .mt-lg-2,\n .my-lg-2 {\n margin-top: 0.5rem !important;\n }\n .mr-lg-2,\n .mx-lg-2 {\n margin-right: 0.5rem !important;\n }\n .mb-lg-2,\n .my-lg-2 {\n margin-bottom: 0.5rem !important;\n }\n .ml-lg-2,\n .mx-lg-2 {\n margin-left: 0.5rem !important;\n }\n .m-lg-3 {\n margin: 1rem !important;\n }\n .mt-lg-3,\n .my-lg-3 {\n margin-top: 1rem !important;\n }\n .mr-lg-3,\n .mx-lg-3 {\n margin-right: 1rem !important;\n }\n .mb-lg-3,\n .my-lg-3 {\n margin-bottom: 1rem !important;\n }\n .ml-lg-3,\n .mx-lg-3 {\n margin-left: 1rem !important;\n }\n .m-lg-4 {\n margin: 1.5rem !important;\n }\n .mt-lg-4,\n .my-lg-4 {\n margin-top: 1.5rem !important;\n }\n .mr-lg-4,\n .mx-lg-4 {\n margin-right: 1.5rem !important;\n }\n .mb-lg-4,\n .my-lg-4 {\n margin-bottom: 1.5rem !important;\n }\n .ml-lg-4,\n .mx-lg-4 {\n margin-left: 1.5rem !important;\n }\n .m-lg-5 {\n margin: 3rem !important;\n }\n .mt-lg-5,\n .my-lg-5 {\n margin-top: 3rem !important;\n }\n .mr-lg-5,\n .mx-lg-5 {\n margin-right: 3rem !important;\n }\n .mb-lg-5,\n .my-lg-5 {\n margin-bottom: 3rem !important;\n }\n .ml-lg-5,\n .mx-lg-5 {\n margin-left: 3rem !important;\n }\n .p-lg-0 {\n padding: 0 !important;\n }\n .pt-lg-0,\n .py-lg-0 {\n padding-top: 0 !important;\n }\n .pr-lg-0,\n .px-lg-0 {\n padding-right: 0 !important;\n }\n .pb-lg-0,\n .py-lg-0 {\n padding-bottom: 0 !important;\n }\n .pl-lg-0,\n .px-lg-0 {\n padding-left: 0 !important;\n }\n .p-lg-1 {\n padding: 0.25rem !important;\n }\n .pt-lg-1,\n .py-lg-1 {\n padding-top: 0.25rem !important;\n }\n .pr-lg-1,\n .px-lg-1 {\n padding-right: 0.25rem !important;\n }\n .pb-lg-1,\n .py-lg-1 {\n padding-bottom: 0.25rem !important;\n }\n .pl-lg-1,\n .px-lg-1 {\n padding-left: 0.25rem !important;\n }\n .p-lg-2 {\n padding: 0.5rem !important;\n }\n .pt-lg-2,\n .py-lg-2 {\n padding-top: 0.5rem !important;\n }\n .pr-lg-2,\n .px-lg-2 {\n padding-right: 0.5rem !important;\n }\n .pb-lg-2,\n .py-lg-2 {\n padding-bottom: 0.5rem !important;\n }\n .pl-lg-2,\n .px-lg-2 {\n padding-left: 0.5rem !important;\n }\n .p-lg-3 {\n padding: 1rem !important;\n }\n .pt-lg-3,\n .py-lg-3 {\n padding-top: 1rem !important;\n }\n .pr-lg-3,\n .px-lg-3 {\n padding-right: 1rem !important;\n }\n .pb-lg-3,\n .py-lg-3 {\n padding-bottom: 1rem !important;\n }\n .pl-lg-3,\n .px-lg-3 {\n padding-left: 1rem !important;\n }\n .p-lg-4 {\n padding: 1.5rem !important;\n }\n .pt-lg-4,\n .py-lg-4 {\n padding-top: 1.5rem !important;\n }\n .pr-lg-4,\n .px-lg-4 {\n padding-right: 1.5rem !important;\n }\n .pb-lg-4,\n .py-lg-4 {\n padding-bottom: 1.5rem !important;\n }\n .pl-lg-4,\n .px-lg-4 {\n padding-left: 1.5rem !important;\n }\n .p-lg-5 {\n padding: 3rem !important;\n }\n .pt-lg-5,\n .py-lg-5 {\n padding-top: 3rem !important;\n }\n .pr-lg-5,\n .px-lg-5 {\n padding-right: 3rem !important;\n }\n .pb-lg-5,\n .py-lg-5 {\n padding-bottom: 3rem !important;\n }\n .pl-lg-5,\n .px-lg-5 {\n padding-left: 3rem !important;\n }\n .m-lg-auto {\n margin: auto !important;\n }\n .mt-lg-auto,\n .my-lg-auto {\n margin-top: auto !important;\n }\n .mr-lg-auto,\n .mx-lg-auto {\n margin-right: auto !important;\n }\n .mb-lg-auto,\n .my-lg-auto {\n margin-bottom: auto !important;\n }\n .ml-lg-auto,\n .mx-lg-auto {\n margin-left: auto !important;\n }\n}\n\n@media (min-width: 1200px) {\n .m-xl-0 {\n margin: 0 !important;\n }\n .mt-xl-0,\n .my-xl-0 {\n margin-top: 0 !important;\n }\n .mr-xl-0,\n .mx-xl-0 {\n margin-right: 0 !important;\n }\n .mb-xl-0,\n .my-xl-0 {\n margin-bottom: 0 !important;\n }\n .ml-xl-0,\n .mx-xl-0 {\n margin-left: 0 !important;\n }\n .m-xl-1 {\n margin: 0.25rem !important;\n }\n .mt-xl-1,\n .my-xl-1 {\n margin-top: 0.25rem !important;\n }\n .mr-xl-1,\n .mx-xl-1 {\n margin-right: 0.25rem !important;\n }\n .mb-xl-1,\n .my-xl-1 {\n margin-bottom: 0.25rem !important;\n }\n .ml-xl-1,\n .mx-xl-1 {\n margin-left: 0.25rem !important;\n }\n .m-xl-2 {\n margin: 0.5rem !important;\n }\n .mt-xl-2,\n .my-xl-2 {\n margin-top: 0.5rem !important;\n }\n .mr-xl-2,\n .mx-xl-2 {\n margin-right: 0.5rem !important;\n }\n .mb-xl-2,\n .my-xl-2 {\n margin-bottom: 0.5rem !important;\n }\n .ml-xl-2,\n .mx-xl-2 {\n margin-left: 0.5rem !important;\n }\n .m-xl-3 {\n margin: 1rem !important;\n }\n .mt-xl-3,\n .my-xl-3 {\n margin-top: 1rem !important;\n }\n .mr-xl-3,\n .mx-xl-3 {\n margin-right: 1rem !important;\n }\n .mb-xl-3,\n .my-xl-3 {\n margin-bottom: 1rem !important;\n }\n .ml-xl-3,\n .mx-xl-3 {\n margin-left: 1rem !important;\n }\n .m-xl-4 {\n margin: 1.5rem !important;\n }\n .mt-xl-4,\n .my-xl-4 {\n margin-top: 1.5rem !important;\n }\n .mr-xl-4,\n .mx-xl-4 {\n margin-right: 1.5rem !important;\n }\n .mb-xl-4,\n .my-xl-4 {\n margin-bottom: 1.5rem !important;\n }\n .ml-xl-4,\n .mx-xl-4 {\n margin-left: 1.5rem !important;\n }\n .m-xl-5 {\n margin: 3rem !important;\n }\n .mt-xl-5,\n .my-xl-5 {\n margin-top: 3rem !important;\n }\n .mr-xl-5,\n .mx-xl-5 {\n margin-right: 3rem !important;\n }\n .mb-xl-5,\n .my-xl-5 {\n margin-bottom: 3rem !important;\n }\n .ml-xl-5,\n .mx-xl-5 {\n margin-left: 3rem !important;\n }\n .p-xl-0 {\n padding: 0 !important;\n }\n .pt-xl-0,\n .py-xl-0 {\n padding-top: 0 !important;\n }\n .pr-xl-0,\n .px-xl-0 {\n padding-right: 0 !important;\n }\n .pb-xl-0,\n .py-xl-0 {\n padding-bottom: 0 !important;\n }\n .pl-xl-0,\n .px-xl-0 {\n padding-left: 0 !important;\n }\n .p-xl-1 {\n padding: 0.25rem !important;\n }\n .pt-xl-1,\n .py-xl-1 {\n padding-top: 0.25rem !important;\n }\n .pr-xl-1,\n .px-xl-1 {\n padding-right: 0.25rem !important;\n }\n .pb-xl-1,\n .py-xl-1 {\n padding-bottom: 0.25rem !important;\n }\n .pl-xl-1,\n .px-xl-1 {\n padding-left: 0.25rem !important;\n }\n .p-xl-2 {\n padding: 0.5rem !important;\n }\n .pt-xl-2,\n .py-xl-2 {\n padding-top: 0.5rem !important;\n }\n .pr-xl-2,\n .px-xl-2 {\n padding-right: 0.5rem !important;\n }\n .pb-xl-2,\n .py-xl-2 {\n padding-bottom: 0.5rem !important;\n }\n .pl-xl-2,\n .px-xl-2 {\n padding-left: 0.5rem !important;\n }\n .p-xl-3 {\n padding: 1rem !important;\n }\n .pt-xl-3,\n .py-xl-3 {\n padding-top: 1rem !important;\n }\n .pr-xl-3,\n .px-xl-3 {\n padding-right: 1rem !important;\n }\n .pb-xl-3,\n .py-xl-3 {\n padding-bottom: 1rem !important;\n }\n .pl-xl-3,\n .px-xl-3 {\n padding-left: 1rem !important;\n }\n .p-xl-4 {\n padding: 1.5rem !important;\n }\n .pt-xl-4,\n .py-xl-4 {\n padding-top: 1.5rem !important;\n }\n .pr-xl-4,\n .px-xl-4 {\n padding-right: 1.5rem !important;\n }\n .pb-xl-4,\n .py-xl-4 {\n padding-bottom: 1.5rem !important;\n }\n .pl-xl-4,\n .px-xl-4 {\n padding-left: 1.5rem !important;\n }\n .p-xl-5 {\n padding: 3rem !important;\n }\n .pt-xl-5,\n .py-xl-5 {\n padding-top: 3rem !important;\n }\n .pr-xl-5,\n .px-xl-5 {\n padding-right: 3rem !important;\n }\n .pb-xl-5,\n .py-xl-5 {\n padding-bottom: 3rem !important;\n }\n .pl-xl-5,\n .px-xl-5 {\n padding-left: 3rem !important;\n }\n .m-xl-auto {\n margin: auto !important;\n }\n .mt-xl-auto,\n .my-xl-auto {\n margin-top: auto !important;\n }\n .mr-xl-auto,\n .mx-xl-auto {\n margin-right: auto !important;\n }\n .mb-xl-auto,\n .my-xl-auto {\n margin-bottom: auto !important;\n }\n .ml-xl-auto,\n .mx-xl-auto {\n margin-left: auto !important;\n }\n}\n\n.text-justify {\n text-align: justify !important;\n}\n\n.text-nowrap {\n white-space: nowrap !important;\n}\n\n.text-truncate {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n\n.text-left {\n text-align: left !important;\n}\n\n.text-right {\n text-align: right !important;\n}\n\n.text-center {\n text-align: center !important;\n}\n\n@media (min-width: 576px) {\n .text-sm-left {\n text-align: left !important;\n }\n .text-sm-right {\n text-align: right !important;\n }\n .text-sm-center {\n text-align: center !important;\n }\n}\n\n@media (min-width: 768px) {\n .text-md-left {\n text-align: left !important;\n }\n .text-md-right {\n text-align: right !important;\n }\n .text-md-center {\n text-align: center !important;\n }\n}\n\n@media (min-width: 992px) {\n .text-lg-left {\n text-align: left !important;\n }\n .text-lg-right {\n text-align: right !important;\n }\n .text-lg-center {\n text-align: center !important;\n }\n}\n\n@media (min-width: 1200px) {\n .text-xl-left {\n text-align: left !important;\n }\n .text-xl-right {\n text-align: right !important;\n }\n .text-xl-center {\n text-align: center !important;\n }\n}\n\n.text-lowercase {\n text-transform: lowercase !important;\n}\n\n.text-uppercase {\n text-transform: uppercase !important;\n}\n\n.text-capitalize {\n text-transform: capitalize !important;\n}\n\n.font-weight-light {\n font-weight: 300 !important;\n}\n\n.font-weight-normal {\n font-weight: 400 !important;\n}\n\n.font-weight-bold {\n font-weight: 700 !important;\n}\n\n.font-italic {\n font-style: italic !important;\n}\n\n.text-white {\n color: #fff !important;\n}\n\n.text-primary {\n color: #007bff !important;\n}\n\na.text-primary:hover, a.text-primary:focus {\n color: #0062cc !important;\n}\n\n.text-secondary {\n color: #6c757d !important;\n}\n\na.text-secondary:hover, a.text-secondary:focus {\n color: #545b62 !important;\n}\n\n.text-success {\n color: #28a745 !important;\n}\n\na.text-success:hover, a.text-success:focus {\n color: #1e7e34 !important;\n}\n\n.text-info {\n color: #17a2b8 !important;\n}\n\na.text-info:hover, a.text-info:focus {\n color: #117a8b !important;\n}\n\n.text-warning {\n color: #ffc107 !important;\n}\n\na.text-warning:hover, a.text-warning:focus {\n color: #d39e00 !important;\n}\n\n.text-danger {\n color: #dc3545 !important;\n}\n\na.text-danger:hover, a.text-danger:focus {\n color: #bd2130 !important;\n}\n\n.text-light {\n color: #f8f9fa !important;\n}\n\na.text-light:hover, a.text-light:focus {\n color: #dae0e5 !important;\n}\n\n.text-dark {\n color: #343a40 !important;\n}\n\na.text-dark:hover, a.text-dark:focus {\n color: #1d2124 !important;\n}\n\n.text-muted {\n color: #6c757d !important;\n}\n\n.text-hide {\n font: 0/0 a;\n color: transparent;\n text-shadow: none;\n background-color: transparent;\n border: 0;\n}\n\n.visible {\n visibility: visible !important;\n}\n\n.invisible {\n visibility: hidden !important;\n}\n\n@media print {\n *,\n *::before,\n *::after {\n text-shadow: none !important;\n box-shadow: none !important;\n }\n a:not(.btn) {\n text-decoration: underline;\n }\n abbr[title]::after {\n content: \" (\" attr(title) \")\";\n }\n pre {\n white-space: pre-wrap !important;\n }\n pre,\n blockquote {\n border: 1px solid #999;\n page-break-inside: avoid;\n }\n thead {\n display: table-header-group;\n }\n tr,\n img {\n page-break-inside: avoid;\n }\n p,\n h2,\n h3 {\n orphans: 3;\n widows: 3;\n }\n h2,\n h3 {\n page-break-after: avoid;\n }\n @page {\n size: a3;\n }\n body {\n min-width: 992px !important;\n }\n .container {\n min-width: 992px !important;\n }\n .navbar {\n display: none;\n }\n .badge {\n border: 1px solid #000;\n }\n .table {\n border-collapse: collapse !important;\n }\n .table td,\n .table th {\n background-color: #fff !important;\n }\n .table-bordered th,\n .table-bordered td {\n border: 1px solid #ddd !important;\n }\n}\n\n/*# sourceMappingURL=bootstrap.css.map */","// Variables\n//\n// Variables should follow the `$component-state-property-size` formula for\n// consistent naming. Ex: $nav-link-disabled-color and $modal-content-box-shadow-xs.\n\n\n//\n// Color system\n//\n\n// stylelint-disable\n$white: #fff !default;\n$gray-100: #f8f9fa !default;\n$gray-200: #e9ecef !default;\n$gray-300: #dee2e6 !default;\n$gray-400: #ced4da !default;\n$gray-500: #adb5bd !default;\n$gray-600: #6c757d !default;\n$gray-700: #495057 !default;\n$gray-800: #343a40 !default;\n$gray-900: #212529 !default;\n$black: #000 !default;\n\n$grays: () !default;\n$grays: map-merge((\n \"100\": $gray-100,\n \"200\": $gray-200,\n \"300\": $gray-300,\n \"400\": $gray-400,\n \"500\": $gray-500,\n \"600\": $gray-600,\n \"700\": $gray-700,\n \"800\": $gray-800,\n \"900\": $gray-900\n), $grays);\n\n$blue: #007bff !default;\n$indigo: #6610f2 !default;\n$purple: #6f42c1 !default;\n$pink: #e83e8c !default;\n$red: #dc3545 !default;\n$orange: #fd7e14 !default;\n$yellow: #ffc107 !default;\n$green: #28a745 !default;\n$teal: #20c997 !default;\n$cyan: #17a2b8 !default;\n\n$colors: () !default;\n$colors: map-merge((\n \"blue\": $blue,\n \"indigo\": $indigo,\n \"purple\": $purple,\n \"pink\": $pink,\n \"red\": $red,\n \"orange\": $orange,\n \"yellow\": $yellow,\n \"green\": $green,\n \"teal\": $teal,\n \"cyan\": $cyan,\n \"white\": $white,\n \"gray\": $gray-600,\n \"gray-dark\": $gray-800\n), $colors);\n\n$primary: $blue !default;\n$secondary: $gray-600 !default;\n$success: $green !default;\n$info: $cyan !default;\n$warning: $yellow !default;\n$danger: $red !default;\n$light: $gray-100 !default;\n$dark: $gray-800 !default;\n\n$theme-colors: () !default;\n$theme-colors: map-merge((\n \"primary\": $primary,\n \"secondary\": $secondary,\n \"success\": $success,\n \"info\": $info,\n \"warning\": $warning,\n \"danger\": $danger,\n \"light\": $light,\n \"dark\": $dark\n), $theme-colors);\n// stylelint-enable\n\n// Set a specific jump point for requesting color jumps\n$theme-color-interval: 8% !default;\n\n// The yiq lightness value that determines when the lightness of color changes from \"dark\" to \"light\". Acceptable values are between 0 and 255.\n$yiq-contrasted-threshold: 150 !default;\n\n// Customize the light and dark text colors for use in our YIQ color contrast function.\n$yiq-text-dark: $gray-900 !default;\n$yiq-text-light: $white !default;\n\n// Options\n//\n// Quickly modify global styling by enabling or disabling optional features.\n\n$enable-caret: true !default;\n$enable-rounded: true !default;\n$enable-shadows: false !default;\n$enable-gradients: false !default;\n$enable-transitions: true !default;\n$enable-hover-media-query: false !default; // Deprecated, no longer affects any compiled CSS\n$enable-grid-classes: true !default;\n$enable-print-styles: true !default;\n\n\n// Spacing\n//\n// Control the default styling of most Bootstrap elements by modifying these\n// variables. Mostly focused on spacing.\n// You can add more entries to the $spacers map, should you need more variation.\n\n// stylelint-disable\n$spacer: 1rem !default;\n$spacers: () !default;\n$spacers: map-merge((\n 0: 0,\n 1: ($spacer * .25),\n 2: ($spacer * .5),\n 3: $spacer,\n 4: ($spacer * 1.5),\n 5: ($spacer * 3)\n), $spacers);\n\n// This variable affects the `.h-*` and `.w-*` classes.\n$sizes: () !default;\n$sizes: map-merge((\n 25: 25%,\n 50: 50%,\n 75: 75%,\n 100: 100%\n), $sizes);\n// stylelint-enable\n\n// Body\n//\n// Settings for the `` element.\n\n$body-bg: $white !default;\n$body-color: $gray-900 !default;\n\n// Links\n//\n// Style anchor elements.\n\n$link-color: theme-color(\"primary\") !default;\n$link-decoration: none !default;\n$link-hover-color: darken($link-color, 15%) !default;\n$link-hover-decoration: underline !default;\n\n// Paragraphs\n//\n// Style p element.\n\n$paragraph-margin-bottom: 1rem !default;\n\n\n// Grid breakpoints\n//\n// Define the minimum dimensions at which your layout will change,\n// adapting to different screen sizes, for use in media queries.\n\n$grid-breakpoints: (\n xs: 0,\n sm: 576px,\n md: 768px,\n lg: 992px,\n xl: 1200px\n) !default;\n\n@include _assert-ascending($grid-breakpoints, \"$grid-breakpoints\");\n@include _assert-starts-at-zero($grid-breakpoints);\n\n\n// Grid containers\n//\n// Define the maximum width of `.container` for different screen sizes.\n\n$container-max-widths: (\n sm: 540px,\n md: 720px,\n lg: 960px,\n xl: 1140px\n) !default;\n\n@include _assert-ascending($container-max-widths, \"$container-max-widths\");\n\n\n// Grid columns\n//\n// Set the number of columns and specify the width of the gutters.\n\n$grid-columns: 12 !default;\n$grid-gutter-width: 30px !default;\n\n// Components\n//\n// Define common padding and border radius sizes and more.\n\n$line-height-lg: 1.5 !default;\n$line-height-sm: 1.5 !default;\n\n$border-width: 1px !default;\n$border-color: $gray-300 !default;\n\n$border-radius: .25rem !default;\n$border-radius-lg: .3rem !default;\n$border-radius-sm: .2rem !default;\n\n$component-active-color: $white !default;\n$component-active-bg: theme-color(\"primary\") !default;\n\n$caret-width: .3em !default;\n\n$transition-base: all .2s ease-in-out !default;\n$transition-fade: opacity .15s linear !default;\n$transition-collapse: height .35s ease !default;\n\n\n// Fonts\n//\n// Font, line-height, and color for body text, headings, and more.\n\n// stylelint-disable value-keyword-case\n$font-family-sans-serif: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\" !default;\n$font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace !default;\n$font-family-base: $font-family-sans-serif !default;\n// stylelint-enable value-keyword-case\n\n$font-size-base: 1rem !default; // Assumes the browser default, typically `16px`\n$font-size-lg: ($font-size-base * 1.25) !default;\n$font-size-sm: ($font-size-base * .875) !default;\n\n$font-weight-light: 300 !default;\n$font-weight-normal: 400 !default;\n$font-weight-bold: 700 !default;\n\n$font-weight-base: $font-weight-normal !default;\n$line-height-base: 1.5 !default;\n\n$h1-font-size: $font-size-base * 2.5 !default;\n$h2-font-size: $font-size-base * 2 !default;\n$h3-font-size: $font-size-base * 1.75 !default;\n$h4-font-size: $font-size-base * 1.5 !default;\n$h5-font-size: $font-size-base * 1.25 !default;\n$h6-font-size: $font-size-base !default;\n\n$headings-margin-bottom: ($spacer / 2) !default;\n$headings-font-family: inherit !default;\n$headings-font-weight: 500 !default;\n$headings-line-height: 1.2 !default;\n$headings-color: inherit !default;\n\n$display1-size: 6rem !default;\n$display2-size: 5.5rem !default;\n$display3-size: 4.5rem !default;\n$display4-size: 3.5rem !default;\n\n$display1-weight: 300 !default;\n$display2-weight: 300 !default;\n$display3-weight: 300 !default;\n$display4-weight: 300 !default;\n$display-line-height: $headings-line-height !default;\n\n$lead-font-size: ($font-size-base * 1.25) !default;\n$lead-font-weight: 300 !default;\n\n$small-font-size: 80% !default;\n\n$text-muted: $gray-600 !default;\n\n$blockquote-small-color: $gray-600 !default;\n$blockquote-font-size: ($font-size-base * 1.25) !default;\n\n$hr-border-color: rgba($black, .1) !default;\n$hr-border-width: $border-width !default;\n\n$mark-padding: .2em !default;\n\n$dt-font-weight: $font-weight-bold !default;\n\n$kbd-box-shadow: inset 0 -.1rem 0 rgba($black, .25) !default;\n$nested-kbd-font-weight: $font-weight-bold !default;\n\n$list-inline-padding: .5rem !default;\n\n$mark-bg: #fcf8e3 !default;\n\n$hr-margin-y: $spacer !default;\n\n\n// Tables\n//\n// Customizes the `.table` component with basic values, each used across all table variations.\n\n$table-cell-padding: .75rem !default;\n$table-cell-padding-sm: .3rem !default;\n\n$table-bg: transparent !default;\n$table-accent-bg: rgba($black, .05) !default;\n$table-hover-bg: rgba($black, .075) !default;\n$table-active-bg: $table-hover-bg !default;\n\n$table-border-width: $border-width !default;\n$table-border-color: $gray-300 !default;\n\n$table-head-bg: $gray-200 !default;\n$table-head-color: $gray-700 !default;\n\n$table-dark-bg: $gray-900 !default;\n$table-dark-accent-bg: rgba($white, .05) !default;\n$table-dark-hover-bg: rgba($white, .075) !default;\n$table-dark-border-color: lighten($gray-900, 7.5%) !default;\n$table-dark-color: $body-bg !default;\n\n\n// Buttons + Forms\n//\n// Shared variables that are reassigned to `$input-` and `$btn-` specific variables.\n\n$input-btn-padding-y: .375rem !default;\n$input-btn-padding-x: .75rem !default;\n$input-btn-line-height: $line-height-base !default;\n\n$input-btn-focus-width: .2rem !default;\n$input-btn-focus-color: rgba($component-active-bg, .25) !default;\n$input-btn-focus-box-shadow: 0 0 0 $input-btn-focus-width $input-btn-focus-color !default;\n\n$input-btn-padding-y-sm: .25rem !default;\n$input-btn-padding-x-sm: .5rem !default;\n$input-btn-line-height-sm: $line-height-sm !default;\n\n$input-btn-padding-y-lg: .5rem !default;\n$input-btn-padding-x-lg: 1rem !default;\n$input-btn-line-height-lg: $line-height-lg !default;\n\n$input-btn-border-width: $border-width !default;\n\n\n// Buttons\n//\n// For each of Bootstrap's buttons, define text, background, and border color.\n\n$btn-padding-y: $input-btn-padding-y !default;\n$btn-padding-x: $input-btn-padding-x !default;\n$btn-line-height: $input-btn-line-height !default;\n\n$btn-padding-y-sm: $input-btn-padding-y-sm !default;\n$btn-padding-x-sm: $input-btn-padding-x-sm !default;\n$btn-line-height-sm: $input-btn-line-height-sm !default;\n\n$btn-padding-y-lg: $input-btn-padding-y-lg !default;\n$btn-padding-x-lg: $input-btn-padding-x-lg !default;\n$btn-line-height-lg: $input-btn-line-height-lg !default;\n\n$btn-border-width: $input-btn-border-width !default;\n\n$btn-font-weight: $font-weight-normal !default;\n$btn-box-shadow: inset 0 1px 0 rgba($white, .15), 0 1px 1px rgba($black, .075) !default;\n$btn-focus-width: $input-btn-focus-width !default;\n$btn-focus-box-shadow: $input-btn-focus-box-shadow !default;\n$btn-disabled-opacity: .65 !default;\n$btn-active-box-shadow: inset 0 3px 5px rgba($black, .125) !default;\n\n$btn-link-disabled-color: $gray-600 !default;\n\n$btn-block-spacing-y: .5rem !default;\n\n// Allows for customizing button radius independently from global border radius\n$btn-border-radius: $border-radius !default;\n$btn-border-radius-lg: $border-radius-lg !default;\n$btn-border-radius-sm: $border-radius-sm !default;\n\n$btn-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n\n\n// Forms\n\n$input-padding-y: $input-btn-padding-y !default;\n$input-padding-x: $input-btn-padding-x !default;\n$input-line-height: $input-btn-line-height !default;\n\n$input-padding-y-sm: $input-btn-padding-y-sm !default;\n$input-padding-x-sm: $input-btn-padding-x-sm !default;\n$input-line-height-sm: $input-btn-line-height-sm !default;\n\n$input-padding-y-lg: $input-btn-padding-y-lg !default;\n$input-padding-x-lg: $input-btn-padding-x-lg !default;\n$input-line-height-lg: $input-btn-line-height-lg !default;\n\n$input-bg: $white !default;\n$input-disabled-bg: $gray-200 !default;\n\n$input-color: $gray-700 !default;\n$input-border-color: $gray-400 !default;\n$input-border-width: $input-btn-border-width !default;\n$input-box-shadow: inset 0 1px 1px rgba($black, .075) !default;\n\n$input-border-radius: $border-radius !default;\n$input-border-radius-lg: $border-radius-lg !default;\n$input-border-radius-sm: $border-radius-sm !default;\n\n$input-focus-bg: $input-bg !default;\n$input-focus-border-color: lighten($component-active-bg, 25%) !default;\n$input-focus-color: $input-color !default;\n$input-focus-width: $input-btn-focus-width !default;\n$input-focus-box-shadow: $input-btn-focus-box-shadow !default;\n\n$input-placeholder-color: $gray-600 !default;\n\n$input-height-border: $input-border-width * 2 !default;\n\n$input-height-inner: ($font-size-base * $input-btn-line-height) + ($input-btn-padding-y * 2) !default;\n$input-height: calc(#{$input-height-inner} + #{$input-height-border}) !default;\n\n$input-height-inner-sm: ($font-size-sm * $input-btn-line-height-sm) + ($input-btn-padding-y-sm * 2) !default;\n$input-height-sm: calc(#{$input-height-inner-sm} + #{$input-height-border}) !default;\n\n$input-height-inner-lg: ($font-size-lg * $input-btn-line-height-lg) + ($input-btn-padding-y-lg * 2) !default;\n$input-height-lg: calc(#{$input-height-inner-lg} + #{$input-height-border}) !default;\n\n$input-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n\n$form-text-margin-top: .25rem !default;\n\n$form-check-input-gutter: 1.25rem !default;\n$form-check-input-margin-y: .3rem !default;\n$form-check-input-margin-x: .25rem !default;\n\n$form-check-inline-margin-x: .75rem !default;\n$form-check-inline-input-margin-x: .3125rem !default;\n\n$form-group-margin-bottom: 1rem !default;\n\n$input-group-addon-color: $input-color !default;\n$input-group-addon-bg: $gray-200 !default;\n$input-group-addon-border-color: $input-border-color !default;\n\n$custom-control-gutter: 1.5rem !default;\n$custom-control-spacer-x: 1rem !default;\n\n$custom-control-indicator-size: 1rem !default;\n$custom-control-indicator-bg: $gray-300 !default;\n$custom-control-indicator-bg-size: 50% 50% !default;\n$custom-control-indicator-box-shadow: inset 0 .25rem .25rem rgba($black, .1) !default;\n\n$custom-control-indicator-disabled-bg: $gray-200 !default;\n$custom-control-label-disabled-color: $gray-600 !default;\n\n$custom-control-indicator-checked-color: $component-active-color !default;\n$custom-control-indicator-checked-bg: $component-active-bg !default;\n$custom-control-indicator-checked-disabled-bg: rgba(theme-color(\"primary\"), .5) !default;\n$custom-control-indicator-checked-box-shadow: none !default;\n\n$custom-control-indicator-focus-box-shadow: 0 0 0 1px $body-bg, $input-btn-focus-box-shadow !default;\n\n$custom-control-indicator-active-color: $component-active-color !default;\n$custom-control-indicator-active-bg: lighten($component-active-bg, 35%) !default;\n$custom-control-indicator-active-box-shadow: none !default;\n\n$custom-checkbox-indicator-border-radius: $border-radius !default;\n$custom-checkbox-indicator-icon-checked: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='#{$custom-control-indicator-checked-color}' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n\n$custom-checkbox-indicator-indeterminate-bg: $component-active-bg !default;\n$custom-checkbox-indicator-indeterminate-color: $custom-control-indicator-checked-color !default;\n$custom-checkbox-indicator-icon-indeterminate: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='#{$custom-checkbox-indicator-indeterminate-color}' d='M0 2h4'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n$custom-checkbox-indicator-indeterminate-box-shadow: none !default;\n\n$custom-radio-indicator-border-radius: 50% !default;\n$custom-radio-indicator-icon-checked: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='#{$custom-control-indicator-checked-color}'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n\n$custom-select-padding-y: .375rem !default;\n$custom-select-padding-x: .75rem !default;\n$custom-select-height: $input-height !default;\n$custom-select-indicator-padding: 1rem !default; // Extra padding to account for the presence of the background-image based indicator\n$custom-select-line-height: $input-btn-line-height !default;\n$custom-select-color: $input-color !default;\n$custom-select-disabled-color: $gray-600 !default;\n$custom-select-bg: $white !default;\n$custom-select-disabled-bg: $gray-200 !default;\n$custom-select-bg-size: 8px 10px !default; // In pixels because image dimensions\n$custom-select-indicator-color: $gray-800 !default;\n$custom-select-indicator: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='#{$custom-select-indicator-color}' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n$custom-select-border-width: $input-btn-border-width !default;\n$custom-select-border-color: $input-border-color !default;\n$custom-select-border-radius: $border-radius !default;\n\n$custom-select-focus-border-color: $input-focus-border-color !default;\n$custom-select-focus-box-shadow: inset 0 1px 2px rgba($black, .075), 0 0 5px rgba($custom-select-focus-border-color, .5) !default;\n\n$custom-select-font-size-sm: 75% !default;\n$custom-select-height-sm: $input-height-sm !default;\n\n$custom-select-font-size-lg: 125% !default;\n$custom-select-height-lg: $input-height-lg !default;\n\n$custom-file-height: $input-height !default;\n$custom-file-focus-border-color: $input-focus-border-color !default;\n$custom-file-focus-box-shadow: $input-btn-focus-box-shadow !default;\n\n$custom-file-padding-y: $input-btn-padding-y !default;\n$custom-file-padding-x: $input-btn-padding-x !default;\n$custom-file-line-height: $input-btn-line-height !default;\n$custom-file-color: $input-color !default;\n$custom-file-bg: $input-bg !default;\n$custom-file-border-width: $input-btn-border-width !default;\n$custom-file-border-color: $input-border-color !default;\n$custom-file-border-radius: $input-border-radius !default;\n$custom-file-box-shadow: $input-box-shadow !default;\n$custom-file-button-color: $custom-file-color !default;\n$custom-file-button-bg: $input-group-addon-bg !default;\n$custom-file-text: (\n en: \"Browse\"\n) !default;\n\n\n// Form validation\n$form-feedback-margin-top: $form-text-margin-top !default;\n$form-feedback-font-size: $small-font-size !default;\n$form-feedback-valid-color: theme-color(\"success\") !default;\n$form-feedback-invalid-color: theme-color(\"danger\") !default;\n\n\n// Dropdowns\n//\n// Dropdown menu container and contents.\n\n$dropdown-min-width: 10rem !default;\n$dropdown-padding-y: .5rem !default;\n$dropdown-spacer: .125rem !default;\n$dropdown-bg: $white !default;\n$dropdown-border-color: rgba($black, .15) !default;\n$dropdown-border-radius: $border-radius !default;\n$dropdown-border-width: $border-width !default;\n$dropdown-divider-bg: $gray-200 !default;\n$dropdown-box-shadow: 0 .5rem 1rem rgba($black, .175) !default;\n\n$dropdown-link-color: $gray-900 !default;\n$dropdown-link-hover-color: darken($gray-900, 5%) !default;\n$dropdown-link-hover-bg: $gray-100 !default;\n\n$dropdown-link-active-color: $component-active-color !default;\n$dropdown-link-active-bg: $component-active-bg !default;\n\n$dropdown-link-disabled-color: $gray-600 !default;\n\n$dropdown-item-padding-y: .25rem !default;\n$dropdown-item-padding-x: 1.5rem !default;\n\n$dropdown-header-color: $gray-600 !default;\n\n\n// Z-index master list\n//\n// Warning: Avoid customizing these values. They're used for a bird's eye view\n// of components dependent on the z-axis and are designed to all work together.\n\n$zindex-dropdown: 1000 !default;\n$zindex-sticky: 1020 !default;\n$zindex-fixed: 1030 !default;\n$zindex-modal-backdrop: 1040 !default;\n$zindex-modal: 1050 !default;\n$zindex-popover: 1060 !default;\n$zindex-tooltip: 1070 !default;\n\n// Navs\n\n$nav-link-padding-y: .5rem !default;\n$nav-link-padding-x: 1rem !default;\n$nav-link-disabled-color: $gray-600 !default;\n\n$nav-tabs-border-color: $gray-300 !default;\n$nav-tabs-border-width: $border-width !default;\n$nav-tabs-border-radius: $border-radius !default;\n$nav-tabs-link-hover-border-color: $gray-200 $gray-200 $nav-tabs-border-color !default;\n$nav-tabs-link-active-color: $gray-700 !default;\n$nav-tabs-link-active-bg: $body-bg !default;\n$nav-tabs-link-active-border-color: $gray-300 $gray-300 $nav-tabs-link-active-bg !default;\n\n$nav-pills-border-radius: $border-radius !default;\n$nav-pills-link-active-color: $component-active-color !default;\n$nav-pills-link-active-bg: $component-active-bg !default;\n\n// Navbar\n\n$navbar-padding-y: ($spacer / 2) !default;\n$navbar-padding-x: $spacer !default;\n\n$navbar-nav-link-padding-x: .5rem !default;\n\n$navbar-brand-font-size: $font-size-lg !default;\n// Compute the navbar-brand padding-y so the navbar-brand will have the same height as navbar-text and nav-link\n$nav-link-height: ($font-size-base * $line-height-base + $nav-link-padding-y * 2) !default;\n$navbar-brand-height: $navbar-brand-font-size * $line-height-base !default;\n$navbar-brand-padding-y: ($nav-link-height - $navbar-brand-height) / 2 !default;\n\n$navbar-toggler-padding-y: .25rem !default;\n$navbar-toggler-padding-x: .75rem !default;\n$navbar-toggler-font-size: $font-size-lg !default;\n$navbar-toggler-border-radius: $btn-border-radius !default;\n\n$navbar-dark-color: rgba($white, .5) !default;\n$navbar-dark-hover-color: rgba($white, .75) !default;\n$navbar-dark-active-color: $white !default;\n$navbar-dark-disabled-color: rgba($white, .25) !default;\n$navbar-dark-toggler-icon-bg: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='#{$navbar-dark-color}' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n$navbar-dark-toggler-border-color: rgba($white, .1) !default;\n\n$navbar-light-color: rgba($black, .5) !default;\n$navbar-light-hover-color: rgba($black, .7) !default;\n$navbar-light-active-color: rgba($black, .9) !default;\n$navbar-light-disabled-color: rgba($black, .3) !default;\n$navbar-light-toggler-icon-bg: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='#{$navbar-light-color}' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n$navbar-light-toggler-border-color: rgba($black, .1) !default;\n\n// Pagination\n\n$pagination-padding-y: .5rem !default;\n$pagination-padding-x: .75rem !default;\n$pagination-padding-y-sm: .25rem !default;\n$pagination-padding-x-sm: .5rem !default;\n$pagination-padding-y-lg: .75rem !default;\n$pagination-padding-x-lg: 1.5rem !default;\n$pagination-line-height: 1.25 !default;\n\n$pagination-color: $link-color !default;\n$pagination-bg: $white !default;\n$pagination-border-width: $border-width !default;\n$pagination-border-color: $gray-300 !default;\n\n$pagination-focus-box-shadow: $input-btn-focus-box-shadow !default;\n\n$pagination-hover-color: $link-hover-color !default;\n$pagination-hover-bg: $gray-200 !default;\n$pagination-hover-border-color: $gray-300 !default;\n\n$pagination-active-color: $component-active-color !default;\n$pagination-active-bg: $component-active-bg !default;\n$pagination-active-border-color: $pagination-active-bg !default;\n\n$pagination-disabled-color: $gray-600 !default;\n$pagination-disabled-bg: $white !default;\n$pagination-disabled-border-color: $gray-300 !default;\n\n\n// Jumbotron\n\n$jumbotron-padding: 2rem !default;\n$jumbotron-bg: $gray-200 !default;\n\n\n// Cards\n\n$card-spacer-y: .75rem !default;\n$card-spacer-x: 1.25rem !default;\n$card-border-width: $border-width !default;\n$card-border-radius: $border-radius !default;\n$card-border-color: rgba($black, .125) !default;\n$card-inner-border-radius: calc(#{$card-border-radius} - #{$card-border-width}) !default;\n$card-cap-bg: rgba($black, .03) !default;\n$card-bg: $white !default;\n\n$card-img-overlay-padding: 1.25rem !default;\n\n$card-group-margin: ($grid-gutter-width / 2) !default;\n$card-deck-margin: $card-group-margin !default;\n\n$card-columns-count: 3 !default;\n$card-columns-gap: 1.25rem !default;\n$card-columns-margin: $card-spacer-y !default;\n\n\n// Tooltips\n\n$tooltip-font-size: $font-size-sm !default;\n$tooltip-max-width: 200px !default;\n$tooltip-color: $white !default;\n$tooltip-bg: $black !default;\n$tooltip-border-radius: $border-radius !default;\n$tooltip-opacity: .9 !default;\n$tooltip-padding-y: .25rem !default;\n$tooltip-padding-x: .5rem !default;\n$tooltip-margin: 0 !default;\n\n$tooltip-arrow-width: .8rem !default;\n$tooltip-arrow-height: .4rem !default;\n$tooltip-arrow-color: $tooltip-bg !default;\n\n\n// Popovers\n\n$popover-font-size: $font-size-sm !default;\n$popover-bg: $white !default;\n$popover-max-width: 276px !default;\n$popover-border-width: $border-width !default;\n$popover-border-color: rgba($black, .2) !default;\n$popover-border-radius: $border-radius-lg !default;\n$popover-box-shadow: 0 .25rem .5rem rgba($black, .2) !default;\n\n$popover-header-bg: darken($popover-bg, 3%) !default;\n$popover-header-color: $headings-color !default;\n$popover-header-padding-y: .5rem !default;\n$popover-header-padding-x: .75rem !default;\n\n$popover-body-color: $body-color !default;\n$popover-body-padding-y: $popover-header-padding-y !default;\n$popover-body-padding-x: $popover-header-padding-x !default;\n\n$popover-arrow-width: 1rem !default;\n$popover-arrow-height: .5rem !default;\n$popover-arrow-color: $popover-bg !default;\n\n$popover-arrow-outer-color: fade-in($popover-border-color, .05) !default;\n\n\n// Badges\n\n$badge-font-size: 75% !default;\n$badge-font-weight: $font-weight-bold !default;\n$badge-padding-y: .25em !default;\n$badge-padding-x: .4em !default;\n$badge-border-radius: $border-radius !default;\n\n$badge-pill-padding-x: .6em !default;\n// Use a higher than normal value to ensure completely rounded edges when\n// customizing padding or font-size on labels.\n$badge-pill-border-radius: 10rem !default;\n\n\n// Modals\n\n// Padding applied to the modal body\n$modal-inner-padding: 1rem !default;\n\n$modal-dialog-margin: .5rem !default;\n$modal-dialog-margin-y-sm-up: 1.75rem !default;\n\n$modal-title-line-height: $line-height-base !default;\n\n$modal-content-bg: $white !default;\n$modal-content-border-color: rgba($black, .2) !default;\n$modal-content-border-width: $border-width !default;\n$modal-content-box-shadow-xs: 0 .25rem .5rem rgba($black, .5) !default;\n$modal-content-box-shadow-sm-up: 0 .5rem 1rem rgba($black, .5) !default;\n\n$modal-backdrop-bg: $black !default;\n$modal-backdrop-opacity: .5 !default;\n$modal-header-border-color: $gray-200 !default;\n$modal-footer-border-color: $modal-header-border-color !default;\n$modal-header-border-width: $modal-content-border-width !default;\n$modal-footer-border-width: $modal-header-border-width !default;\n$modal-header-padding: 1rem !default;\n\n$modal-lg: 800px !default;\n$modal-md: 500px !default;\n$modal-sm: 300px !default;\n\n$modal-transition: transform .3s ease-out !default;\n\n\n// Alerts\n//\n// Define alert colors, border radius, and padding.\n\n$alert-padding-y: .75rem !default;\n$alert-padding-x: 1.25rem !default;\n$alert-margin-bottom: 1rem !default;\n$alert-border-radius: $border-radius !default;\n$alert-link-font-weight: $font-weight-bold !default;\n$alert-border-width: $border-width !default;\n\n$alert-bg-level: -10 !default;\n$alert-border-level: -9 !default;\n$alert-color-level: 6 !default;\n\n\n// Progress bars\n\n$progress-height: 1rem !default;\n$progress-font-size: ($font-size-base * .75) !default;\n$progress-bg: $gray-200 !default;\n$progress-border-radius: $border-radius !default;\n$progress-box-shadow: inset 0 .1rem .1rem rgba($black, .1) !default;\n$progress-bar-color: $white !default;\n$progress-bar-bg: theme-color(\"primary\") !default;\n$progress-bar-animation-timing: 1s linear infinite !default;\n$progress-bar-transition: width .6s ease !default;\n\n// List group\n\n$list-group-bg: $white !default;\n$list-group-border-color: rgba($black, .125) !default;\n$list-group-border-width: $border-width !default;\n$list-group-border-radius: $border-radius !default;\n\n$list-group-item-padding-y: .75rem !default;\n$list-group-item-padding-x: 1.25rem !default;\n\n$list-group-hover-bg: $gray-100 !default;\n$list-group-active-color: $component-active-color !default;\n$list-group-active-bg: $component-active-bg !default;\n$list-group-active-border-color: $list-group-active-bg !default;\n\n$list-group-disabled-color: $gray-600 !default;\n$list-group-disabled-bg: $list-group-bg !default;\n\n$list-group-action-color: $gray-700 !default;\n$list-group-action-hover-color: $list-group-action-color !default;\n\n$list-group-action-active-color: $body-color !default;\n$list-group-action-active-bg: $gray-200 !default;\n\n\n// Image thumbnails\n\n$thumbnail-padding: .25rem !default;\n$thumbnail-bg: $body-bg !default;\n$thumbnail-border-width: $border-width !default;\n$thumbnail-border-color: $gray-300 !default;\n$thumbnail-border-radius: $border-radius !default;\n$thumbnail-box-shadow: 0 1px 2px rgba($black, .075) !default;\n\n\n// Figures\n\n$figure-caption-font-size: 90% !default;\n$figure-caption-color: $gray-600 !default;\n\n\n// Breadcrumbs\n\n$breadcrumb-padding-y: .75rem !default;\n$breadcrumb-padding-x: 1rem !default;\n$breadcrumb-item-padding: .5rem !default;\n\n$breadcrumb-margin-bottom: 1rem !default;\n\n$breadcrumb-bg: $gray-200 !default;\n$breadcrumb-divider-color: $gray-600 !default;\n$breadcrumb-active-color: $gray-600 !default;\n$breadcrumb-divider: \"/\" !default;\n\n\n// Carousel\n\n$carousel-control-color: $white !default;\n$carousel-control-width: 15% !default;\n$carousel-control-opacity: .5 !default;\n\n$carousel-indicator-width: 30px !default;\n$carousel-indicator-height: 3px !default;\n$carousel-indicator-spacer: 3px !default;\n$carousel-indicator-active-bg: $white !default;\n\n$carousel-caption-width: 70% !default;\n$carousel-caption-color: $white !default;\n\n$carousel-control-icon-width: 20px !default;\n\n$carousel-control-prev-icon-bg: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#{$carousel-control-color}' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n$carousel-control-next-icon-bg: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#{$carousel-control-color}' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n\n$carousel-transition: transform .6s ease !default;\n\n\n// Close\n\n$close-font-size: $font-size-base * 1.5 !default;\n$close-font-weight: $font-weight-bold !default;\n$close-color: $black !default;\n$close-text-shadow: 0 1px 0 $white !default;\n\n// Code\n\n$code-font-size: 87.5% !default;\n$code-color: $pink !default;\n\n$kbd-padding-y: .2rem !default;\n$kbd-padding-x: .4rem !default;\n$kbd-font-size: $code-font-size !default;\n$kbd-color: $white !default;\n$kbd-bg: $gray-900 !default;\n\n$pre-color: $gray-900 !default;\n$pre-scrollable-max-height: 340px !default;\n\n\n// Printing\n$print-page-size: a3 !default;\n$print-body-min-width: map-get($grid-breakpoints, \"lg\") !default;\n","// stylelint-disable indentation\n\n// Hover mixin and `$enable-hover-media-query` are deprecated.\n//\n// Origally added during our alphas and maintained during betas, this mixin was\n// designed to prevent `:hover` stickiness on iOS—an issue where hover styles\n// would persist after initial touch.\n//\n// For backward compatibility, we've kept these mixins and updated them to\n// always return their regular psuedo-classes instead of a shimmed media query.\n//\n// Issue: https://github.com/twbs/bootstrap/issues/25195\n\n@mixin hover {\n &:hover { @content; }\n}\n\n@mixin hover-focus {\n &:hover,\n &:focus {\n @content;\n }\n}\n\n@mixin plain-hover-focus {\n &,\n &:hover,\n &:focus {\n @content;\n }\n}\n\n@mixin hover-focus-active {\n &:hover,\n &:focus,\n &:active {\n @content;\n }\n}\n","// stylelint-disable declaration-no-important, selector-list-comma-newline-after\n\n//\n// Headings\n//\n\nh1, h2, h3, h4, h5, h6,\n.h1, .h2, .h3, .h4, .h5, .h6 {\n margin-bottom: $headings-margin-bottom;\n font-family: $headings-font-family;\n font-weight: $headings-font-weight;\n line-height: $headings-line-height;\n color: $headings-color;\n}\n\nh1, .h1 { font-size: $h1-font-size; }\nh2, .h2 { font-size: $h2-font-size; }\nh3, .h3 { font-size: $h3-font-size; }\nh4, .h4 { font-size: $h4-font-size; }\nh5, .h5 { font-size: $h5-font-size; }\nh6, .h6 { font-size: $h6-font-size; }\n\n.lead {\n font-size: $lead-font-size;\n font-weight: $lead-font-weight;\n}\n\n// Type display classes\n.display-1 {\n font-size: $display1-size;\n font-weight: $display1-weight;\n line-height: $display-line-height;\n}\n.display-2 {\n font-size: $display2-size;\n font-weight: $display2-weight;\n line-height: $display-line-height;\n}\n.display-3 {\n font-size: $display3-size;\n font-weight: $display3-weight;\n line-height: $display-line-height;\n}\n.display-4 {\n font-size: $display4-size;\n font-weight: $display4-weight;\n line-height: $display-line-height;\n}\n\n\n//\n// Horizontal rules\n//\n\nhr {\n margin-top: $hr-margin-y;\n margin-bottom: $hr-margin-y;\n border: 0;\n border-top: $hr-border-width solid $hr-border-color;\n}\n\n\n//\n// Emphasis\n//\n\nsmall,\n.small {\n font-size: $small-font-size;\n font-weight: $font-weight-normal;\n}\n\nmark,\n.mark {\n padding: $mark-padding;\n background-color: $mark-bg;\n}\n\n\n//\n// Lists\n//\n\n.list-unstyled {\n @include list-unstyled;\n}\n\n// Inline turns list items into inline-block\n.list-inline {\n @include list-unstyled;\n}\n.list-inline-item {\n display: inline-block;\n\n &:not(:last-child) {\n margin-right: $list-inline-padding;\n }\n}\n\n\n//\n// Misc\n//\n\n// Builds on `abbr`\n.initialism {\n font-size: 90%;\n text-transform: uppercase;\n}\n\n// Blockquotes\n.blockquote {\n margin-bottom: $spacer;\n font-size: $blockquote-font-size;\n}\n\n.blockquote-footer {\n display: block;\n font-size: 80%; // back to default font-size\n color: $blockquote-small-color;\n\n &::before {\n content: \"\\2014 \\00A0\"; // em dash, nbsp\n }\n}\n","// Lists\n\n// Unstyled keeps list items block level, just removes default browser padding and list-style\n@mixin list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n","// Responsive images (ensure images don't scale beyond their parents)\n//\n// This is purposefully opt-in via an explicit class rather than being the default for all ``s.\n// We previously tried the \"images are responsive by default\" approach in Bootstrap v2,\n// and abandoned it in Bootstrap v3 because it breaks lots of third-party widgets (including Google Maps)\n// which weren't expecting the images within themselves to be involuntarily resized.\n// See also https://github.com/twbs/bootstrap/issues/18178\n.img-fluid {\n @include img-fluid;\n}\n\n\n// Image thumbnails\n.img-thumbnail {\n padding: $thumbnail-padding;\n background-color: $thumbnail-bg;\n border: $thumbnail-border-width solid $thumbnail-border-color;\n @include border-radius($thumbnail-border-radius);\n @include box-shadow($thumbnail-box-shadow);\n\n // Keep them at most 100% wide\n @include img-fluid;\n}\n\n//\n// Figures\n//\n\n.figure {\n // Ensures the caption's text aligns with the image.\n display: inline-block;\n}\n\n.figure-img {\n margin-bottom: ($spacer / 2);\n line-height: 1;\n}\n\n.figure-caption {\n font-size: $figure-caption-font-size;\n color: $figure-caption-color;\n}\n","// Image Mixins\n// - Responsive image\n// - Retina image\n\n\n// Responsive image\n//\n// Keep images from scaling beyond the width of their parents.\n\n@mixin img-fluid {\n // Part 1: Set a maximum relative to the parent\n max-width: 100%;\n // Part 2: Override the height to auto, otherwise images will be stretched\n // when setting a width and height attribute on the img element.\n height: auto;\n}\n\n\n// Retina image\n//\n// Short retina mixin for setting background-image and -size.\n\n// stylelint-disable indentation, media-query-list-comma-newline-after\n@mixin img-retina($file-1x, $file-2x, $width-1x, $height-1x) {\n background-image: url($file-1x);\n\n // Autoprefixer takes care of adding -webkit-min-device-pixel-ratio and -o-min-device-pixel-ratio,\n // but doesn't convert dppx=>dpi.\n // There's no such thing as unprefixed min-device-pixel-ratio since it's nonstandard.\n // Compatibility info: https://caniuse.com/#feat=css-media-resolution\n @media only screen and (min-resolution: 192dpi), // IE9-11 don't support dppx\n only screen and (min-resolution: 2dppx) { // Standardized\n background-image: url($file-2x);\n background-size: $width-1x $height-1x;\n }\n}\n","// Single side border-radius\n\n@mixin border-radius($radius: $border-radius) {\n @if $enable-rounded {\n border-radius: $radius;\n }\n}\n\n@mixin border-top-radius($radius) {\n @if $enable-rounded {\n border-top-left-radius: $radius;\n border-top-right-radius: $radius;\n }\n}\n\n@mixin border-right-radius($radius) {\n @if $enable-rounded {\n border-top-right-radius: $radius;\n border-bottom-right-radius: $radius;\n }\n}\n\n@mixin border-bottom-radius($radius) {\n @if $enable-rounded {\n border-bottom-right-radius: $radius;\n border-bottom-left-radius: $radius;\n }\n}\n\n@mixin border-left-radius($radius) {\n @if $enable-rounded {\n border-top-left-radius: $radius;\n border-bottom-left-radius: $radius;\n }\n}\n","// Inline and block code styles\ncode,\nkbd,\npre,\nsamp {\n font-family: $font-family-monospace;\n}\n\n// Inline code\ncode {\n font-size: $code-font-size;\n color: $code-color;\n word-break: break-word;\n\n // Streamline the style when inside anchors to avoid broken underline and more\n a > & {\n color: inherit;\n }\n}\n\n// User input typically entered via keyboard\nkbd {\n padding: $kbd-padding-y $kbd-padding-x;\n font-size: $kbd-font-size;\n color: $kbd-color;\n background-color: $kbd-bg;\n @include border-radius($border-radius-sm);\n @include box-shadow($kbd-box-shadow);\n\n kbd {\n padding: 0;\n font-size: 100%;\n font-weight: $nested-kbd-font-weight;\n @include box-shadow(none);\n }\n}\n\n// Blocks of code\npre {\n display: block;\n font-size: $code-font-size;\n color: $pre-color;\n\n // Account for some code outputs that place code tags in pre tags\n code {\n font-size: inherit;\n color: inherit;\n word-break: normal;\n }\n}\n\n// Enable scrollable blocks of code\n.pre-scrollable {\n max-height: $pre-scrollable-max-height;\n overflow-y: scroll;\n}\n","// Container widths\n//\n// Set the container width, and override it for fixed navbars in media queries.\n\n@if $enable-grid-classes {\n .container {\n @include make-container();\n @include make-container-max-widths();\n }\n}\n\n// Fluid container\n//\n// Utilizes the mixin meant for fixed width containers, but with 100% width for\n// fluid, full width layouts.\n\n@if $enable-grid-classes {\n .container-fluid {\n @include make-container();\n }\n}\n\n// Row\n//\n// Rows contain and clear the floats of your columns.\n\n@if $enable-grid-classes {\n .row {\n @include make-row();\n }\n\n // Remove the negative margin from default .row, then the horizontal padding\n // from all immediate children columns (to prevent runaway style inheritance).\n .no-gutters {\n margin-right: 0;\n margin-left: 0;\n\n > .col,\n > [class*=\"col-\"] {\n padding-right: 0;\n padding-left: 0;\n }\n }\n}\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n@if $enable-grid-classes {\n @include make-grid-columns();\n}\n","/// Grid system\n//\n// Generate semantic grid columns with these mixins.\n\n@mixin make-container() {\n width: 100%;\n padding-right: ($grid-gutter-width / 2);\n padding-left: ($grid-gutter-width / 2);\n margin-right: auto;\n margin-left: auto;\n}\n\n\n// For each breakpoint, define the maximum width of the container in a media query\n@mixin make-container-max-widths($max-widths: $container-max-widths, $breakpoints: $grid-breakpoints) {\n @each $breakpoint, $container-max-width in $max-widths {\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n max-width: $container-max-width;\n }\n }\n}\n\n@mixin make-row() {\n display: flex;\n flex-wrap: wrap;\n margin-right: ($grid-gutter-width / -2);\n margin-left: ($grid-gutter-width / -2);\n}\n\n@mixin make-col-ready() {\n position: relative;\n // Prevent columns from becoming too narrow when at smaller grid tiers by\n // always setting `width: 100%;`. This works because we use `flex` values\n // later on to override this initial width.\n width: 100%;\n min-height: 1px; // Prevent collapsing\n padding-right: ($grid-gutter-width / 2);\n padding-left: ($grid-gutter-width / 2);\n}\n\n@mixin make-col($size, $columns: $grid-columns) {\n flex: 0 0 percentage($size / $columns);\n // Add a `max-width` to ensure content within each column does not blow out\n // the width of the column. Applies to IE10+ and Firefox. Chrome and Safari\n // do not appear to require this.\n max-width: percentage($size / $columns);\n}\n\n@mixin make-col-offset($size, $columns: $grid-columns) {\n $num: $size / $columns;\n margin-left: if($num == 0, 0, percentage($num));\n}\n","// Breakpoint viewport sizes and media queries.\n//\n// Breakpoints are defined as a map of (name: minimum width), order from small to large:\n//\n// (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px)\n//\n// The map defined in the `$grid-breakpoints` global variable is used as the `$breakpoints` argument by default.\n\n// Name of the next breakpoint, or null for the last breakpoint.\n//\n// >> breakpoint-next(sm)\n// md\n// >> breakpoint-next(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// md\n// >> breakpoint-next(sm, $breakpoint-names: (xs sm md lg xl))\n// md\n@function breakpoint-next($name, $breakpoints: $grid-breakpoints, $breakpoint-names: map-keys($breakpoints)) {\n $n: index($breakpoint-names, $name);\n @return if($n < length($breakpoint-names), nth($breakpoint-names, $n + 1), null);\n}\n\n// Minimum breakpoint width. Null for the smallest (first) breakpoint.\n//\n// >> breakpoint-min(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// 576px\n@function breakpoint-min($name, $breakpoints: $grid-breakpoints) {\n $min: map-get($breakpoints, $name);\n @return if($min != 0, $min, null);\n}\n\n// Maximum breakpoint width. Null for the largest (last) breakpoint.\n// The maximum value is calculated as the minimum of the next one less 0.02px\n// to work around the limitations of `min-` and `max-` prefixes and viewports with fractional widths.\n// See https://www.w3.org/TR/mediaqueries-4/#mq-min-max\n// Uses 0.02px rather than 0.01px to work around a current rounding bug in Safari.\n// See https://bugs.webkit.org/show_bug.cgi?id=178261\n//\n// >> breakpoint-max(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// 767.98px\n@function breakpoint-max($name, $breakpoints: $grid-breakpoints) {\n $next: breakpoint-next($name, $breakpoints);\n @return if($next, breakpoint-min($next, $breakpoints) - .02px, null);\n}\n\n// Returns a blank string if smallest breakpoint, otherwise returns the name with a dash infront.\n// Useful for making responsive utilities.\n//\n// >> breakpoint-infix(xs, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// \"\" (Returns a blank string)\n// >> breakpoint-infix(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// \"-sm\"\n@function breakpoint-infix($name, $breakpoints: $grid-breakpoints) {\n @return if(breakpoint-min($name, $breakpoints) == null, \"\", \"-#{$name}\");\n}\n\n// Media of at least the minimum breakpoint width. No query for the smallest breakpoint.\n// Makes the @content apply to the given breakpoint and wider.\n@mixin media-breakpoint-up($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n @if $min {\n @media (min-width: $min) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media of at most the maximum breakpoint width. No query for the largest breakpoint.\n// Makes the @content apply to the given breakpoint and narrower.\n@mixin media-breakpoint-down($name, $breakpoints: $grid-breakpoints) {\n $max: breakpoint-max($name, $breakpoints);\n @if $max {\n @media (max-width: $max) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media that spans multiple breakpoint widths.\n// Makes the @content apply between the min and max breakpoints\n@mixin media-breakpoint-between($lower, $upper, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($lower, $breakpoints);\n $max: breakpoint-max($upper, $breakpoints);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($lower, $breakpoints) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($upper, $breakpoints) {\n @content;\n }\n }\n}\n\n// Media between the breakpoint's minimum and maximum widths.\n// No minimum for the smallest breakpoint, and no maximum for the largest one.\n// Makes the @content apply only to the given breakpoint, not viewports any wider or narrower.\n@mixin media-breakpoint-only($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n $max: breakpoint-max($name, $breakpoints);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($name, $breakpoints) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($name, $breakpoints) {\n @content;\n }\n }\n}\n","// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `$grid-columns`.\n\n@mixin make-grid-columns($columns: $grid-columns, $gutter: $grid-gutter-width, $breakpoints: $grid-breakpoints) {\n // Common properties for all breakpoints\n %grid-column {\n position: relative;\n width: 100%;\n min-height: 1px; // Prevent columns from collapsing when empty\n padding-right: ($gutter / 2);\n padding-left: ($gutter / 2);\n }\n\n @each $breakpoint in map-keys($breakpoints) {\n $infix: breakpoint-infix($breakpoint, $breakpoints);\n\n // Allow columns to stretch full width below their breakpoints\n @for $i from 1 through $columns {\n .col#{$infix}-#{$i} {\n @extend %grid-column;\n }\n }\n .col#{$infix},\n .col#{$infix}-auto {\n @extend %grid-column;\n }\n\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n // Provide basic `.col-{bp}` classes for equal-width flexbox columns\n .col#{$infix} {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%;\n }\n .col#{$infix}-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: none; // Reset earlier grid tiers\n }\n\n @for $i from 1 through $columns {\n .col#{$infix}-#{$i} {\n @include make-col($i, $columns);\n }\n }\n\n .order#{$infix}-first { order: -1; }\n\n .order#{$infix}-last { order: $columns + 1; }\n\n @for $i from 0 through $columns {\n .order#{$infix}-#{$i} { order: $i; }\n }\n\n // `$columns - 1` because offsetting by the width of an entire row isn't possible\n @for $i from 0 through ($columns - 1) {\n @if not ($infix == \"\" and $i == 0) { // Avoid emitting useless .offset-0\n .offset#{$infix}-#{$i} {\n @include make-col-offset($i, $columns);\n }\n }\n }\n }\n }\n}\n","//\n// Basic Bootstrap table\n//\n\n.table {\n width: 100%;\n max-width: 100%;\n margin-bottom: $spacer;\n background-color: $table-bg; // Reset for nesting within parents with `background-color`.\n\n th,\n td {\n padding: $table-cell-padding;\n vertical-align: top;\n border-top: $table-border-width solid $table-border-color;\n }\n\n thead th {\n vertical-align: bottom;\n border-bottom: (2 * $table-border-width) solid $table-border-color;\n }\n\n tbody + tbody {\n border-top: (2 * $table-border-width) solid $table-border-color;\n }\n\n .table {\n background-color: $body-bg;\n }\n}\n\n\n//\n// Condensed table w/ half padding\n//\n\n.table-sm {\n th,\n td {\n padding: $table-cell-padding-sm;\n }\n}\n\n\n// Bordered version\n//\n// Add borders all around the table and between all the columns.\n\n.table-bordered {\n border: $table-border-width solid $table-border-color;\n\n th,\n td {\n border: $table-border-width solid $table-border-color;\n }\n\n thead {\n th,\n td {\n border-bottom-width: (2 * $table-border-width);\n }\n }\n}\n\n\n// Zebra-striping\n//\n// Default zebra-stripe styles (alternating gray and transparent backgrounds)\n\n.table-striped {\n tbody tr:nth-of-type(odd) {\n background-color: $table-accent-bg;\n }\n}\n\n\n// Hover effect\n//\n// Placed here since it has to come after the potential zebra striping\n\n.table-hover {\n tbody tr {\n @include hover {\n background-color: $table-hover-bg;\n }\n }\n}\n\n\n// Table backgrounds\n//\n// Exact selectors below required to override `.table-striped` and prevent\n// inheritance to nested tables.\n\n@each $color, $value in $theme-colors {\n @include table-row-variant($color, theme-color-level($color, -9));\n}\n\n@include table-row-variant(active, $table-active-bg);\n\n\n// Dark styles\n//\n// Same table markup, but inverted color scheme: dark background and light text.\n\n// stylelint-disable-next-line no-duplicate-selectors\n.table {\n .thead-dark {\n th {\n color: $table-dark-color;\n background-color: $table-dark-bg;\n border-color: $table-dark-border-color;\n }\n }\n\n .thead-light {\n th {\n color: $table-head-color;\n background-color: $table-head-bg;\n border-color: $table-border-color;\n }\n }\n}\n\n.table-dark {\n color: $table-dark-color;\n background-color: $table-dark-bg;\n\n th,\n td,\n thead th {\n border-color: $table-dark-border-color;\n }\n\n &.table-bordered {\n border: 0;\n }\n\n &.table-striped {\n tbody tr:nth-of-type(odd) {\n background-color: $table-dark-accent-bg;\n }\n }\n\n &.table-hover {\n tbody tr {\n @include hover {\n background-color: $table-dark-hover-bg;\n }\n }\n }\n}\n\n\n// Responsive tables\n//\n// Generate series of `.table-responsive-*` classes for configuring the screen\n// size of where your table will overflow.\n\n.table-responsive {\n @each $breakpoint in map-keys($grid-breakpoints) {\n $next: breakpoint-next($breakpoint, $grid-breakpoints);\n $infix: breakpoint-infix($next, $grid-breakpoints);\n\n &#{$infix} {\n @include media-breakpoint-down($breakpoint) {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n -ms-overflow-style: -ms-autohiding-scrollbar; // See https://github.com/twbs/bootstrap/pull/10057\n\n // Prevent double border on horizontal scroll due to use of `display: block;`\n > .table-bordered {\n border: 0;\n }\n }\n }\n }\n}\n","// Tables\n\n@mixin table-row-variant($state, $background) {\n // Exact selectors below required to override `.table-striped` and prevent\n // inheritance to nested tables.\n .table-#{$state} {\n &,\n > th,\n > td {\n background-color: $background;\n }\n }\n\n // Hover states for `.table-hover`\n // Note: this is not available for cells or rows within `thead` or `tfoot`.\n .table-hover {\n $hover-background: darken($background, 5%);\n\n .table-#{$state} {\n @include hover {\n background-color: $hover-background;\n\n > td,\n > th {\n background-color: $hover-background;\n }\n }\n }\n }\n}\n","// Bootstrap functions\n//\n// Utility mixins and functions for evalutating source code across our variables, maps, and mixins.\n\n// Ascending\n// Used to evaluate Sass maps like our grid breakpoints.\n@mixin _assert-ascending($map, $map-name) {\n $prev-key: null;\n $prev-num: null;\n @each $key, $num in $map {\n @if $prev-num == null {\n // Do nothing\n } @else if not comparable($prev-num, $num) {\n @warn \"Potentially invalid value for #{$map-name}: This map must be in ascending order, but key '#{$key}' has value #{$num} whose unit makes it incomparable to #{$prev-num}, the value of the previous key '#{$prev-key}' !\";\n } @else if $prev-num >= $num {\n @warn \"Invalid value for #{$map-name}: This map must be in ascending order, but key '#{$key}' has value #{$num} which isn't greater than #{$prev-num}, the value of the previous key '#{$prev-key}' !\";\n }\n $prev-key: $key;\n $prev-num: $num;\n }\n}\n\n// Starts at zero\n// Another grid mixin that ensures the min-width of the lowest breakpoint starts at 0.\n@mixin _assert-starts-at-zero($map) {\n $values: map-values($map);\n $first-value: nth($values, 1);\n @if $first-value != 0 {\n @warn \"First breakpoint in `$grid-breakpoints` must start at 0, but starts at #{$first-value}.\";\n }\n}\n\n// Replace `$search` with `$replace` in `$string`\n// Used on our SVG icon backgrounds for custom forms.\n//\n// @author Hugo Giraudel\n// @param {String} $string - Initial string\n// @param {String} $search - Substring to replace\n// @param {String} $replace ('') - New value\n// @return {String} - Updated string\n@function str-replace($string, $search, $replace: \"\") {\n $index: str-index($string, $search);\n\n @if $index {\n @return str-slice($string, 1, $index - 1) + $replace + str-replace(str-slice($string, $index + str-length($search)), $search, $replace);\n }\n\n @return $string;\n}\n\n// Color contrast\n@function color-yiq($color) {\n $r: red($color);\n $g: green($color);\n $b: blue($color);\n\n $yiq: (($r * 299) + ($g * 587) + ($b * 114)) / 1000;\n\n @if ($yiq >= $yiq-contrasted-threshold) {\n @return $yiq-text-dark;\n } @else {\n @return $yiq-text-light;\n }\n}\n\n// Retrieve color Sass maps\n@function color($key: \"blue\") {\n @return map-get($colors, $key);\n}\n\n@function theme-color($key: \"primary\") {\n @return map-get($theme-colors, $key);\n}\n\n@function gray($key: \"100\") {\n @return map-get($grays, $key);\n}\n\n// Request a theme color level\n@function theme-color-level($color-name: \"primary\", $level: 0) {\n $color: theme-color($color-name);\n $color-base: if($level > 0, #000, #fff);\n $level: abs($level);\n\n @return mix($color-base, $color, $level * $theme-color-interval);\n}\n","// stylelint-disable selector-no-qualifying-type\n\n//\n// Textual form controls\n//\n\n.form-control {\n display: block;\n width: 100%;\n padding: $input-padding-y $input-padding-x;\n font-size: $font-size-base;\n line-height: $input-line-height;\n color: $input-color;\n background-color: $input-bg;\n background-clip: padding-box;\n border: $input-border-width solid $input-border-color;\n\n // Note: This has no effect on `s in CSS.\n @if $enable-rounded {\n // Manually use the if/else instead of the mixin to account for iOS override\n border-radius: $input-border-radius;\n } @else {\n // Otherwise undo the iOS default\n border-radius: 0;\n }\n\n @include box-shadow($input-box-shadow);\n @include transition($input-transition);\n\n // Unstyle the caret on ` receives focus\n // in IE and (under certain conditions) Edge, as it looks bad and cannot be made to\n // match the appearance of the native widget.\n // See https://github.com/twbs/bootstrap/issues/19398.\n color: $input-color;\n background-color: $input-bg;\n }\n}\n\n// Make file inputs better match text inputs by forcing them to new lines.\n.form-control-file,\n.form-control-range {\n display: block;\n width: 100%;\n}\n\n\n//\n// Labels\n//\n\n// For use with horizontal and inline forms, when you need the label (or legend)\n// text to align with the form controls.\n.col-form-label {\n padding-top: calc(#{$input-padding-y} + #{$input-border-width});\n padding-bottom: calc(#{$input-padding-y} + #{$input-border-width});\n margin-bottom: 0; // Override the `
',trigger:"hover focus",title:"",delay:0,html:!1,selector:!1,placement:"top",offset:0,container:!1,fallbackPlacement:"flip",boundary:"scrollParent"},f="show",d="out",_={HIDE:"hide"+o,HIDDEN:"hidden"+o,SHOW:"show"+o,SHOWN:"shown"+o,INSERTED:"inserted"+o,CLICK:"click"+o,FOCUSIN:"focusin"+o,FOCUSOUT:"focusout"+o,MOUSEENTER:"mouseenter"+o,MOUSELEAVE:"mouseleave"+o},g="fade",p="show",m=".tooltip-inner",v=".arrow",E="hover",T="focus",y="click",C="manual",I=function(){function a(t,e){if("undefined"==typeof n)throw new TypeError("Bootstrap tooltips require Popper.js (https://popper.js.org)");this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this.element=t,this.config=this._getConfig(e),this.tip=null,this._setListeners()}var I=a.prototype;return I.enable=function(){this._isEnabled=!0},I.disable=function(){this._isEnabled=!1},I.toggleEnabled=function(){this._isEnabled=!this._isEnabled},I.toggle=function(e){if(this._isEnabled)if(e){var n=this.constructor.DATA_KEY,i=t(e.currentTarget).data(n);i||(i=new this.constructor(e.currentTarget,this._getDelegateConfig()),t(e.currentTarget).data(n,i)),i._activeTrigger.click=!i._activeTrigger.click,i._isWithActiveTrigger()?i._enter(null,i):i._leave(null,i)}else{if(t(this.getTipElement()).hasClass(p))return void this._leave(null,this);this._enter(null,this)}},I.dispose=function(){clearTimeout(this._timeout),t.removeData(this.element,this.constructor.DATA_KEY),t(this.element).off(this.constructor.EVENT_KEY),t(this.element).closest(".modal").off("hide.bs.modal"),this.tip&&t(this.tip).remove(),this._isEnabled=null,this._timeout=null,this._hoverState=null,this._activeTrigger=null,null!==this._popper&&this._popper.destroy(),this._popper=null,this.element=null,this.config=null,this.tip=null},I.show=function(){var e=this;if("none"===t(this.element).css("display"))throw new Error("Please use show on visible elements");var i=t.Event(this.constructor.Event.SHOW);if(this.isWithContent()&&this._isEnabled){t(this.element).trigger(i);var s=t.contains(this.element.ownerDocument.documentElement,this.element);if(i.isDefaultPrevented()||!s)return;var r=this.getTipElement(),o=P.getUID(this.constructor.NAME);r.setAttribute("id",o),this.element.setAttribute("aria-describedby",o),this.setContent(),this.config.animation&&t(r).addClass(g);var l="function"==typeof this.config.placement?this.config.placement.call(this,r,this.element):this.config.placement,h=this._getAttachment(l);this.addAttachmentClass(h);var c=!1===this.config.container?document.body:t(this.config.container);t(r).data(this.constructor.DATA_KEY,this),t.contains(this.element.ownerDocument.documentElement,this.tip)||t(r).appendTo(c),t(this.element).trigger(this.constructor.Event.INSERTED),this._popper=new n(this.element,r,{placement:h,modifiers:{offset:{offset:this.config.offset},flip:{behavior:this.config.fallbackPlacement},arrow:{element:v},preventOverflow:{boundariesElement:this.config.boundary}},onCreate:function(t){t.originalPlacement!==t.placement&&e._handlePopperPlacementChange(t)},onUpdate:function(t){e._handlePopperPlacementChange(t)}}),t(r).addClass(p),"ontouchstart"in document.documentElement&&t("body").children().on("mouseover",null,t.noop);var u=function(){e.config.animation&&e._fixTransition();var n=e._hoverState;e._hoverState=null,t(e.element).trigger(e.constructor.Event.SHOWN),n===d&&e._leave(null,e)};P.supportsTransitionEnd()&&t(this.tip).hasClass(g)?t(this.tip).one(P.TRANSITION_END,u).emulateTransitionEnd(a._TRANSITION_DURATION):u()}},I.hide=function(e){var n=this,i=this.getTipElement(),s=t.Event(this.constructor.Event.HIDE),r=function(){n._hoverState!==f&&i.parentNode&&i.parentNode.removeChild(i),n._cleanTipClass(),n.element.removeAttribute("aria-describedby"),t(n.element).trigger(n.constructor.Event.HIDDEN),null!==n._popper&&n._popper.destroy(),e&&e()};t(this.element).trigger(s),s.isDefaultPrevented()||(t(i).removeClass(p),"ontouchstart"in document.documentElement&&t("body").children().off("mouseover",null,t.noop),this._activeTrigger[y]=!1,this._activeTrigger[T]=!1,this._activeTrigger[E]=!1,P.supportsTransitionEnd()&&t(this.tip).hasClass(g)?t(i).one(P.TRANSITION_END,r).emulateTransitionEnd(150):r(),this._hoverState="")},I.update=function(){null!==this._popper&&this._popper.scheduleUpdate()},I.isWithContent=function(){return Boolean(this.getTitle())},I.addAttachmentClass=function(e){t(this.getTipElement()).addClass("bs-tooltip-"+e)},I.getTipElement=function(){return this.tip=this.tip||t(this.config.template)[0],this.tip},I.setContent=function(){var e=t(this.getTipElement());this.setElementContent(e.find(m),this.getTitle()),e.removeClass(g+" "+p)},I.setElementContent=function(e,n){var i=this.config.html;"object"==typeof n&&(n.nodeType||n.jquery)?i?t(n).parent().is(e)||e.empty().append(n):e.text(t(n).text()):e[i?"html":"text"](n)},I.getTitle=function(){var t=this.element.getAttribute("data-original-title");return t||(t="function"==typeof this.config.title?this.config.title.call(this.element):this.config.title),t},I._getAttachment=function(t){return c[t.toUpperCase()]},I._setListeners=function(){var e=this;this.config.trigger.split(" ").forEach(function(n){if("click"===n)t(e.element).on(e.constructor.Event.CLICK,e.config.selector,function(t){return e.toggle(t)});else if(n!==C){var i=n===E?e.constructor.Event.MOUSEENTER:e.constructor.Event.FOCUSIN,s=n===E?e.constructor.Event.MOUSELEAVE:e.constructor.Event.FOCUSOUT;t(e.element).on(i,e.config.selector,function(t){return e._enter(t)}).on(s,e.config.selector,function(t){return e._leave(t)})}t(e.element).closest(".modal").on("hide.bs.modal",function(){return e.hide()})}),this.config.selector?this.config=r({},this.config,{trigger:"manual",selector:""}):this._fixTitle()},I._fixTitle=function(){var t=typeof this.element.getAttribute("data-original-title");(this.element.getAttribute("title")||"string"!==t)&&(this.element.setAttribute("data-original-title",this.element.getAttribute("title")||""),this.element.setAttribute("title",""))},I._enter=function(e,n){var i=this.constructor.DATA_KEY;(n=n||t(e.currentTarget).data(i))||(n=new this.constructor(e.currentTarget,this._getDelegateConfig()),t(e.currentTarget).data(i,n)),e&&(n._activeTrigger["focusin"===e.type?T:E]=!0),t(n.getTipElement()).hasClass(p)||n._hoverState===f?n._hoverState=f:(clearTimeout(n._timeout),n._hoverState=f,n.config.delay&&n.config.delay.show?n._timeout=setTimeout(function(){n._hoverState===f&&n.show()},n.config.delay.show):n.show())},I._leave=function(e,n){var i=this.constructor.DATA_KEY;(n=n||t(e.currentTarget).data(i))||(n=new this.constructor(e.currentTarget,this._getDelegateConfig()),t(e.currentTarget).data(i,n)),e&&(n._activeTrigger["focusout"===e.type?T:E]=!1),n._isWithActiveTrigger()||(clearTimeout(n._timeout),n._hoverState=d,n.config.delay&&n.config.delay.hide?n._timeout=setTimeout(function(){n._hoverState===d&&n.hide()},n.config.delay.hide):n.hide())},I._isWithActiveTrigger=function(){for(var t in this._activeTrigger)if(this._activeTrigger[t])return!0;return!1},I._getConfig=function(n){return"number"==typeof(n=r({},this.constructor.Default,t(this.element).data(),n)).delay&&(n.delay={show:n.delay,hide:n.delay}),"number"==typeof n.title&&(n.title=n.title.toString()),"number"==typeof n.content&&(n.content=n.content.toString()),P.typeCheckConfig(e,n,this.constructor.DefaultType),n},I._getDelegateConfig=function(){var t={};if(this.config)for(var e in this.config)this.constructor.Default[e]!==this.config[e]&&(t[e]=this.config[e]);return t},I._cleanTipClass=function(){var e=t(this.getTipElement()),n=e.attr("class").match(l);null!==n&&n.length>0&&e.removeClass(n.join(""))},I._handlePopperPlacementChange=function(t){this._cleanTipClass(),this.addAttachmentClass(this._getAttachment(t.placement))},I._fixTransition=function(){var e=this.getTipElement(),n=this.config.animation;null===e.getAttribute("x-placement")&&(t(e).removeClass(g),this.config.animation=!1,this.hide(),this.show(),this.config.animation=n)},a._jQueryInterface=function(e){return this.each(function(){var n=t(this).data(i),s="object"==typeof e&&e;if((n||!/dispose|hide/.test(e))&&(n||(n=new a(this,s),t(this).data(i,n)),"string"==typeof e)){if("undefined"==typeof n[e])throw new TypeError('No method named "'+e+'"');n[e]()}})},s(a,null,[{key:"VERSION",get:function(){return"4.0.0"}},{key:"Default",get:function(){return u}},{key:"NAME",get:function(){return e}},{key:"DATA_KEY",get:function(){return i}},{key:"Event",get:function(){return _}},{key:"EVENT_KEY",get:function(){return o}},{key:"DefaultType",get:function(){return h}}]),a}();return t.fn[e]=I._jQueryInterface,t.fn[e].Constructor=I,t.fn[e].noConflict=function(){return t.fn[e]=a,I._jQueryInterface},I}(e),x=function(t){var e="popover",n="bs.popover",i="."+n,o=t.fn[e],a=new RegExp("(^|\\s)bs-popover\\S+","g"),l=r({},U.Default,{placement:"right",trigger:"click",content:"",template:''}),h=r({},U.DefaultType,{content:"(string|element|function)"}),c="fade",u="show",f=".popover-header",d=".popover-body",_={HIDE:"hide"+i,HIDDEN:"hidden"+i,SHOW:"show"+i,SHOWN:"shown"+i,INSERTED:"inserted"+i,CLICK:"click"+i,FOCUSIN:"focusin"+i,FOCUSOUT:"focusout"+i,MOUSEENTER:"mouseenter"+i,MOUSELEAVE:"mouseleave"+i},g=function(r){var o,g;function p(){return r.apply(this,arguments)||this}g=r,(o=p).prototype=Object.create(g.prototype),o.prototype.constructor=o,o.__proto__=g;var m=p.prototype;return m.isWithContent=function(){return this.getTitle()||this._getContent()},m.addAttachmentClass=function(e){t(this.getTipElement()).addClass("bs-popover-"+e)},m.getTipElement=function(){return this.tip=this.tip||t(this.config.template)[0],this.tip},m.setContent=function(){var e=t(this.getTipElement());this.setElementContent(e.find(f),this.getTitle());var n=this._getContent();"function"==typeof n&&(n=n.call(this.element)),this.setElementContent(e.find(d),n),e.removeClass(c+" "+u)},m._getContent=function(){return this.element.getAttribute("data-content")||this.config.content},m._cleanTipClass=function(){var e=t(this.getTipElement()),n=e.attr("class").match(a);null!==n&&n.length>0&&e.removeClass(n.join(""))},p._jQueryInterface=function(e){return this.each(function(){var i=t(this).data(n),s="object"==typeof e?e:null;if((i||!/destroy|hide/.test(e))&&(i||(i=new p(this,s),t(this).data(n,i)),"string"==typeof e)){if("undefined"==typeof i[e])throw new TypeError('No method named "'+e+'"');i[e]()}})},s(p,null,[{key:"VERSION",get:function(){return"4.0.0"}},{key:"Default",get:function(){return l}},{key:"NAME",get:function(){return e}},{key:"DATA_KEY",get:function(){return n}},{key:"Event",get:function(){return _}},{key:"EVENT_KEY",get:function(){return i}},{key:"DefaultType",get:function(){return h}}]),p}(U);return t.fn[e]=g._jQueryInterface,t.fn[e].Constructor=g,t.fn[e].noConflict=function(){return t.fn[e]=o,g._jQueryInterface},g}(e),K=function(t){var e="scrollspy",n="bs.scrollspy",i="."+n,o=t.fn[e],a={offset:10,method:"auto",target:""},l={offset:"number",method:"string",target:"(string|element)"},h={ACTIVATE:"activate"+i,SCROLL:"scroll"+i,LOAD_DATA_API:"load"+i+".data-api"},c="dropdown-item",u="active",f={DATA_SPY:'[data-spy="scroll"]',ACTIVE:".active",NAV_LIST_GROUP:".nav, .list-group",NAV_LINKS:".nav-link",NAV_ITEMS:".nav-item",LIST_ITEMS:".list-group-item",DROPDOWN:".dropdown",DROPDOWN_ITEMS:".dropdown-item",DROPDOWN_TOGGLE:".dropdown-toggle"},d="offset",_="position",g=function(){function o(e,n){var i=this;this._element=e,this._scrollElement="BODY"===e.tagName?window:e,this._config=this._getConfig(n),this._selector=this._config.target+" "+f.NAV_LINKS+","+this._config.target+" "+f.LIST_ITEMS+","+this._config.target+" "+f.DROPDOWN_ITEMS,this._offsets=[],this._targets=[],this._activeTarget=null,this._scrollHeight=0,t(this._scrollElement).on(h.SCROLL,function(t){return i._process(t)}),this.refresh(),this._process()}var g=o.prototype;return g.refresh=function(){var e=this,n=this._scrollElement===this._scrollElement.window?d:_,i="auto"===this._config.method?n:this._config.method,s=i===_?this._getScrollTop():0;this._offsets=[],this._targets=[],this._scrollHeight=this._getScrollHeight(),t.makeArray(t(this._selector)).map(function(e){var n,r=P.getSelectorFromElement(e);if(r&&(n=t(r)[0]),n){var o=n.getBoundingClientRect();if(o.width||o.height)return[t(n)[i]().top+s,r]}return null}).filter(function(t){return t}).sort(function(t,e){return t[0]-e[0]}).forEach(function(t){e._offsets.push(t[0]),e._targets.push(t[1])})},g.dispose=function(){t.removeData(this._element,n),t(this._scrollElement).off(i),this._element=null,this._scrollElement=null,this._config=null,this._selector=null,this._offsets=null,this._targets=null,this._activeTarget=null,this._scrollHeight=null},g._getConfig=function(n){if("string"!=typeof(n=r({},a,n)).target){var i=t(n.target).attr("id");i||(i=P.getUID(e),t(n.target).attr("id",i)),n.target="#"+i}return P.typeCheckConfig(e,n,l),n},g._getScrollTop=function(){return this._scrollElement===window?this._scrollElement.pageYOffset:this._scrollElement.scrollTop},g._getScrollHeight=function(){return this._scrollElement.scrollHeight||Math.max(document.body.scrollHeight,document.documentElement.scrollHeight)},g._getOffsetHeight=function(){return this._scrollElement===window?window.innerHeight:this._scrollElement.getBoundingClientRect().height},g._process=function(){var t=this._getScrollTop()+this._config.offset,e=this._getScrollHeight(),n=this._config.offset+e-this._getOffsetHeight();if(this._scrollHeight!==e&&this.refresh(),t>=n){var i=this._targets[this._targets.length-1];this._activeTarget!==i&&this._activate(i)}else{if(this._activeTarget&&t0)return this._activeTarget=null,void this._clear();for(var s=this._offsets.length;s--;){this._activeTarget!==this._targets[s]&&t>=this._offsets[s]&&("undefined"==typeof this._offsets[s+1]||t=4)throw new Error("Bootstrap's JavaScript requires at least jQuery v1.9.1 but less than v4.0.0")}(e),t.Util=P,t.Alert=L,t.Button=R,t.Carousel=j,t.Collapse=H,t.Dropdown=W,t.Modal=M,t.Popover=x,t.Scrollspy=K,t.Tab=V,t.Tooltip=U,Object.defineProperty(t,"__esModule",{value:!0})}); +//# sourceMappingURL=bootstrap.min.js.map \ No newline at end of file diff --git a/static/vendor/bootstrap/js/bootstrap.min.js.map b/static/vendor/bootstrap/js/bootstrap.min.js.map new file mode 100644 index 0000000..a2100fa --- /dev/null +++ b/static/vendor/bootstrap/js/bootstrap.min.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../rollupPluginBabelHelpers","../../js/src/util.js","../../js/src/alert.js","../../js/src/button.js","../../js/src/carousel.js","../../js/src/collapse.js","../../js/src/dropdown.js","../../js/src/modal.js","../../js/src/tooltip.js","../../js/src/popover.js","../../js/src/scrollspy.js","../../js/src/tab.js","../../js/src/index.js"],"names":["_defineProperties","target","props","i","length","descriptor","enumerable","configurable","writable","Object","defineProperty","key","_createClass","Constructor","protoProps","staticProps","prototype","_extends","assign","arguments","source","hasOwnProperty","call","apply","this","$","NAME","DATA_KEY","EVENT_KEY","JQUERY_NO_CONFLICT","Event","ClassName","Alert","DATA_API_KEY","Selector","Button","Util","transition","transitionEndEmulator","duration","called","one","TRANSITION_END","triggerTransitionEnd","_this","prefix","Math","random","document","getElementById","element","selector","getAttribute","charAt","escapeSelector","substr","replace","find","err","offsetHeight","trigger","end","Boolean","obj","nodeType","componentName","config","configTypes","property","expectedTypes","value","valueType","isElement","toString","match","toLowerCase","RegExp","test","Error","toUpperCase","window","QUnit","fn","emulateTransitionEnd","supportsTransitionEnd","event","special","is","handleObj","handler","_element","close","rootElement","_getRootElement","_triggerCloseEvent","isDefaultPrevented","_removeElement","dispose","removeData","getSelectorFromElement","parent","closest","closeEvent","CLOSE","removeClass","hasClass","_destroyElement","detach","CLOSED","remove","_jQueryInterface","each","$element","data","_handleDismiss","alertInstance","preventDefault","on","CLICK_DATA_API","noConflict","toggle","triggerChangeEvent","addAriaPressed","input","type","checked","activeElement","hasAttribute","classList","contains","focus","setAttribute","toggleClass","button","FOCUS_BLUR_DATA_API","Carousel","Default","DefaultType","Direction","_items","_interval","_activeElement","_isPaused","_isSliding","touchTimeout","_config","_getConfig","_indicatorsElement","INDICATORS","_addEventListeners","next","_slide","nextWhenVisible","hidden","css","prev","pause","NEXT_PREV","cycle","interval","setInterval","visibilityState","bind","to","index","ACTIVE_ITEM","activeIndex","_getItemIndex","SLID","direction","off","typeCheckConfig","keyboard","KEYDOWN","_this2","_keydown","MOUSEENTER","MOUSELEAVE","documentElement","TOUCHEND","setTimeout","tagName","which","makeArray","ITEM","indexOf","_getItemByDirection","isNextDirection","isPrevDirection","lastItemIndex","wrap","itemIndex","_triggerSlideEvent","relatedTarget","eventDirectionName","targetIndex","fromIndex","slideEvent","SLIDE","_setActiveIndicatorElement","ACTIVE","nextIndicator","children","addClass","directionalClassName","orderClassName","activeElementIndex","nextElement","nextElementIndex","isCycling","slidEvent","reflow","_this3","action","slide","TypeError","_dataApiClickHandler","slideIndex","DATA_SLIDE","LOAD_DATA_API","DATA_RIDE","$carousel","Collapse","Dimension","_isTransitioning","_triggerArray","id","tabToggles","DATA_TOGGLE","elem","filter","_selector","push","_parent","_getParent","_addAriaAndCollapsedClass","hide","show","actives","activesData","ACTIVES","not","startEvent","SHOW","dimension","_getDimension","style","attr","setTransitioning","complete","SHOWN","scrollSize","slice","HIDE","getBoundingClientRect","HIDDEN","isTransitioning","jquery","_getTargetFromElement","triggerArray","isOpen","$this","currentTarget","$trigger","$target","Dropdown","REGEXP_KEYDOWN","ARROW_UP_KEYCODE","AttachmentMap","_popper","_menu","_getMenuElement","_inNavbar","_detectNavbar","disabled","_getParentFromElement","isActive","_clearMenus","showEvent","Popper","boundary","_getPopperConfig","noop","destroy","update","scheduleUpdate","CLICK","stopPropagation","constructor","_getPlacement","$parentDropdown","placement","offsetConf","offset","offsets","flip","toggles","context","dropdownMenu","hideEvent","parentNode","_dataApiKeydownHandler","items","get","KEYDOWN_DATA_API","KEYUP_DATA_API","e","Modal","_dialog","DIALOG","_backdrop","_isShown","_isBodyOverflowing","_ignoreBackdropClick","_originalBodyPadding","_scrollbarWidth","_checkScrollbar","_setScrollbar","_adjustDialog","body","_setEscapeEvent","_setResizeEvent","CLICK_DISMISS","DATA_DISMISS","MOUSEDOWN_DISMISS","MOUSEUP_DISMISS","_showBackdrop","_showElement","FOCUSIN","_hideModal","handleUpdate","Node","ELEMENT_NODE","appendChild","display","removeAttribute","scrollTop","_enforceFocus","shownEvent","transitionComplete","_this4","has","KEYDOWN_DISMISS","RESIZE","_this6","_resetAdjustments","_resetScrollbar","_this7","_removeBackdrop","callback","animate","backdrop","doAnimate","createElement","className","appendTo","_this8","callbackRemove","isModalOverflowing","scrollHeight","clientHeight","paddingLeft","paddingRight","rect","left","right","innerWidth","_getScrollbarWidth","FIXED_CONTENT","actualPadding","calculatedPadding","parseFloat","_this9","STICKY_CONTENT","actualMargin","marginRight","calculatedMargin","NAVBAR_TOGGLER","padding","margin","scrollDiv","scrollbarWidth","width","clientWidth","removeChild","Tooltip","BSCLS_PREFIX_REGEX","HoverState","Trigger","_isEnabled","_timeout","_hoverState","_activeTrigger","tip","_setListeners","enable","disable","toggleEnabled","dataKey","_getDelegateConfig","click","_isWithActiveTrigger","_enter","_leave","getTipElement","isWithContent","isInTheDom","ownerDocument","tipId","getUID","setContent","animation","attachment","_getAttachment","addAttachmentClass","container","INSERTED","fallbackPlacement","originalPlacement","_handlePopperPlacementChange","_fixTransition","prevHoverState","_TRANSITION_DURATION","_cleanTipClass","getTitle","CLASS_PREFIX","template","$tip","setElementContent","content","html","empty","append","text","title","split","forEach","eventIn","eventOut","FOCUSOUT","_fixTitle","titleType","delay","tabClass","join","initConfigAnimation","Popover","subClass","superClass","create","__proto__","_getContent","ScrollSpy","OffsetMethod","_scrollElement","NAV_LINKS","LIST_ITEMS","DROPDOWN_ITEMS","_offsets","_targets","_activeTarget","_scrollHeight","SCROLL","_process","refresh","autoMethod","offsetMethod","method","offsetBase","_getScrollTop","_getScrollHeight","map","targetSelector","targetBCR","height","top","item","sort","a","b","pageYOffset","max","_getOffsetHeight","innerHeight","maxScroll","_activate","_clear","queries","$link","DROPDOWN","DROPDOWN_TOGGLE","parents","NAV_LIST_GROUP","NAV_ITEMS","ACTIVATE","scrollSpys","DATA_SPY","$spy","Tab","previous","listElement","itemSelector","nodeName","hiddenEvent","active","_transitionComplete","dropdownChild","dropdownElement","version"],"mappings":";;;;;8QAEA,SAASA,EAAkBC,EAAQC,GACjC,IAAK,IAAIC,EAAI,EAAGA,EAAID,EAAME,OAAQD,IAAK,CACrC,IAAIE,EAAaH,EAAMC,GACvBE,EAAWC,WAAaD,EAAWC,aAAc,EACjDD,EAAWE,cAAe,EACtB,UAAWF,IAAYA,EAAWG,UAAW,GACjDC,OAAOC,eAAeT,EAAQI,EAAWM,IAAKN,IAIlD,SAASO,EAAaC,EAAaC,EAAYC,GAG7C,OAFID,GAAYd,EAAkBa,EAAYG,UAAWF,GACrDC,GAAaf,EAAkBa,EAAaE,GACzCF,EAGT,SAASI,IAeP,OAdAA,EAAWR,OAAOS,QAAU,SAAUjB,GACpC,IAAK,IAAIE,EAAI,EAAGA,EAAIgB,UAAUf,OAAQD,IAAK,CACzC,IAAIiB,EAASD,UAAUhB,GAEvB,IAAK,IAAIQ,KAAOS,EACVX,OAAOO,UAAUK,eAAeC,KAAKF,EAAQT,KAC/CV,EAAOU,GAAOS,EAAOT,IAK3B,OAAOV,IAGOsB,MAAMC,KAAML,qGCxB9B,ICCgBM,EAORC,EAEAC,EACAC,EAEAC,EAOAC,EAMAC,EAAAA,EAAAA,EAYAC,ECtCSP,EAOTC,EAEAC,EACAC,EACAK,EACAJ,EAEAE,EAAAA,EAAAA,EAMAG,EAAAA,EAAAA,EAAAA,EAAAA,EAQAJ,EAYAK,EFxCFC,EAAQ,SAACX,OAOTY,GAAa,WAgCRC,EAAsBC,cACzBC,GAAS,WAEXhB,MAAMiB,IAAIL,EAAKM,eAAgB,cACtB,eAGA,WACJF,KACEG,qBAALC,IAEDL,GAEIf,SA4BHY,kBAEY,yBAFL,SAIJS,YA3EO,IA8EGC,KAAKC,gBACXC,SAASC,eAAeJ,WAC1BA,0BATE,SAYYK,OA3BPC,EA4BVA,EAAWD,EAAQE,aAAa,eAC/BD,GAAyB,MAAbA,MACJD,EAAQE,aAAa,SAAW,IAIlB,MAAvBD,EAASE,OAAO,KAlCNF,EAmCQA,MAhCe,mBAArB1B,EAAE6B,eAAgC7B,EAAE6B,eAAeH,GAAUI,OAAO,GAClFJ,EAASK,QAAQ,sBAAuB,oBAmCtB/B,EAAEuB,UAAUS,KAAKN,GAClB/C,OAAS,EAAI+C,EAAW,KACzC,MAAOO,UACA,cA3BA,SA+BJR,UACEA,EAAQS,mCAhCN,SAmCUT,KACjBA,GAASU,QAAQvB,EAAWwB,4BApCrB,kBAwCFC,QAAQzB,cAxCN,SA2CD0B,UACAA,EAAI,IAAMA,GAAKC,0BA5Cd,SA+CKC,EAAeC,EAAQC,OAChC,IAAMC,KAAYD,KACjB1D,OAAOO,UAAUK,eAAeC,KAAK6C,EAAaC,GAAW,KACzDC,EAAgBF,EAAYC,GAC5BE,EAAgBJ,EAAOE,GACvBG,EAAgBD,GAASlC,EAAKoC,UAAUF,GAC1C,WAzHIP,EAyHeO,KAxHnBG,SAASnD,KAAKyC,GAAKW,MAAM,iBAAiB,GAAGC,mBA0H5C,IAAIC,OAAOP,GAAeQ,KAAKN,SAC5B,IAAIO,MACLb,EAAcc,cAAjB,aACWX,EADX,oBACuCG,EADvC,wBAEsBF,EAFtB,UA7HIN,cAkBQ,oBAAXiB,SAA0BA,OAAOC,aAKrC,mBAuBLC,GAAGC,qBAAuB7C,EAExBF,EAAKgD,4BACLC,MAAMC,QAAQlD,EAAKM,0BA3CXL,EAAWwB,iBACPxB,EAAWwB,WAFpB,SAGEwB,MACD5D,EAAE4D,EAAMpF,QAAQsF,GAAG/D,aACd6D,EAAMG,UAAUC,QAAQlE,MAAMC,KAAML,cA8H5CiB,EApJK,CAqJXX,GCpJGO,GAOEN,EAAsB,QAGtBE,EAAAA,KADAD,EAAsB,YAGtBE,GAZQJ,EAwKbA,GA5J6ByD,GAAGxD,GAO3BI,iBACqBF,kBACCA,yBACDA,EAXC,aActBG,EACI,QADJA,EAEI,OAFJA,EAGI,OASJC,wBACQkB,QACLwC,SAAWxC,6BAWlByC,MAlDkB,SAkDZzC,KACMA,GAAW1B,KAAKkE,aAEpBE,EAAcpE,KAAKqE,gBAAgB3C,GACrB1B,KAAKsE,mBAAmBF,GAE5BG,2BAIXC,eAAeJ,MAGtBK,QA/DkB,aAgEdC,WAAW1E,KAAKkE,SAAU/D,QACvB+D,SAAW,QAKlBG,gBAtEkB,SAsEF3C,OACRC,EAAWf,EAAK+D,uBAAuBjD,GACzCkD,GAAa,SAEbjD,MACO1B,EAAE0B,GAAU,IAGlBiD,MACM3E,EAAEyB,GAASmD,QAAX,IAAuBtE,GAAmB,IAG9CqE,KAGTN,mBArFkB,SAqFC5C,OACXoD,EAAa7E,EAAEK,MAAMA,EAAMyE,gBAE/BrD,GAASU,QAAQ0C,GACZA,KAGTN,eA5FkB,SA4FH9C,gBACXA,GAASsD,YAAYzE,GAElBK,EAAKgD,yBACL3D,EAAEyB,GAASuD,SAAS1E,KAKvBmB,GACCT,IAAIL,EAAKM,eAAgB,SAAC2C,UAAUzC,EAAK8D,gBAAgBxD,EAASmC,KAClEF,qBA1FqB,UAoFjBuB,gBAAgBxD,MASzBwD,gBA1GkB,SA0GFxD,KACZA,GACCyD,SACA/C,QAAQ9B,EAAM8E,QACdC,YAKEC,iBAnHW,SAmHM5C,UACf1C,KAAKuF,KAAK,eACTC,EAAWvF,EAAED,MACfyF,EAAaD,EAASC,KAAKtF,GAE1BsF,MACI,IAAIjF,EAAMR,QACRyF,KAAKtF,EAAUsF,IAGX,UAAX/C,KACGA,GAAQ1C,WAKZ0F,eAnIW,SAmIIC,UACb,SAAU9B,GACXA,KACI+B,mBAGMzB,MAAMnE,sDAjIE,mBA4I1BwB,UAAUqE,GACVvF,EAAMwF,eArII,yBAuIVtF,EAAMkF,eAAe,IAAIlF,MASzBkD,GAAGxD,GAAoBM,EAAM8E,mBAC7B5B,GAAGxD,GAAMb,YAAcmB,IACvBkD,GAAGxD,GAAM6F,WAAc,oBACrBrC,GAAGxD,GAAQG,EACNG,EAAM8E,kBAGR9E,GCxKHG,GAOET,EAAsB,SAGtBE,EAAAA,KADAD,EAAsB,aAEtBM,EAAsB,YACtBJ,GAZSJ,EAmKdA,GAvJ6ByD,GAAGxD,GAE3BK,EACK,SADLA,EAEK,MAFLA,EAGK,QAGLG,EACiB,0BADjBA,EAEiB,0BAFjBA,EAGiB,QAHjBA,EAIiB,UAJjBA,EAKiB,OAGjBJ,0BAC0BF,EAAYK,sBACpB,QAAQL,EAAYK,EAApB,QACSL,EAAYK,GASvCE,wBACQe,QACLwC,SAAWxC,6BAWlBsE,OArDmB,eAsDbC,GAAqB,EACrBC,GAAiB,EACf9B,EAAcnE,EAAED,KAAKkE,UAAUW,QACnCnE,GACA,MAEE0D,EAAa,KACT+B,EAAQlG,EAAED,KAAKkE,UAAUjC,KAAKvB,GAAgB,MAEhDyF,EAAO,IACU,UAAfA,EAAMC,QACJD,EAAME,SACRpG,EAAED,KAAKkE,UAAUe,SAAS1E,MACL,MAChB,KACC+F,EAAgBrG,EAAEmE,GAAanC,KAAKvB,GAAiB,GAEvD4F,KACAA,GAAetB,YAAYzE,MAK/B0F,EAAoB,IAClBE,EAAMI,aAAa,aACrBnC,EAAYmC,aAAa,aACzBJ,EAAMK,UAAUC,SAAS,aACzBrC,EAAYoC,UAAUC,SAAS,qBAG3BJ,SAAWpG,EAAED,KAAKkE,UAAUe,SAAS1E,KACzC4F,GAAO/D,QAAQ,YAGbsE,WACW,GAIjBR,QACGhC,SAASyC,aAAa,gBACxB1G,EAAED,KAAKkE,UAAUe,SAAS1E,IAG3B0F,KACAjG,KAAKkE,UAAU0C,YAAYrG,MAIjCkE,QAvGmB,aAwGfC,WAAW1E,KAAKkE,SAAU/D,QACvB+D,SAAW,QAKXoB,iBA9GY,SA8GK5C,UACf1C,KAAKuF,KAAK,eACXE,EAAOxF,EAAED,MAAMyF,KAAKtF,GAEnBsF,MACI,IAAI9E,EAAOX,QAChBA,MAAMyF,KAAKtF,EAAUsF,IAGV,WAAX/C,KACGA,sDAhHe,mBA4H1BlB,UACCqE,GAAGvF,EAAMwF,eAAgBpF,EAA6B,SAACmD,KAChD+B,qBAEFiB,EAAShD,EAAMpF,OAEdwB,EAAE4G,GAAQ5B,SAAS1E,OACbN,EAAE4G,GAAQhC,QAAQnE,MAGtB4E,iBAAiBxF,KAAKG,EAAE4G,GAAS,YAEzChB,GAAGvF,EAAMwG,oBAAqBpG,EAA6B,SAACmD,OACrDgD,EAAS5G,EAAE4D,EAAMpF,QAAQoG,QAAQnE,GAAiB,KACtDmG,GAAQD,YAAYrG,EAAiB,eAAe8C,KAAKQ,EAAMuC,WASnE1C,GAAGxD,GAAQS,EAAO2E,mBAClB5B,GAAGxD,GAAMb,YAAcsB,IACvB+C,GAAGxD,GAAM6F,WAAa,oBACpBrC,GAAGxD,GAAQG,EACNM,EAAO2E,kBAGT3E,GCjKHoG,EAAY,SAAC9G,OAOXC,EAAyB,WAEzBC,EAAyB,cACzBC,EAAAA,IAA6BD,EAE7BE,EAAyBJ,EAAEyD,GAAGxD,GAM9B8G,YACO,cACA,SACA,QACA,cACA,GAGPC,YACO,4BACA,gBACA,yBACA,wBACA,WAGPC,EACO,OADPA,EAEO,OAFPA,EAGO,OAHPA,EAIO,QAGP5G,iBACqBF,cACDA,oBACGA,0BACGA,0BACAA,sBACFA,uBACJA,EArCK,mCAsCJA,EAtCI,aAyCzBG,EACO,WADPA,EAEO,SAFPA,EAGO,QAHPA,EAIO,sBAJPA,EAKO,qBALPA,EAMO,qBANPA,EAOO,qBAIPG,UACU,sBACA,6BACA,2BACA,sDACA,kCACA,0CACA,0BASVqG,wBACQrF,EAASgB,QACdyE,OAAqB,UACrBC,UAAqB,UACrBC,eAAqB,UAErBC,WAAqB,OACrBC,YAAqB,OAErBC,aAAqB,UAErBC,QAAqBzH,KAAK0H,WAAWhF,QACrCwB,SAAqBjE,EAAEyB,GAAS,QAChCiG,mBAAqB1H,EAAED,KAAKkE,UAAUjC,KAAKvB,EAASkH,YAAY,QAEhEC,gDAePC,KA7GqB,WA8Gd9H,KAAKuH,iBACHQ,OAAOb,MAIhBc,gBAnHqB,YAsHdxG,SAASyG,QACXhI,EAAED,KAAKkE,UAAUH,GAAG,aAAsD,WAAvC9D,EAAED,KAAKkE,UAAUgE,IAAI,oBACpDJ,UAITK,KA5HqB,WA6HdnI,KAAKuH,iBACHQ,OAAOb,MAIhBkB,MAlIqB,SAkIfvE,GACCA,SACEyD,WAAY,GAGfrH,EAAED,KAAKkE,UAAUjC,KAAKvB,EAAS2H,WAAW,IAC5CzH,EAAKgD,4BACAzC,qBAAqBnB,KAAKkE,eAC1BoE,OAAM,kBAGCtI,KAAKoH,gBACdA,UAAY,QAGnBkB,MAjJqB,SAiJfzE,GACCA,SACEyD,WAAY,GAGftH,KAAKoH,0BACOpH,KAAKoH,gBACdA,UAAY,MAGfpH,KAAKyH,QAAQc,WAAavI,KAAKsH,iBAC5BF,UAAYoB,aACdhH,SAASiH,gBAAkBzI,KAAKgI,gBAAkBhI,KAAK8H,MAAMY,KAAK1I,MACnEA,KAAKyH,QAAQc,cAKnBI,GAnKqB,SAmKlBC,mBACIvB,eAAiBpH,EAAED,KAAKkE,UAAUjC,KAAKvB,EAASmI,aAAa,OAE5DC,EAAc9I,KAAK+I,cAAc/I,KAAKqH,qBAExCuB,EAAQ5I,KAAKmH,OAAOvI,OAAS,GAAKgK,EAAQ,MAI1C5I,KAAKuH,aACLvH,KAAKkE,UAAUjD,IAAIX,EAAM0I,KAAM,kBAAM5H,EAAKuH,GAAGC,aAI7CE,IAAgBF,cACbR,kBACAE,YAIDW,EAAYL,EAAQE,EACtB5B,EACAA,OAECa,OAAOkB,EAAWjJ,KAAKmH,OAAOyB,QAGrCnE,QA9LqB,aA+LjBzE,KAAKkE,UAAUgF,IAAI9I,KACnBsE,WAAW1E,KAAKkE,SAAU/D,QAEvBgH,OAAqB,UACrBM,QAAqB,UACrBvD,SAAqB,UACrBkD,UAAqB,UACrBE,UAAqB,UACrBC,WAAqB,UACrBF,eAAqB,UACrBM,mBAAqB,QAK5BD,WA9MqB,SA8MVhF,iBAEJsE,EACAtE,KAEAyG,gBAAgBjJ,EAAMwC,EAAQuE,GAC5BvE,KAGTmF,mBAvNqB,sBAwNf7H,KAAKyH,QAAQ2B,YACbpJ,KAAKkE,UACJ2B,GAAGvF,EAAM+I,QAAS,SAACxF,UAAUyF,EAAKC,SAAS1F,KAGrB,UAAvB7D,KAAKyH,QAAQW,UACbpI,KAAKkE,UACJ2B,GAAGvF,EAAMkJ,WAAY,SAAC3F,UAAUyF,EAAKlB,MAAMvE,KAC3CgC,GAAGvF,EAAMmJ,WAAY,SAAC5F,UAAUyF,EAAKhB,MAAMzE,KAC1C,iBAAkBrC,SAASkI,mBAQ3B1J,KAAKkE,UAAU2B,GAAGvF,EAAMqJ,SAAU,aAC7BvB,QACDkB,EAAK9B,2BACM8B,EAAK9B,gBAEfA,aAAeoC,WAAW,SAAC/F,UAAUyF,EAAKhB,MAAMzE,IA9NhC,IA8NiEyF,EAAK7B,QAAQc,gBAM3GgB,SApPqB,SAoPZ1F,OACH,kBAAkBR,KAAKQ,EAAMpF,OAAOoL,gBAIhChG,EAAMiG,YA3Oa,KA6OjBlE,sBACDuC,kBA7OkB,KAgPjBvC,sBACDkC,WAMXiB,cAtQqB,SAsQPrH,eACPyF,OAASlH,EAAE8J,UAAU9J,EAAEyB,GAASkD,SAAS3C,KAAKvB,EAASsJ,OACrDhK,KAAKmH,OAAO8C,QAAQvI,MAG7BwI,oBA3QqB,SA2QDjB,EAAW3C,OACvB6D,EAAkBlB,IAAc/B,EAChCkD,EAAkBnB,IAAc/B,EAChC4B,EAAkB9I,KAAK+I,cAAczC,GACrC+D,EAAkBrK,KAAKmH,OAAOvI,OAAS,MACrBwL,GAAmC,IAAhBtB,GACnBqB,GAAmBrB,IAAgBuB,KAErCrK,KAAKyH,QAAQ6C,YAC1BhE,MAIHiE,GAAazB,GADDG,IAAc/B,GAAkB,EAAI,IACZlH,KAAKmH,OAAOvI,cAEhC,IAAf2L,EACHvK,KAAKmH,OAAOnH,KAAKmH,OAAOvI,OAAS,GAAKoB,KAAKmH,OAAOoD,MAGxDC,mBA9RqB,SA8RFC,EAAeC,OAC1BC,EAAc3K,KAAK+I,cAAc0B,GACjCG,EAAY5K,KAAK+I,cAAc9I,EAAED,KAAKkE,UAAUjC,KAAKvB,EAASmI,aAAa,IAC3EgC,EAAa5K,EAAEK,MAAMA,EAAMwK,iCAEpBJ,OACLE,KACFD,aAGJ3K,KAAKkE,UAAU9B,QAAQyI,GAElBA,KAGTE,2BA7SqB,SA6SMrJ,MACrB1B,KAAK2H,mBAAoB,GACzB3H,KAAK2H,oBACJ1F,KAAKvB,EAASsK,QACdhG,YAAYzE,OAET0K,EAAgBjL,KAAK2H,mBAAmBuD,SAC5ClL,KAAK+I,cAAcrH,IAGjBuJ,KACAA,GAAeE,SAAS5K,OAKhCwH,OA7TqB,SA6TdkB,EAAWvH,OAQZ0J,EACAC,EACAX,SATEpE,EAAgBrG,EAAED,KAAKkE,UAAUjC,KAAKvB,EAASmI,aAAa,GAC5DyC,EAAqBtL,KAAK+I,cAAczC,GACxCiF,EAAgB7J,GAAW4E,GAC/BtG,KAAKkK,oBAAoBjB,EAAW3C,GAChCkF,EAAmBxL,KAAK+I,cAAcwC,GACtCE,EAAYnJ,QAAQtC,KAAKoH,cAM3B6B,IAAc/B,KACO3G,IACNA,IACI2G,MAEE3G,IACNA,IACI2G,GAGnBqE,GAAetL,EAAEsL,GAAatG,SAAS1E,QACpCgH,YAAa,WAIDvH,KAAKwK,mBAAmBe,EAAab,GACzCnG,sBAIV+B,GAAkBiF,QAKlBhE,YAAa,EAEdkE,QACGrD,aAGF2C,2BAA2BQ,OAE1BG,EAAYzL,EAAEK,MAAMA,EAAM0I,oBACfuC,YACJb,OACLY,KACFE,IAGF5K,EAAKgD,yBACP3D,EAAED,KAAKkE,UAAUe,SAAS1E,MACxBgL,GAAaJ,SAASE,KAEnBM,OAAOJ,KAEVjF,GAAe6E,SAASC,KACxBG,GAAaJ,SAASC,KAEtB9E,GACCrF,IAAIL,EAAKM,eAAgB,aACtBqK,GACCvG,YAAeoG,EADlB,IAC0CC,GACvCF,SAAS5K,KAEV+F,GAAetB,YAAezE,EAAhC,IAAoD8K,EAApD,IAAsED,KAEjE7D,YAAa,aAEP,kBAAMtH,EAAE2L,EAAK1H,UAAU9B,QAAQsJ,IAAY,KAEvD/H,qBAzXsB,SA2XvB2C,GAAetB,YAAYzE,KAC3BgL,GAAaJ,SAAS5K,QAEnBgH,YAAa,IAChBvH,KAAKkE,UAAU9B,QAAQsJ,IAGvBD,QACGnD,YAMFhD,iBAtZc,SAsZG5C,UACf1C,KAAKuF,KAAK,eACXE,EAAOxF,EAAED,MAAMyF,KAAKtF,GACpBsH,EAAAA,KACCT,EACA/G,EAAED,MAAMyF,QAGS,iBAAX/C,WAEJ+E,EACA/E,QAIDmJ,EAA2B,iBAAXnJ,EAAsBA,EAAS+E,EAAQqE,SAExDrG,MACI,IAAIsB,EAAS/G,KAAMyH,KACxBzH,MAAMyF,KAAKtF,EAAUsF,IAGH,iBAAX/C,IACJiG,GAAGjG,QACH,GAAsB,iBAAXmJ,EAAqB,IACT,oBAAjBpG,EAAKoG,SACR,IAAIE,UAAJ,oBAAkCF,EAAlC,OAEHA,UACIpE,EAAQc,aACZH,UACAE,cAKJ0D,qBA1bc,SA0bOnI,OACpBlC,EAAWf,EAAK+D,uBAAuB3E,SAExC2B,OAIClD,EAASwB,EAAE0B,GAAU,MAEtBlD,GAAWwB,EAAExB,GAAQwG,SAAS1E,QAI7BmC,EAAAA,KACDzC,EAAExB,GAAQgH,OACVxF,EAAED,MAAMyF,QAEPwG,EAAajM,KAAK4B,aAAa,iBAEjCqK,MACK1D,UAAW,KAGXjD,iBAAiBxF,KAAKG,EAAExB,GAASiE,GAEtCuJ,KACAxN,GAAQgH,KAAKtF,GAAUwI,GAAGsD,KAGxBrG,kEA/cqB,+CAgGpBoB,oBAyXTxF,UACCqE,GAAGvF,EAAMwF,eAAgBpF,EAASwL,WAAYnF,EAASiF,wBAExDxI,QAAQqC,GAAGvF,EAAM6L,cAAe,aAC9BzL,EAAS0L,WAAW7G,KAAK,eACnB8G,EAAYpM,EAAED,QACXsF,iBAAiBxF,KAAKuM,EAAWA,EAAU5G,cAUtD/B,GAAGxD,GAAQ6G,EAASzB,mBACpB5B,GAAGxD,GAAMb,YAAc0H,IACvBrD,GAAGxD,GAAM6F,WAAa,oBACpBrC,GAAGxD,GAAQG,EACN0G,EAASzB,kBAGXyB,EAxfS,CAyff9G,GCzfGqM,EAAY,SAACrM,OAOXC,EAAsB,WAEtBC,EAAsB,cACtBC,EAAAA,IAA0BD,EAE1BE,EAAsBJ,EAAEyD,GAAGxD,GAG3B8G,WACK,SACA,IAGLC,UACK,iBACA,oBAGL3G,eACoBF,gBACCA,cACDA,kBACEA,yBACDA,EAnBC,aAsBtBG,EACS,OADTA,EAES,WAFTA,EAGS,aAHTA,EAIS,YAGTgM,EACK,QADLA,EAEK,SAGL7L,WACU,iCACA,4BASV4L,wBACQ5K,EAASgB,QACd8J,kBAAmB,OACnBtI,SAAmBxC,OACnB+F,QAAmBzH,KAAK0H,WAAWhF,QACnC+J,cAAmBxM,EAAE8J,UAAU9J,EAClC,mCAAmCyB,EAAQgL,GAA3C,6CAC0ChL,EAAQgL,GADlD,eAGIC,EAAa1M,EAAES,EAASkM,aACrBjO,EAAI,EAAGA,EAAIgO,EAAW/N,OAAQD,IAAK,KACpCkO,EAAOF,EAAWhO,GAClBgD,EAAWf,EAAK+D,uBAAuBkI,GAC5B,OAAblL,GAAqB1B,EAAE0B,GAAUmL,OAAOpL,GAAS9C,OAAS,SACvDmO,UAAYpL,OACZ8K,cAAcO,KAAKH,SAIvBI,QAAUjN,KAAKyH,QAAQ7C,OAAS5E,KAAKkN,aAAe,KAEpDlN,KAAKyH,QAAQ7C,aACXuI,0BAA0BnN,KAAKkE,SAAUlE,KAAKyM,eAGjDzM,KAAKyH,QAAQzB,aACVA,oCAgBTA,OAlGqB,WAmGf/F,EAAED,KAAKkE,UAAUe,SAAS1E,QACvB6M,YAEAC,UAITA,KA1GqB,eAgHfC,EACAC,aANAvN,KAAKwM,mBACPvM,EAAED,KAAKkE,UAAUe,SAAS1E,KAOxBP,KAAKiN,SAMgB,OALbhN,EAAE8J,UACV9J,EAAED,KAAKiN,SACJhL,KAAKvB,EAAS8M,SACdV,OAFH,iBAE2B9M,KAAKyH,QAAQ7C,OAFxC,QAIUhG,WACA,QAIV0O,MACYrN,EAAEqN,GAASG,IAAIzN,KAAK+M,WAAWtH,KAAKtF,KAC/BoN,EAAYf,wBAK3BkB,EAAazN,EAAEK,MAAMA,EAAMqN,WAC/B3N,KAAKkE,UAAU9B,QAAQsL,IACrBA,EAAWnJ,sBAIX+I,MACOhI,iBAAiBxF,KAAKG,EAAEqN,GAASG,IAAIzN,KAAK+M,WAAY,QAC1DQ,KACDD,GAAS7H,KAAKtF,EAAU,WAIxByN,EAAY5N,KAAK6N,kBAErB7N,KAAKkE,UACJc,YAAYzE,GACZ4K,SAAS5K,QAEP2D,SAAS4J,MAAMF,GAAa,EAE7B5N,KAAKyM,cAAc7N,OAAS,KAC5BoB,KAAKyM,eACJzH,YAAYzE,GACZwN,KAAK,iBAAiB,QAGtBC,kBAAiB,OAEhBC,EAAW,aACb7M,EAAK8C,UACJc,YAAYzE,GACZ4K,SAAS5K,GACT4K,SAAS5K,KAEP2D,SAAS4J,MAAMF,GAAa,KAE5BI,kBAAiB,KAEpB5M,EAAK8C,UAAU9B,QAAQ9B,EAAM4N,WAG5BtN,EAAKgD,6BAMJuK,EAAAA,UADuBP,EAAU,GAAGrK,cAAgBqK,EAAUQ,MAAM,MAGxEpO,KAAKkE,UACJjD,IAAIL,EAAKM,eAAgB+M,GACzBtK,qBA5KqB,UA8KnBO,SAAS4J,MAAMF,GAAgB5N,KAAKkE,SAASiK,GAAlD,mBAGFf,KA9LqB,0BA+LfpN,KAAKwM,kBACNvM,EAAED,KAAKkE,UAAUe,SAAS1E,QAIvBmN,EAAazN,EAAEK,MAAMA,EAAM+N,WAC/BrO,KAAKkE,UAAU9B,QAAQsL,IACrBA,EAAWnJ,0BAITqJ,EAAY5N,KAAK6N,wBAElB3J,SAAS4J,MAAMF,GAAgB5N,KAAKkE,SAASoK,wBAAwBV,GAA1E,OAEKjC,OAAO3L,KAAKkE,YAEflE,KAAKkE,UACJiH,SAAS5K,GACTyE,YAAYzE,GACZyE,YAAYzE,GAEXP,KAAKyM,cAAc7N,OAAS,MACzB,IAAID,EAAI,EAAGA,EAAIqB,KAAKyM,cAAc7N,OAAQD,IAAK,KAC5CyD,EAAUpC,KAAKyM,cAAc9N,GAC7BgD,EAAWf,EAAK+D,uBAAuBvC,MAC5B,OAAbT,EACY1B,EAAE0B,GACLsD,SAAS1E,MAChB6B,GAAS+I,SAAS5K,GACjBwN,KAAK,iBAAiB,QAM5BC,kBAAiB,OAEhBC,EAAW,aACVD,kBAAiB,KACpB1E,EAAKpF,UACJc,YAAYzE,GACZ4K,SAAS5K,GACT6B,QAAQ9B,EAAMiO,cAGdrK,SAAS4J,MAAMF,GAAa,GAE5BhN,EAAKgD,0BAKR5D,KAAKkE,UACJjD,IAAIL,EAAKM,eAAgB+M,GACzBtK,qBAzOqB,cA4O1BqK,iBAzPqB,SAyPJQ,QACVhC,iBAAmBgC,KAG1B/J,QA7PqB,aA8PjBC,WAAW1E,KAAKkE,SAAU/D,QAEvBsH,QAAmB,UACnBwF,QAAmB,UACnB/I,SAAmB,UACnBuI,cAAmB,UACnBD,iBAAmB,QAK1B9E,WAzQqB,SAyQVhF,iBAEJsE,EACAtE,IAEEsD,OAAS1D,QAAQI,EAAOsD,UAC1BmD,gBAAgBjJ,EAAMwC,EAAQuE,GAC5BvE,KAGTmL,cAnRqB,kBAoRF5N,EAAED,KAAKkE,UAAUe,SAASsH,GACzBA,EAAkBA,KAGtCW,WAxRqB,sBAyRftI,EAAS,KACThE,EAAKoC,UAAUhD,KAAKyH,QAAQ7C,WACrB5E,KAAKyH,QAAQ7C,OAGoB,oBAA/B5E,KAAKyH,QAAQ7C,OAAO6J,WACpBzO,KAAKyH,QAAQ7C,OAAO,OAGtB3E,EAAED,KAAKyH,QAAQ7C,QAAQ,OAG5BjD,EAAAA,yCACqC3B,KAAKyH,QAAQ7C,OADlD,cAGJA,GAAQ3C,KAAKN,GAAU4D,KAAK,SAAC5G,EAAG+C,KAC3ByL,0BACHb,EAASoC,sBAAsBhN,IAC9BA,MAIEkD,KAGTuI,0BAlTqB,SAkTKzL,EAASiN,MAC7BjN,EAAS,KACLkN,EAAS3O,EAAEyB,GAASuD,SAAS1E,GAE/BoO,EAAa/P,OAAS,KACtB+P,GACC/H,YAAYrG,GAAsBqO,GAClCb,KAAK,gBAAiBa,OAOxBF,sBAhUc,SAgUQhN,OACrBC,EAAWf,EAAK+D,uBAAuBjD,UACtCC,EAAW1B,EAAE0B,GAAU,GAAK,QAG9B2D,iBArUc,SAqUG5C,UACf1C,KAAKuF,KAAK,eACTsJ,EAAU5O,EAAED,MACdyF,EAAYoJ,EAAMpJ,KAAKtF,GACrBsH,EAAAA,KACDT,EACA6H,EAAMpJ,OACY,iBAAX/C,GAAuBA,OAG9B+C,GAAQgC,EAAQzB,QAAU,YAAY3C,KAAKX,OACtCsD,QAAS,GAGdP,MACI,IAAI6G,EAAStM,KAAMyH,KACpBhC,KAAKtF,EAAUsF,IAGD,iBAAX/C,EAAqB,IACF,oBAAjB+C,EAAK/C,SACR,IAAIqJ,UAAJ,oBAAkCrJ,EAAlC,OAEHA,uDApVe,+CAqFjBsE,oBA2QTxF,UAAUqE,GAAGvF,EAAMwF,eAAgBpF,EAASkM,YAAa,SAAU/I,GAE/B,MAAhCA,EAAMiL,cAAcjF,WAChBjE,qBAGFmJ,EAAW9O,EAAED,MACb2B,EAAWf,EAAK+D,uBAAuB3E,QAC3C2B,GAAU4D,KAAK,eACTyJ,EAAU/O,EAAED,MAEZ0C,EADUsM,EAAQvJ,KAAKtF,GACN,SAAW4O,EAAStJ,SAClCH,iBAAiBxF,KAAKkP,EAAStM,SAU1CgB,GAAGxD,GAAQoM,EAAShH,mBACpB5B,GAAGxD,GAAMb,YAAciN,IACvB5I,GAAGxD,GAAM6F,WAAa,oBACpBrC,GAAGxD,GAAQG,EACNiM,EAAShH,kBAGXgH,EArYS,CAsYfrM,GCrYGgP,EAAY,SAAChP,OAOXC,EAA2B,WAE3BC,EAA2B,cAC3BC,EAAAA,IAA+BD,EAC/BM,EAA2B,YAC3BJ,EAA2BJ,EAAEyD,GAAGxD,GAOhCgP,EAA2B,IAAI9L,OAAU+L,YAEzC7O,eACsBF,kBACEA,cACFA,gBACCA,gBACAA,yBACAA,EAAYK,6BACVL,EAAYK,yBACdL,EAAYK,GAGnCF,EACQ,WADRA,EAEQ,OAFRA,EAGQ,SAHRA,EAIQ,YAJRA,EAKQ,WALRA,EAMQ,sBANRA,EAOQ,qBAPRA,EAQc,kBAGdG,EACY,2BADZA,EAEY,iBAFZA,EAGY,iBAHZA,EAIY,cAJZA,EAKY,+CAGZ0O,EACQ,YADRA,EAEQ,UAFRA,EAGQ,eAHRA,EAIQ,aAJRA,EAKQ,cALRA,EAOQ,aAIRpI,UACU,QACA,WACA,gBAGVC,UACU,gCACA,mBACA,oBASVgI,wBACQvN,EAASgB,QACdwB,SAAYxC,OACZ2N,QAAY,UACZ5H,QAAYzH,KAAK0H,WAAWhF,QAC5B4M,MAAYtP,KAAKuP,uBACjBC,UAAYxP,KAAKyP,qBAEjB5H,gDAmBP7B,OA3GqB,eA4GfhG,KAAKkE,SAASwL,WAAYzP,EAAED,KAAKkE,UAAUe,SAAS1E,QAIlDqE,EAAWqK,EAASU,sBAAsB3P,KAAKkE,UAC/C0L,EAAW3P,EAAED,KAAKsP,OAAOrK,SAAS1E,QAE/BsP,eAELD,OAIEnF,iBACWzK,KAAKkE,UAEhB4L,EAAY7P,EAAEK,MAAMA,EAAMqN,KAAMlD,QAEpC7F,GAAQxC,QAAQ0N,IAEdA,EAAUvL,0BAKTvE,KAAKwP,UAAW,IAKG,oBAAXO,QACH,IAAIhE,UAAU,oEAElBrK,EAAU1B,KAAKkE,SAEfjE,EAAE2E,GAAQK,SAAS1E,KACjBN,EAAED,KAAKsP,OAAOrK,SAAS1E,IAAuBN,EAAED,KAAKsP,OAAOrK,SAAS1E,QAC7DqE,GAMgB,iBAA1B5E,KAAKyH,QAAQuI,YACbpL,GAAQuG,SAAS5K,QAEhB8O,QAAU,IAAIU,EAAOrO,EAAS1B,KAAKsP,MAAOtP,KAAKiQ,oBAOlD,iBAAkBzO,SAASkI,iBACsB,IAAlDzJ,EAAE2E,GAAQC,QAAQnE,GAAqB9B,UACtC,QAAQsM,WAAWrF,GAAG,YAAa,KAAM5F,EAAEiQ,WAG1ChM,SAASwC,aACTxC,SAASyC,aAAa,iBAAiB,KAE1C3G,KAAKsP,OAAO1I,YAAYrG,KACxBqE,GACCgC,YAAYrG,GACZ6B,QAAQnC,EAAEK,MAAMA,EAAM4N,MAAOzD,UAGlChG,QA/KqB,aAgLjBC,WAAW1E,KAAKkE,SAAU/D,KAC1BH,KAAKkE,UAAUgF,IAAI9I,QAChB8D,SAAW,UACXoL,MAAQ,KACQ,OAAjBtP,KAAKqP,eACFA,QAAQc,eACRd,QAAU,SAInBe,OA1LqB,gBA2LdZ,UAAYxP,KAAKyP,gBACD,OAAjBzP,KAAKqP,cACFA,QAAQgB,oBAMjBxI,mBAnMqB,wBAoMjB7H,KAAKkE,UAAU2B,GAAGvF,EAAMgQ,MAAO,SAACzM,KAC1B+B,mBACA2K,oBACDvK,cAIT0B,WA3MqB,SA2MVhF,iBAEJ1C,KAAKwQ,YAAYxJ,QACjB/G,EAAED,KAAKkE,UAAUuB,OACjB/C,KAGAyG,gBACHjJ,EACAwC,EACA1C,KAAKwQ,YAAYvJ,aAGZvE,KAGT6M,gBA3NqB,eA4NdvP,KAAKsP,MAAO,KACT1K,EAASqK,EAASU,sBAAsB3P,KAAKkE,eAC9CoL,MAAQrP,EAAE2E,GAAQ3C,KAAKvB,GAAe,UAEtCV,KAAKsP,SAGdmB,cAnOqB,eAoObC,EAAkBzQ,EAAED,KAAKkE,UAAUU,SACrC+L,EAAYvB,SAGZsB,EAAgBzL,SAAS1E,MACf6O,EACRnP,EAAED,KAAKsP,OAAOrK,SAAS1E,OACb6O,IAELsB,EAAgBzL,SAAS1E,KACtB6O,EACHsB,EAAgBzL,SAAS1E,KACtB6O,EACHnP,EAAED,KAAKsP,OAAOrK,SAAS1E,OACpB6O,GAEPuB,KAGTlB,cAvPqB,kBAwPZxP,EAAED,KAAKkE,UAAUW,QAAQ,WAAWjG,OAAS,KAGtDqR,iBA3PqB,sBA4PbW,WAC6B,mBAAxB5Q,KAAKyH,QAAQoJ,SACXnN,GAAK,SAAC+B,YACVqL,QAALrR,KACKgG,EAAKqL,QACLxH,EAAK7B,QAAQoJ,OAAOpL,EAAKqL,cAEvBrL,KAGEoL,OAAS7Q,KAAKyH,QAAQoJ,kBAGtB7Q,KAAKyQ,kCAENG,gBAEG5Q,KAAKyH,QAAQsJ,yCAGH/Q,KAAKyH,QAAQuI,eAUjC1K,iBA1Rc,SA0RG5C,UACf1C,KAAKuF,KAAK,eACXE,EAAOxF,EAAED,MAAMyF,KAAKtF,MAGnBsF,MACI,IAAIwJ,EAASjP,KAHY,iBAAX0C,EAAsBA,EAAS,QAIlD1C,MAAMyF,KAAKtF,EAAUsF,IAGH,iBAAX/C,EAAqB,IACF,oBAAjB+C,EAAK/C,SACR,IAAIqJ,UAAJ,oBAAkCrJ,EAAlC,OAEHA,WAKJmN,YA7Sc,SA6SFhM,OACbA,GA5RyB,IA4RfA,EAAMiG,QACH,UAAfjG,EAAMuC,MAhSqB,IAgSDvC,EAAMiG,eAI5BkH,EAAU/Q,EAAE8J,UAAU9J,EAAES,IACrB/B,EAAI,EAAGA,EAAIqS,EAAQpS,OAAQD,IAAK,KACjCiG,EAASqK,EAASU,sBAAsBqB,EAAQrS,IAChDsS,EAAUhR,EAAE+Q,EAAQrS,IAAI8G,KAAKtF,GAC7BsK,iBACWuG,EAAQrS,OAGpBsS,OAICC,EAAeD,EAAQ3B,SACxBrP,EAAE2E,GAAQK,SAAS1E,MAIpBsD,IAAyB,UAAfA,EAAMuC,MAChB,kBAAkB/C,KAAKQ,EAAMpF,OAAOoL,UAA2B,UAAfhG,EAAMuC,MAtT/B,IAsTmDvC,EAAMiG,QAChF7J,EAAEwG,SAAS7B,EAAQf,EAAMpF,cAIvB0S,EAAYlR,EAAEK,MAAMA,EAAM+N,KAAM5D,KACpC7F,GAAQxC,QAAQ+O,GACdA,EAAU5M,uBAMV,iBAAkB/C,SAASkI,mBAC3B,QAAQwB,WAAWhC,IAAI,YAAa,KAAMjJ,EAAEiQ,QAGxCvR,GAAGgI,aAAa,gBAAiB,WAEvCuK,GAAclM,YAAYzE,KAC1BqE,GACCI,YAAYzE,GACZ6B,QAAQnC,EAAEK,MAAMA,EAAMiO,OAAQ9D,WAI9BkF,sBA/Vc,SA+VQjO,OACvBkD,EACEjD,EAAWf,EAAK+D,uBAAuBjD,UAEzCC,MACO1B,EAAE0B,GAAU,IAGhBiD,GAAUlD,EAAQ0P,cAIpBC,uBA3Wc,SA2WSxN,OAQxB,kBAAkBR,KAAKQ,EAAMpF,OAAOoL,WArWX,KAsWzBhG,EAAMiG,OAvWmB,KAuWQjG,EAAMiG,QAnWd,KAoW1BjG,EAAMiG,OArWoB,KAqWYjG,EAAMiG,OAC3C7J,EAAE4D,EAAMpF,QAAQoG,QAAQnE,GAAe9B,SAAWsQ,EAAe7L,KAAKQ,EAAMiG,YAI1ElE,mBACA2K,mBAEFvQ,KAAK0P,WAAYzP,EAAED,MAAMiF,SAAS1E,SAIhCqE,EAAWqK,EAASU,sBAAsB3P,MAC1C4P,EAAW3P,EAAE2E,GAAQK,SAAS1E,OAE/BqP,GAvXwB,KAuXX/L,EAAMiG,OAtXK,KAsXuBjG,EAAMiG,UACrD8F,GAxXwB,KAwXX/L,EAAMiG,OAvXK,KAuXuBjG,EAAMiG,YAUpDwH,EAAQrR,EAAE2E,GAAQ3C,KAAKvB,GAAwB6Q,SAEhC,IAAjBD,EAAM1S,YAINgK,EAAQ0I,EAAMrH,QAAQpG,EAAMpF,QArYH,KAuYzBoF,EAAMiG,OAA8BlB,EAAQ,OAtYnB,KA0YzB/E,EAAMiG,OAAgClB,EAAQ0I,EAAM1S,OAAS,OAI7DgK,EAAQ,MACF,KAGJA,GAAOlC,iBAtZgB,KAyXvB7C,EAAMiG,MAA0B,KAC5B9D,EAAS/F,EAAE2E,GAAQ3C,KAAKvB,GAAsB,KAClDsF,GAAQ5D,QAAQ,WAGlBpC,MAAMoC,QAAQ,0DAnYW,+CA0FtB4E,6CAIAC,oBAuUTzF,UACCqE,GAAGvF,EAAMkR,iBAAkB9Q,EAAsBuO,EAASoC,wBAC1DxL,GAAGvF,EAAMkR,iBAAkB9Q,EAAeuO,EAASoC,wBACnDxL,GAAMvF,EAAMwF,eAHf,IAGiCxF,EAAMmR,eAAkBxC,EAASY,aAC/DhK,GAAGvF,EAAMwF,eAAgBpF,EAAsB,SAAUmD,KAClD+B,mBACA2K,oBACGjL,iBAAiBxF,KAAKG,EAAED,MAAO,YAEzC6F,GAAGvF,EAAMwF,eAAgBpF,EAAqB,SAACgR,KAC5CnB,sBASJ7M,GAAGxD,GAAQ+O,EAAS3J,mBACpB5B,GAAGxD,GAAMb,YAAc4P,IACvBvL,GAAGxD,GAAM6F,WAAa,oBACpBrC,GAAGxD,GAAQG,EACN4O,EAAS3J,kBAGX2J,EAvcS,CAwcfhP,GCzcG0R,EAAS,SAAC1R,OAORC,EAA+B,QAE/BC,EAA+B,WAC/BC,EAAAA,IAAmCD,EAEnCE,EAA+BJ,EAAEyD,GAAF,MAK/BsD,aACO,YACA,SACA,QACA,GAGPC,YACO,4BACA,gBACA,eACA,WAGP3G,eACuBF,kBACEA,cACFA,gBACCA,oBACEA,kBACDA,gCACOA,oCACEA,oCACAA,wCACEA,yBACZA,EA/BO,aAkC/BG,EACiB,0BADjBA,EAEiB,iBAFjBA,EAGiB,aAHjBA,EAIiB,OAJjBA,EAKiB,OAGjBG,UACiB,4BACA,qCACA,uCACA,mEACA,6BACA,mBASjBiR,wBACQjQ,EAASgB,QACd+E,QAAuBzH,KAAK0H,WAAWhF,QACvCwB,SAAuBxC,OACvBkQ,QAAuB3R,EAAEyB,GAASO,KAAKvB,EAASmR,QAAQ,QACxDC,UAAuB,UACvBC,UAAuB,OACvBC,oBAAuB,OACvBC,sBAAuB,OACvBC,qBAAuB,OACvBC,gBAAuB,6BAe9BnM,OA7FkB,SA6FXyE,UACEzK,KAAK+R,SAAW/R,KAAKoN,OAASpN,KAAKqN,KAAK5C,MAGjD4C,KAjGkB,SAiGb5C,kBACCzK,KAAKwM,mBAAoBxM,KAAK+R,UAI9BnR,EAAKgD,yBAA2B3D,EAAED,KAAKkE,UAAUe,SAAS1E,UACvDiM,kBAAmB,OAGpBsD,EAAY7P,EAAEK,MAAMA,EAAMqN,0BAI9B3N,KAAKkE,UAAU9B,QAAQ0N,GAErB9P,KAAK+R,UAAYjC,EAAUvL,4BAI1BwN,UAAW,OAEXK,uBACAC,qBAEAC,kBAEH9Q,SAAS+Q,MAAMpH,SAAS5K,QAErBiS,uBACAC,oBAEHzS,KAAKkE,UAAU2B,GACfvF,EAAMoS,cACNhS,EAASiS,aACT,SAAC9O,UAAUzC,EAAKgM,KAAKvJ,OAGrB7D,KAAK4R,SAAS/L,GAAGvF,EAAMsS,kBAAmB,aACxCxR,EAAK8C,UAAUjD,IAAIX,EAAMuS,gBAAiB,SAAChP,GACvC5D,EAAE4D,EAAMpF,QAAQsF,GAAG3C,EAAK8C,cACrB+N,sBAAuB,YAK7Ba,cAAc,kBAAM1R,EAAK2R,aAAatI,UAG7C2C,KAjJkB,SAiJbvJ,iBACCA,KACI+B,kBAGJ5F,KAAKwM,kBAAqBxM,KAAK+R,cAI7BZ,EAAYlR,EAAEK,MAAMA,EAAM+N,WAE9BrO,KAAKkE,UAAU9B,QAAQ+O,GAEpBnR,KAAK+R,WAAYZ,EAAU5M,2BAI3BwN,UAAW,MAEVlR,EAAaD,EAAKgD,yBAA2B3D,EAAED,KAAKkE,UAAUe,SAAS1E,GAEzEM,SACG2L,kBAAmB,QAGrBgG,uBACAC,oBAEHjR,UAAU0H,IAAI5I,EAAM0S,WAEpBhT,KAAKkE,UAAUc,YAAYzE,KAE3BP,KAAKkE,UAAUgF,IAAI5I,EAAMoS,iBACzB1S,KAAK4R,SAAS1I,IAAI5I,EAAMsS,mBAEtB/R,IACAb,KAAKkE,UACJjD,IAAIL,EAAKM,eAAgB,SAAC2C,UAAUyF,EAAK2J,WAAWpP,KACpDF,qBA1K4B,UA4K1BsP,kBAITxO,QA7LkB,aA8LdC,WAAW1E,KAAKkE,SAAU/D,KAE1BqD,OAAQhC,SAAUxB,KAAKkE,SAAUlE,KAAK8R,WAAW5I,IAAI9I,QAElDqH,QAAuB,UACvBvD,SAAuB,UACvB0N,QAAuB,UACvBE,UAAuB,UACvBC,SAAuB,UACvBC,mBAAuB,UACvBC,qBAAuB,UACvBE,gBAAuB,QAG9Be,aA5MkB,gBA6MXZ,mBAKP5K,WAlNkB,SAkNPhF,iBAEJsE,EACAtE,KAEAyG,gBAAgBjJ,EAAMwC,EAAQuE,GAC5BvE,KAGTqQ,aA3NkB,SA2NLtI,cACL5J,EAAaD,EAAKgD,yBACtB3D,EAAED,KAAKkE,UAAUe,SAAS1E,GAEvBP,KAAKkE,SAASkN,YAChBpR,KAAKkE,SAASkN,WAAW5O,WAAa2Q,KAAKC,uBAEnCb,KAAKc,YAAYrT,KAAKkE,eAG5BA,SAAS4J,MAAMwF,QAAU,aACzBpP,SAASqP,gBAAgB,oBACzBrP,SAASsP,UAAY,EAEtB3S,KACG8K,OAAO3L,KAAKkE,YAGjBlE,KAAKkE,UAAUiH,SAAS5K,GAEtBP,KAAKyH,QAAQf,YACV+M,oBAGDC,EAAazT,EAAEK,MAAMA,EAAM4N,yBAI3ByF,EAAqB,WACrB/H,EAAKnE,QAAQf,SACVxC,SAASwC,UAEX8F,kBAAmB,IACtBZ,EAAK1H,UAAU9B,QAAQsR,IAGvB7S,IACAb,KAAK4R,SACJ3Q,IAAIL,EAAKM,eAAgByS,GACzBhQ,qBArP4B,YA2PnC8P,cAxQkB,wBAyQdjS,UACC0H,IAAI5I,EAAM0S,SACVnN,GAAGvF,EAAM0S,QAAS,SAACnP,GACdrC,WAAaqC,EAAMpF,QACnBmV,EAAK1P,WAAaL,EAAMpF,QACsB,IAA9CwB,EAAE2T,EAAK1P,UAAU2P,IAAIhQ,EAAMpF,QAAQG,UAChCsF,SAASwC,aAKtB8L,gBApRkB,sBAqRZxS,KAAK+R,UAAY/R,KAAKyH,QAAQ2B,WAC9BpJ,KAAKkE,UAAU2B,GAAGvF,EAAMwT,gBAAiB,SAACjQ,GAvQb,KAwQzBA,EAAMiG,UACFlE,mBACDwH,UAGCpN,KAAK+R,YACb/R,KAAKkE,UAAUgF,IAAI5I,EAAMwT,oBAI/BrB,gBAjSkB,sBAkSZzS,KAAK+R,WACLvO,QAAQqC,GAAGvF,EAAMyT,OAAQ,SAAClQ,UAAUmQ,EAAKd,aAAarP,OAEtDL,QAAQ0F,IAAI5I,EAAMyT,WAIxBd,WAzSkB,2BA0SX/O,SAAS4J,MAAMwF,QAAU,YACzBpP,SAASyC,aAAa,eAAe,QACrC6F,kBAAmB,OACnBsG,cAAc,aACftR,SAAS+Q,MAAMvN,YAAYzE,KACxB0T,sBACAC,oBACHC,EAAKjQ,UAAU9B,QAAQ9B,EAAMiO,aAInC6F,gBArTkB,WAsTZpU,KAAK8R,cACL9R,KAAK8R,WAAWzM,cACbyM,UAAY,SAIrBgB,cA5TkB,SA4TJuB,cACNC,EAAUrU,EAAED,KAAKkE,UAAUe,SAAS1E,GACtCA,EAAiB,MAEjBP,KAAK+R,UAAY/R,KAAKyH,QAAQ8M,SAAU,KACpCC,EAAY5T,EAAKgD,yBAA2B0Q,UAE7CxC,UAAYtQ,SAASiT,cAAc,YACnC3C,UAAU4C,UAAYnU,EAEvB+T,KACAtU,KAAK8R,WAAW3G,SAASmJ,KAG3BtU,KAAK8R,WAAW6C,SAASnT,SAAS+Q,QAElCvS,KAAKkE,UAAU2B,GAAGvF,EAAMoS,cAAe,SAAC7O,GACpC+Q,EAAK3C,uBACFA,sBAAuB,EAG1BpO,EAAMpF,SAAWoF,EAAMiL,gBAGG,WAA1B8F,EAAKnN,QAAQ8M,WACVrQ,SAASwC,UAET0G,UAILoH,KACG7I,OAAO3L,KAAK8R,aAGjB9R,KAAK8R,WAAW3G,SAAS5K,IAEtB8T,aAIAG,oBAKHxU,KAAK8R,WACJ7Q,IAAIL,EAAKM,eAAgBmT,GACzB1Q,qBA9V4B,UA+V1B,IAAK3D,KAAK+R,UAAY/R,KAAK8R,UAAW,GACzC9R,KAAK8R,WAAW9M,YAAYzE,OAExBsU,EAAiB,aAChBT,kBACDC,QAKFzT,EAAKgD,yBACN3D,EAAED,KAAKkE,UAAUe,SAAS1E,KACzBP,KAAK8R,WACJ7Q,IAAIL,EAAKM,eAAgB2T,GACzBlR,qBA7W0B,cAiXtB0Q,UAUb/B,cAzYkB,eA0YVwC,EACJ9U,KAAKkE,SAAS6Q,aAAevT,SAASkI,gBAAgBsL,cAEnDhV,KAAKgS,oBAAsB8C,SACzB5Q,SAAS4J,MAAMmH,YAAiBjV,KAAKmS,gBAA1C,MAGEnS,KAAKgS,qBAAuB8C,SACzB5Q,SAAS4J,MAAMoH,aAAkBlV,KAAKmS,gBAA3C,SAIJ8B,kBAtZkB,gBAuZX/P,SAAS4J,MAAMmH,YAAc,QAC7B/Q,SAAS4J,MAAMoH,aAAe,MAGrC9C,gBA3ZkB,eA4ZV+C,EAAO3T,SAAS+Q,KAAKjE,6BACtB0D,mBAAqBmD,EAAKC,KAAOD,EAAKE,MAAQ7R,OAAO8R,gBACrDnD,gBAAkBnS,KAAKuV,wBAG9BlD,cAjakB,yBAkaZrS,KAAKgS,mBAAoB,GAKzBtR,EAAS8U,eAAejQ,KAAK,SAACqD,EAAOlH,OAC/B+T,EAAgBxV,EAAEyB,GAAS,GAAGoM,MAAMoH,aACpCQ,EAAoBzV,EAAEyB,GAASwG,IAAI,mBACvCxG,GAAS+D,KAAK,gBAAiBgQ,GAAevN,IAAI,gBAAoByN,WAAWD,GAAqBE,EAAKzD,gBAA7G,UAIAzR,EAASmV,gBAAgBtQ,KAAK,SAACqD,EAAOlH,OAChCoU,EAAe7V,EAAEyB,GAAS,GAAGoM,MAAMiI,YACnCC,EAAmB/V,EAAEyB,GAASwG,IAAI,kBACtCxG,GAAS+D,KAAK,eAAgBqQ,GAAc5N,IAAI,eAAmByN,WAAWK,GAAoBJ,EAAKzD,gBAAzG,UAIAzR,EAASuV,gBAAgB1Q,KAAK,SAACqD,EAAOlH,OAChCoU,EAAe7V,EAAEyB,GAAS,GAAGoM,MAAMiI,YACnCC,EAAmB/V,EAAEyB,GAASwG,IAAI,kBACtCxG,GAAS+D,KAAK,eAAgBqQ,GAAc5N,IAAI,eAAmByN,WAAWK,GAAoBJ,EAAKzD,gBAAzG,YAIIsD,EAAgBjU,SAAS+Q,KAAKzE,MAAMoH,aACpCQ,EAAoBzV,EAAE,QAAQiI,IAAI,mBACtC,QAAQzC,KAAK,gBAAiBgQ,GAAevN,IAAI,gBAAoByN,WAAWD,GAAqB1V,KAAKmS,gBAA5G,UAIJ+B,gBAlckB,aAocdxT,EAAS8U,eAAejQ,KAAK,SAACqD,EAAOlH,OAC/BwU,EAAUjW,EAAEyB,GAAS+D,KAAK,iBACT,oBAAZyQ,KACPxU,GAASwG,IAAI,gBAAiBgO,GAASxR,WAAW,qBAKnDhE,EAASmV,eAAd,KAAiCnV,EAASuV,gBAAkB1Q,KAAK,SAACqD,EAAOlH,OACjEyU,EAASlW,EAAEyB,GAAS+D,KAAK,gBACT,oBAAX0Q,KACPzU,GAASwG,IAAI,eAAgBiO,GAAQzR,WAAW,sBAKhDwR,EAAUjW,EAAE,QAAQwF,KAAK,iBACR,oBAAZyQ,KACP,QAAQhO,IAAI,gBAAiBgO,GAASxR,WAAW,oBAIvD6Q,mBA1dkB,eA2dVa,EAAY5U,SAASiT,cAAc,SAC/BC,UAAYnU,WACbgS,KAAKc,YAAY+C,OACpBC,EAAiBD,EAAU9H,wBAAwBgI,MAAQF,EAAUG,4BAClEhE,KAAKiE,YAAYJ,GACnBC,KAKF/Q,iBAreW,SAqeM5C,EAAQ+H,UACvBzK,KAAKuF,KAAK,eACXE,EAAOxF,EAAED,MAAMyF,KAAKtF,GAClBsH,EAAAA,KACDkK,EAAM3K,QACN/G,EAAED,MAAMyF,OACU,iBAAX/C,GAAuBA,MAG9B+C,MACI,IAAIkM,EAAM3R,KAAMyH,KACrBzH,MAAMyF,KAAKtF,EAAUsF,IAGH,iBAAX/C,EAAqB,IACF,oBAAjB+C,EAAK/C,SACR,IAAIqJ,UAAJ,oBAAkCrJ,EAAlC,OAEHA,GAAQ+H,QACJhD,EAAQ4F,QACZA,KAAK5C,oDAjfmB,+CAgF1BzD,oBA6aTxF,UAAUqE,GAAGvF,EAAMwF,eAAgBpF,EAASkM,YAAa,SAAU/I,OAC/DpF,SACEkD,EAAWf,EAAK+D,uBAAuB3E,MAEzC2B,MACO1B,EAAE0B,GAAU,QAGjBe,EAASzC,EAAExB,GAAQgH,KAAKtF,GAC1B,SADWV,KAERQ,EAAExB,GAAQgH,OACVxF,EAAED,MAAMyF,QAGM,MAAjBzF,KAAK6J,SAAoC,SAAjB7J,KAAK6J,WACzBjE,qBAGFoJ,EAAU/O,EAAExB,GAAQwC,IAAIX,EAAMqN,KAAM,SAACmC,GACrCA,EAAUvL,wBAKNtD,IAAIX,EAAMiO,OAAQ,WACpBtO,EAAAA,GAAQ8D,GAAG,eACR2C,cAKLpB,iBAAiBxF,KAAKG,EAAExB,GAASiE,EAAQ1C,UAS/C0D,GAAF,MAAaiO,EAAMrM,mBACjB5B,GAAF,MAAWrE,YAAcsS,IACvBjO,GAAF,MAAWqC,WAAa,oBACpBrC,GAAF,MAAarD,EACNsR,EAAMrM,kBAGRqM,EApjBM,CAqjBZ1R,GCpjBGwW,EAAW,SAACxW,OAOVC,EAAsB,UAEtBC,EAAsB,aACtBC,EAAAA,IAA0BD,EAC1BE,EAAsBJ,EAAEyD,GAAGxD,GAG3BwW,EAAqB,IAAItT,OAAJ,wBAAyC,KAE9D6D,aACkB,mBACA,eACA,oCACA,eACA,uBACA,mBACA,6BACA,2BACA,4BACA,6CACA,0BACA,oBAGlBmI,QACK,WACA,YACA,eACA,cACA,QAGLpI,cACkB,WACA,+GAGA,oBACA,SACA,QACA,YACA,YACA,aACA,aACA,oBACA,gBACA,gBAGlB2P,EACG,OADHA,EAEG,MAGHrW,eACgBF,kBACEA,cACFA,gBACCA,sBACGA,gBACHA,oBACEA,sBACCA,0BACEA,0BACAA,GAGtBG,EACG,OADHA,EAEG,OAGHG,EAEY,iBAFZA,EAGY,SAGZkW,EACK,QADLA,EAEK,QAFLA,EAGK,QAHLA,EAIK,SAULH,wBACQ/U,EAASgB,MAKG,oBAAXqN,QACH,IAAIhE,UAAU,qEAIjB8K,YAAiB,OACjBC,SAAiB,OACjBC,YAAiB,QACjBC,uBACA3H,QAAiB,UAGjB3N,QAAUA,OACVgB,OAAU1C,KAAK0H,WAAWhF,QAC1BuU,IAAU,UAEVC,2CAmCPC,OA5JoB,gBA6JbN,YAAa,KAGpBO,QAhKoB,gBAiKbP,YAAa,KAGpBQ,cApKoB,gBAqKbR,YAAc7W,KAAK6W,cAG1B7Q,OAxKoB,SAwKbnC,MACA7D,KAAK6W,cAINhT,EAAO,KACHyT,EAAUtX,KAAKwQ,YAAYrQ,SAC7B8Q,EAAUhR,EAAE4D,EAAMiL,eAAerJ,KAAK6R,GAErCrG,MACO,IAAIjR,KAAKwQ,YACjB3M,EAAMiL,cACN9O,KAAKuX,wBAEL1T,EAAMiL,eAAerJ,KAAK6R,EAASrG,MAG/B+F,eAAeQ,OAASvG,EAAQ+F,eAAeQ,MAEnDvG,EAAQwG,yBACFC,OAAO,KAAMzG,KAEb0G,OAAO,KAAM1G,OAElB,IACDhR,EAAED,KAAK4X,iBAAiB3S,SAAS1E,oBAC9BoX,OAAO,KAAM3X,WAIf0X,OAAO,KAAM1X,UAItByE,QA1MoB,wBA2MLzE,KAAK8W,YAEhBpS,WAAW1E,KAAK0B,QAAS1B,KAAKwQ,YAAYrQ,YAE1CH,KAAK0B,SAASwH,IAAIlJ,KAAKwQ,YAAYpQ,aACnCJ,KAAK0B,SAASmD,QAAQ,UAAUqE,IAAI,iBAElClJ,KAAKiX,OACLjX,KAAKiX,KAAK5R,cAGTwR,WAAiB,UACjBC,SAAiB,UACjBC,YAAiB,UACjBC,eAAiB,KACD,OAAjBhX,KAAKqP,cACFA,QAAQc,eAGVd,QAAU,UACV3N,QAAU,UACVgB,OAAU,UACVuU,IAAU,QAGjB5J,KApOoB,yBAqOqB,SAAnCpN,EAAED,KAAK0B,SAASwG,IAAI,iBAChB,IAAI5E,MAAM,2CAGZwM,EAAY7P,EAAEK,MAAMN,KAAKwQ,YAAYlQ,MAAMqN,SAC7C3N,KAAK6X,iBAAmB7X,KAAK6W,WAAY,GACzC7W,KAAK0B,SAASU,QAAQ0N,OAElBgI,EAAa7X,EAAEwG,SACnBzG,KAAK0B,QAAQqW,cAAcrO,gBAC3B1J,KAAK0B,YAGHoO,EAAUvL,uBAAyBuT,aAIjCb,EAAQjX,KAAK4X,gBACbI,EAAQpX,EAAKqX,OAAOjY,KAAKwQ,YAAYtQ,QAEvCyG,aAAa,KAAMqR,QAClBtW,QAAQiF,aAAa,mBAAoBqR,QAEzCE,aAEDlY,KAAK0C,OAAOyV,aACZlB,GAAK9L,SAAS5K,OAGZoQ,EAA8C,mBAA1B3Q,KAAK0C,OAAOiO,UAClC3Q,KAAK0C,OAAOiO,UAAU7Q,KAAKE,KAAMiX,EAAKjX,KAAK0B,SAC3C1B,KAAK0C,OAAOiO,UAEVyH,EAAapY,KAAKqY,eAAe1H,QAClC2H,mBAAmBF,OAElBG,GAAsC,IAA1BvY,KAAK0C,OAAO6V,UAAsB/W,SAAS+Q,KAAOtS,EAAED,KAAK0C,OAAO6V,aAEhFtB,GAAKxR,KAAKzF,KAAKwQ,YAAYrQ,SAAUH,MAElCC,EAAEwG,SAASzG,KAAK0B,QAAQqW,cAAcrO,gBAAiB1J,KAAKiX,QAC7DA,GAAKtC,SAAS4D,KAGhBvY,KAAK0B,SAASU,QAAQpC,KAAKwQ,YAAYlQ,MAAMkY,eAE1CnJ,QAAU,IAAIU,EAAO/P,KAAK0B,QAASuV,aAC3BmB,4BAGCpY,KAAK0C,OAAOmO,uBAGV7Q,KAAK0C,OAAO+V,kCAGb/X,sCAGUV,KAAK0C,OAAOsN,oBAGzB,SAACvK,GACLA,EAAKiT,oBAAsBjT,EAAKkL,aAC7BgI,6BAA6BlT,aAG5B,SAACA,KACJkT,6BAA6BlT,QAIpCwR,GAAK9L,SAAS5K,GAMZ,iBAAkBiB,SAASkI,mBAC3B,QAAQwB,WAAWrF,GAAG,YAAa,KAAM5F,EAAEiQ,UAGzCjC,EAAW,WACX7M,EAAKsB,OAAOyV,aACTS,qBAEDC,EAAiBzX,EAAK2V,cACvBA,YAAkB,OAErB3V,EAAKM,SAASU,QAAQhB,EAAKoP,YAAYlQ,MAAM4N,OAE3C2K,IAAmBlC,KAChBgB,OAAO,KAAZvW,IAIAR,EAAKgD,yBAA2B3D,EAAED,KAAKiX,KAAKhS,SAAS1E,KACrDP,KAAKiX,KACJhW,IAAIL,EAAKM,eAAgB+M,GACzBtK,qBAAqB8S,EAAQqC,8BAOtC1L,KA/UoB,SA+UfiH,cACG4C,EAAYjX,KAAK4X,gBACjBzG,EAAYlR,EAAEK,MAAMN,KAAKwQ,YAAYlQ,MAAM+N,MAC3CJ,EAAW,WACX3E,EAAKyN,cAAgBJ,GAAmBM,EAAI7F,cAC1CA,WAAWoF,YAAYS,KAGxB8B,mBACArX,QAAQ6R,gBAAgB,sBAC3BjK,EAAK5H,SAASU,QAAQkH,EAAKkH,YAAYlQ,MAAMiO,QAC1B,OAAjBjF,EAAK+F,WACFA,QAAQc,UAGXkE,UAKJrU,KAAK0B,SAASU,QAAQ+O,GAEpBA,EAAU5M,yBAIZ0S,GAAKjS,YAAYzE,GAIf,iBAAkBiB,SAASkI,mBAC3B,QAAQwB,WAAWhC,IAAI,YAAa,KAAMjJ,EAAEiQ,WAG3C8G,eAAeJ,IAAiB,OAChCI,eAAeJ,IAAiB,OAChCI,eAAeJ,IAAiB,EAEjChW,EAAKgD,yBACL3D,EAAED,KAAKiX,KAAKhS,SAAS1E,KACrB0W,GACChW,IAAIL,EAAKM,eAAgB+M,GACzBtK,qBA7WmB,cAkXnBoT,YAAc,OAGrB3G,OAjYoB,WAkYG,OAAjBpQ,KAAKqP,cACFA,QAAQgB,oBAMjBwH,cAzYoB,kBA0YXvV,QAAQtC,KAAKgZ,eAGtBV,mBA7YoB,SA6YDF,KACfpY,KAAK4X,iBAAiBzM,SAAY8N,cAAgBb,MAGtDR,cAjZoB,uBAkZbX,IAAMjX,KAAKiX,KAAOhX,EAAED,KAAK0C,OAAOwW,UAAU,GACxClZ,KAAKiX,OAGdiB,WAtZoB,eAuZZiB,EAAOlZ,EAAED,KAAK4X,sBACfwB,kBAAkBD,EAAKlX,KAAKvB,GAAyBV,KAAKgZ,cAC1DhU,YAAezE,EAApB,IAAsCA,MAGxC6Y,kBA5ZoB,SA4ZF5T,EAAU6T,OACpBC,EAAOtZ,KAAK0C,OAAO4W,KACF,iBAAZD,IAAyBA,EAAQ7W,UAAY6W,EAAQ5K,QAE1D6K,EACGrZ,EAAEoZ,GAASzU,SAASb,GAAGyB,MACjB+T,QAAQC,OAAOH,KAGjBI,KAAKxZ,EAAEoZ,GAASI,UAGlBH,EAAO,OAAS,QAAQD,MAIrCL,SA5aoB,eA6adU,EAAQ1Z,KAAK0B,QAAQE,aAAa,8BAEjC8X,MACkC,mBAAtB1Z,KAAK0C,OAAOgX,MACvB1Z,KAAK0C,OAAOgX,MAAM5Z,KAAKE,KAAK0B,SAC5B1B,KAAK0C,OAAOgX,OAGXA,KAKTrB,eA1boB,SA0bL1H,UACNvB,EAAcuB,EAAUpN,kBAGjC2T,cA9boB,sBA+bDlX,KAAK0C,OAAON,QAAQuX,MAAM,KAElCC,QAAQ,SAACxX,MACA,UAAZA,IACAwJ,EAAKlK,SAASmE,GACd+F,EAAK4E,YAAYlQ,MAAMgQ,MACvB1E,EAAKlJ,OAAOf,SACZ,SAACkC,UAAU+H,EAAK5F,OAAOnC,UAEpB,GAAIzB,IAAYwU,EAAgB,KAC/BiD,EAAUzX,IAAYwU,EACxBhL,EAAK4E,YAAYlQ,MAAMkJ,WACvBoC,EAAK4E,YAAYlQ,MAAM0S,QACrB8G,EAAW1X,IAAYwU,EACzBhL,EAAK4E,YAAYlQ,MAAMmJ,WACvBmC,EAAK4E,YAAYlQ,MAAMyZ,WAEzBnO,EAAKlK,SACJmE,GACCgU,EACAjO,EAAKlJ,OAAOf,SACZ,SAACkC,UAAU+H,EAAK8L,OAAO7T,KAExBgC,GACCiU,EACAlO,EAAKlJ,OAAOf,SACZ,SAACkC,UAAU+H,EAAK+L,OAAO9T,OAI3B+H,EAAKlK,SAASmD,QAAQ,UAAUgB,GAChC,gBACA,kBAAM+F,EAAKwB,WAIXpN,KAAK0C,OAAOf,cACTe,OAALjD,KACKO,KAAK0C,gBACC,kBACC,UAGPsX,eAITA,UA9eoB,eA+eZC,SAAmBja,KAAK0B,QAAQE,aAAa,wBAC/C5B,KAAK0B,QAAQE,aAAa,UACb,WAAdqY,UACIvY,QAAQiF,aACX,sBACA3G,KAAK0B,QAAQE,aAAa,UAAY,SAEnCF,QAAQiF,aAAa,QAAS,QAIvC+Q,OA1foB,SA0fb7T,EAAOoN,OACNqG,EAAUtX,KAAKwQ,YAAYrQ,YAEvB8Q,GAAWhR,EAAE4D,EAAMiL,eAAerJ,KAAK6R,QAGrC,IAAItX,KAAKwQ,YACjB3M,EAAMiL,cACN9O,KAAKuX,wBAEL1T,EAAMiL,eAAerJ,KAAK6R,EAASrG,IAGnCpN,MACMmT,eACS,YAAfnT,EAAMuC,KAAqBwQ,EAAgBA,IACzC,GAGF3W,EAAEgR,EAAQ2G,iBAAiB3S,SAAS1E,IACrC0Q,EAAQ8F,cAAgBJ,IACjBI,YAAcJ,gBAIX1F,EAAQ6F,YAEbC,YAAcJ,EAEjB1F,EAAQvO,OAAOwX,OAAUjJ,EAAQvO,OAAOwX,MAAM7M,OAK3CyJ,SAAWlN,WAAW,WACxBqH,EAAQ8F,cAAgBJ,KAClBtJ,QAET4D,EAAQvO,OAAOwX,MAAM7M,QARdA,WAWZsK,OAniBoB,SAmiBb9T,EAAOoN,OACNqG,EAAUtX,KAAKwQ,YAAYrQ,YAEvB8Q,GAAWhR,EAAE4D,EAAMiL,eAAerJ,KAAK6R,QAGrC,IAAItX,KAAKwQ,YACjB3M,EAAMiL,cACN9O,KAAKuX,wBAEL1T,EAAMiL,eAAerJ,KAAK6R,EAASrG,IAGnCpN,MACMmT,eACS,aAAfnT,EAAMuC,KAAsBwQ,EAAgBA,IAC1C,GAGF3F,EAAQwG,sCAICxG,EAAQ6F,YAEbC,YAAcJ,EAEjB1F,EAAQvO,OAAOwX,OAAUjJ,EAAQvO,OAAOwX,MAAM9M,OAK3C0J,SAAWlN,WAAW,WACxBqH,EAAQ8F,cAAgBJ,KAClBvJ,QAET6D,EAAQvO,OAAOwX,MAAM9M,QARdA,WAWZqK,qBA1kBoB,eA2kBb,IAAMrV,KAAWpC,KAAKgX,kBACrBhX,KAAKgX,eAAe5U,UACf,SAIJ,KAGTsF,WAplBoB,SAolBThF,SAOmB,wBALvB1C,KAAKwQ,YAAYxJ,QACjB/G,EAAED,KAAK0B,SAAS+D,OAChB/C,IAGawX,UACTA,YACCxX,EAAOwX,WACPxX,EAAOwX,QAIW,iBAAjBxX,EAAOgX,UACTA,MAAQhX,EAAOgX,MAAMzW,YAGA,iBAAnBP,EAAO2W,YACTA,QAAU3W,EAAO2W,QAAQpW,cAG7BkG,gBACHjJ,EACAwC,EACA1C,KAAKwQ,YAAYvJ,aAGZvE,KAGT6U,mBAnnBoB,eAonBZ7U,QAEF1C,KAAK0C,WACF,IAAMvD,KAAOa,KAAK0C,OACjB1C,KAAKwQ,YAAYxJ,QAAQ7H,KAASa,KAAK0C,OAAOvD,OACzCA,GAAOa,KAAK0C,OAAOvD,WAKzBuD,KAGTqW,eAjoBoB,eAkoBZI,EAAOlZ,EAAED,KAAK4X,iBACduC,EAAWhB,EAAKpL,KAAK,SAAS7K,MAAMwT,GACzB,OAAbyD,GAAqBA,EAASvb,OAAS,KACpCoG,YAAYmV,EAASC,KAAK,QAInCzB,6BAzoBoB,SAyoBSlT,QACtBsT,sBACAT,mBAAmBtY,KAAKqY,eAAe5S,EAAKkL,eAGnDiI,eA9oBoB,eA+oBZ3B,EAAMjX,KAAK4X,gBACXyC,EAAsBra,KAAK0C,OAAOyV,UACA,OAApClB,EAAIrV,aAAa,mBAGnBqV,GAAKjS,YAAYzE,QACdmC,OAAOyV,WAAY,OACnB/K,YACAC,YACA3K,OAAOyV,UAAYkC,MAKnB/U,iBA7pBa,SA6pBI5C,UACf1C,KAAKuF,KAAK,eACXE,EAAOxF,EAAED,MAAMyF,KAAKtF,GAClBsH,EAA4B,iBAAX/E,GAAuBA,MAEzC+C,IAAQ,eAAepC,KAAKX,MAI5B+C,MACI,IAAIgR,EAAQzW,KAAMyH,KACvBzH,MAAMyF,KAAKtF,EAAUsF,IAGH,iBAAX/C,GAAqB,IACF,oBAAjB+C,EAAK/C,SACR,IAAIqJ,UAAJ,oBAAkCrJ,EAAlC,OAEHA,uDAvqBe,+CA2HjBsE,sCAIA9G,0CAIAC,uCAIAG,2CAIAF,6CAIA6G,oBAoiBTvD,GAAGxD,GAAQuW,EAAQnR,mBACnB5B,GAAGxD,GAAMb,YAAcoX,IACvB/S,GAAGxD,GAAM6F,WAAa,oBACpBrC,GAAGxD,GAAQG,EACNoW,EAAQnR,kBAGVmR,EAlsBQ,CAmsBdxW,GCpsBGqa,EAAW,SAACra,OAOVC,EAAsB,UAEtBC,EAAsB,aACtBC,EAAAA,IAA0BD,EAC1BE,EAAsBJ,EAAEyD,GAAGxD,GAE3BwW,EAAsB,IAAItT,OAAJ,wBAAyC,KAE/D4D,EAAAA,KACDyP,EAAQzP,mBACC,gBACA,gBACA,YACA,wIAMRC,EAAAA,KACDwP,EAAQxP,qBACD,8BAGN1G,EACG,OADHA,EAEG,OAGHG,EACM,kBADNA,EAEM,gBAGNJ,eACgBF,kBACEA,cACFA,gBACCA,sBACGA,gBACHA,oBACEA,sBACCA,0BACEA,0BACAA,GAStBka,cTlCR,IAAwBC,EAAUC,oDAAAA,KAAVD,KACb/a,UAAYP,OAAOwb,OAAOD,EAAWhb,WAC9C+a,EAAS/a,UAAUgR,YAAc+J,EACjCA,EAASG,UAAYF,6BSgEnB3C,cA7FoB,kBA8FX7X,KAAKgZ,YAAchZ,KAAK2a,iBAGjCrC,mBAjGoB,SAiGDF,KACfpY,KAAK4X,iBAAiBzM,SAAY8N,cAAgBb,MAGtDR,cArGoB,uBAsGbX,IAAMjX,KAAKiX,KAAOhX,EAAED,KAAK0C,OAAOwW,UAAU,GACxClZ,KAAKiX,OAGdiB,WA1GoB,eA2GZiB,EAAOlZ,EAAED,KAAK4X,sBAGfwB,kBAAkBD,EAAKlX,KAAKvB,GAAiBV,KAAKgZ,gBACnDK,EAAUrZ,KAAK2a,cACI,mBAAZtB,MACCA,EAAQvZ,KAAKE,KAAK0B,eAEzB0X,kBAAkBD,EAAKlX,KAAKvB,GAAmB2Y,KAE/CrU,YAAezE,EAApB,IAAsCA,MAKxCoa,YA1HoB,kBA2HX3a,KAAK0B,QAAQE,aAAa,iBAC/B5B,KAAK0C,OAAO2W,WAGhBN,eA/HoB,eAgIZI,EAAOlZ,EAAED,KAAK4X,iBACduC,EAAWhB,EAAKpL,KAAK,SAAS7K,MAAMwT,GACzB,OAAbyD,GAAqBA,EAASvb,OAAS,KACpCoG,YAAYmV,EAASC,KAAK,QAM5B9U,iBAzIa,SAyII5C,UACf1C,KAAKuF,KAAK,eACXE,EAAOxF,EAAED,MAAMyF,KAAKtF,GAClBsH,EAA4B,iBAAX/E,EAAsBA,EAAS,SAEjD+C,IAAQ,eAAepC,KAAKX,MAI5B+C,MACI,IAAI6U,EAAQta,KAAMyH,KACvBzH,MAAMyF,KAAKtF,EAAUsF,IAGH,iBAAX/C,GAAqB,IACF,oBAAjB+C,EAAK/C,SACR,IAAIqJ,UAAJ,oBAAkCrJ,EAAlC,OAEHA,uDAnJe,+CA4DjBsE,sCAIA9G,0CAIAC,uCAIAG,2CAIAF,6CAIA6G,SA5BWwP,YA2GpB/S,GAAGxD,GAAQoa,EAAQhV,mBACnB5B,GAAGxD,GAAMb,YAAcib,IACvB5W,GAAGxD,GAAM6F,WAAa,oBACpBrC,GAAGxD,GAAQG,EACNia,EAAQhV,kBAGVgV,EA9KQ,CA+Kdra,GC/KG2a,EAAa,SAAC3a,OAOZC,EAAqB,YAErBC,EAAqB,eACrBC,EAAAA,IAAyBD,EAEzBE,EAAqBJ,EAAEyD,GAAGxD,GAE1B8G,UACK,UACA,cACA,IAGLC,UACK,gBACA,gBACA,oBAGL3G,uBACuBF,kBACFA,uBACFA,EAlBE,aAqBrBG,EACY,gBADZA,EAGY,SAGZG,YACc,6BACA,yBACA,8BACA,sBACA,uBACA,4BACA,2BACA,iCACA,oBAGdma,EACO,SADPA,EAEO,WASPD,wBACQlZ,EAASgB,mBACdwB,SAAiBxC,OACjBoZ,eAAqC,SAApBpZ,EAAQmI,QAAqBrG,OAAS9B,OACvD+F,QAAiBzH,KAAK0H,WAAWhF,QACjCqK,UAAoB/M,KAAKyH,QAAQhJ,OAAhB,IAA0BiC,EAASqa,UAAnC,IACG/a,KAAKyH,QAAQhJ,OADhB,IAC0BiC,EAASsa,WADnC,IAEGhb,KAAKyH,QAAQhJ,OAFhB,IAE0BiC,EAASua,oBACpDC,iBACAC,iBACAC,cAAiB,UACjBC,cAAiB,IAEpBrb,KAAK8a,gBAAgBjV,GAAGvF,EAAMgb,OAAQ,SAACzX,UAAUzC,EAAKma,SAAS1X,UAE5D2X,eACAD,sCAePC,QA5FsB,sBA6FdC,EAAazb,KAAK8a,iBAAmB9a,KAAK8a,eAAetX,OAC3DqX,EAAsBA,EAEpBa,EAAuC,SAAxB1b,KAAKyH,QAAQkU,OAC9BF,EAAazb,KAAKyH,QAAQkU,OAExBC,EAAaF,IAAiBb,EAChC7a,KAAK6b,gBAAkB,OAEtBX,iBACAC,iBAEAE,cAAgBrb,KAAK8b,mBAEV7b,EAAE8J,UAAU9J,EAAED,KAAK+M,YAGhCgP,IAAI,SAACra,OACAjD,EACEud,EAAiBpb,EAAK+D,uBAAuBjD,MAE/Csa,MACO/b,EAAE+b,GAAgB,IAGzBvd,EAAQ,KACJwd,EAAYxd,EAAO6P,2BACrB2N,EAAU3F,OAAS2F,EAAUC,cAG7Bjc,EAAExB,GAAQid,KAAgBS,IAAMP,EAChCI,UAIC,OAERlP,OAAO,SAACsP,UAASA,IACjBC,KAAK,SAACC,EAAGC,UAAMD,EAAE,GAAKC,EAAE,KACxB3C,QAAQ,SAACwC,KACHlB,SAASlO,KAAKoP,EAAK,MACnBjB,SAASnO,KAAKoP,EAAK,SAI9B3X,QA1IsB,aA2IlBC,WAAW1E,KAAKkE,SAAU/D,KAC1BH,KAAK8a,gBAAgB5R,IAAI9I,QAEtB8D,SAAiB,UACjB4W,eAAiB,UACjBrT,QAAiB,UACjBsF,UAAiB,UACjBmO,SAAiB,UACjBC,SAAiB,UACjBC,cAAiB,UACjBC,cAAiB,QAKxB3T,WA1JsB,SA0JXhF,MAMoB,wBAJxBsE,EACAtE,IAGajE,OAAqB,KACjCiO,EAAKzM,EAAEyC,EAAOjE,QAAQsP,KAAK,MAC1BrB,MACE9L,EAAKqX,OAAO/X,KACfwC,EAAOjE,QAAQsP,KAAK,KAAMrB,MAEvBjO,OAAP,IAAoBiO,WAGjBvD,gBAAgBjJ,EAAMwC,EAAQuE,GAE5BvE,KAGTmZ,cA9KsB,kBA+Kb7b,KAAK8a,iBAAmBtX,OAC3BxD,KAAK8a,eAAe0B,YAAcxc,KAAK8a,eAAetH,aAG5DsI,iBAnLsB,kBAoLb9b,KAAK8a,eAAe/F,cAAgBzT,KAAKmb,IAC9Cjb,SAAS+Q,KAAKwC,aACdvT,SAASkI,gBAAgBqL,iBAI7B2H,iBA1LsB,kBA2Lb1c,KAAK8a,iBAAmBtX,OAC3BA,OAAOmZ,YAAc3c,KAAK8a,eAAexM,wBAAwB4N,UAGvEX,SA/LsB,eAgMd/H,EAAexT,KAAK6b,gBAAkB7b,KAAKyH,QAAQoJ,OACnDkE,EAAe/U,KAAK8b,mBACpBc,EAAe5c,KAAKyH,QAAQoJ,OAChCkE,EACA/U,KAAK0c,sBAEH1c,KAAKqb,gBAAkBtG,QACpByG,UAGHhI,GAAaoJ,OACTne,EAASuB,KAAKmb,SAASnb,KAAKmb,SAASvc,OAAS,GAEhDoB,KAAKob,gBAAkB3c,QACpBoe,UAAUpe,WAKfuB,KAAKob,eAAiB5H,EAAYxT,KAAKkb,SAAS,IAAMlb,KAAKkb,SAAS,GAAK,cACtEE,cAAgB,eAChB0B,aAIF,IAAIne,EAAIqB,KAAKkb,SAAStc,OAAQD,KAAM,CAChBqB,KAAKob,gBAAkBpb,KAAKmb,SAASxc,IACxD6U,GAAaxT,KAAKkb,SAASvc,KACM,oBAAzBqB,KAAKkb,SAASvc,EAAI,IACtB6U,EAAYxT,KAAKkb,SAASvc,EAAI,UAG/Bke,UAAU7c,KAAKmb,SAASxc,SAKnCke,UArOsB,SAqOZpe,QACH2c,cAAgB3c,OAEhBqe,aAEDC,EAAU/c,KAAK+M,UAAU4M,MAAM,OAEzBoD,EAAQhB,IAAI,SAACpa,UACXA,EAAH,iBAA4BlD,EAA5B,MACGkD,EADH,UACqBlD,EADrB,WAIHue,EAAQ/c,EAAE8c,EAAQ3C,KAAK,MAEzB4C,EAAM/X,SAAS1E,MACXsE,QAAQnE,EAASuc,UAAUhb,KAAKvB,EAASwc,iBAAiB/R,SAAS5K,KACnE4K,SAAS5K,OAGT4K,SAAS5K,KAGT4c,QAAQzc,EAAS0c,gBAAgBjV,KAAQzH,EAASqa,UAAxD,KAAsEra,EAASsa,YAAc7P,SAAS5K,KAEhG4c,QAAQzc,EAAS0c,gBAAgBjV,KAAKzH,EAAS2c,WAAWnS,SAASxK,EAASqa,WAAW5P,SAAS5K,MAGtGP,KAAK8a,gBAAgB1Y,QAAQ9B,EAAMgd,wBACpB7e,OAInBqe,OArQsB,aAsQlB9c,KAAK+M,WAAWD,OAAOpM,EAASsK,QAAQhG,YAAYzE,MAKjD+E,iBA3Qe,SA2QE5C,UACf1C,KAAKuF,KAAK,eACXE,EAAOxF,EAAED,MAAMyF,KAAKtF,MAGnBsF,MACI,IAAImV,EAAU5a,KAHW,iBAAX0C,GAAuBA,KAI1C1C,MAAMyF,KAAKtF,EAAUsF,IAGH,iBAAX/C,EAAqB,IACF,oBAAjB+C,EAAK/C,SACR,IAAIqJ,UAAJ,oBAAkCrJ,EAAlC,OAEHA,uDAjRc,+CA+EhBsE,oBA8MTxD,QAAQqC,GAAGvF,EAAM6L,cAAe,mBAC1BoR,EAAatd,EAAE8J,UAAU9J,EAAES,EAAS8c,WAEjC7e,EAAI4e,EAAW3e,OAAQD,KAAM,KAC9B8e,EAAOxd,EAAEsd,EAAW5e,MAChB2G,iBAAiBxF,KAAK2d,EAAMA,EAAKhY,aAU7C/B,GAAGxD,GAAQ0a,EAAUtV,mBACrB5B,GAAGxD,GAAMb,YAAcub,IACvBlX,GAAGxD,GAAM6F,WAAa,oBACpBrC,GAAGxD,GAAQG,EACNua,EAAUtV,kBAGZsV,EA3TU,CA4ThB3a,GC5TGyd,EAAO,SAACzd,OASNE,EAAsB,SACtBC,EAAAA,IAA0BD,EAE1BE,EAAsBJ,EAAEyD,GAAF,IAGtBpD,eACoBF,kBACEA,cACFA,gBACCA,0CAIrBG,EACY,gBADZA,EAEY,SAFZA,EAGY,WAHZA,EAIY,OAJZA,EAKY,OAGZG,EACoB,YADpBA,EAEoB,oBAFpBA,EAGoB,UAHpBA,EAIoB,iBAJpBA,EAKoB,kEALpBA,EAMoB,mBANpBA,EAOoB,2BASpBgd,wBACQhc,QACLwC,SAAWxC,6BAWlB2L,KA5DgB,2BA6DVrN,KAAKkE,SAASkN,YACdpR,KAAKkE,SAASkN,WAAW5O,WAAa2Q,KAAKC,cAC3CnT,EAAED,KAAKkE,UAAUe,SAAS1E,IAC1BN,EAAED,KAAKkE,UAAUe,SAAS1E,SAI1B9B,EACAkf,EACEC,EAAc3d,EAAED,KAAKkE,UAAUW,QAAQnE,GAAyB,GAChEiB,EAAWf,EAAK+D,uBAAuB3E,KAAKkE,aAE9C0Z,EAAa,KACTC,EAAwC,OAAzBD,EAAYE,SAAoBpd,EAAqBA,OAC/DT,EAAE8J,UAAU9J,EAAE2d,GAAa3b,KAAK4b,KACvBF,EAAS/e,OAAS,OAGlCuS,EAAYlR,EAAEK,MAAMA,EAAM+N,oBACfrO,KAAKkE,WAGhB4L,EAAY7P,EAAEK,MAAMA,EAAMqN,oBACfgQ,OAGbA,KACAA,GAAUvb,QAAQ+O,KAGpBnR,KAAKkE,UAAU9B,QAAQ0N,IAErBA,EAAUvL,uBACX4M,EAAU5M,sBAIT5C,MACO1B,EAAE0B,GAAU,SAGlBkb,UACH7c,KAAKkE,SACL0Z,OAGI3P,EAAW,eACT8P,EAAc9d,EAAEK,MAAMA,EAAMiO,sBACjBnN,EAAK8C,WAGhBwP,EAAazT,EAAEK,MAAMA,EAAM4N,qBAChByP,MAGfA,GAAUvb,QAAQ2b,KAClB3c,EAAK8C,UAAU9B,QAAQsR,IAGvBjV,OACGoe,UAAUpe,EAAQA,EAAO2S,WAAYnD,YAM9CxJ,QA/HgB,aAgIZC,WAAW1E,KAAKkE,SAAU/D,QACvB+D,SAAW,QAKlB2Y,UAtIgB,SAsINnb,EAAS6W,EAAWlE,cAQtB2J,GANqB,OAAvBzF,EAAUuF,SACK7d,EAAEsY,GAAWtW,KAAKvB,GAElBT,EAAEsY,GAAWrN,SAASxK,IAGX,GACxB8N,EAAkB6F,GACtBzT,EAAKgD,yBACJoa,GAAU/d,EAAE+d,GAAQ/Y,SAAS1E,GAE1B0N,EAAW,kBAAM3E,EAAK2U,oBAC1Bvc,EACAsc,EACA3J,IAGE2J,GAAUxP,IACVwP,GACC/c,IAAIL,EAAKM,eAAgB+M,GACzBtK,qBA/ImB,YAqJ1Bsa,oBAlKgB,SAkKIvc,EAASsc,EAAQ3J,MAC/B2J,EAAQ,GACRA,GAAQhZ,YAAezE,EAAzB,IAA2CA,OAErC2d,EAAgBje,EAAE+d,EAAO5M,YAAYnP,KACzCvB,GACA,GAEEwd,KACAA,GAAelZ,YAAYzE,GAGK,QAAhCyd,EAAOpc,aAAa,WACf+E,aAAa,iBAAiB,QAIvCjF,GAASyJ,SAAS5K,GACiB,QAAjCmB,EAAQE,aAAa,WACf+E,aAAa,iBAAiB,KAGnCgF,OAAOjK,KACVA,GAASyJ,SAAS5K,GAEhBmB,EAAQ0P,YACRnR,EAAEyB,EAAQ0P,YAAYnM,SAAS1E,GAA0B,KACrD4d,EAAkBle,EAAEyB,GAASmD,QAAQnE,GAAmB,GAC1Dyd,KACAA,GAAiBlc,KAAKvB,GAA0ByK,SAAS5K,KAGrDoG,aAAa,iBAAiB,GAGpC0N,UAOC/O,iBA5MS,SA4MQ5C,UACf1C,KAAKuF,KAAK,eACTsJ,EAAQ5O,EAAED,MACZyF,EAAOoJ,EAAMpJ,KAAKtF,MAEjBsF,MACI,IAAIiY,EAAI1d,QACTyF,KAAKtF,EAAUsF,IAGD,iBAAX/C,EAAqB,IACF,oBAAjB+C,EAAK/C,SACR,IAAIqJ,UAAJ,oBAAkCrJ,EAAlC,OAEHA,uDAlNe,0BA8N1BlB,UACCqE,GAAGvF,EAAMwF,eAAgBpF,EAAsB,SAAUmD,KAClD+B,mBACFN,iBAAiBxF,KAAKG,EAAED,MAAO,YASrC0D,GAAF,IAAaga,EAAIpY,mBACf5B,GAAF,IAAWrE,YAAcqe,IACvBha,GAAF,IAAWqC,WAAa,oBACpBrC,GAAF,IAAarD,EACNqd,EAAIpY,kBAGNoY,EAzPI,CA0PVzd,IChPH,SAAEA,MACiB,oBAANA,QACH,IAAI8L,UAAU,sGAGhBqS,EAAUne,EAAEyD,GAAG+K,OAAOkL,MAAM,KAAK,GAAGA,MAAM,QAO5CyE,EAAQ,GALI,GAKYA,EAAQ,GAJnB,GAFA,IAMoCA,EAAQ,IAJ5C,IAI+DA,EAAQ,IAAmBA,EAAQ,GAHlG,GAGmHA,EAAQ,IAF3H,QAGT,IAAI9a,MAAM,+EAbpB,CAeGrD","sourcesContent":["export { _createClass as createClass, _extends as extends, _inheritsLoose as inheritsLoose };\n\nfunction _defineProperties(target, props) {\n for (var i = 0; i < props.length; i++) {\n var descriptor = props[i];\n descriptor.enumerable = descriptor.enumerable || false;\n descriptor.configurable = true;\n if (\"value\" in descriptor) descriptor.writable = true;\n Object.defineProperty(target, descriptor.key, descriptor);\n }\n}\n\nfunction _createClass(Constructor, protoProps, staticProps) {\n if (protoProps) _defineProperties(Constructor.prototype, protoProps);\n if (staticProps) _defineProperties(Constructor, staticProps);\n return Constructor;\n}\n\nfunction _extends() {\n _extends = Object.assign || function (target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i];\n\n for (var key in source) {\n if (Object.prototype.hasOwnProperty.call(source, key)) {\n target[key] = source[key];\n }\n }\n }\n\n return target;\n };\n\n return _extends.apply(this, arguments);\n}\n\nfunction _inheritsLoose(subClass, superClass) {\n subClass.prototype = Object.create(superClass.prototype);\n subClass.prototype.constructor = subClass;\n subClass.__proto__ = superClass;\n}","import $ from 'jquery'\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.0.0): util.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nconst Util = (($) => {\n /**\n * ------------------------------------------------------------------------\n * Private TransitionEnd Helpers\n * ------------------------------------------------------------------------\n */\n\n let transition = false\n\n const MAX_UID = 1000000\n\n // Shoutout AngusCroll (https://goo.gl/pxwQGp)\n function toType(obj) {\n return {}.toString.call(obj).match(/\\s([a-zA-Z]+)/)[1].toLowerCase()\n }\n\n function getSpecialTransitionEndEvent() {\n return {\n bindType: transition.end,\n delegateType: transition.end,\n handle(event) {\n if ($(event.target).is(this)) {\n return event.handleObj.handler.apply(this, arguments) // eslint-disable-line prefer-rest-params\n }\n return undefined // eslint-disable-line no-undefined\n }\n }\n }\n\n function transitionEndTest() {\n if (typeof window !== 'undefined' && window.QUnit) {\n return false\n }\n\n return {\n end: 'transitionend'\n }\n }\n\n function transitionEndEmulator(duration) {\n let called = false\n\n $(this).one(Util.TRANSITION_END, () => {\n called = true\n })\n\n setTimeout(() => {\n if (!called) {\n Util.triggerTransitionEnd(this)\n }\n }, duration)\n\n return this\n }\n\n function setTransitionEndSupport() {\n transition = transitionEndTest()\n\n $.fn.emulateTransitionEnd = transitionEndEmulator\n\n if (Util.supportsTransitionEnd()) {\n $.event.special[Util.TRANSITION_END] = getSpecialTransitionEndEvent()\n }\n }\n\n function escapeId(selector) {\n // We escape IDs in case of special selectors (selector = '#myId:something')\n // $.escapeSelector does not exist in jQuery < 3\n selector = typeof $.escapeSelector === 'function' ? $.escapeSelector(selector).substr(1)\n : selector.replace(/(:|\\.|\\[|\\]|,|=|@)/g, '\\\\$1')\n\n return selector\n }\n\n /**\n * --------------------------------------------------------------------------\n * Public Util Api\n * --------------------------------------------------------------------------\n */\n\n const Util = {\n\n TRANSITION_END: 'bsTransitionEnd',\n\n getUID(prefix) {\n do {\n // eslint-disable-next-line no-bitwise\n prefix += ~~(Math.random() * MAX_UID) // \"~~\" acts like a faster Math.floor() here\n } while (document.getElementById(prefix))\n return prefix\n },\n\n getSelectorFromElement(element) {\n let selector = element.getAttribute('data-target')\n if (!selector || selector === '#') {\n selector = element.getAttribute('href') || ''\n }\n\n // If it's an ID\n if (selector.charAt(0) === '#') {\n selector = escapeId(selector)\n }\n\n try {\n const $selector = $(document).find(selector)\n return $selector.length > 0 ? selector : null\n } catch (err) {\n return null\n }\n },\n\n reflow(element) {\n return element.offsetHeight\n },\n\n triggerTransitionEnd(element) {\n $(element).trigger(transition.end)\n },\n\n supportsTransitionEnd() {\n return Boolean(transition)\n },\n\n isElement(obj) {\n return (obj[0] || obj).nodeType\n },\n\n typeCheckConfig(componentName, config, configTypes) {\n for (const property in configTypes) {\n if (Object.prototype.hasOwnProperty.call(configTypes, property)) {\n const expectedTypes = configTypes[property]\n const value = config[property]\n const valueType = value && Util.isElement(value)\n ? 'element' : toType(value)\n\n if (!new RegExp(expectedTypes).test(valueType)) {\n throw new Error(\n `${componentName.toUpperCase()}: ` +\n `Option \"${property}\" provided type \"${valueType}\" ` +\n `but expected type \"${expectedTypes}\".`)\n }\n }\n }\n }\n }\n\n setTransitionEndSupport()\n\n return Util\n})($)\n\nexport default Util\n","import $ from 'jquery'\nimport Util from './util'\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.0.0): alert.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nconst Alert = (($) => {\n /**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\n const NAME = 'alert'\n const VERSION = '4.0.0'\n const DATA_KEY = 'bs.alert'\n const EVENT_KEY = `.${DATA_KEY}`\n const DATA_API_KEY = '.data-api'\n const JQUERY_NO_CONFLICT = $.fn[NAME]\n const TRANSITION_DURATION = 150\n\n const Selector = {\n DISMISS : '[data-dismiss=\"alert\"]'\n }\n\n const Event = {\n CLOSE : `close${EVENT_KEY}`,\n CLOSED : `closed${EVENT_KEY}`,\n CLICK_DATA_API : `click${EVENT_KEY}${DATA_API_KEY}`\n }\n\n const ClassName = {\n ALERT : 'alert',\n FADE : 'fade',\n SHOW : 'show'\n }\n\n /**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\n class Alert {\n constructor(element) {\n this._element = element\n }\n\n // Getters\n\n static get VERSION() {\n return VERSION\n }\n\n // Public\n\n close(element) {\n element = element || this._element\n\n const rootElement = this._getRootElement(element)\n const customEvent = this._triggerCloseEvent(rootElement)\n\n if (customEvent.isDefaultPrevented()) {\n return\n }\n\n this._removeElement(rootElement)\n }\n\n dispose() {\n $.removeData(this._element, DATA_KEY)\n this._element = null\n }\n\n // Private\n\n _getRootElement(element) {\n const selector = Util.getSelectorFromElement(element)\n let parent = false\n\n if (selector) {\n parent = $(selector)[0]\n }\n\n if (!parent) {\n parent = $(element).closest(`.${ClassName.ALERT}`)[0]\n }\n\n return parent\n }\n\n _triggerCloseEvent(element) {\n const closeEvent = $.Event(Event.CLOSE)\n\n $(element).trigger(closeEvent)\n return closeEvent\n }\n\n _removeElement(element) {\n $(element).removeClass(ClassName.SHOW)\n\n if (!Util.supportsTransitionEnd() ||\n !$(element).hasClass(ClassName.FADE)) {\n this._destroyElement(element)\n return\n }\n\n $(element)\n .one(Util.TRANSITION_END, (event) => this._destroyElement(element, event))\n .emulateTransitionEnd(TRANSITION_DURATION)\n }\n\n _destroyElement(element) {\n $(element)\n .detach()\n .trigger(Event.CLOSED)\n .remove()\n }\n\n // Static\n\n static _jQueryInterface(config) {\n return this.each(function () {\n const $element = $(this)\n let data = $element.data(DATA_KEY)\n\n if (!data) {\n data = new Alert(this)\n $element.data(DATA_KEY, data)\n }\n\n if (config === 'close') {\n data[config](this)\n }\n })\n }\n\n static _handleDismiss(alertInstance) {\n return function (event) {\n if (event) {\n event.preventDefault()\n }\n\n alertInstance.close(this)\n }\n }\n }\n\n /**\n * ------------------------------------------------------------------------\n * Data Api implementation\n * ------------------------------------------------------------------------\n */\n\n $(document).on(\n Event.CLICK_DATA_API,\n Selector.DISMISS,\n Alert._handleDismiss(new Alert())\n )\n\n /**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n */\n\n $.fn[NAME] = Alert._jQueryInterface\n $.fn[NAME].Constructor = Alert\n $.fn[NAME].noConflict = function () {\n $.fn[NAME] = JQUERY_NO_CONFLICT\n return Alert._jQueryInterface\n }\n\n return Alert\n})($)\n\nexport default Alert\n","import $ from 'jquery'\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.0.0): button.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nconst Button = (($) => {\n /**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\n const NAME = 'button'\n const VERSION = '4.0.0'\n const DATA_KEY = 'bs.button'\n const EVENT_KEY = `.${DATA_KEY}`\n const DATA_API_KEY = '.data-api'\n const JQUERY_NO_CONFLICT = $.fn[NAME]\n\n const ClassName = {\n ACTIVE : 'active',\n BUTTON : 'btn',\n FOCUS : 'focus'\n }\n\n const Selector = {\n DATA_TOGGLE_CARROT : '[data-toggle^=\"button\"]',\n DATA_TOGGLE : '[data-toggle=\"buttons\"]',\n INPUT : 'input',\n ACTIVE : '.active',\n BUTTON : '.btn'\n }\n\n const Event = {\n CLICK_DATA_API : `click${EVENT_KEY}${DATA_API_KEY}`,\n FOCUS_BLUR_DATA_API : `focus${EVENT_KEY}${DATA_API_KEY} ` +\n `blur${EVENT_KEY}${DATA_API_KEY}`\n }\n\n /**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\n class Button {\n constructor(element) {\n this._element = element\n }\n\n // Getters\n\n static get VERSION() {\n return VERSION\n }\n\n // Public\n\n toggle() {\n let triggerChangeEvent = true\n let addAriaPressed = true\n const rootElement = $(this._element).closest(\n Selector.DATA_TOGGLE\n )[0]\n\n if (rootElement) {\n const input = $(this._element).find(Selector.INPUT)[0]\n\n if (input) {\n if (input.type === 'radio') {\n if (input.checked &&\n $(this._element).hasClass(ClassName.ACTIVE)) {\n triggerChangeEvent = false\n } else {\n const activeElement = $(rootElement).find(Selector.ACTIVE)[0]\n\n if (activeElement) {\n $(activeElement).removeClass(ClassName.ACTIVE)\n }\n }\n }\n\n if (triggerChangeEvent) {\n if (input.hasAttribute('disabled') ||\n rootElement.hasAttribute('disabled') ||\n input.classList.contains('disabled') ||\n rootElement.classList.contains('disabled')) {\n return\n }\n input.checked = !$(this._element).hasClass(ClassName.ACTIVE)\n $(input).trigger('change')\n }\n\n input.focus()\n addAriaPressed = false\n }\n }\n\n if (addAriaPressed) {\n this._element.setAttribute('aria-pressed',\n !$(this._element).hasClass(ClassName.ACTIVE))\n }\n\n if (triggerChangeEvent) {\n $(this._element).toggleClass(ClassName.ACTIVE)\n }\n }\n\n dispose() {\n $.removeData(this._element, DATA_KEY)\n this._element = null\n }\n\n // Static\n\n static _jQueryInterface(config) {\n return this.each(function () {\n let data = $(this).data(DATA_KEY)\n\n if (!data) {\n data = new Button(this)\n $(this).data(DATA_KEY, data)\n }\n\n if (config === 'toggle') {\n data[config]()\n }\n })\n }\n }\n\n /**\n * ------------------------------------------------------------------------\n * Data Api implementation\n * ------------------------------------------------------------------------\n */\n\n $(document)\n .on(Event.CLICK_DATA_API, Selector.DATA_TOGGLE_CARROT, (event) => {\n event.preventDefault()\n\n let button = event.target\n\n if (!$(button).hasClass(ClassName.BUTTON)) {\n button = $(button).closest(Selector.BUTTON)\n }\n\n Button._jQueryInterface.call($(button), 'toggle')\n })\n .on(Event.FOCUS_BLUR_DATA_API, Selector.DATA_TOGGLE_CARROT, (event) => {\n const button = $(event.target).closest(Selector.BUTTON)[0]\n $(button).toggleClass(ClassName.FOCUS, /^focus(in)?$/.test(event.type))\n })\n\n /**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n */\n\n $.fn[NAME] = Button._jQueryInterface\n $.fn[NAME].Constructor = Button\n $.fn[NAME].noConflict = function () {\n $.fn[NAME] = JQUERY_NO_CONFLICT\n return Button._jQueryInterface\n }\n\n return Button\n})($)\n\nexport default Button\n","import $ from 'jquery'\nimport Util from './util'\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.0.0): carousel.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nconst Carousel = (($) => {\n /**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\n const NAME = 'carousel'\n const VERSION = '4.0.0'\n const DATA_KEY = 'bs.carousel'\n const EVENT_KEY = `.${DATA_KEY}`\n const DATA_API_KEY = '.data-api'\n const JQUERY_NO_CONFLICT = $.fn[NAME]\n const TRANSITION_DURATION = 600\n const ARROW_LEFT_KEYCODE = 37 // KeyboardEvent.which value for left arrow key\n const ARROW_RIGHT_KEYCODE = 39 // KeyboardEvent.which value for right arrow key\n const TOUCHEVENT_COMPAT_WAIT = 500 // Time for mouse compat events to fire after touch\n\n const Default = {\n interval : 5000,\n keyboard : true,\n slide : false,\n pause : 'hover',\n wrap : true\n }\n\n const DefaultType = {\n interval : '(number|boolean)',\n keyboard : 'boolean',\n slide : '(boolean|string)',\n pause : '(string|boolean)',\n wrap : 'boolean'\n }\n\n const Direction = {\n NEXT : 'next',\n PREV : 'prev',\n LEFT : 'left',\n RIGHT : 'right'\n }\n\n const Event = {\n SLIDE : `slide${EVENT_KEY}`,\n SLID : `slid${EVENT_KEY}`,\n KEYDOWN : `keydown${EVENT_KEY}`,\n MOUSEENTER : `mouseenter${EVENT_KEY}`,\n MOUSELEAVE : `mouseleave${EVENT_KEY}`,\n TOUCHEND : `touchend${EVENT_KEY}`,\n LOAD_DATA_API : `load${EVENT_KEY}${DATA_API_KEY}`,\n CLICK_DATA_API : `click${EVENT_KEY}${DATA_API_KEY}`\n }\n\n const ClassName = {\n CAROUSEL : 'carousel',\n ACTIVE : 'active',\n SLIDE : 'slide',\n RIGHT : 'carousel-item-right',\n LEFT : 'carousel-item-left',\n NEXT : 'carousel-item-next',\n PREV : 'carousel-item-prev',\n ITEM : 'carousel-item'\n }\n\n const Selector = {\n ACTIVE : '.active',\n ACTIVE_ITEM : '.active.carousel-item',\n ITEM : '.carousel-item',\n NEXT_PREV : '.carousel-item-next, .carousel-item-prev',\n INDICATORS : '.carousel-indicators',\n DATA_SLIDE : '[data-slide], [data-slide-to]',\n DATA_RIDE : '[data-ride=\"carousel\"]'\n }\n\n /**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\n class Carousel {\n constructor(element, config) {\n this._items = null\n this._interval = null\n this._activeElement = null\n\n this._isPaused = false\n this._isSliding = false\n\n this.touchTimeout = null\n\n this._config = this._getConfig(config)\n this._element = $(element)[0]\n this._indicatorsElement = $(this._element).find(Selector.INDICATORS)[0]\n\n this._addEventListeners()\n }\n\n // Getters\n\n static get VERSION() {\n return VERSION\n }\n\n static get Default() {\n return Default\n }\n\n // Public\n\n next() {\n if (!this._isSliding) {\n this._slide(Direction.NEXT)\n }\n }\n\n nextWhenVisible() {\n // Don't call next when the page isn't visible\n // or the carousel or its parent isn't visible\n if (!document.hidden &&\n ($(this._element).is(':visible') && $(this._element).css('visibility') !== 'hidden')) {\n this.next()\n }\n }\n\n prev() {\n if (!this._isSliding) {\n this._slide(Direction.PREV)\n }\n }\n\n pause(event) {\n if (!event) {\n this._isPaused = true\n }\n\n if ($(this._element).find(Selector.NEXT_PREV)[0] &&\n Util.supportsTransitionEnd()) {\n Util.triggerTransitionEnd(this._element)\n this.cycle(true)\n }\n\n clearInterval(this._interval)\n this._interval = null\n }\n\n cycle(event) {\n if (!event) {\n this._isPaused = false\n }\n\n if (this._interval) {\n clearInterval(this._interval)\n this._interval = null\n }\n\n if (this._config.interval && !this._isPaused) {\n this._interval = setInterval(\n (document.visibilityState ? this.nextWhenVisible : this.next).bind(this),\n this._config.interval\n )\n }\n }\n\n to(index) {\n this._activeElement = $(this._element).find(Selector.ACTIVE_ITEM)[0]\n\n const activeIndex = this._getItemIndex(this._activeElement)\n\n if (index > this._items.length - 1 || index < 0) {\n return\n }\n\n if (this._isSliding) {\n $(this._element).one(Event.SLID, () => this.to(index))\n return\n }\n\n if (activeIndex === index) {\n this.pause()\n this.cycle()\n return\n }\n\n const direction = index > activeIndex\n ? Direction.NEXT\n : Direction.PREV\n\n this._slide(direction, this._items[index])\n }\n\n dispose() {\n $(this._element).off(EVENT_KEY)\n $.removeData(this._element, DATA_KEY)\n\n this._items = null\n this._config = null\n this._element = null\n this._interval = null\n this._isPaused = null\n this._isSliding = null\n this._activeElement = null\n this._indicatorsElement = null\n }\n\n // Private\n\n _getConfig(config) {\n config = {\n ...Default,\n ...config\n }\n Util.typeCheckConfig(NAME, config, DefaultType)\n return config\n }\n\n _addEventListeners() {\n if (this._config.keyboard) {\n $(this._element)\n .on(Event.KEYDOWN, (event) => this._keydown(event))\n }\n\n if (this._config.pause === 'hover') {\n $(this._element)\n .on(Event.MOUSEENTER, (event) => this.pause(event))\n .on(Event.MOUSELEAVE, (event) => this.cycle(event))\n if ('ontouchstart' in document.documentElement) {\n // If it's a touch-enabled device, mouseenter/leave are fired as\n // part of the mouse compatibility events on first tap - the carousel\n // would stop cycling until user tapped out of it;\n // here, we listen for touchend, explicitly pause the carousel\n // (as if it's the second time we tap on it, mouseenter compat event\n // is NOT fired) and after a timeout (to allow for mouse compatibility\n // events to fire) we explicitly restart cycling\n $(this._element).on(Event.TOUCHEND, () => {\n this.pause()\n if (this.touchTimeout) {\n clearTimeout(this.touchTimeout)\n }\n this.touchTimeout = setTimeout((event) => this.cycle(event), TOUCHEVENT_COMPAT_WAIT + this._config.interval)\n })\n }\n }\n }\n\n _keydown(event) {\n if (/input|textarea/i.test(event.target.tagName)) {\n return\n }\n\n switch (event.which) {\n case ARROW_LEFT_KEYCODE:\n event.preventDefault()\n this.prev()\n break\n case ARROW_RIGHT_KEYCODE:\n event.preventDefault()\n this.next()\n break\n default:\n }\n }\n\n _getItemIndex(element) {\n this._items = $.makeArray($(element).parent().find(Selector.ITEM))\n return this._items.indexOf(element)\n }\n\n _getItemByDirection(direction, activeElement) {\n const isNextDirection = direction === Direction.NEXT\n const isPrevDirection = direction === Direction.PREV\n const activeIndex = this._getItemIndex(activeElement)\n const lastItemIndex = this._items.length - 1\n const isGoingToWrap = isPrevDirection && activeIndex === 0 ||\n isNextDirection && activeIndex === lastItemIndex\n\n if (isGoingToWrap && !this._config.wrap) {\n return activeElement\n }\n\n const delta = direction === Direction.PREV ? -1 : 1\n const itemIndex = (activeIndex + delta) % this._items.length\n\n return itemIndex === -1\n ? this._items[this._items.length - 1] : this._items[itemIndex]\n }\n\n _triggerSlideEvent(relatedTarget, eventDirectionName) {\n const targetIndex = this._getItemIndex(relatedTarget)\n const fromIndex = this._getItemIndex($(this._element).find(Selector.ACTIVE_ITEM)[0])\n const slideEvent = $.Event(Event.SLIDE, {\n relatedTarget,\n direction: eventDirectionName,\n from: fromIndex,\n to: targetIndex\n })\n\n $(this._element).trigger(slideEvent)\n\n return slideEvent\n }\n\n _setActiveIndicatorElement(element) {\n if (this._indicatorsElement) {\n $(this._indicatorsElement)\n .find(Selector.ACTIVE)\n .removeClass(ClassName.ACTIVE)\n\n const nextIndicator = this._indicatorsElement.children[\n this._getItemIndex(element)\n ]\n\n if (nextIndicator) {\n $(nextIndicator).addClass(ClassName.ACTIVE)\n }\n }\n }\n\n _slide(direction, element) {\n const activeElement = $(this._element).find(Selector.ACTIVE_ITEM)[0]\n const activeElementIndex = this._getItemIndex(activeElement)\n const nextElement = element || activeElement &&\n this._getItemByDirection(direction, activeElement)\n const nextElementIndex = this._getItemIndex(nextElement)\n const isCycling = Boolean(this._interval)\n\n let directionalClassName\n let orderClassName\n let eventDirectionName\n\n if (direction === Direction.NEXT) {\n directionalClassName = ClassName.LEFT\n orderClassName = ClassName.NEXT\n eventDirectionName = Direction.LEFT\n } else {\n directionalClassName = ClassName.RIGHT\n orderClassName = ClassName.PREV\n eventDirectionName = Direction.RIGHT\n }\n\n if (nextElement && $(nextElement).hasClass(ClassName.ACTIVE)) {\n this._isSliding = false\n return\n }\n\n const slideEvent = this._triggerSlideEvent(nextElement, eventDirectionName)\n if (slideEvent.isDefaultPrevented()) {\n return\n }\n\n if (!activeElement || !nextElement) {\n // Some weirdness is happening, so we bail\n return\n }\n\n this._isSliding = true\n\n if (isCycling) {\n this.pause()\n }\n\n this._setActiveIndicatorElement(nextElement)\n\n const slidEvent = $.Event(Event.SLID, {\n relatedTarget: nextElement,\n direction: eventDirectionName,\n from: activeElementIndex,\n to: nextElementIndex\n })\n\n if (Util.supportsTransitionEnd() &&\n $(this._element).hasClass(ClassName.SLIDE)) {\n $(nextElement).addClass(orderClassName)\n\n Util.reflow(nextElement)\n\n $(activeElement).addClass(directionalClassName)\n $(nextElement).addClass(directionalClassName)\n\n $(activeElement)\n .one(Util.TRANSITION_END, () => {\n $(nextElement)\n .removeClass(`${directionalClassName} ${orderClassName}`)\n .addClass(ClassName.ACTIVE)\n\n $(activeElement).removeClass(`${ClassName.ACTIVE} ${orderClassName} ${directionalClassName}`)\n\n this._isSliding = false\n\n setTimeout(() => $(this._element).trigger(slidEvent), 0)\n })\n .emulateTransitionEnd(TRANSITION_DURATION)\n } else {\n $(activeElement).removeClass(ClassName.ACTIVE)\n $(nextElement).addClass(ClassName.ACTIVE)\n\n this._isSliding = false\n $(this._element).trigger(slidEvent)\n }\n\n if (isCycling) {\n this.cycle()\n }\n }\n\n // Static\n\n static _jQueryInterface(config) {\n return this.each(function () {\n let data = $(this).data(DATA_KEY)\n let _config = {\n ...Default,\n ...$(this).data()\n }\n\n if (typeof config === 'object') {\n _config = {\n ..._config,\n ...config\n }\n }\n\n const action = typeof config === 'string' ? config : _config.slide\n\n if (!data) {\n data = new Carousel(this, _config)\n $(this).data(DATA_KEY, data)\n }\n\n if (typeof config === 'number') {\n data.to(config)\n } else if (typeof action === 'string') {\n if (typeof data[action] === 'undefined') {\n throw new TypeError(`No method named \"${action}\"`)\n }\n data[action]()\n } else if (_config.interval) {\n data.pause()\n data.cycle()\n }\n })\n }\n\n static _dataApiClickHandler(event) {\n const selector = Util.getSelectorFromElement(this)\n\n if (!selector) {\n return\n }\n\n const target = $(selector)[0]\n\n if (!target || !$(target).hasClass(ClassName.CAROUSEL)) {\n return\n }\n\n const config = {\n ...$(target).data(),\n ...$(this).data()\n }\n const slideIndex = this.getAttribute('data-slide-to')\n\n if (slideIndex) {\n config.interval = false\n }\n\n Carousel._jQueryInterface.call($(target), config)\n\n if (slideIndex) {\n $(target).data(DATA_KEY).to(slideIndex)\n }\n\n event.preventDefault()\n }\n }\n\n /**\n * ------------------------------------------------------------------------\n * Data Api implementation\n * ------------------------------------------------------------------------\n */\n\n $(document)\n .on(Event.CLICK_DATA_API, Selector.DATA_SLIDE, Carousel._dataApiClickHandler)\n\n $(window).on(Event.LOAD_DATA_API, () => {\n $(Selector.DATA_RIDE).each(function () {\n const $carousel = $(this)\n Carousel._jQueryInterface.call($carousel, $carousel.data())\n })\n })\n\n /**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n */\n\n $.fn[NAME] = Carousel._jQueryInterface\n $.fn[NAME].Constructor = Carousel\n $.fn[NAME].noConflict = function () {\n $.fn[NAME] = JQUERY_NO_CONFLICT\n return Carousel._jQueryInterface\n }\n\n return Carousel\n})($)\n\nexport default Carousel\n","import $ from 'jquery'\nimport Util from './util'\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.0.0): collapse.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nconst Collapse = (($) => {\n /**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\n const NAME = 'collapse'\n const VERSION = '4.0.0'\n const DATA_KEY = 'bs.collapse'\n const EVENT_KEY = `.${DATA_KEY}`\n const DATA_API_KEY = '.data-api'\n const JQUERY_NO_CONFLICT = $.fn[NAME]\n const TRANSITION_DURATION = 600\n\n const Default = {\n toggle : true,\n parent : ''\n }\n\n const DefaultType = {\n toggle : 'boolean',\n parent : '(string|element)'\n }\n\n const Event = {\n SHOW : `show${EVENT_KEY}`,\n SHOWN : `shown${EVENT_KEY}`,\n HIDE : `hide${EVENT_KEY}`,\n HIDDEN : `hidden${EVENT_KEY}`,\n CLICK_DATA_API : `click${EVENT_KEY}${DATA_API_KEY}`\n }\n\n const ClassName = {\n SHOW : 'show',\n COLLAPSE : 'collapse',\n COLLAPSING : 'collapsing',\n COLLAPSED : 'collapsed'\n }\n\n const Dimension = {\n WIDTH : 'width',\n HEIGHT : 'height'\n }\n\n const Selector = {\n ACTIVES : '.show, .collapsing',\n DATA_TOGGLE : '[data-toggle=\"collapse\"]'\n }\n\n /**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\n class Collapse {\n constructor(element, config) {\n this._isTransitioning = false\n this._element = element\n this._config = this._getConfig(config)\n this._triggerArray = $.makeArray($(\n `[data-toggle=\"collapse\"][href=\"#${element.id}\"],` +\n `[data-toggle=\"collapse\"][data-target=\"#${element.id}\"]`\n ))\n const tabToggles = $(Selector.DATA_TOGGLE)\n for (let i = 0; i < tabToggles.length; i++) {\n const elem = tabToggles[i]\n const selector = Util.getSelectorFromElement(elem)\n if (selector !== null && $(selector).filter(element).length > 0) {\n this._selector = selector\n this._triggerArray.push(elem)\n }\n }\n\n this._parent = this._config.parent ? this._getParent() : null\n\n if (!this._config.parent) {\n this._addAriaAndCollapsedClass(this._element, this._triggerArray)\n }\n\n if (this._config.toggle) {\n this.toggle()\n }\n }\n\n // Getters\n\n static get VERSION() {\n return VERSION\n }\n\n static get Default() {\n return Default\n }\n\n // Public\n\n toggle() {\n if ($(this._element).hasClass(ClassName.SHOW)) {\n this.hide()\n } else {\n this.show()\n }\n }\n\n show() {\n if (this._isTransitioning ||\n $(this._element).hasClass(ClassName.SHOW)) {\n return\n }\n\n let actives\n let activesData\n\n if (this._parent) {\n actives = $.makeArray(\n $(this._parent)\n .find(Selector.ACTIVES)\n .filter(`[data-parent=\"${this._config.parent}\"]`)\n )\n if (actives.length === 0) {\n actives = null\n }\n }\n\n if (actives) {\n activesData = $(actives).not(this._selector).data(DATA_KEY)\n if (activesData && activesData._isTransitioning) {\n return\n }\n }\n\n const startEvent = $.Event(Event.SHOW)\n $(this._element).trigger(startEvent)\n if (startEvent.isDefaultPrevented()) {\n return\n }\n\n if (actives) {\n Collapse._jQueryInterface.call($(actives).not(this._selector), 'hide')\n if (!activesData) {\n $(actives).data(DATA_KEY, null)\n }\n }\n\n const dimension = this._getDimension()\n\n $(this._element)\n .removeClass(ClassName.COLLAPSE)\n .addClass(ClassName.COLLAPSING)\n\n this._element.style[dimension] = 0\n\n if (this._triggerArray.length > 0) {\n $(this._triggerArray)\n .removeClass(ClassName.COLLAPSED)\n .attr('aria-expanded', true)\n }\n\n this.setTransitioning(true)\n\n const complete = () => {\n $(this._element)\n .removeClass(ClassName.COLLAPSING)\n .addClass(ClassName.COLLAPSE)\n .addClass(ClassName.SHOW)\n\n this._element.style[dimension] = ''\n\n this.setTransitioning(false)\n\n $(this._element).trigger(Event.SHOWN)\n }\n\n if (!Util.supportsTransitionEnd()) {\n complete()\n return\n }\n\n const capitalizedDimension = dimension[0].toUpperCase() + dimension.slice(1)\n const scrollSize = `scroll${capitalizedDimension}`\n\n $(this._element)\n .one(Util.TRANSITION_END, complete)\n .emulateTransitionEnd(TRANSITION_DURATION)\n\n this._element.style[dimension] = `${this._element[scrollSize]}px`\n }\n\n hide() {\n if (this._isTransitioning ||\n !$(this._element).hasClass(ClassName.SHOW)) {\n return\n }\n\n const startEvent = $.Event(Event.HIDE)\n $(this._element).trigger(startEvent)\n if (startEvent.isDefaultPrevented()) {\n return\n }\n\n const dimension = this._getDimension()\n\n this._element.style[dimension] = `${this._element.getBoundingClientRect()[dimension]}px`\n\n Util.reflow(this._element)\n\n $(this._element)\n .addClass(ClassName.COLLAPSING)\n .removeClass(ClassName.COLLAPSE)\n .removeClass(ClassName.SHOW)\n\n if (this._triggerArray.length > 0) {\n for (let i = 0; i < this._triggerArray.length; i++) {\n const trigger = this._triggerArray[i]\n const selector = Util.getSelectorFromElement(trigger)\n if (selector !== null) {\n const $elem = $(selector)\n if (!$elem.hasClass(ClassName.SHOW)) {\n $(trigger).addClass(ClassName.COLLAPSED)\n .attr('aria-expanded', false)\n }\n }\n }\n }\n\n this.setTransitioning(true)\n\n const complete = () => {\n this.setTransitioning(false)\n $(this._element)\n .removeClass(ClassName.COLLAPSING)\n .addClass(ClassName.COLLAPSE)\n .trigger(Event.HIDDEN)\n }\n\n this._element.style[dimension] = ''\n\n if (!Util.supportsTransitionEnd()) {\n complete()\n return\n }\n\n $(this._element)\n .one(Util.TRANSITION_END, complete)\n .emulateTransitionEnd(TRANSITION_DURATION)\n }\n\n setTransitioning(isTransitioning) {\n this._isTransitioning = isTransitioning\n }\n\n dispose() {\n $.removeData(this._element, DATA_KEY)\n\n this._config = null\n this._parent = null\n this._element = null\n this._triggerArray = null\n this._isTransitioning = null\n }\n\n // Private\n\n _getConfig(config) {\n config = {\n ...Default,\n ...config\n }\n config.toggle = Boolean(config.toggle) // Coerce string values\n Util.typeCheckConfig(NAME, config, DefaultType)\n return config\n }\n\n _getDimension() {\n const hasWidth = $(this._element).hasClass(Dimension.WIDTH)\n return hasWidth ? Dimension.WIDTH : Dimension.HEIGHT\n }\n\n _getParent() {\n let parent = null\n if (Util.isElement(this._config.parent)) {\n parent = this._config.parent\n\n // It's a jQuery object\n if (typeof this._config.parent.jquery !== 'undefined') {\n parent = this._config.parent[0]\n }\n } else {\n parent = $(this._config.parent)[0]\n }\n\n const selector =\n `[data-toggle=\"collapse\"][data-parent=\"${this._config.parent}\"]`\n\n $(parent).find(selector).each((i, element) => {\n this._addAriaAndCollapsedClass(\n Collapse._getTargetFromElement(element),\n [element]\n )\n })\n\n return parent\n }\n\n _addAriaAndCollapsedClass(element, triggerArray) {\n if (element) {\n const isOpen = $(element).hasClass(ClassName.SHOW)\n\n if (triggerArray.length > 0) {\n $(triggerArray)\n .toggleClass(ClassName.COLLAPSED, !isOpen)\n .attr('aria-expanded', isOpen)\n }\n }\n }\n\n // Static\n\n static _getTargetFromElement(element) {\n const selector = Util.getSelectorFromElement(element)\n return selector ? $(selector)[0] : null\n }\n\n static _jQueryInterface(config) {\n return this.each(function () {\n const $this = $(this)\n let data = $this.data(DATA_KEY)\n const _config = {\n ...Default,\n ...$this.data(),\n ...typeof config === 'object' && config\n }\n\n if (!data && _config.toggle && /show|hide/.test(config)) {\n _config.toggle = false\n }\n\n if (!data) {\n data = new Collapse(this, _config)\n $this.data(DATA_KEY, data)\n }\n\n if (typeof config === 'string') {\n if (typeof data[config] === 'undefined') {\n throw new TypeError(`No method named \"${config}\"`)\n }\n data[config]()\n }\n })\n }\n }\n\n /**\n * ------------------------------------------------------------------------\n * Data Api implementation\n * ------------------------------------------------------------------------\n */\n\n $(document).on(Event.CLICK_DATA_API, Selector.DATA_TOGGLE, function (event) {\n // preventDefault only for elements (which change the URL) not inside the collapsible element\n if (event.currentTarget.tagName === 'A') {\n event.preventDefault()\n }\n\n const $trigger = $(this)\n const selector = Util.getSelectorFromElement(this)\n $(selector).each(function () {\n const $target = $(this)\n const data = $target.data(DATA_KEY)\n const config = data ? 'toggle' : $trigger.data()\n Collapse._jQueryInterface.call($target, config)\n })\n })\n\n /**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n */\n\n $.fn[NAME] = Collapse._jQueryInterface\n $.fn[NAME].Constructor = Collapse\n $.fn[NAME].noConflict = function () {\n $.fn[NAME] = JQUERY_NO_CONFLICT\n return Collapse._jQueryInterface\n }\n\n return Collapse\n})($)\n\nexport default Collapse\n","import $ from 'jquery'\nimport Popper from 'popper.js'\nimport Util from './util'\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.0.0): dropdown.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nconst Dropdown = (($) => {\n /**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\n const NAME = 'dropdown'\n const VERSION = '4.0.0'\n const DATA_KEY = 'bs.dropdown'\n const EVENT_KEY = `.${DATA_KEY}`\n const DATA_API_KEY = '.data-api'\n const JQUERY_NO_CONFLICT = $.fn[NAME]\n const ESCAPE_KEYCODE = 27 // KeyboardEvent.which value for Escape (Esc) key\n const SPACE_KEYCODE = 32 // KeyboardEvent.which value for space key\n const TAB_KEYCODE = 9 // KeyboardEvent.which value for tab key\n const ARROW_UP_KEYCODE = 38 // KeyboardEvent.which value for up arrow key\n const ARROW_DOWN_KEYCODE = 40 // KeyboardEvent.which value for down arrow key\n const RIGHT_MOUSE_BUTTON_WHICH = 3 // MouseEvent.which value for the right button (assuming a right-handed mouse)\n const REGEXP_KEYDOWN = new RegExp(`${ARROW_UP_KEYCODE}|${ARROW_DOWN_KEYCODE}|${ESCAPE_KEYCODE}`)\n\n const Event = {\n HIDE : `hide${EVENT_KEY}`,\n HIDDEN : `hidden${EVENT_KEY}`,\n SHOW : `show${EVENT_KEY}`,\n SHOWN : `shown${EVENT_KEY}`,\n CLICK : `click${EVENT_KEY}`,\n CLICK_DATA_API : `click${EVENT_KEY}${DATA_API_KEY}`,\n KEYDOWN_DATA_API : `keydown${EVENT_KEY}${DATA_API_KEY}`,\n KEYUP_DATA_API : `keyup${EVENT_KEY}${DATA_API_KEY}`\n }\n\n const ClassName = {\n DISABLED : 'disabled',\n SHOW : 'show',\n DROPUP : 'dropup',\n DROPRIGHT : 'dropright',\n DROPLEFT : 'dropleft',\n MENURIGHT : 'dropdown-menu-right',\n MENULEFT : 'dropdown-menu-left',\n POSITION_STATIC : 'position-static'\n }\n\n const Selector = {\n DATA_TOGGLE : '[data-toggle=\"dropdown\"]',\n FORM_CHILD : '.dropdown form',\n MENU : '.dropdown-menu',\n NAVBAR_NAV : '.navbar-nav',\n VISIBLE_ITEMS : '.dropdown-menu .dropdown-item:not(.disabled)'\n }\n\n const AttachmentMap = {\n TOP : 'top-start',\n TOPEND : 'top-end',\n BOTTOM : 'bottom-start',\n BOTTOMEND : 'bottom-end',\n RIGHT : 'right-start',\n RIGHTEND : 'right-end',\n LEFT : 'left-start',\n LEFTEND : 'left-end'\n }\n\n const Default = {\n offset : 0,\n flip : true,\n boundary : 'scrollParent'\n }\n\n const DefaultType = {\n offset : '(number|string|function)',\n flip : 'boolean',\n boundary : '(string|element)'\n }\n\n /**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\n class Dropdown {\n constructor(element, config) {\n this._element = element\n this._popper = null\n this._config = this._getConfig(config)\n this._menu = this._getMenuElement()\n this._inNavbar = this._detectNavbar()\n\n this._addEventListeners()\n }\n\n // Getters\n\n static get VERSION() {\n return VERSION\n }\n\n static get Default() {\n return Default\n }\n\n static get DefaultType() {\n return DefaultType\n }\n\n // Public\n\n toggle() {\n if (this._element.disabled || $(this._element).hasClass(ClassName.DISABLED)) {\n return\n }\n\n const parent = Dropdown._getParentFromElement(this._element)\n const isActive = $(this._menu).hasClass(ClassName.SHOW)\n\n Dropdown._clearMenus()\n\n if (isActive) {\n return\n }\n\n const relatedTarget = {\n relatedTarget: this._element\n }\n const showEvent = $.Event(Event.SHOW, relatedTarget)\n\n $(parent).trigger(showEvent)\n\n if (showEvent.isDefaultPrevented()) {\n return\n }\n\n // Disable totally Popper.js for Dropdown in Navbar\n if (!this._inNavbar) {\n /**\n * Check for Popper dependency\n * Popper - https://popper.js.org\n */\n if (typeof Popper === 'undefined') {\n throw new TypeError('Bootstrap dropdown require Popper.js (https://popper.js.org)')\n }\n let element = this._element\n // For dropup with alignment we use the parent as popper container\n if ($(parent).hasClass(ClassName.DROPUP)) {\n if ($(this._menu).hasClass(ClassName.MENULEFT) || $(this._menu).hasClass(ClassName.MENURIGHT)) {\n element = parent\n }\n }\n // If boundary is not `scrollParent`, then set position to `static`\n // to allow the menu to \"escape\" the scroll parent's boundaries\n // https://github.com/twbs/bootstrap/issues/24251\n if (this._config.boundary !== 'scrollParent') {\n $(parent).addClass(ClassName.POSITION_STATIC)\n }\n this._popper = new Popper(element, this._menu, this._getPopperConfig())\n }\n\n // If this is a touch-enabled device we add extra\n // empty mouseover listeners to the body's immediate children;\n // only needed because of broken event delegation on iOS\n // https://www.quirksmode.org/blog/archives/2014/02/mouse_event_bub.html\n if ('ontouchstart' in document.documentElement &&\n $(parent).closest(Selector.NAVBAR_NAV).length === 0) {\n $('body').children().on('mouseover', null, $.noop)\n }\n\n this._element.focus()\n this._element.setAttribute('aria-expanded', true)\n\n $(this._menu).toggleClass(ClassName.SHOW)\n $(parent)\n .toggleClass(ClassName.SHOW)\n .trigger($.Event(Event.SHOWN, relatedTarget))\n }\n\n dispose() {\n $.removeData(this._element, DATA_KEY)\n $(this._element).off(EVENT_KEY)\n this._element = null\n this._menu = null\n if (this._popper !== null) {\n this._popper.destroy()\n this._popper = null\n }\n }\n\n update() {\n this._inNavbar = this._detectNavbar()\n if (this._popper !== null) {\n this._popper.scheduleUpdate()\n }\n }\n\n // Private\n\n _addEventListeners() {\n $(this._element).on(Event.CLICK, (event) => {\n event.preventDefault()\n event.stopPropagation()\n this.toggle()\n })\n }\n\n _getConfig(config) {\n config = {\n ...this.constructor.Default,\n ...$(this._element).data(),\n ...config\n }\n\n Util.typeCheckConfig(\n NAME,\n config,\n this.constructor.DefaultType\n )\n\n return config\n }\n\n _getMenuElement() {\n if (!this._menu) {\n const parent = Dropdown._getParentFromElement(this._element)\n this._menu = $(parent).find(Selector.MENU)[0]\n }\n return this._menu\n }\n\n _getPlacement() {\n const $parentDropdown = $(this._element).parent()\n let placement = AttachmentMap.BOTTOM\n\n // Handle dropup\n if ($parentDropdown.hasClass(ClassName.DROPUP)) {\n placement = AttachmentMap.TOP\n if ($(this._menu).hasClass(ClassName.MENURIGHT)) {\n placement = AttachmentMap.TOPEND\n }\n } else if ($parentDropdown.hasClass(ClassName.DROPRIGHT)) {\n placement = AttachmentMap.RIGHT\n } else if ($parentDropdown.hasClass(ClassName.DROPLEFT)) {\n placement = AttachmentMap.LEFT\n } else if ($(this._menu).hasClass(ClassName.MENURIGHT)) {\n placement = AttachmentMap.BOTTOMEND\n }\n return placement\n }\n\n _detectNavbar() {\n return $(this._element).closest('.navbar').length > 0\n }\n\n _getPopperConfig() {\n const offsetConf = {}\n if (typeof this._config.offset === 'function') {\n offsetConf.fn = (data) => {\n data.offsets = {\n ...data.offsets,\n ...this._config.offset(data.offsets) || {}\n }\n return data\n }\n } else {\n offsetConf.offset = this._config.offset\n }\n const popperConfig = {\n placement: this._getPlacement(),\n modifiers: {\n offset: offsetConf,\n flip: {\n enabled: this._config.flip\n },\n preventOverflow: {\n boundariesElement: this._config.boundary\n }\n }\n }\n\n return popperConfig\n }\n\n // Static\n\n static _jQueryInterface(config) {\n return this.each(function () {\n let data = $(this).data(DATA_KEY)\n const _config = typeof config === 'object' ? config : null\n\n if (!data) {\n data = new Dropdown(this, _config)\n $(this).data(DATA_KEY, data)\n }\n\n if (typeof config === 'string') {\n if (typeof data[config] === 'undefined') {\n throw new TypeError(`No method named \"${config}\"`)\n }\n data[config]()\n }\n })\n }\n\n static _clearMenus(event) {\n if (event && (event.which === RIGHT_MOUSE_BUTTON_WHICH ||\n event.type === 'keyup' && event.which !== TAB_KEYCODE)) {\n return\n }\n\n const toggles = $.makeArray($(Selector.DATA_TOGGLE))\n for (let i = 0; i < toggles.length; i++) {\n const parent = Dropdown._getParentFromElement(toggles[i])\n const context = $(toggles[i]).data(DATA_KEY)\n const relatedTarget = {\n relatedTarget: toggles[i]\n }\n\n if (!context) {\n continue\n }\n\n const dropdownMenu = context._menu\n if (!$(parent).hasClass(ClassName.SHOW)) {\n continue\n }\n\n if (event && (event.type === 'click' &&\n /input|textarea/i.test(event.target.tagName) || event.type === 'keyup' && event.which === TAB_KEYCODE) &&\n $.contains(parent, event.target)) {\n continue\n }\n\n const hideEvent = $.Event(Event.HIDE, relatedTarget)\n $(parent).trigger(hideEvent)\n if (hideEvent.isDefaultPrevented()) {\n continue\n }\n\n // If this is a touch-enabled device we remove the extra\n // empty mouseover listeners we added for iOS support\n if ('ontouchstart' in document.documentElement) {\n $('body').children().off('mouseover', null, $.noop)\n }\n\n toggles[i].setAttribute('aria-expanded', 'false')\n\n $(dropdownMenu).removeClass(ClassName.SHOW)\n $(parent)\n .removeClass(ClassName.SHOW)\n .trigger($.Event(Event.HIDDEN, relatedTarget))\n }\n }\n\n static _getParentFromElement(element) {\n let parent\n const selector = Util.getSelectorFromElement(element)\n\n if (selector) {\n parent = $(selector)[0]\n }\n\n return parent || element.parentNode\n }\n\n // eslint-disable-next-line complexity\n static _dataApiKeydownHandler(event) {\n // If not input/textarea:\n // - And not a key in REGEXP_KEYDOWN => not a dropdown command\n // If input/textarea:\n // - If space key => not a dropdown command\n // - If key is other than escape\n // - If key is not up or down => not a dropdown command\n // - If trigger inside the menu => not a dropdown command\n if (/input|textarea/i.test(event.target.tagName)\n ? event.which === SPACE_KEYCODE || event.which !== ESCAPE_KEYCODE &&\n (event.which !== ARROW_DOWN_KEYCODE && event.which !== ARROW_UP_KEYCODE ||\n $(event.target).closest(Selector.MENU).length) : !REGEXP_KEYDOWN.test(event.which)) {\n return\n }\n\n event.preventDefault()\n event.stopPropagation()\n\n if (this.disabled || $(this).hasClass(ClassName.DISABLED)) {\n return\n }\n\n const parent = Dropdown._getParentFromElement(this)\n const isActive = $(parent).hasClass(ClassName.SHOW)\n\n if (!isActive && (event.which !== ESCAPE_KEYCODE || event.which !== SPACE_KEYCODE) ||\n isActive && (event.which === ESCAPE_KEYCODE || event.which === SPACE_KEYCODE)) {\n if (event.which === ESCAPE_KEYCODE) {\n const toggle = $(parent).find(Selector.DATA_TOGGLE)[0]\n $(toggle).trigger('focus')\n }\n\n $(this).trigger('click')\n return\n }\n\n const items = $(parent).find(Selector.VISIBLE_ITEMS).get()\n\n if (items.length === 0) {\n return\n }\n\n let index = items.indexOf(event.target)\n\n if (event.which === ARROW_UP_KEYCODE && index > 0) { // Up\n index--\n }\n\n if (event.which === ARROW_DOWN_KEYCODE && index < items.length - 1) { // Down\n index++\n }\n\n if (index < 0) {\n index = 0\n }\n\n items[index].focus()\n }\n }\n\n /**\n * ------------------------------------------------------------------------\n * Data Api implementation\n * ------------------------------------------------------------------------\n */\n\n $(document)\n .on(Event.KEYDOWN_DATA_API, Selector.DATA_TOGGLE, Dropdown._dataApiKeydownHandler)\n .on(Event.KEYDOWN_DATA_API, Selector.MENU, Dropdown._dataApiKeydownHandler)\n .on(`${Event.CLICK_DATA_API} ${Event.KEYUP_DATA_API}`, Dropdown._clearMenus)\n .on(Event.CLICK_DATA_API, Selector.DATA_TOGGLE, function (event) {\n event.preventDefault()\n event.stopPropagation()\n Dropdown._jQueryInterface.call($(this), 'toggle')\n })\n .on(Event.CLICK_DATA_API, Selector.FORM_CHILD, (e) => {\n e.stopPropagation()\n })\n\n /**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n */\n\n $.fn[NAME] = Dropdown._jQueryInterface\n $.fn[NAME].Constructor = Dropdown\n $.fn[NAME].noConflict = function () {\n $.fn[NAME] = JQUERY_NO_CONFLICT\n return Dropdown._jQueryInterface\n }\n\n return Dropdown\n})($, Popper)\n\nexport default Dropdown\n","import $ from 'jquery'\nimport Util from './util'\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.0.0): modal.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nconst Modal = (($) => {\n /**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\n const NAME = 'modal'\n const VERSION = '4.0.0'\n const DATA_KEY = 'bs.modal'\n const EVENT_KEY = `.${DATA_KEY}`\n const DATA_API_KEY = '.data-api'\n const JQUERY_NO_CONFLICT = $.fn[NAME]\n const TRANSITION_DURATION = 300\n const BACKDROP_TRANSITION_DURATION = 150\n const ESCAPE_KEYCODE = 27 // KeyboardEvent.which value for Escape (Esc) key\n\n const Default = {\n backdrop : true,\n keyboard : true,\n focus : true,\n show : true\n }\n\n const DefaultType = {\n backdrop : '(boolean|string)',\n keyboard : 'boolean',\n focus : 'boolean',\n show : 'boolean'\n }\n\n const Event = {\n HIDE : `hide${EVENT_KEY}`,\n HIDDEN : `hidden${EVENT_KEY}`,\n SHOW : `show${EVENT_KEY}`,\n SHOWN : `shown${EVENT_KEY}`,\n FOCUSIN : `focusin${EVENT_KEY}`,\n RESIZE : `resize${EVENT_KEY}`,\n CLICK_DISMISS : `click.dismiss${EVENT_KEY}`,\n KEYDOWN_DISMISS : `keydown.dismiss${EVENT_KEY}`,\n MOUSEUP_DISMISS : `mouseup.dismiss${EVENT_KEY}`,\n MOUSEDOWN_DISMISS : `mousedown.dismiss${EVENT_KEY}`,\n CLICK_DATA_API : `click${EVENT_KEY}${DATA_API_KEY}`\n }\n\n const ClassName = {\n SCROLLBAR_MEASURER : 'modal-scrollbar-measure',\n BACKDROP : 'modal-backdrop',\n OPEN : 'modal-open',\n FADE : 'fade',\n SHOW : 'show'\n }\n\n const Selector = {\n DIALOG : '.modal-dialog',\n DATA_TOGGLE : '[data-toggle=\"modal\"]',\n DATA_DISMISS : '[data-dismiss=\"modal\"]',\n FIXED_CONTENT : '.fixed-top, .fixed-bottom, .is-fixed, .sticky-top',\n STICKY_CONTENT : '.sticky-top',\n NAVBAR_TOGGLER : '.navbar-toggler'\n }\n\n /**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\n class Modal {\n constructor(element, config) {\n this._config = this._getConfig(config)\n this._element = element\n this._dialog = $(element).find(Selector.DIALOG)[0]\n this._backdrop = null\n this._isShown = false\n this._isBodyOverflowing = false\n this._ignoreBackdropClick = false\n this._originalBodyPadding = 0\n this._scrollbarWidth = 0\n }\n\n // Getters\n\n static get VERSION() {\n return VERSION\n }\n\n static get Default() {\n return Default\n }\n\n // Public\n\n toggle(relatedTarget) {\n return this._isShown ? this.hide() : this.show(relatedTarget)\n }\n\n show(relatedTarget) {\n if (this._isTransitioning || this._isShown) {\n return\n }\n\n if (Util.supportsTransitionEnd() && $(this._element).hasClass(ClassName.FADE)) {\n this._isTransitioning = true\n }\n\n const showEvent = $.Event(Event.SHOW, {\n relatedTarget\n })\n\n $(this._element).trigger(showEvent)\n\n if (this._isShown || showEvent.isDefaultPrevented()) {\n return\n }\n\n this._isShown = true\n\n this._checkScrollbar()\n this._setScrollbar()\n\n this._adjustDialog()\n\n $(document.body).addClass(ClassName.OPEN)\n\n this._setEscapeEvent()\n this._setResizeEvent()\n\n $(this._element).on(\n Event.CLICK_DISMISS,\n Selector.DATA_DISMISS,\n (event) => this.hide(event)\n )\n\n $(this._dialog).on(Event.MOUSEDOWN_DISMISS, () => {\n $(this._element).one(Event.MOUSEUP_DISMISS, (event) => {\n if ($(event.target).is(this._element)) {\n this._ignoreBackdropClick = true\n }\n })\n })\n\n this._showBackdrop(() => this._showElement(relatedTarget))\n }\n\n hide(event) {\n if (event) {\n event.preventDefault()\n }\n\n if (this._isTransitioning || !this._isShown) {\n return\n }\n\n const hideEvent = $.Event(Event.HIDE)\n\n $(this._element).trigger(hideEvent)\n\n if (!this._isShown || hideEvent.isDefaultPrevented()) {\n return\n }\n\n this._isShown = false\n\n const transition = Util.supportsTransitionEnd() && $(this._element).hasClass(ClassName.FADE)\n\n if (transition) {\n this._isTransitioning = true\n }\n\n this._setEscapeEvent()\n this._setResizeEvent()\n\n $(document).off(Event.FOCUSIN)\n\n $(this._element).removeClass(ClassName.SHOW)\n\n $(this._element).off(Event.CLICK_DISMISS)\n $(this._dialog).off(Event.MOUSEDOWN_DISMISS)\n\n if (transition) {\n $(this._element)\n .one(Util.TRANSITION_END, (event) => this._hideModal(event))\n .emulateTransitionEnd(TRANSITION_DURATION)\n } else {\n this._hideModal()\n }\n }\n\n dispose() {\n $.removeData(this._element, DATA_KEY)\n\n $(window, document, this._element, this._backdrop).off(EVENT_KEY)\n\n this._config = null\n this._element = null\n this._dialog = null\n this._backdrop = null\n this._isShown = null\n this._isBodyOverflowing = null\n this._ignoreBackdropClick = null\n this._scrollbarWidth = null\n }\n\n handleUpdate() {\n this._adjustDialog()\n }\n\n // Private\n\n _getConfig(config) {\n config = {\n ...Default,\n ...config\n }\n Util.typeCheckConfig(NAME, config, DefaultType)\n return config\n }\n\n _showElement(relatedTarget) {\n const transition = Util.supportsTransitionEnd() &&\n $(this._element).hasClass(ClassName.FADE)\n\n if (!this._element.parentNode ||\n this._element.parentNode.nodeType !== Node.ELEMENT_NODE) {\n // Don't move modal's DOM position\n document.body.appendChild(this._element)\n }\n\n this._element.style.display = 'block'\n this._element.removeAttribute('aria-hidden')\n this._element.scrollTop = 0\n\n if (transition) {\n Util.reflow(this._element)\n }\n\n $(this._element).addClass(ClassName.SHOW)\n\n if (this._config.focus) {\n this._enforceFocus()\n }\n\n const shownEvent = $.Event(Event.SHOWN, {\n relatedTarget\n })\n\n const transitionComplete = () => {\n if (this._config.focus) {\n this._element.focus()\n }\n this._isTransitioning = false\n $(this._element).trigger(shownEvent)\n }\n\n if (transition) {\n $(this._dialog)\n .one(Util.TRANSITION_END, transitionComplete)\n .emulateTransitionEnd(TRANSITION_DURATION)\n } else {\n transitionComplete()\n }\n }\n\n _enforceFocus() {\n $(document)\n .off(Event.FOCUSIN) // Guard against infinite focus loop\n .on(Event.FOCUSIN, (event) => {\n if (document !== event.target &&\n this._element !== event.target &&\n $(this._element).has(event.target).length === 0) {\n this._element.focus()\n }\n })\n }\n\n _setEscapeEvent() {\n if (this._isShown && this._config.keyboard) {\n $(this._element).on(Event.KEYDOWN_DISMISS, (event) => {\n if (event.which === ESCAPE_KEYCODE) {\n event.preventDefault()\n this.hide()\n }\n })\n } else if (!this._isShown) {\n $(this._element).off(Event.KEYDOWN_DISMISS)\n }\n }\n\n _setResizeEvent() {\n if (this._isShown) {\n $(window).on(Event.RESIZE, (event) => this.handleUpdate(event))\n } else {\n $(window).off(Event.RESIZE)\n }\n }\n\n _hideModal() {\n this._element.style.display = 'none'\n this._element.setAttribute('aria-hidden', true)\n this._isTransitioning = false\n this._showBackdrop(() => {\n $(document.body).removeClass(ClassName.OPEN)\n this._resetAdjustments()\n this._resetScrollbar()\n $(this._element).trigger(Event.HIDDEN)\n })\n }\n\n _removeBackdrop() {\n if (this._backdrop) {\n $(this._backdrop).remove()\n this._backdrop = null\n }\n }\n\n _showBackdrop(callback) {\n const animate = $(this._element).hasClass(ClassName.FADE)\n ? ClassName.FADE : ''\n\n if (this._isShown && this._config.backdrop) {\n const doAnimate = Util.supportsTransitionEnd() && animate\n\n this._backdrop = document.createElement('div')\n this._backdrop.className = ClassName.BACKDROP\n\n if (animate) {\n $(this._backdrop).addClass(animate)\n }\n\n $(this._backdrop).appendTo(document.body)\n\n $(this._element).on(Event.CLICK_DISMISS, (event) => {\n if (this._ignoreBackdropClick) {\n this._ignoreBackdropClick = false\n return\n }\n if (event.target !== event.currentTarget) {\n return\n }\n if (this._config.backdrop === 'static') {\n this._element.focus()\n } else {\n this.hide()\n }\n })\n\n if (doAnimate) {\n Util.reflow(this._backdrop)\n }\n\n $(this._backdrop).addClass(ClassName.SHOW)\n\n if (!callback) {\n return\n }\n\n if (!doAnimate) {\n callback()\n return\n }\n\n $(this._backdrop)\n .one(Util.TRANSITION_END, callback)\n .emulateTransitionEnd(BACKDROP_TRANSITION_DURATION)\n } else if (!this._isShown && this._backdrop) {\n $(this._backdrop).removeClass(ClassName.SHOW)\n\n const callbackRemove = () => {\n this._removeBackdrop()\n if (callback) {\n callback()\n }\n }\n\n if (Util.supportsTransitionEnd() &&\n $(this._element).hasClass(ClassName.FADE)) {\n $(this._backdrop)\n .one(Util.TRANSITION_END, callbackRemove)\n .emulateTransitionEnd(BACKDROP_TRANSITION_DURATION)\n } else {\n callbackRemove()\n }\n } else if (callback) {\n callback()\n }\n }\n\n // ----------------------------------------------------------------------\n // the following methods are used to handle overflowing modals\n // todo (fat): these should probably be refactored out of modal.js\n // ----------------------------------------------------------------------\n\n _adjustDialog() {\n const isModalOverflowing =\n this._element.scrollHeight > document.documentElement.clientHeight\n\n if (!this._isBodyOverflowing && isModalOverflowing) {\n this._element.style.paddingLeft = `${this._scrollbarWidth}px`\n }\n\n if (this._isBodyOverflowing && !isModalOverflowing) {\n this._element.style.paddingRight = `${this._scrollbarWidth}px`\n }\n }\n\n _resetAdjustments() {\n this._element.style.paddingLeft = ''\n this._element.style.paddingRight = ''\n }\n\n _checkScrollbar() {\n const rect = document.body.getBoundingClientRect()\n this._isBodyOverflowing = rect.left + rect.right < window.innerWidth\n this._scrollbarWidth = this._getScrollbarWidth()\n }\n\n _setScrollbar() {\n if (this._isBodyOverflowing) {\n // Note: DOMNode.style.paddingRight returns the actual value or '' if not set\n // while $(DOMNode).css('padding-right') returns the calculated value or 0 if not set\n\n // Adjust fixed content padding\n $(Selector.FIXED_CONTENT).each((index, element) => {\n const actualPadding = $(element)[0].style.paddingRight\n const calculatedPadding = $(element).css('padding-right')\n $(element).data('padding-right', actualPadding).css('padding-right', `${parseFloat(calculatedPadding) + this._scrollbarWidth}px`)\n })\n\n // Adjust sticky content margin\n $(Selector.STICKY_CONTENT).each((index, element) => {\n const actualMargin = $(element)[0].style.marginRight\n const calculatedMargin = $(element).css('margin-right')\n $(element).data('margin-right', actualMargin).css('margin-right', `${parseFloat(calculatedMargin) - this._scrollbarWidth}px`)\n })\n\n // Adjust navbar-toggler margin\n $(Selector.NAVBAR_TOGGLER).each((index, element) => {\n const actualMargin = $(element)[0].style.marginRight\n const calculatedMargin = $(element).css('margin-right')\n $(element).data('margin-right', actualMargin).css('margin-right', `${parseFloat(calculatedMargin) + this._scrollbarWidth}px`)\n })\n\n // Adjust body padding\n const actualPadding = document.body.style.paddingRight\n const calculatedPadding = $('body').css('padding-right')\n $('body').data('padding-right', actualPadding).css('padding-right', `${parseFloat(calculatedPadding) + this._scrollbarWidth}px`)\n }\n }\n\n _resetScrollbar() {\n // Restore fixed content padding\n $(Selector.FIXED_CONTENT).each((index, element) => {\n const padding = $(element).data('padding-right')\n if (typeof padding !== 'undefined') {\n $(element).css('padding-right', padding).removeData('padding-right')\n }\n })\n\n // Restore sticky content and navbar-toggler margin\n $(`${Selector.STICKY_CONTENT}, ${Selector.NAVBAR_TOGGLER}`).each((index, element) => {\n const margin = $(element).data('margin-right')\n if (typeof margin !== 'undefined') {\n $(element).css('margin-right', margin).removeData('margin-right')\n }\n })\n\n // Restore body padding\n const padding = $('body').data('padding-right')\n if (typeof padding !== 'undefined') {\n $('body').css('padding-right', padding).removeData('padding-right')\n }\n }\n\n _getScrollbarWidth() { // thx d.walsh\n const scrollDiv = document.createElement('div')\n scrollDiv.className = ClassName.SCROLLBAR_MEASURER\n document.body.appendChild(scrollDiv)\n const scrollbarWidth = scrollDiv.getBoundingClientRect().width - scrollDiv.clientWidth\n document.body.removeChild(scrollDiv)\n return scrollbarWidth\n }\n\n // Static\n\n static _jQueryInterface(config, relatedTarget) {\n return this.each(function () {\n let data = $(this).data(DATA_KEY)\n const _config = {\n ...Modal.Default,\n ...$(this).data(),\n ...typeof config === 'object' && config\n }\n\n if (!data) {\n data = new Modal(this, _config)\n $(this).data(DATA_KEY, data)\n }\n\n if (typeof config === 'string') {\n if (typeof data[config] === 'undefined') {\n throw new TypeError(`No method named \"${config}\"`)\n }\n data[config](relatedTarget)\n } else if (_config.show) {\n data.show(relatedTarget)\n }\n })\n }\n }\n\n /**\n * ------------------------------------------------------------------------\n * Data Api implementation\n * ------------------------------------------------------------------------\n */\n\n $(document).on(Event.CLICK_DATA_API, Selector.DATA_TOGGLE, function (event) {\n let target\n const selector = Util.getSelectorFromElement(this)\n\n if (selector) {\n target = $(selector)[0]\n }\n\n const config = $(target).data(DATA_KEY)\n ? 'toggle' : {\n ...$(target).data(),\n ...$(this).data()\n }\n\n if (this.tagName === 'A' || this.tagName === 'AREA') {\n event.preventDefault()\n }\n\n const $target = $(target).one(Event.SHOW, (showEvent) => {\n if (showEvent.isDefaultPrevented()) {\n // Only register focus restorer if modal will actually get shown\n return\n }\n\n $target.one(Event.HIDDEN, () => {\n if ($(this).is(':visible')) {\n this.focus()\n }\n })\n })\n\n Modal._jQueryInterface.call($(target), config, this)\n })\n\n /**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n */\n\n $.fn[NAME] = Modal._jQueryInterface\n $.fn[NAME].Constructor = Modal\n $.fn[NAME].noConflict = function () {\n $.fn[NAME] = JQUERY_NO_CONFLICT\n return Modal._jQueryInterface\n }\n\n return Modal\n})($)\n\nexport default Modal\n","import $ from 'jquery'\nimport Popper from 'popper.js'\nimport Util from './util'\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.0.0): tooltip.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nconst Tooltip = (($) => {\n /**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\n const NAME = 'tooltip'\n const VERSION = '4.0.0'\n const DATA_KEY = 'bs.tooltip'\n const EVENT_KEY = `.${DATA_KEY}`\n const JQUERY_NO_CONFLICT = $.fn[NAME]\n const TRANSITION_DURATION = 150\n const CLASS_PREFIX = 'bs-tooltip'\n const BSCLS_PREFIX_REGEX = new RegExp(`(^|\\\\s)${CLASS_PREFIX}\\\\S+`, 'g')\n\n const DefaultType = {\n animation : 'boolean',\n template : 'string',\n title : '(string|element|function)',\n trigger : 'string',\n delay : '(number|object)',\n html : 'boolean',\n selector : '(string|boolean)',\n placement : '(string|function)',\n offset : '(number|string)',\n container : '(string|element|boolean)',\n fallbackPlacement : '(string|array)',\n boundary : '(string|element)'\n }\n\n const AttachmentMap = {\n AUTO : 'auto',\n TOP : 'top',\n RIGHT : 'right',\n BOTTOM : 'bottom',\n LEFT : 'left'\n }\n\n const Default = {\n animation : true,\n template : '
' +\n '
' +\n '
',\n trigger : 'hover focus',\n title : '',\n delay : 0,\n html : false,\n selector : false,\n placement : 'top',\n offset : 0,\n container : false,\n fallbackPlacement : 'flip',\n boundary : 'scrollParent'\n }\n\n const HoverState = {\n SHOW : 'show',\n OUT : 'out'\n }\n\n const Event = {\n HIDE : `hide${EVENT_KEY}`,\n HIDDEN : `hidden${EVENT_KEY}`,\n SHOW : `show${EVENT_KEY}`,\n SHOWN : `shown${EVENT_KEY}`,\n INSERTED : `inserted${EVENT_KEY}`,\n CLICK : `click${EVENT_KEY}`,\n FOCUSIN : `focusin${EVENT_KEY}`,\n FOCUSOUT : `focusout${EVENT_KEY}`,\n MOUSEENTER : `mouseenter${EVENT_KEY}`,\n MOUSELEAVE : `mouseleave${EVENT_KEY}`\n }\n\n const ClassName = {\n FADE : 'fade',\n SHOW : 'show'\n }\n\n const Selector = {\n TOOLTIP : '.tooltip',\n TOOLTIP_INNER : '.tooltip-inner',\n ARROW : '.arrow'\n }\n\n const Trigger = {\n HOVER : 'hover',\n FOCUS : 'focus',\n CLICK : 'click',\n MANUAL : 'manual'\n }\n\n\n /**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\n class Tooltip {\n constructor(element, config) {\n /**\n * Check for Popper dependency\n * Popper - https://popper.js.org\n */\n if (typeof Popper === 'undefined') {\n throw new TypeError('Bootstrap tooltips require Popper.js (https://popper.js.org)')\n }\n\n // private\n this._isEnabled = true\n this._timeout = 0\n this._hoverState = ''\n this._activeTrigger = {}\n this._popper = null\n\n // Protected\n this.element = element\n this.config = this._getConfig(config)\n this.tip = null\n\n this._setListeners()\n }\n\n // Getters\n\n static get VERSION() {\n return VERSION\n }\n\n static get Default() {\n return Default\n }\n\n static get NAME() {\n return NAME\n }\n\n static get DATA_KEY() {\n return DATA_KEY\n }\n\n static get Event() {\n return Event\n }\n\n static get EVENT_KEY() {\n return EVENT_KEY\n }\n\n static get DefaultType() {\n return DefaultType\n }\n\n // Public\n\n enable() {\n this._isEnabled = true\n }\n\n disable() {\n this._isEnabled = false\n }\n\n toggleEnabled() {\n this._isEnabled = !this._isEnabled\n }\n\n toggle(event) {\n if (!this._isEnabled) {\n return\n }\n\n if (event) {\n const dataKey = this.constructor.DATA_KEY\n let context = $(event.currentTarget).data(dataKey)\n\n if (!context) {\n context = new this.constructor(\n event.currentTarget,\n this._getDelegateConfig()\n )\n $(event.currentTarget).data(dataKey, context)\n }\n\n context._activeTrigger.click = !context._activeTrigger.click\n\n if (context._isWithActiveTrigger()) {\n context._enter(null, context)\n } else {\n context._leave(null, context)\n }\n } else {\n if ($(this.getTipElement()).hasClass(ClassName.SHOW)) {\n this._leave(null, this)\n return\n }\n\n this._enter(null, this)\n }\n }\n\n dispose() {\n clearTimeout(this._timeout)\n\n $.removeData(this.element, this.constructor.DATA_KEY)\n\n $(this.element).off(this.constructor.EVENT_KEY)\n $(this.element).closest('.modal').off('hide.bs.modal')\n\n if (this.tip) {\n $(this.tip).remove()\n }\n\n this._isEnabled = null\n this._timeout = null\n this._hoverState = null\n this._activeTrigger = null\n if (this._popper !== null) {\n this._popper.destroy()\n }\n\n this._popper = null\n this.element = null\n this.config = null\n this.tip = null\n }\n\n show() {\n if ($(this.element).css('display') === 'none') {\n throw new Error('Please use show on visible elements')\n }\n\n const showEvent = $.Event(this.constructor.Event.SHOW)\n if (this.isWithContent() && this._isEnabled) {\n $(this.element).trigger(showEvent)\n\n const isInTheDom = $.contains(\n this.element.ownerDocument.documentElement,\n this.element\n )\n\n if (showEvent.isDefaultPrevented() || !isInTheDom) {\n return\n }\n\n const tip = this.getTipElement()\n const tipId = Util.getUID(this.constructor.NAME)\n\n tip.setAttribute('id', tipId)\n this.element.setAttribute('aria-describedby', tipId)\n\n this.setContent()\n\n if (this.config.animation) {\n $(tip).addClass(ClassName.FADE)\n }\n\n const placement = typeof this.config.placement === 'function'\n ? this.config.placement.call(this, tip, this.element)\n : this.config.placement\n\n const attachment = this._getAttachment(placement)\n this.addAttachmentClass(attachment)\n\n const container = this.config.container === false ? document.body : $(this.config.container)\n\n $(tip).data(this.constructor.DATA_KEY, this)\n\n if (!$.contains(this.element.ownerDocument.documentElement, this.tip)) {\n $(tip).appendTo(container)\n }\n\n $(this.element).trigger(this.constructor.Event.INSERTED)\n\n this._popper = new Popper(this.element, tip, {\n placement: attachment,\n modifiers: {\n offset: {\n offset: this.config.offset\n },\n flip: {\n behavior: this.config.fallbackPlacement\n },\n arrow: {\n element: Selector.ARROW\n },\n preventOverflow: {\n boundariesElement: this.config.boundary\n }\n },\n onCreate: (data) => {\n if (data.originalPlacement !== data.placement) {\n this._handlePopperPlacementChange(data)\n }\n },\n onUpdate: (data) => {\n this._handlePopperPlacementChange(data)\n }\n })\n\n $(tip).addClass(ClassName.SHOW)\n\n // If this is a touch-enabled device we add extra\n // empty mouseover listeners to the body's immediate children;\n // only needed because of broken event delegation on iOS\n // https://www.quirksmode.org/blog/archives/2014/02/mouse_event_bub.html\n if ('ontouchstart' in document.documentElement) {\n $('body').children().on('mouseover', null, $.noop)\n }\n\n const complete = () => {\n if (this.config.animation) {\n this._fixTransition()\n }\n const prevHoverState = this._hoverState\n this._hoverState = null\n\n $(this.element).trigger(this.constructor.Event.SHOWN)\n\n if (prevHoverState === HoverState.OUT) {\n this._leave(null, this)\n }\n }\n\n if (Util.supportsTransitionEnd() && $(this.tip).hasClass(ClassName.FADE)) {\n $(this.tip)\n .one(Util.TRANSITION_END, complete)\n .emulateTransitionEnd(Tooltip._TRANSITION_DURATION)\n } else {\n complete()\n }\n }\n }\n\n hide(callback) {\n const tip = this.getTipElement()\n const hideEvent = $.Event(this.constructor.Event.HIDE)\n const complete = () => {\n if (this._hoverState !== HoverState.SHOW && tip.parentNode) {\n tip.parentNode.removeChild(tip)\n }\n\n this._cleanTipClass()\n this.element.removeAttribute('aria-describedby')\n $(this.element).trigger(this.constructor.Event.HIDDEN)\n if (this._popper !== null) {\n this._popper.destroy()\n }\n\n if (callback) {\n callback()\n }\n }\n\n $(this.element).trigger(hideEvent)\n\n if (hideEvent.isDefaultPrevented()) {\n return\n }\n\n $(tip).removeClass(ClassName.SHOW)\n\n // If this is a touch-enabled device we remove the extra\n // empty mouseover listeners we added for iOS support\n if ('ontouchstart' in document.documentElement) {\n $('body').children().off('mouseover', null, $.noop)\n }\n\n this._activeTrigger[Trigger.CLICK] = false\n this._activeTrigger[Trigger.FOCUS] = false\n this._activeTrigger[Trigger.HOVER] = false\n\n if (Util.supportsTransitionEnd() &&\n $(this.tip).hasClass(ClassName.FADE)) {\n $(tip)\n .one(Util.TRANSITION_END, complete)\n .emulateTransitionEnd(TRANSITION_DURATION)\n } else {\n complete()\n }\n\n this._hoverState = ''\n }\n\n update() {\n if (this._popper !== null) {\n this._popper.scheduleUpdate()\n }\n }\n\n // Protected\n\n isWithContent() {\n return Boolean(this.getTitle())\n }\n\n addAttachmentClass(attachment) {\n $(this.getTipElement()).addClass(`${CLASS_PREFIX}-${attachment}`)\n }\n\n getTipElement() {\n this.tip = this.tip || $(this.config.template)[0]\n return this.tip\n }\n\n setContent() {\n const $tip = $(this.getTipElement())\n this.setElementContent($tip.find(Selector.TOOLTIP_INNER), this.getTitle())\n $tip.removeClass(`${ClassName.FADE} ${ClassName.SHOW}`)\n }\n\n setElementContent($element, content) {\n const html = this.config.html\n if (typeof content === 'object' && (content.nodeType || content.jquery)) {\n // Content is a DOM node or a jQuery\n if (html) {\n if (!$(content).parent().is($element)) {\n $element.empty().append(content)\n }\n } else {\n $element.text($(content).text())\n }\n } else {\n $element[html ? 'html' : 'text'](content)\n }\n }\n\n getTitle() {\n let title = this.element.getAttribute('data-original-title')\n\n if (!title) {\n title = typeof this.config.title === 'function'\n ? this.config.title.call(this.element)\n : this.config.title\n }\n\n return title\n }\n\n // Private\n\n _getAttachment(placement) {\n return AttachmentMap[placement.toUpperCase()]\n }\n\n _setListeners() {\n const triggers = this.config.trigger.split(' ')\n\n triggers.forEach((trigger) => {\n if (trigger === 'click') {\n $(this.element).on(\n this.constructor.Event.CLICK,\n this.config.selector,\n (event) => this.toggle(event)\n )\n } else if (trigger !== Trigger.MANUAL) {\n const eventIn = trigger === Trigger.HOVER\n ? this.constructor.Event.MOUSEENTER\n : this.constructor.Event.FOCUSIN\n const eventOut = trigger === Trigger.HOVER\n ? this.constructor.Event.MOUSELEAVE\n : this.constructor.Event.FOCUSOUT\n\n $(this.element)\n .on(\n eventIn,\n this.config.selector,\n (event) => this._enter(event)\n )\n .on(\n eventOut,\n this.config.selector,\n (event) => this._leave(event)\n )\n }\n\n $(this.element).closest('.modal').on(\n 'hide.bs.modal',\n () => this.hide()\n )\n })\n\n if (this.config.selector) {\n this.config = {\n ...this.config,\n trigger: 'manual',\n selector: ''\n }\n } else {\n this._fixTitle()\n }\n }\n\n _fixTitle() {\n const titleType = typeof this.element.getAttribute('data-original-title')\n if (this.element.getAttribute('title') ||\n titleType !== 'string') {\n this.element.setAttribute(\n 'data-original-title',\n this.element.getAttribute('title') || ''\n )\n this.element.setAttribute('title', '')\n }\n }\n\n _enter(event, context) {\n const dataKey = this.constructor.DATA_KEY\n\n context = context || $(event.currentTarget).data(dataKey)\n\n if (!context) {\n context = new this.constructor(\n event.currentTarget,\n this._getDelegateConfig()\n )\n $(event.currentTarget).data(dataKey, context)\n }\n\n if (event) {\n context._activeTrigger[\n event.type === 'focusin' ? Trigger.FOCUS : Trigger.HOVER\n ] = true\n }\n\n if ($(context.getTipElement()).hasClass(ClassName.SHOW) ||\n context._hoverState === HoverState.SHOW) {\n context._hoverState = HoverState.SHOW\n return\n }\n\n clearTimeout(context._timeout)\n\n context._hoverState = HoverState.SHOW\n\n if (!context.config.delay || !context.config.delay.show) {\n context.show()\n return\n }\n\n context._timeout = setTimeout(() => {\n if (context._hoverState === HoverState.SHOW) {\n context.show()\n }\n }, context.config.delay.show)\n }\n\n _leave(event, context) {\n const dataKey = this.constructor.DATA_KEY\n\n context = context || $(event.currentTarget).data(dataKey)\n\n if (!context) {\n context = new this.constructor(\n event.currentTarget,\n this._getDelegateConfig()\n )\n $(event.currentTarget).data(dataKey, context)\n }\n\n if (event) {\n context._activeTrigger[\n event.type === 'focusout' ? Trigger.FOCUS : Trigger.HOVER\n ] = false\n }\n\n if (context._isWithActiveTrigger()) {\n return\n }\n\n clearTimeout(context._timeout)\n\n context._hoverState = HoverState.OUT\n\n if (!context.config.delay || !context.config.delay.hide) {\n context.hide()\n return\n }\n\n context._timeout = setTimeout(() => {\n if (context._hoverState === HoverState.OUT) {\n context.hide()\n }\n }, context.config.delay.hide)\n }\n\n _isWithActiveTrigger() {\n for (const trigger in this._activeTrigger) {\n if (this._activeTrigger[trigger]) {\n return true\n }\n }\n\n return false\n }\n\n _getConfig(config) {\n config = {\n ...this.constructor.Default,\n ...$(this.element).data(),\n ...config\n }\n\n if (typeof config.delay === 'number') {\n config.delay = {\n show: config.delay,\n hide: config.delay\n }\n }\n\n if (typeof config.title === 'number') {\n config.title = config.title.toString()\n }\n\n if (typeof config.content === 'number') {\n config.content = config.content.toString()\n }\n\n Util.typeCheckConfig(\n NAME,\n config,\n this.constructor.DefaultType\n )\n\n return config\n }\n\n _getDelegateConfig() {\n const config = {}\n\n if (this.config) {\n for (const key in this.config) {\n if (this.constructor.Default[key] !== this.config[key]) {\n config[key] = this.config[key]\n }\n }\n }\n\n return config\n }\n\n _cleanTipClass() {\n const $tip = $(this.getTipElement())\n const tabClass = $tip.attr('class').match(BSCLS_PREFIX_REGEX)\n if (tabClass !== null && tabClass.length > 0) {\n $tip.removeClass(tabClass.join(''))\n }\n }\n\n _handlePopperPlacementChange(data) {\n this._cleanTipClass()\n this.addAttachmentClass(this._getAttachment(data.placement))\n }\n\n _fixTransition() {\n const tip = this.getTipElement()\n const initConfigAnimation = this.config.animation\n if (tip.getAttribute('x-placement') !== null) {\n return\n }\n $(tip).removeClass(ClassName.FADE)\n this.config.animation = false\n this.hide()\n this.show()\n this.config.animation = initConfigAnimation\n }\n\n // Static\n\n static _jQueryInterface(config) {\n return this.each(function () {\n let data = $(this).data(DATA_KEY)\n const _config = typeof config === 'object' && config\n\n if (!data && /dispose|hide/.test(config)) {\n return\n }\n\n if (!data) {\n data = new Tooltip(this, _config)\n $(this).data(DATA_KEY, data)\n }\n\n if (typeof config === 'string') {\n if (typeof data[config] === 'undefined') {\n throw new TypeError(`No method named \"${config}\"`)\n }\n data[config]()\n }\n })\n }\n }\n\n /**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n */\n\n $.fn[NAME] = Tooltip._jQueryInterface\n $.fn[NAME].Constructor = Tooltip\n $.fn[NAME].noConflict = function () {\n $.fn[NAME] = JQUERY_NO_CONFLICT\n return Tooltip._jQueryInterface\n }\n\n return Tooltip\n})($, Popper)\n\nexport default Tooltip\n","import $ from 'jquery'\nimport Tooltip from './tooltip'\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.0.0): popover.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nconst Popover = (($) => {\n /**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\n const NAME = 'popover'\n const VERSION = '4.0.0'\n const DATA_KEY = 'bs.popover'\n const EVENT_KEY = `.${DATA_KEY}`\n const JQUERY_NO_CONFLICT = $.fn[NAME]\n const CLASS_PREFIX = 'bs-popover'\n const BSCLS_PREFIX_REGEX = new RegExp(`(^|\\\\s)${CLASS_PREFIX}\\\\S+`, 'g')\n\n const Default = {\n ...Tooltip.Default,\n placement : 'right',\n trigger : 'click',\n content : '',\n template : '
' +\n '
' +\n '

' +\n '
'\n }\n\n const DefaultType = {\n ...Tooltip.DefaultType,\n content : '(string|element|function)'\n }\n\n const ClassName = {\n FADE : 'fade',\n SHOW : 'show'\n }\n\n const Selector = {\n TITLE : '.popover-header',\n CONTENT : '.popover-body'\n }\n\n const Event = {\n HIDE : `hide${EVENT_KEY}`,\n HIDDEN : `hidden${EVENT_KEY}`,\n SHOW : `show${EVENT_KEY}`,\n SHOWN : `shown${EVENT_KEY}`,\n INSERTED : `inserted${EVENT_KEY}`,\n CLICK : `click${EVENT_KEY}`,\n FOCUSIN : `focusin${EVENT_KEY}`,\n FOCUSOUT : `focusout${EVENT_KEY}`,\n MOUSEENTER : `mouseenter${EVENT_KEY}`,\n MOUSELEAVE : `mouseleave${EVENT_KEY}`\n }\n\n /**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\n class Popover extends Tooltip {\n // Getters\n\n static get VERSION() {\n return VERSION\n }\n\n static get Default() {\n return Default\n }\n\n static get NAME() {\n return NAME\n }\n\n static get DATA_KEY() {\n return DATA_KEY\n }\n\n static get Event() {\n return Event\n }\n\n static get EVENT_KEY() {\n return EVENT_KEY\n }\n\n static get DefaultType() {\n return DefaultType\n }\n\n // Overrides\n\n isWithContent() {\n return this.getTitle() || this._getContent()\n }\n\n addAttachmentClass(attachment) {\n $(this.getTipElement()).addClass(`${CLASS_PREFIX}-${attachment}`)\n }\n\n getTipElement() {\n this.tip = this.tip || $(this.config.template)[0]\n return this.tip\n }\n\n setContent() {\n const $tip = $(this.getTipElement())\n\n // We use append for html objects to maintain js events\n this.setElementContent($tip.find(Selector.TITLE), this.getTitle())\n let content = this._getContent()\n if (typeof content === 'function') {\n content = content.call(this.element)\n }\n this.setElementContent($tip.find(Selector.CONTENT), content)\n\n $tip.removeClass(`${ClassName.FADE} ${ClassName.SHOW}`)\n }\n\n // Private\n\n _getContent() {\n return this.element.getAttribute('data-content') ||\n this.config.content\n }\n\n _cleanTipClass() {\n const $tip = $(this.getTipElement())\n const tabClass = $tip.attr('class').match(BSCLS_PREFIX_REGEX)\n if (tabClass !== null && tabClass.length > 0) {\n $tip.removeClass(tabClass.join(''))\n }\n }\n\n // Static\n\n static _jQueryInterface(config) {\n return this.each(function () {\n let data = $(this).data(DATA_KEY)\n const _config = typeof config === 'object' ? config : null\n\n if (!data && /destroy|hide/.test(config)) {\n return\n }\n\n if (!data) {\n data = new Popover(this, _config)\n $(this).data(DATA_KEY, data)\n }\n\n if (typeof config === 'string') {\n if (typeof data[config] === 'undefined') {\n throw new TypeError(`No method named \"${config}\"`)\n }\n data[config]()\n }\n })\n }\n }\n\n /**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n */\n\n $.fn[NAME] = Popover._jQueryInterface\n $.fn[NAME].Constructor = Popover\n $.fn[NAME].noConflict = function () {\n $.fn[NAME] = JQUERY_NO_CONFLICT\n return Popover._jQueryInterface\n }\n\n return Popover\n})($)\n\nexport default Popover\n","import $ from 'jquery'\nimport Util from './util'\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.0.0): scrollspy.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nconst ScrollSpy = (($) => {\n /**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\n const NAME = 'scrollspy'\n const VERSION = '4.0.0'\n const DATA_KEY = 'bs.scrollspy'\n const EVENT_KEY = `.${DATA_KEY}`\n const DATA_API_KEY = '.data-api'\n const JQUERY_NO_CONFLICT = $.fn[NAME]\n\n const Default = {\n offset : 10,\n method : 'auto',\n target : ''\n }\n\n const DefaultType = {\n offset : 'number',\n method : 'string',\n target : '(string|element)'\n }\n\n const Event = {\n ACTIVATE : `activate${EVENT_KEY}`,\n SCROLL : `scroll${EVENT_KEY}`,\n LOAD_DATA_API : `load${EVENT_KEY}${DATA_API_KEY}`\n }\n\n const ClassName = {\n DROPDOWN_ITEM : 'dropdown-item',\n DROPDOWN_MENU : 'dropdown-menu',\n ACTIVE : 'active'\n }\n\n const Selector = {\n DATA_SPY : '[data-spy=\"scroll\"]',\n ACTIVE : '.active',\n NAV_LIST_GROUP : '.nav, .list-group',\n NAV_LINKS : '.nav-link',\n NAV_ITEMS : '.nav-item',\n LIST_ITEMS : '.list-group-item',\n DROPDOWN : '.dropdown',\n DROPDOWN_ITEMS : '.dropdown-item',\n DROPDOWN_TOGGLE : '.dropdown-toggle'\n }\n\n const OffsetMethod = {\n OFFSET : 'offset',\n POSITION : 'position'\n }\n\n /**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\n class ScrollSpy {\n constructor(element, config) {\n this._element = element\n this._scrollElement = element.tagName === 'BODY' ? window : element\n this._config = this._getConfig(config)\n this._selector = `${this._config.target} ${Selector.NAV_LINKS},` +\n `${this._config.target} ${Selector.LIST_ITEMS},` +\n `${this._config.target} ${Selector.DROPDOWN_ITEMS}`\n this._offsets = []\n this._targets = []\n this._activeTarget = null\n this._scrollHeight = 0\n\n $(this._scrollElement).on(Event.SCROLL, (event) => this._process(event))\n\n this.refresh()\n this._process()\n }\n\n // Getters\n\n static get VERSION() {\n return VERSION\n }\n\n static get Default() {\n return Default\n }\n\n // Public\n\n refresh() {\n const autoMethod = this._scrollElement === this._scrollElement.window\n ? OffsetMethod.OFFSET : OffsetMethod.POSITION\n\n const offsetMethod = this._config.method === 'auto'\n ? autoMethod : this._config.method\n\n const offsetBase = offsetMethod === OffsetMethod.POSITION\n ? this._getScrollTop() : 0\n\n this._offsets = []\n this._targets = []\n\n this._scrollHeight = this._getScrollHeight()\n\n const targets = $.makeArray($(this._selector))\n\n targets\n .map((element) => {\n let target\n const targetSelector = Util.getSelectorFromElement(element)\n\n if (targetSelector) {\n target = $(targetSelector)[0]\n }\n\n if (target) {\n const targetBCR = target.getBoundingClientRect()\n if (targetBCR.width || targetBCR.height) {\n // TODO (fat): remove sketch reliance on jQuery position/offset\n return [\n $(target)[offsetMethod]().top + offsetBase,\n targetSelector\n ]\n }\n }\n return null\n })\n .filter((item) => item)\n .sort((a, b) => a[0] - b[0])\n .forEach((item) => {\n this._offsets.push(item[0])\n this._targets.push(item[1])\n })\n }\n\n dispose() {\n $.removeData(this._element, DATA_KEY)\n $(this._scrollElement).off(EVENT_KEY)\n\n this._element = null\n this._scrollElement = null\n this._config = null\n this._selector = null\n this._offsets = null\n this._targets = null\n this._activeTarget = null\n this._scrollHeight = null\n }\n\n // Private\n\n _getConfig(config) {\n config = {\n ...Default,\n ...config\n }\n\n if (typeof config.target !== 'string') {\n let id = $(config.target).attr('id')\n if (!id) {\n id = Util.getUID(NAME)\n $(config.target).attr('id', id)\n }\n config.target = `#${id}`\n }\n\n Util.typeCheckConfig(NAME, config, DefaultType)\n\n return config\n }\n\n _getScrollTop() {\n return this._scrollElement === window\n ? this._scrollElement.pageYOffset : this._scrollElement.scrollTop\n }\n\n _getScrollHeight() {\n return this._scrollElement.scrollHeight || Math.max(\n document.body.scrollHeight,\n document.documentElement.scrollHeight\n )\n }\n\n _getOffsetHeight() {\n return this._scrollElement === window\n ? window.innerHeight : this._scrollElement.getBoundingClientRect().height\n }\n\n _process() {\n const scrollTop = this._getScrollTop() + this._config.offset\n const scrollHeight = this._getScrollHeight()\n const maxScroll = this._config.offset +\n scrollHeight -\n this._getOffsetHeight()\n\n if (this._scrollHeight !== scrollHeight) {\n this.refresh()\n }\n\n if (scrollTop >= maxScroll) {\n const target = this._targets[this._targets.length - 1]\n\n if (this._activeTarget !== target) {\n this._activate(target)\n }\n return\n }\n\n if (this._activeTarget && scrollTop < this._offsets[0] && this._offsets[0] > 0) {\n this._activeTarget = null\n this._clear()\n return\n }\n\n for (let i = this._offsets.length; i--;) {\n const isActiveTarget = this._activeTarget !== this._targets[i] &&\n scrollTop >= this._offsets[i] &&\n (typeof this._offsets[i + 1] === 'undefined' ||\n scrollTop < this._offsets[i + 1])\n\n if (isActiveTarget) {\n this._activate(this._targets[i])\n }\n }\n }\n\n _activate(target) {\n this._activeTarget = target\n\n this._clear()\n\n let queries = this._selector.split(',')\n // eslint-disable-next-line arrow-body-style\n queries = queries.map((selector) => {\n return `${selector}[data-target=\"${target}\"],` +\n `${selector}[href=\"${target}\"]`\n })\n\n const $link = $(queries.join(','))\n\n if ($link.hasClass(ClassName.DROPDOWN_ITEM)) {\n $link.closest(Selector.DROPDOWN).find(Selector.DROPDOWN_TOGGLE).addClass(ClassName.ACTIVE)\n $link.addClass(ClassName.ACTIVE)\n } else {\n // Set triggered link as active\n $link.addClass(ClassName.ACTIVE)\n // Set triggered links parents as active\n // With both
    and